@charset "UTF-8";
/* CSS Document */
/*
header > .logo a::before{
	content: '';
	width: 120px;
	height: 21px;
	display: block;
	-webkit-mask-image: url('../img/sp_logo.svg');
	mask-image: url('../img/sp_logo.svg');
	mask-size: 100% 100%;
	background: var(--KTSU-BLACK);
}
*/
header:has(+ .about){
	opacity: 0;
	visibility: hidden;
	-webkit-transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
	transition:
		opacity 0.5s ease,
		visibility 0.5s ease;
}
header.black:has(+ .about){
	opacity: 1;
	visibility: visible;
}

#container.commonPage {
	padding-top: 130px;
	padding-bottom: 100px;
}
.commonPage #main{
	margin-bottom: 35px;
	padding-left: 25px;
}
.commonPage #main .tit{
	font-size: 0.85rem;
	color: var(--KTSU-GOLD);
}
body.langJp .commonPage #main .tit{font-size: 0.45rem;}
body.langFr .new_and_now.commonPage #main .tit{font-size: 0.55rem;}
body.langFr .what_to_see.commonPage #main .tit{font-size: 0.75rem;}



.commonPage #main .txt{
	margin-top: 1em;
}


.bt_more,
.bt_more.noBg{
	width: 110px;
	height: 110px;
	background: var(--KTSU-BLACK);
	-webkit-border-radius: 9999px;
	border-radius: 9999px;
	font-size: 0.1rem;
	color: #FFF;
	opacity: 1;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
}
.bt_more.hide,
.bt_more.hide.noBg{
	opacity: 0;
}
.bt_more.noBg{
	background: none;
	border: 1px solid #FFF;
}

.bt_more a{
	color: #FFF;
	height: 100%;
}
.bt_more.hide a{
	pointer-events: none;
}

.bt_more .txt{
	display: block;
	margin-top: 1em;
}




.fw{
	display: none;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
	background: rgba(255,255,255,0.65);
	/*background: url(../img/bg_gold.jpg) no-repeat center center/cover;*/
	z-index: 500;
	font-size:0;
}
.fw.opening {
	display: block;
	-webkit-animation: opening 0.8s ease 0s 1 normal both;
	animation: opening 0.8s ease 0s 1 normal both;
}
.fw.opened{display: block;}

.fw.closing {
	display: block;
	-webkit-animation: closing 0.25s ease 0s 1 normal both;
	animation: closing 0.25s ease 0s 1 normal both;
}
.fw.closed{display: none;}


.fw .fw_bg{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 0;
}
.fw .fw_close{
	position: absolute;
	top: 25px;
	right:25px;
	z-index: 500;
}
.fw .fw_close a{
	width: 30px;
	height: 30px;
	display: block;
	-webkit-mask-image: url('../img/icon_close.svg');
	mask-image: url('../img/icon_close.svg');
	mask-size: 100% 100%;
	background: var(--KTSU-BLACK);
}
.fw .fw_close a.white{
	background: #FFF;
}
.fw .fw_outer,
.fw .fw_inner{
	position: relative;
	width: 100%;
	height: 100%;
	overflow: auto;
}



@-webkit-keyframes opening {
	0% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
	100% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
}
@keyframes         opening {
	0% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
	100% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
}

@-webkit-keyframes closing {
	0% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
	100% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
}
@keyframes         closing {
	0% {
		-webkit-transform: scale(1.0);
		-ms-transform: scale(1.0);
			transform: scale(1.0);
		filter: alpha(opacity=100);
		opacity: 1.0;
	}
	100% {
		-moz-perspective:1300px;
		-webkit-perspective: 1300px;
				perspective: 1300px;
		-webkit-transform: scale(1.5);
		-ms-transform: scale(1.5);
			transform: scale(1.5);
		filter: alpha(opacity=000);
		opacity: 0.0;
	}
}
/*=============================
  new_and_now
=============================*/
.new_and_now #contents {}
.new_and_now #contents > .inner{
	padding: 0 25px;
}



.new_and_now .postList {
	flex-wrap: wrap;
	justify-content: space-between;
}
.new_and_now .postList > li {
	width: 48%;
}
.new_and_now .postList > li:first-child {width: 100%;}
.new_and_now .postList > li:nth-child(n+4) {margin-top: 2em;}


.new_and_now .postList > li .ph{
	aspect-ratio: 1/1;
	width: 100%;
}
.new_and_now .postList > li .data{
	font-size: 0.12rem;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}
.new_and_now .postList > li .data .status{
	display: inline-block;
	margin-left: 0.5em;
	color: var(--KTSU-RED);
}
.new_and_now .postList > li h2.tit{
	font-size: 0.13rem;
	line-height: 1.45;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}
.new_and_now .postList > li:first-child{margin-bottom: 60px;}
.new_and_now .postList > li:first-child .ph{
	aspect-ratio: 1/1;
	width: 100%;
}
.new_and_now .postList > li:first-child .pc_flex{
	margin-top: 15px;
}
.new_and_now .postList > li:first-child .titArea{
}
.new_and_now .postList > li:first-child .titArea h2{
	font-size: 0.25rem;
	line-height: 1.1;
}
.new_and_now .postList > li:first-child .titArea .data{
	margin-top: 1em;
}
.new_and_now .postList > li:first-child .txt{
	font-size: 0.13rem;
	letter-spacing: 0.1em;
	line-height: 1.45;
	margin-top: 1.5em;
}


/*new_and_now post
=============================*/
.new_and_now.post #main .tit{
}
.new_and_now.post #contents .titArea{
	flex-direction: column;
	flex-direction: column-reverse;
	
}
.new_and_now.post #contents .titArea h1{
	font-size: 0.25rem;
	line-height: 1.25;
	margin-bottom: 1em;
}
.new_and_now.post #contents .titArea .ph{
	aspect-ratio: 750/960;
	width: calc(100% + 50px);
	margin-left: -25px;
	overflow: hidden;
	margin-bottom: 40px;
}

.new_and_now.post .postArea{
	font-size: 0.14rem;
	line-height: 1.75;
	letter-spacing: 0.08em;
}
.new_and_now.post .postArea img{
	max-width: 100% !important;
	height: auto !important;
}
.new_and_now.post .postArea > *{margin-top: 1em;}
.new_and_now.post .postArea figure{margin-top: 1.5em;}
.new_and_now.post .postArea > *:first-child{
	margin-top: 0;
}
.new_and_now.post .postArea h1,
.new_and_now.post .postArea h2,
.new_and_now.post .postArea h3,
.new_and_now.post .postArea h4{
	font-family: "Playfair Display", serif;
	font-optical-sizing: auto;
	font-weight: 500!important;
	font-style: normal;
}
.new_and_now.post .postArea h1,
.new_and_now.post .postArea h2{
	font-size: 0.24rem;
	line-height: 1.5;
	border-bottom: 1px solid #e8e8e8;
	padding-bottom: 0.5em;
	margin-top: 2em;
}
.new_and_now.post .postArea h3{
	font-size: 0.2rem;
	line-height: 1.5;
	color: var(--KTSU-BLACK);;
	margin-top: 2em;
}
.new_and_now.post .postArea h4{
	font-size: 0.2rem;
	line-height: 1.5;
	border-left: 3px solid #e8e8e8;
	padding-left: 0.5em;
	margin-top: 2em;
}
.new_and_now.post .postArea h5{
	line-height: 1.5;
	margin-top: 2em;
}
.new_and_now.post .postArea p a{
	text-decoration: underline;
}
.new_and_now.post .postArea figure.wp-block-image{
	isolation: isolate;
	overflow: hidden;
}
.new_and_now.post .postArea figure.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	aspect-ratio: 16/9;
	width: 100%;
	height: 100%;
}
/*
.new_and_now.post .postArea figure.wp-block-embed-youtube .wp-block-embed__wrapper {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
}

.new_and_now.post .postArea figure.wp-block-embed-youtube .wp-block-embed__wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}*/

/*引用
#entry .contentArea .wp-block-quote{
	border-left: 2px solid #CCC;
	padding-left: 1em;
}*/
.new_and_now.post .postArea > ul{list-style: disc;}
.new_and_now.post .postArea > ol{list-style: decimal;}
.new_and_now.post .postArea > ul > li{margin-left: 1.5em;}
.new_and_now.post .postArea > ol > li{margin-left: 1.5em;}

.new_and_now.post .postArea a.wp-block-file__button{
	background: #FFF;
	border: 1px solid #e8e8e8;
	color: var(--KTSU-BLACK);
}
.new_and_now.post .postArea a.wp-block-file__button:hover{
	opacity: 0.5;
}



.new_and_now.post .recomend{margin-top: 150px;}
.new_and_now.post .slickArea{
	position: relative;
	z-index: 10;
}
.new_and_now.post .slickArea > h2{
	text-align: center;
	font-size: 0.4rem;
	color: var(--KTSU-GOLD);
	margin-bottom: 1em;
}
.new_and_now.post .slickArea  > .inner{
	overflow: hidden;
}
.new_and_now.post .slickArea .slick{
	width: 100% ;
}
.new_and_now.post .slickArea .slick .slick-list{
	height: 100%;
}
.new_and_now.post .slickArea .slick .slick-track{
	display: -webkit-flex;
	display: flex;
	height: 100%;
}
.new_and_now.post .slickArea .slick .slick-track .slick-slide{
	margin:0 10px;
	height: 100%;
}
.new_and_now.post .slickArea .slick .slick-track .slick-slide > div{
	width: 100%;
	height: 100%;
}


.new_and_now.post .slickArea .slick a .ph{
	aspect-ratio: 1/1;
	width: 100%;
}
.new_and_now.post .slickArea .slick a .data{
	font-size: 0.12rem;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}
.new_and_now.post .slickArea .slick a .data .status{
	display: inline-block;
	margin-left: 0.5em;
	color: var(--KTSU-RED);
}
.new_and_now.post .slickArea .slick a h2.tit{
	font-size: 0.13rem;
	line-height: 1.45;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}

.new_and_now.post .slickArea .slick_bt a{
	position: absolute;
	top:50%;
	width: 60px;
	height: 60px;
	border: 1px solid var(--KTSU-BLACK);
	isolation: isolate;
	-webkit-border-radius: 9999px;
	border-radius: 9999px;
	background: #FFF;
	-webkit-transition: background 0.5s ease;
	transition: background 0.5s ease;
}
.new_and_now.post .slickArea .slick_bt a:hover{
	background: var(--KTSU-BLACK);
}
.new_and_now.post .slickArea a.slick_prev{
	left:-165px;
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
.new_and_now.post .slickArea a.slick_next{
	right:-165px;
}


/*=============================
  pyTrip
=============================*/
.pyTrip #main .tit{
	color: var(--KTSU-GOLD);
}
.pyTrip #main .tit .fs{
	display: block;
	font-size: 0.2rem;
}

/*access
=============================*/
.access #contents{
}
.access #contents > .inner{
	padding: 0 20px;
}
.access section#map h2{
	text-align: center;
	font-size: 0.5rem;
}
.access section:not(#map) h2{
	font-size: 0.35rem;
	margin-bottom: 1.25em;
	position: relative;
	align-items: flex-end;
}

.access section:not(#map) h2::before{
	content: '';
	mask-size: 100% 100%;
	background: var(--KTSU-BLACK);
	margin-right: 0.35em;
}
.access #train h2::before{
	width: 30px;
	height: 30px;
	-webkit-mask-image: url('../img/icon_train.svg');
	mask-image: url('../img/icon_train.svg');
}
.access #car h2::before{
	width: 30px;
	height: 30px;
	-webkit-mask-image: url('../img/icon_car.svg');
	mask-image: url('../img/icon_car.svg');
}


.access section:not(#map) h2 .icon{
	display: block;
	aspect-ratio: 1/1;
	height: 28px;
	position: absolute;
	top:7px;
	right:0;
	background: var(--KTSU-BLACK);
	isolation: isolate;
	-webkit-border-radius: 9999px;
	border-radius: 9999px;
}
.access section:not(#map) h2 .icon::before,
.access section:not(#map) h2 .icon::after{
	content: '';
	width: 14px;
	height: 1px;
	background: #FFF;
	position: absolute;
	top:50%;
	left:calc(50% - 7px);
}
.access section:not(#map) h2 .icon::after{
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transition: transform 0.5s ease;
	transition: transform 0.5s ease;
}
.access section:not(#map) h2.open .icon::after{
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
}



.access section .accessList{display: none;}
.access section .accessList li:nth-child(n+2){
	margin-top: 35px;
	padding-top: 35px;
	border-top: 1px solid var(--KTSU-BLACK);
}
.access section .accessList li img{
	width: 100%;
	height: auto;
}
.access section:not(#map){margin-top: 70px;}


.access #map h2{
	margin-bottom: 500px;
}
.access #map .map_pic{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 805px;
	z-index: -1;
	overflow: hidden;
}
.access #map .map_pic img{
	width: 1300px;
	height: auto;
	position: relative;
	left:calc(50% - 15px);
	bottom:100px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.access #map iframe{
	aspect-ratio: 650/685;
	width: 100%;
}
.access #map .link{
	text-align: center;
	margin-top: 1.5em;
}
.access #map .link a span{
	text-decoration: underline;
	letter-spacing: 0.05em;
}

/*pamph
=============================*/
.pamph #main .tit{
	font-size: 0.6rem;
}

.pamph #contents > .inner{
	padding: 0 25px;
}

.pamph .pamphList{
	flex-wrap: wrap;
	justify-content: space-between;
}
.pamph .pamphList li{
	width: 48%;
}
.pamph .pamphList li.hide{
	display: none;
}
.pamph .pamphList li:nth-child(n+3){margin-top: 1.5em;}
.pamph .pamphList li a{
	display: block;
}
.pamph .pamphList li a .ph{
	aspect-ratio: 1/1;
	overflow: hidden;
}
.pamph .pamphList li a .txt{
	font-size: 0.15rem;
	position: relative;
	padding-left: 30px;
	margin-top: 0.75em;
}
.pamph .pamphList li a .txt .icon_dl{
	width: 25px;
	position: absolute;
	top:-3px;
	left:0;
}
.pamph .bt_more{
	margin-top: 70px;
	margin-left: auto;
	margin-right: auto;
}

/*course
=============================*/
.course #main{
	margin-bottom: 90px;
	padding-right: 25px;
}
.course #main .tit{
	font-size: 0.75rem;
}
.course #main .txt01{
	font-size: 0.4rem;
	line-height: 1.1;
	text-align: center;
	color: var(--KTSU-GOLD);
	margin-top: 2em;
}
.course #main .txt02{
	font-size: 0.15rem;
	line-height: 1.65;
	margin-top: 2em;
	letter-spacing: 0.1em;
}

.course #contents > .inner{
	padding: 0 25px;
}

.course #contents .titArea{margin-bottom: 45px;}
.course #contents .titArea h2{
	color: var(--KTSU-GOLD);
}
.course #contents .titArea h2 span{
	display: block;
	text-align: center;
}
.course #contents .titArea h2 span.txt{
	font-size: 0.3rem;
}
.course #contents .titArea h2 span.num{
	font-size: 0.95rem;
	margin-top: -0.25em;
}
.course #contents .titArea h3{
	text-align: center;
	font-size: 0.4rem;
	line-height: 1.25;
	margin-top: 150px;
	position: relative;
}
.course #contents .titArea h3::before{
	content: '';
	width: 1px;
	height: 90px;
	display: block;
	position: absolute;
	bottom:calc(100% + 0.75em);
	left:50%;
	background: var(--KTSU-GOLD);
}
.course #contents .titArea .txt{
	text-align: center;
	font-size: 0.15rem;
	margin-top: 1.5em;
	line-height: 1.25;
}


.course .box .phOuter{
	aspect-ratio: 650/515;
	width: 100%;
	position: relative;
	overflow: hidden;
}
.course .box .caption {
	margin-top: 0.5em;
	font-size: 0.14rem;
	text-align: right;
}
.course .box:nth-of-type(n+3){
	margin-top: 90px;
}
.course .box .txtArea{
	margin-top: 30px;
}
.course .box .txtArea .timeSch li{position: relative;}
.course .box .txtArea .timeSch li:nth-child(odd),
.course .goleArea .gole{
	font-size: 0.2rem;
	padding: 1em 0.5em;
	color: #FFF;
	background: var(--KTSU-BLACK);
}
.course .box .txtArea .timeSch li.gold{background: var(--KTSU-GOLD);}
.course .box .txtArea .timeSch li:nth-child(odd) p{text-align: center;}
.course .box .txtArea .timeSch li:nth-child(odd) p.fs{font-size: 0.1rem;}
.course .box .txtArea .timeSch li:nth-child(odd) p:nth-child(n+2).fs{margin-top: 0.5em;}
.course .box .txtArea .timeSch li:nth-child(even){height: 100px;}
.course .box .txtArea .timeSch li:nth-child(even) p.txt{
	width: 50%;
	margin-left: auto;
	padding-left: 2.5em;
	font-size: 0.16rem;
}
.course .box .txtArea .timeSch li:nth-child(even) p.icon{
	position: absolute;
	top:0;
	left: calc(50% - 19px);
	width: 38px;
	height: 0;
	background: url(../img/icon_arrow.svg) no-repeat bottom center/100% auto;
	-webkit-transition: height 0.5s ease;
	transition: height 0.5s ease;
}
.course .box .txtArea.show .timeSch li:nth-child(even) p.icon{height: calc(100% - 5px);}
.course .box .txtArea.show .timeSch li:nth-child(2) p.icon {-webkit-transition: height 0.5s ease;transition: height 0.5s ease;}
.course .box .txtArea.show .timeSch li:nth-child(4) p.icon {-webkit-transition: height 0.5s 0.25s ease;transition: height 0.5s 0.25s ease;}
.course .box .txtArea.show .timeSch li:nth-child(6) p.icon {-webkit-transition: height 0.5s 0.5s ease;transition: height 0.5s 0.5s ease;}
.course .box .txtArea.show .timeSch li:nth-child(8) p.icon {-webkit-transition: height 0.5s 0.75s ease;transition: height 0.5s 0.75s ease;}
.course .box .txtArea.show .timeSch li:nth-child(10) p.icon{-webkit-transition: height 0.5s 1.0s ease;transition: height 0.5s 1.0s ease;}


.course .box .txtArea > p.fgo_l{
	font-size: 0.17rem;
	line-height: 1.65;
	margin-top: 2.5em;
}
.course .box .txtArea > p.fgo_l .fs{
	font-size: 0.13rem;
	margin-top: 2em;
}
.course .box .txtArea > p.fgo_b{
	font-size: 0.15rem;
	line-height: 1.8;
	margin-top: 3em;
}


.course .box .infoList {
	width: 100%;
	font-size: 0.15rem;
	line-height: 1.8;
	margin-top: 3em;
	flex-wrap: wrap;
	word-break: break-all;
}
.course .box .infoList dt{width: 25%;}
.course .box .infoList dd{width: 75%;padding-left: 1em;}

.course .box .infoList dt:nth-of-type(n+2),
.course .box .infoList dd:nth-of-type(n+2){
	border-top: 1px solid var(--KTSU-B5);
	margin-top: 0.5em;
	padding-top: 0.5em;
}
body:not(.langJp) .course .box .infoList dt:nth-of-type(n+2),
body:not(.langJp) .course .box .infoList dd:nth-of-type(n+2){
	padding-top: 0.75em;
}



.course .goleArea{
	margin-top: 60px;
}
.course .goleArea .gole{
	text-align: center;
	background: var(--KTSU-GOLD);
}
.course .goleArea .total{
	margin-top: 40px;
	text-align: center;
	font-size: 0.34rem;
}
.course .goleArea .total span.fs{
	font-size: 45%;
}



/*=============================
 what_to_see
=============================*/
.what_to_see #contents{
	display: grid;
}
.what_to_see .pListArea{
	grid-area: 1/1;
	position: sticky;
	top:70px;
	left:100vw;
	width: 0px;
	height: fit-content;
	margin-left: 0;
	margin-top: -130px;
	z-index: 100;
}

.what_to_see .pListArea h2{
	position: absolute;
	top:0;
	left:0em;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
	-webkit-transform-origin: 0% 0%;
	transform-origin: 0% 0%;
	color: #FFF;
	height: 20px;
	padding: 0em 1em;
	background: var(--KTSU-BLACK);
}
.what_to_see .pListArea h2 a{
	display: block;
	color: #FFF;
	padding: 0.5em 1em;
	background: var(--KTSU-BLACK);
}
.what_to_see .pListArea .fw_outer::before{
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	vertical-align: middle;
}

.what_to_see .pListArea .inner{
	display: inline-block;
	vertical-align: middle;
	position: relative;
	width: 100%;
	padding: 90px 0;
	background: var(--KTSU-BLACK);
}
.what_to_see .pListArea .inner .fw_close{
	top: 30px;
}
.what_to_see .pListArea .pList li a{
	height: 90px;
	padding-left: 50px;
	color: #FFF;
	font-size: 0.27rem;
	text-align: left;
	letter-spacing: 0.1em;
	position: relative;
	
	-webkit-transition:background 0.5s ease;
	transition:background 0.5s ease;
}
.what_to_see .pListArea .pList li a:hover,
.what_to_see .pListArea .pList li.current a{
	background: var(--KTSU-GOLD);
}
.what_to_see .pListArea .pList li a .fs{
	font-size: 0.12rem;
}
.what_to_see .pListArea .pList li a .icon_w{
	display: block;
	position: absolute;
	height: 100%;
	top:0;
	right: 10px;
	width: 30px;
}
.what_to_see .pListArea .pList li a .icon_w::before{
	height: 100%;
	-webkit-transition:background 0.5s ease;
	transition:background 0.5s ease;
}
.what_to_see .pListArea .pList li a:hover .icon_w::before,
.what_to_see .pListArea .pList li.current a .icon_w::before{background: var(--KTSU-BLACK);}



.what_to_see #contents > .inner{
	grid-area: 1/1;
	padding: 0 25px;
}
.what_to_see .postList li{width: 100%;}
.what_to_see .postList li:nth-child(n+2){margin-top: 30px;}
.what_to_see .postList li a{
	display: block;
	position: relative;
	overflow: hidden;
	flex-direction: row-reverse;
}
.what_to_see .postList li a .ph{
	aspect-ratio: 650/515;
}
.what_to_see .postList li a .txtArea{
	margin-top: 1em;
}
.what_to_see .postList li a:hover .txtArea{
}
.what_to_see .postList li a .txtArea .cat{
	width: 20%;
	padding-right: 1em;
	border-right: 1px solid var(--KTSU-BLACK);
	font-size: 0.12rem;
}
.what_to_see .postList li a .txtArea h2{
	width: 80%;
	padding-left: 1.5em;
}
.what_to_see .postList li a .txtArea h2 span{display: block;}
.what_to_see .postList li a .txtArea h2 .shopName{font-size: 0.21rem;}
.what_to_see .postList li a .txtArea h2 .prodName{font-size: 0.15rem;margin-top: 0.5em;}


.what_to_see .postList li a .hoverView{
	font-size: 0.14rem;
	line-height: 1.75;
	margin-top: 1em;
}


.what_to_see .bt_more{
	margin-top: 100px;
	margin-left: auto;
	margin-right: auto;
}



/*=============================
 about
=============================*/
#container.about{
	overflow: hidden;
	padding-bottom: 100px;
}
.about #main{
	height: 100svh;
	position: relative;
	overflow: hidden;
	padding: 45px 25px 50px;
}

.about #main .ph{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top:0;
	left:0;
	z-index: -1;
}
.about #main .ph::before{
	content: '';
	width: 100%;
	height: 100%;
	display: block;
	position: absolute;
	top:0;
	left:0;
	background: #DCDDDD;
	mix-blend-mode:multiply;
	z-index: 0;
}
.about #main .txtArea{
	color: #FFF;
	position: relative;
	z-index: 1;
}
.about #main .txtArea h1{
	font-size: 0.31rem;
	line-height: 1.25;
}
.about #main .txtArea .txt{
	font-size: 0.15rem;
	line-height: 1.65;
	margin-top: 2em;
}

.about #main .scroll {
	width: 36px;
	height: 50px;
	position: absolute;
	bottom:30px;
	z-index: 5;
	left:calc(50% - 18px);
	flex-direction: column;
	justify-content: flex-end;
	color: #FFF;
	letter-spacing: 0.05em;
}
.about #main .scroll::before{
	content: '';
	display: block;
	position: absolute;
	top:0;
	left:50%;
	width: 9px;
	height: 25px;
	background: url(../img/icon_scroll.svg) no-repeat bottom right/100% auto;
}
.about #main .scroll .txt{
	font-size: 0.11rem;
	text-align: center;
}

.about #ep01{padding-top: 50px;}
.about section > .inner{
	padding: 0 25px;
}
.about section .numArea{
}
.about section .numArea .numTxt{
}
.about section .numArea .numTxt span{
	display: block;
	text-align: center;
}
.about section .numArea span.txt{
	font-size: 0.12rem;
}
.about section .numArea span.num{
	font-size: 1.3rem;
	margin-top: -0.35em;
	letter-spacing: -0.05em;
	text-indent: -0.05em;
}
.about section h2{
	font-size: 0.24rem;
	text-align: center;
	line-height: 1.15;
	color: var(--KTSU-GOLD);
	margin-top: 1.5em;
}
.about #ep02 h2,
.about #ep04 h2{
}
.about #ep04 h2{
}
.about section:nth-of-type(n+2){margin-top: 100px;}
.about section .box{margin-top: 100px;}
.about section .box .ph{
	overflow: hidden;
	position: relative;
}
/*
.about section .box .txt.mt1 {margin-top: 1em;}
.about section .box .txt.mt3 {margin-top: 3em;}
.about section .box .txt.mt5 {margin-top: 5em;}
.about section .box .txt.mt10{margin-top: 10em;}
*/
.about section .box01{margin-top: 60px;}
.about section .box .txt{
	font-size: 0.17rem;
	line-height: 1.65;
	margin-top: 60px;
}
.about section .box .caption{
	font-size: 0.14rem;
	line-height: 1.5;
	margin-top: 1em;
	text-align: left;
}
.about section .box .ph{
	aspect-ratio: 650/440;
	width: 100%;
	overflow: hidden;
	position: relative;
}


/*=============================
  search
=============================*/
.search #contents {}
.search #contents > .inner{
	padding: 0 25px;
}

.search .postList {
	flex-wrap: wrap;
	justify-content: space-between;
}
.search .postList > li {
	width: 48%;
}
.search .postList > li:nth-child(n+3) {margin-top: 2em;}


.search .postList > li .ph{
	aspect-ratio: 1/1;
	width: 100%;
}
.search .postList > li .data{
	font-size: 0.12rem;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}
.search .postList > li .data .status{
	display: inline-block;
	margin-left: 0.5em;
	color: var(--KTSU-RED);
}
.search .postList > li h2.tit{
	font-size: 0.13rem;
	line-height: 1.45;
	letter-spacing: 0.1em;
	margin-top: 0.75em;
}