@charset "utf-8";
/* CSS Document */
/*--------------------------------------

event.php

--------------------------------------*/
/*全体設定*/
html{
    font-family: 'Noto Sans JP', sans-serif;
    overflow: auto;
}

body{
    overflow: hidden;
    position: relative;
    min-width: 1120px;
    background-color:#fff;
}

/*--------------------------------------
メインビジュアル
--------------------------------------*/
section.main-visual {
    width: 100%;
    height: 420px;
    background-image: url(../img/renewal/event-main-visual.jpg);
    background-position: center;
    background-size: cover;
}

.main-visual-wrap {
    width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.main-visual .main-visual-content label {
    display: inline-block;
    margin-top: 72px;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}
.main-visual .main-visual-content h2 {
    margin-top: 8px;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
}
.main-visual .main-visual-content p {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.5;
    color: #fff;
}

.main-visual .main-visual-content .logo {
    display: flex;
    margin-top: 32px;
}
.main-visual .main-visual-content .logo img {
    height: 54px;
    margin-left: 20px;
}
.main-visual .main-visual-content .logo img:first-child {
    margin-left: 0;
}

.main-visual .main-visual-event {
    width: 350px;
    margin-top: 80px;
    position: relative;
}

.main-visual .main-visual-event .pickup-label {
    width: 90px;
    height: 90px;
    padding: 26px 0 24px 0;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50%;
    text-align: center;
    background-color: #FFBB00;
    color: #fff;
    z-index: 100;
    position: absolute;
    top: -45px;
    left: -60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.main-visual .main-visual-event .pickup-label span {
    display: block;
}

.main-visual .main-visual-event .pickup-label span:first-child {
    font-size: 20px;

}
.main-visual .main-visual-event .pickup-label span {
    font-size: 15px;
    line-height: 20px;
}

/*--------------------------------------
パンくずリスト
--------------------------------------*/
.breadcrumb_wrapper {
	border-bottom: 1px solid #DDD;
	padding-top: 18px;
	padding-bottom: 18px;
}
.breadcrumb{
	width: 1100px;
	margin: 0 auto;
	font-size:14px;
	display: flex;
	align-items: center;
	gap: 30px;
}
.breadcrumb li{
	display:inline-block;
	position: relative;
	vertical-align:bottom;
}
.breadcrumb li:after{
	content:'';
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-right: 1px solid #000;
	transform: rotate(45deg);
	position: absolute;
	top: 6px;
	right: -18px;
}
.breadcrumb li:last-child:after{
	content:'';
	display: none;
}
.breadcrumb li a{
	display: block;
}
.breadcrumb li a img{
	width: 20px;
	height: 20px;
}

/*--------------------------------------
コンテンツ内共通設定
--------------------------------------*/
/*タイトル*/
.sub-title {
    font-family: "Inter", serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.2em;
    color: #fe4958;
}

.article-title {
    margin-top: 8px;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
}

.btn-more {
    width: 100%;
    height: 46px;
    margin-top: 40px;
    border: 1px solid #000;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
}

.btn-more::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 18px;
    top: 14px;
    right: 16px;
    background-image: url(../img/renewal/btn-detail.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.btn-more a {
    display: block;
}

.btn-more a:hover {
    opacity: 0.8;
    filter: alpha(opacity=80);
    -ms-filter: "alpha(opacity=70)";
}

.btn-more p {
    font-size: 14px;
    font-weight: bold;
    line-height: 46px;
    text-align: center;
}

/*--------------------------------------
イベントリスト
--------------------------------------*/
.event-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.event-list li {
    width: 350px;
    padding: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
}

.event-list li {
    margin-top: 24px;
}

.event-list li:first-child, .event-list li:nth-child(2), .event-list li:nth-child(3) {
    margin-top: 0;
}

.event-list li label {
    height: 31px;
    line-height: 31px;
    padding: 0 16px;
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    background-color: #000;
    border-radius: 0px 10px 0px 10px;
    position: absolute;
    top: 0;
    right: 0;
}

.event-list .event-date {
    padding-bottom: 24px;
    border-bottom: 1px solid #DDDDDD;
}

.event-list .event-date .date-text {
    font-family: "Inter", serif;
    font-size: 25px;
    font-weight: bold;
    color: #FE4958;
}

.event-list .event-date .date-text .date {
    margin: 0 4px;
    font-family: "Inter", serif;
    font-size: 48px;
}

.event-list .event-date .date-text .weekday {
	font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
}

.event-list .event-date .time-text {
    margin-top: 8px;
    font-family: "Inter", serif;
    font-size: 17px;
    font-weight: bold;
    color: #FE4958;
}

.event-list .event-detail {
    margin-top: 24px;
}

.event-list .event-detail img {
    width: 220px;
    margin: 0 auto;
    display: block;
}

.event-list .event-detail h3 {
    margin-top: 28px;
    font-size: 16px;
    font-weight: bold;
}
.event-list .event-detail p {
    margin-top: 4px;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    position: relative;
    text-indent: 22px;
    color: #555555;
}
.event-list .event-detail p.area::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    top: 0;
    left: 0;
    mask-image: url(../img/renewal/icon-pin.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fe4958;
}
.event-list .event-btn {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}
.event-list .event-btn a {
    width: calc(50% - 4px);
    height: 44px;
    line-height: 44px;
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    border-radius: 4px;
    color: #fff;
}

.event-list .event-btn a:first-child {
    background-color: #5BBCC9;
}
.event-list .event-btn a:nth-child(2) {
    background-color: #FE4958;
}


/*--------------------------------------
開催予定のほいコレ就職フェア
--------------------------------------*/
section.event-featured {
    padding: 60px 0;
    background-color: #CCEDF2;
}

section.event-featured .event-featured-wrap {
    width: 1100px;
    margin: 0 auto;
}

section.event-featured .event-featured-wrap .sub-title {
    color: #32BBDC;
}

section.event-featured .event-list {
    margin-top: 40px;
}

/*--------------------------------------
その他の開催予定のフェア・イベント一覧
--------------------------------------*/
section.event {
    padding-top: 60px;
    background-color: #FFEEEE;
}

section.event .event-wrap {
    width: 1100px;
    margin: 0 auto;
}

section.event .event-accordion-list {
    margin-top: 40px;
}

section.event .event-accordion-list > li {
    margin-top: 10px;
}

section.event .event-accordion-list > li:first-child {
    margin-top: 0;
}

section.event .event-accordion-list .event-area {
    height: 60px;
    line-height: 60px;
    padding-left: 16px;
    padding-right: 24px;
    border-radius: 6px;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    cursor: pointer;
}

section.event .event-accordion-list .event-area p {
    font-size: 20px;
    font-weight: bold;
    color: #FE4958;
}

section.event .event-accordion-list .event-area span.icon {
    display: inline-block;
    width: 22px;
    height: 22px;
    mask-image: url(../img/renewal/accordion-plus.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fe4958;
}

section.event .event-accordion-list .event-area-open span {
    mask-image: url(../img/renewal/accordion-minus.svg)!important;
}

section.event .event-accordion-list .event-accordion-content {
    display: none;
}

section.event .event-accordion-list .event-accordion-open {
    display: block;
}

section.event .event-accordion-list .event-list {
    margin-top: 30px;
    padding-bottom: 40px;
}

section.event .event-accordion-list .empty-event {
    margin-top: 30px;
    padding-bottom: 40px;
    color: #FE4958;
    text-align: center;
}

section.event .event-accordion-list .empty-event .coming-soon {
    font-family: "Inter";
    font-size: 29px;
    font-weight: 700;
    line-height: 35.1px;
}

section.event .event-accordion-list .empty-event .empty-text {
    margin-top: 10px;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

/*--------------------------------------
開催終了したフェア・イベント
--------------------------------------*/
section.event-close {
    padding-bottom: 60px;
    background-color: #FFEEEE;
}

section.event-close .event-close-wrap {
    width: 1100px;
    margin: 0 auto;
    padding-top: 60px;
}

section.event-close .event-list {
    margin-top: 40px;
}

section.event-close .event-list li {
    position: relative;
}

section.event-close .event-list .event-close-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.85);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

section.event-close .event-list .event-close-overlay span {
    display: block;
    width: 104px;
    height: 28px;
    margin: 0 auto;
    line-height: 28px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 14px;
    background-color: #FE4958;
    color: white;
}

section.event-close .event-list .event-close-overlay p {
    margin-top: 12px;
    font-size: 20px;
    font-weight: bold;
    color: #FE4958;
}

section.event-close .event-close-btn .btn-more {
    width: 740px!important;
    margin: 0 auto;
    margin-top: 40px;
}

/*--------------------------------------
movie-gallery
--------------------------------------*/
section.movie-gallery {
    margin-top: 60px;
    margin-bottom: 150px;
}

section.movie-gallery h3 img {
    height: 32px;
    display: block;
    margin: 0 auto;
}


section.movie-gallery .movie-content {
    width: 948px;
    margin: 0 auto;
    margin-top: 60px;
    display: flex;
}

section.movie-gallery .movie-content .movie iframe {
    border-radius: 10px;
}

section.movie-gallery .movie-content .movie-detail {
    margin-left: 60px;
}

section.movie-gallery .movie-content .movie-detail .movie-detail-popup {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    font-weight: bold;
    padding-left: 48px;
    background-image: url(../img/renewal/title_movie_frame.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

section.movie-gallery .movie-content .movie-detail .movie-detail-popup span.icon-movie {
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-right: 8px;
    mask-image: url(../img/renewal/movie-title-icon.svg);
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: #fe4958;
}


section.movie-gallery .movie-content .movie-detail h4 {
    margin-top: 36px;
    font-size: 22px;
    font-weight: bold;
    line-height: 32px;
    color: #FE4958;
}

section.movie-gallery .movie-content .movie-detail p {
    margin-top: 24px;
    font-size: 14px;
    line-height: 2;
}

section.movie-gallery .movie-content .movie-detail p span {
    color: #FE4958;
}

.gallery-content {
    margin: 0 auto;
    margin-top: 60px;
}

.gallery-content ul {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.gallery-content ul li {
    width: 204px;
    margin-left: 20px;
    position: relative;
}

.gallery-content ul li:first-child {
    margin-left: 0;
}

.gallery-content ul li img {
    width: 100%;
    height: 100%;
    border-radius: 6px;
}

.gallery-content ul li img.icon-zoom {
    width: 33px;
    height: 33px;
    border-radius: 0;
    position: absolute;
    right: 10px;
    bottom: 10px;
}
