@charset"utf-8";

/*base--------------------------------*/

*{
	font-family: 'Noto Sans JP', sans-serif, 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	font-size: 100%;
	}
.container figcaption {
	font-size: 0.75em;
}

html, body {
	height: 100%;
}

body{
	width: 100%;
	margin: 0;
	padding: 0;
}

/* よく登場する要素のリセット */

h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, form, div {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
	font-family: 'Noto Sans JP', 'Meiryo', 'メイリオ', 'ヒラギノ 角ゴPro W3', 'Hiragino Kaku Gothic Pro', 'MS PGothic', 'ＭＳ Ｐゴシック';
	color: #000;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす */
textarea { font-size: 100%; }

/* 画像の下にできる隙間をなくす */
img {
	vertical-align: bottom;
}

.cf:after {
	content: ".";	/* 新しい要素を作る */
	display: block;	/* ブロックレベル要素に */
	clear: both;
	height: 0;
	visibility: hidden;
}

.cf {
	min-height: 1px;
}

* html .cf {
	height: 1px;
	/*\*//*/
	height: auto;
	overflow: hidden;
	/**/
}

ruby rt {
	font-size: 50%;
}
@-moz-document url-prefix() {
	ruby rt {
		font-size: 50%;
	}
}



/*common--------------------------------*/

#wrap {
	display: none;
}

a:link,
a:visited,
a:active {
	color: inherit;
	text-decoration: none;
}

a:focus {
	outline:none;
	text-decoration: none;
}

a.underline {
	text-decoration: underline;
}

.hover {
	transition: .3s ease-out;
}

.hover:hover {
	opacity:0.6;
	zoom:1;
	transition: .3s ease-out;
}

.disabled {
	pointer-events: none;
}

.pc {
	display: block;
}

.sp,
.tab {
	display: none;
}

.red {
	color: #cc0000;
}

.fit {
	width: 100%;
}

.zoom {
	transition-duration: 0.3s;
}

.zoom:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.fade_up{
    animation-name:fadeUpAnime;
    animation-duration:1.5s;
    animation-fill-mode:forwards;
    opacity:0;
}
@keyframes fadeUpAnime{
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    50% {
      opacity: 0;
      transform: translateY(0);
    }
    100% {
      opacity: 1;
      transform: translateY(-130px);
    }
}

/*--------------------------------------*/

/*loading*/

/*--------------------------------------*/

.loading_wrap {
	width: 100vw;
	height: 100vh;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
}

.loading_list_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.loading_list_item {
	height: 100px;
	padding: 10px;
}

.loading_list_item:first-child {
	padding: 6px 0 0;
}

.loading_obj {
	height: 100%;
	position: relative;
	top: -120vh;
}

.loading_obj04 {
	transform: translateY(-5px);
    animation: 20s linear alternate infinite rotate;
}
@keyframes rotate{
    0%{
        transform: translateY(-5px) rotate(0);
    }
    100%{
        transform: translateY(-5px) rotate(360deg);
    }
}



/*--------------------------------------*/

/*header*/

/*--------------------------------------*/

header {
	width: 100vw;
	height: 100px;
	padding: 0 2vw;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	z-index: 999;
	transition-duration: 0.3s;
}

header .ylk_logo_container {
	padding-left: 70px;
	position: relative;
	transition-duration: 0.3s;
}

header .ylk_logo_container::before {
	content: '';
	display: block;
	width: 58px;
	height: 59px;
	background: url('../img/logo_yeg.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	transition-duration: 0.3s;
}

header .ylk_logo_container strong {
	font-family: "M PLUS 1", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 24px;
	font-weight: 900;
	color: #19345e;
	letter-spacing: .05em;
	line-height: 1.25em;
	transition-duration: 0.3s;
}

header .ylk_logo_container em {
	display: block;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
	font-weight: 700;
	color: #617ca6;
	letter-spacing: .2em;
	line-height: 1.67em;
	transition-duration: 0.3s;
}

header .age_logo_container {
	width: 180px;
	transition-duration: 0.3s;
}

header.fixed {
	height: 80px;
	padding: 0 1.5vw;
	background-color: rgba(255,255,255,.7);
	transition-duration: 0.3s;
}

header.fixed .ylk_logo_container {
	padding-left: 60px;
	transition-duration: 0.3s;
}

header.fixed .ylk_logo_container::before {
	width: 50px;
	height: 52px;
	transition-duration: 0.3s;
}

header.fixed .ylk_logo_container strong {
	font-size: 20px;
	transition-duration: 0.3s;
}

header.fixed .ylk_logo_container em {
	font-size: 16px;
	transition-duration: 0.3s;
}

header.fixed .age_logo_container {
	width: 160px;
	transition-duration: 0.3s;
}



/*--------------------------------------*/

/*mv_wrap*/

/*--------------------------------------*/

.mv_wrap {
	width: 100vw;
	min-height: 100vh;
	padding: 100px 0 80px;
	box-sizing: border-box;
	position: relative;
	z-index: 99;
}

.mv_container {
	width: 90vw;
	max-width: 1200px;
	min-height: 82vh;
	padding: 100px 0 60px;
	box-sizing: border-box;
	margin: 0 auto;
	background-color: rgba(255,255,255,.7);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.ylk_ttl_container {
	text-align: center;
	padding-bottom: 4.08vh
}

.ylk_ttl_container strong { 
	font-family: "M PLUS 1", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 72px;
	font-weight: 900;
	color: #19345e;
	letter-spacing: .05em;
	line-height: 1.25em;
}

.ylk_ttl_container .ylk_ttl_ogj {
	display: block;
	margin: 0 auto;
}

.ylk_ttl_container .ylk_ttl_ogj:nth-of-type(1) {
	width: 46.25%;
	padding: 30px 0 5px;
}

.ylk_ttl_container .ylk_ttl_ogj:nth-of-type(2) {
	width: 36.33%;
}

.countdown_wrap {
	width: 72%;
	margin: 0 auto;
	padding-bottom: 50px;
}

.countdown_ttl {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 24px;
	font-weight: 700;
	color: #999;
	letter-spacing: .4em;
	line-height: 1em;
	text-align: center;
	padding-bottom: 2.04vh;
	margin-bottom: 3.33vh;
	position: relative;
}

.countdown_ttl::after {
	content: '';
	display: block;
	width: 60px;
	height: 2px;
	background-color: #7561a8;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.countdown_list_container {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}

.countdown_list_item {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.countdown_list_item strong {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 150px;
	font-weight: 700;
	color: #000;
	line-height: 1em;
	padding-bottom: 2.45vh;
}

.countdown_list_item em {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 36px;
	font-weight: 200;
	color: #666;
	letter-spacing: .1em;
	line-height: 1em;
}

.date_wrap {
	display: flex;
	justify-content: center;
	align-items: end;
}

.date_container strong {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 60px;
	font-weight: 300;
	color: #a567a0;
	letter-spacing: .1em;
	line-height: 1em;
}

.date_container em {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 36px;
	font-weight: 300;
	color: #a567a0;
	letter-spacing: .1em;
	line-height: 1em;
}

.time_contaier {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 24px;
	font-weight: 400;
	color: #a567a0;
	letter-spacing: .1em;
	line-height: 1.2em;
	padding-left: .5em;
}

.scroll_container {
	width: 160px;
	height: 30px;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 14px;
	font-weight: 400;
	color: #fff;
	letter-spacing: .1em;
	line-height: 1.2em;
	position: absolute;
	bottom: 160px;
	left: 2.5vw;
	transform: translateX(-50%) rotate(90deg);
	overflow: hidden;
}

.scroll_container::after {
	content: '';
	display: block;
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
    animation: 2s ease-in .5s infinite scroll-bar;
    animation-delay: 9s;
}
@keyframes scroll-bar{
    0%{
        transform: translate(0);
    }
    50%{
        transform: translate(100%);
    }
    60%{
        transform: translate(100%);
    }
    70%{
        transform: translate(-100%);
    }
    75%{
        transform: translate(-100%);
    }
    100%{
        transform: translate(0);
    }
	60%, 60%, 70% {
    	opacity: 0;
    }
	0%, 50%, 75%, 100% {
		opacity: 1;
	}
}



/*--------------------------------------*/

/*aside*/

/*--------------------------------------*/

aside {
	width: 80px;
	height: 280px;
	box-sizing: border-box;
	background-color: #000;
	position: fixed;
	top: 30%;
	right: 0;
	z-index: 999;
	transition: .3s ease-out;
}

aside.hide {
	right: -105%!important;
	transition: 5s ease-out;
}

aside a {
	width: 100%;
	height: 100%;
	font-size: 36px;
	font-weight: 900;
	color: #fff!important;
	letter-spacing: 0;
	line-height: 1.05em;
	writing-mode: vertical-rl;
	box-sizing: border-box;
	padding-top: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	transition: .3s ease-out;
}

aside::before {
	content: '';
	display: block;
	width: 46px;
	height: 46px;
	border: 2px solid #fff;
	box-sizing: border-box;
	border-radius: 100vh;
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s ease-out;
}

aside a::before {
	content: '';
	display: block;
	width: 16px;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 43px;
	left: 50%;
	transform: translateX(-50%);
	transition: .3s ease-out;
}

aside a::after {
	content: '';
	display: block;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	position: absolute;
	top: 40px;
	left: 50%;
	transform: rotate(45deg);
	transition: .3s ease-out;
}

aside:hover {
	width: 90px;
	padding-right: 5px;
	background-color: #19345e;
	transition: .3s ease-out;
}

aside:hover::before {
	padding-right: 5px;
	background-color: #fff;
	transition: .3s ease-out;
}

aside a:hover::before {
	background-color: #19345e;
	transition: .3s ease-out;
}

aside a:hover::after {
	border-color: #19345e;
	transition: .3s ease-out;
}


/*--------------------------------------*/

/*article*/

/*--------------------------------------*/

article {
	background-color: #fff;
	width: 100vw;
	position: relative;
	z-index: 99;
}

section {
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
	display: flex;
	justify-content: center;
	flex-direction: row-reverse;
	align-items: stretch;
	position: relative;
}

.main_container {
	width: 91.66vw;
	padding: 120px 2.78vw 120px;
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.sub_container {
	width: calc(100% - 91.66vw);
	padding: 200px 0 120px;
	border-right: 2px solid #000;
	position: relative;
	z-index: 1;
}

.sticky {
    position: sticky;
	top: 0;
}

.sub_container strong {
	display: block;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.1em;
	position: sticky;
	top: 160px;
	transform: rotate(90deg);
}

.sec_ttl {
	padding-bottom: 80px;
}

.sec_ttl strong {
	display: inline-block;
	font-family: "M PLUS 1", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 100px;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1.25em;
	padding: 0 40px 20px 0;
}

.sec_ttl em {
	font-style: normal;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.25em;
	white-space: nowrap;
	padding-left: 40px;
	position: relative;
}

.sec_ttl em::before {
	content: '';
	display: block;
	width: 32px;
	height: 39px;
	background: url('../img/ico_pin_w.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 5px;
	left: 0;
} 

.contents_wrap {
	display: flex;
	justify-content: space-between;
}

.contents_wrap .img_container {
	width: 38vw;
}

.contents_wrap .txt_container {
	width: 44vw;
}

.blur {
	filter: blur(20px);
	animation-name:imageBlur;
	animation-duration:1.5s;
	animation-fill-mode:forwards;
}
@keyframes imageBlur {
	0% {
		filter: blur(10px);
	}
	100% {
		filter: blur(0);
	}
}


/*sec01--------------------------------*/

.sec01 {
	border-top: 2px solid #000;
	padding: 40px 0;
}

.organizer_list_container {
	display: flex;
	justify-content: center;
	align-items: center;
}

.organizer_list_item {
	font-size: 24px;
	font-weight: 700;
	padding: 0 1.5em;
}



/*sec02--------------------------------*/

.sec02::after {
	content: '';
	display: block;
	width: 42%;
	aspect-ratio: 1 / 1;
	background: url('../img/ico_circle.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 0;
	opacity: .4;
    animation: 60s linear alternate infinite rotate;
}
@keyframes rotate{
    0%{
        transform: rotate(0);
    }
    100%{
        transform: rotate(360deg);
    }
}

.schedule_list_container {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.schedule_list_container > dt {
	width: 100px;
	height: 50px;
	background-color: #000;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .5em;
	text-indent: .5em;
	margin-bottom: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.schedule_list_container > dd {
	width: calc(100% - 100px);
	margin-bottom: 40px;
	padding-left: 40px;
	box-sizing: border-box;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.2em;
}

.schedule_list_container > dt:nth-last-child(2) {
	margin-bottom: 0;
}

.schedule_list_container > dd:last-child {
	margin-bottom: 0;
}

.schedule_list_container > dd strong {
	font-size: 60px;
	font-style: normal;
	font-weight: 900;
}

.schedule_list_container > dd em {
	display: block;
	font-size: 36px;
	font-style: normal;
	font-weight: 900;
	line-height: 1.2em;
	padding: 0 0 .5em;
}

.schedule_list_container > dd em i {
	font-style: normal;
	font-size: 28px;
}

.timetable_list_container {
	display: flex;
	flex-wrap: wrap;
}

.timetable_list_container dt {
	width: 270px;
	font-size: 36px;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1.5em;
}

.timetable_list_container dd {
	width: calc(100% - 270px);
	padding-left: 50px;
	box-sizing: border-box;
	font-size: 36px;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.5em;
	position: relative;
}

.timetable_list_container dd::before {
	content: '';
	display: block;
	width: 34px;
	height: 34px;
	background: url('../img/ico_clock.svg') center center no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}



/*sec03--------------------------------*/

.lacation_wrap {
	display: flex;
	padding-bottom: 40px;
}

.lacation_wrap .img_container {
	width: 33.33vw;
}

.lacation_wrap .txt_container {
	width: calc(100% - 33.33vw);
	padding-left: 40px;
	box-sizing: border-box;
	transform: translateY(-20px);
}

.location_list_item {
	border-bottom: 1px solid #000;
	padding: 30px 0 30px 80px;
	position: relative;
	word-break: keep-all;
}

.location_list_item::before {
	content: '';
	display: block;
	width: 66px;
	height: 58px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.location_list_item:nth-child(1):before {
	background-image: url('../img/ico_pin.svg');
}

.location_list_item:nth-child(2):before {
	background-image: url('../img/ico_train.svg');
}

.location_list_item:nth-child(3):before {
	background-image: url('../img/ico_car.svg');
}

.location_list_item strong {
	display: block;
	font-size: 28px;
	font-style: normal;
	font-weight: 900;
	letter-spacing: .1em;
	line-height: 1.2em;
	padding-bottom: .4em;
}

.location_list_item em {
	display: block;
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1.64em;
}

.map_wrap {
	width: 100%;
	height: 520px;
	overflow: hidden;
}

.map_container {
	width: 100%;
	height: 100%;
}



/*sec04--------------------------------*/

.event_ttl {
	padding-bottom: 50px;
}

.event_ttl strong {
	display: block;
	font-size: 72px;
	font-weight: 900;
	font-style: normal;
	letter-spacing: .05em;
	line-height: 1.2em;
}

.sec04 .event_ttl strong {
	letter-spacing: .1em;
	padding-bottom: 10px;
}

.event_ttl em {
	display: block;
	font-size: 30px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: .1em;
}

.event_txt {
	font-size: 24px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.64em;
	padding-bottom: 50px;
}

.profile_list_container {
	display: flex;
	align-items: stretch;
	padding-bottom: 20px;
}

.profile_list_container dt {
	width: 120px;
	background-color: #000;
	font-size: 24px;
	font-weight: 700;
	color: #fff;
	letter-spacing: .5em;
	text-indent: .5em;
	display: flex;
	justify-content: center;
	align-items: center;
}

.profile_list_container dd {
	width: calc(100% - 120px);
	padding-left: 30px;
}

.profile_list_container dd strong {
	display: block;
	font-size: 36px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .1em;
	line-height: 1em;
	padding-right: 30px;
}

.profile_list_container dd strong i {
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .1em;
	white-space: nowrap;
}

.profile_list_container dd em {
	display: block;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	letter-spacing: .05em;
}

.profile_list_container.company {
	padding-top: 40px;
}

.profile_list_container.company dt {
	font-size: 18px;
	letter-spacing: .2em;
	text-indent: .2em;
}

.profile_list_container.company dd {
	display: flex;
	flex-wrap: wrap;
}

.logo_kaonavi {
	width: 142px;
}

.profile_txt {
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.64em;
}

.profile_list_container.company + .profile_txt {
	font-size: 16px;
}



/*sec05--------------------------------*/

.sec05,.sec06,.sec07 {
	border-top: none;
	border-bottom: none;
}

.sec05::before,.sec06::before,.sec07::before {
	content: '';
	display: block;
	width: 350px;
	height: 100%;
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

.sec05 .sec_ttl,.sec06 .sec_ttl,.sec07 .sec_ttl,
.sec05 .event_ttl,.sec06 .event_ttl,.sec07 .event_ttl,
.sec05 .event_txt,.sec06 .event_txt,.sec07 .event_txt,
.sec05 .sub_container,.sec06 .sub_container,.sec07 .sub_container {
	color: #fff;
}

.sec05 .sub_container,.sec06 .sub_container,.sec07 .sub_container {
	border-color: #fff;
}

.sec05 {
	background-color: #d87aae;
}

.sec05 .event_ttl em {
	padding-bottom: 10px;
}



/*sec06--------------------------------*/

.sec06 {
	background-color: #4eb133;
}

.sec06 .event_ttl strong {
	padding-bottom: 10px;
}



/*sec07--------------------------------*/

.sec07 {
	background-color: #7561a8;
}



/*sec08--------------------------------*/

.sec08 {
	border-bottom: 2px solid #000;
}

.gnm_list_container {
	padding-bottom: 30px;
}

.gnm_list_item {
	font-size: 36px;
	font-weight: 900;
	letter-spacing: .1em;
	margin-bottom: 20px;
	padding-left: 70px;
	position: relative;
}

.gnm_list_item::before {
	content: '';
	display: block;
	width: 54px;
	height: 54px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

.gnm_list_item:first-child:before {
	background-image: url('../img/ico_clock.svg');
}

.gnm_list_item:last-child:before {
	background-image: url('../img/ico_pin.svg');
}


/*--------------------------------------*/

/*footer*/

/*--------------------------------------*/

footer {
	padding: 80px 0 60px;
	position: relative;
	z-index: 99;
}

.footer_wrap {
	width: 90vw;
	max-width: 1200px;
	margin: 0 auto;
	padding: 80px 40px;
	box-sizing: border-box;
	background-color: rgba(255,255,255,.7);
	border-radius: 20px;
}

.footer_wrap .btn_contact_container {
	padding-bottom: 40px;
}

.footer_wrap .btn_contact_container a {
	display: block;
	position: relative;
}

.footer_wrap .btn_contact_container a strong {
	display: block;
	font-size: 100px;
	font-weight: 900;
	letter-spacing: .1em;
	position: relative;
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a::before {
	content: '';
	display: block;
	width: 112px;
	height: 112px;
	border: 2px solid #000;
	box-sizing: border-box;
	border-radius: 100vh;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a strong::before {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	background-color: #000;
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a strong::after {
	content: '';
	display: block;
	width: 16px;
	height: 16px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	position: absolute;
	top: 50%;
	right: 36px;
	transform: translateY(-50%) rotate(45deg);
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a:hover strong {
	color: #333;
}

.footer_wrap .btn_contact_container a:hover::before {
	border-color: #19345e;
	background-color: #19345e;
	transform: translate(10px, -50%);
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a:hover strong::before {
	background-color: #fff;
	transform: translate(10px, -50%);
	transition: .3s ease-out;
}

.footer_wrap .btn_contact_container a:hover strong::after {
	border-color: #fff;
	transform: translate(10px, -50%) rotate(45deg);
	transition: .3s ease-out;
}

.footer_wrap .add_list_container {
	padding-bottom: 80px;
}

.footer_wrap .add_list_container dt {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1.64em;
}

.footer_wrap .add_list_container dd {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: .05em;
	line-height: 1.64em;
}

.bnr_list_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bnr_list_item {
	width: 28.86%;
}

.copy_wrap {
	text-align: center;
	padding-top: 60px;
}

.copy_wrap small {
	font-size: 16px;
	font-weight: 500;
	color: #fff;
	letter-spacing: .05em;
}





@media screen and (min-width: 768px) and (max-width: 1440px) {

	/*--------------------------------------*/

	/*mv_wrap*/

	/*--------------------------------------*/

	.ylk_ttl_container strong { 
		font-size: 5vw;
	}

	.countdown_ttl {
		font-size: 1.67vw;
	}

	.countdown_list_item strong {
		font-size: 10.42vw;
	}

	.countdown_list_item em {
		font-size: 2.5vw;
	}

	.date_container strong {
		font-size: 4.17vw;
	}

	.date_container em {
		font-size: 2.5vw;
	}

	.time_contaier {
		font-size: 1.67vw;
	}

}

@media screen and (min-width: 768px) and (max-width: 1320px) {
	
	.profile_list_container dt {
		width: 9.09vw;
		font-size: 1.82vw;
	}
	.profile_list_container dd {
		width: calc(100% - 9.09vw);
	}
	
	.profile_list_container.company dt {
		width: 9.09vw;
		font-size: 1.36vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 1080px) {

	.footer_wrap .btn_contact_container a strong {
		font-size: 9.26vw;
	}

	.footer_wrap .btn_contact_container a::before {
		width: 10.37vw;
		height: 10.37vw;
	}

	.footer_wrap .btn_contact_container a strong::before {
		width: 3.7vw;
		right: 3.24vw;
	}

	.footer_wrap .btn_contact_container a strong::after {
		width: 1.48vw;
		height: 1.48vw;
		right: 3.33vw;
	}
}

@media screen and (min-width: 768px) and (max-width: 920px) {

	.timetable_list_container dt {
		width: 29.35vw;
		font-size: 3.91vw;
	}

	.timetable_list_container dd {
		width: calc(100% - 29.35vw);
		padding-left: 5.43vw;
		font-size: 3.91vw;
	}

	.timetable_list_container dd::before {
		width: 3.7vw;
		height: 3.7vw;
	}
}