/* CSS Document */

#detail{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	margin: 32px 0 64px 0;
	overflow: hidden;
	@media (min-width: 1200px) {
		margin: 32px 0 96px 0;
	}
	&:before{
		content: "";
		grid-column: 1 / 4;
		grid-row: 1 / 4;
		background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1366 60"><path fill="%23f0f0e4" d="M0,59.81S0,15.33,0,15.33c0,0,105.52-9.8,113.02-10.51C163.29,0,214.69-1.23,265.51,1.25c114.63,5.59,228.35,29.73,341.86,19.29,46.5-4.28,90.85-14.26,137.46-18.18,97.94-8.22,195.9,10.83,294.48,16.24,57.01,3.13,114.85,1.66,171.1-4.36,28.98-3.1,58.89-7.45,88.66-6.01,24.05,1.16,66.94,7.09,66.94,7.09v44.48S0,60.23,0,59.81Z"/></svg>'), url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 1366 60"><path fill="%23f0f0e4" d="M0,0s0,40.35,0,40.35c0-.53,55.47-3.1,60.56-3.38,96.12-5.3,196.78-4.81,291.33,9.28,23.37,3.48,46.91,7.87,70.64,10.67,20.1,2.37,39.63,1.83,59.68,2.68,22.81.97,45.79.24,68.22-2.93,27.14-3.84,52.98-11.19,79.73-16.19,57.44-10.75,119.36-9.76,177.69-3.06,56.94,6.54,114.72,16.74,172.22,6.84,36.75-6.32,71.31-20.11,109.16-20.71,45.91-.73,87.1,18.17,131.18,27.13,68.6,13.95,145.6,6.5,145.6,6.5V0S-3,0,0,0Z"/></svg>'), url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 10 10" width="10" height="10"><rect fill="%23f0f0e4" width="10" height="10"/></svg>');
		background-repeat: no-repeat;
		background-position: center top, center bottom, center;
		background-repeat: no-repeat;
		background-size: 100% min(5vw, 64px), 100% min(5vw, 64px), 100% calc(100% - (min(5vw, 64px) * 2) + 2px);
	}
	&>*{
		grid-column: 2;
	}
	& h2{
		grid-row: 1;
		margin-top: 48px;
		@media (min-width: 1200px) {
			margin-top: 64px;
		}
	}
	#detailBody h3{
		grid-row: 2;
	}
	#detailPhoto{
		grid-row: 3;
	}
}

#detailHeader{
	background: #f0f0e4;
	display: contents;
	&>*{
		grid-column: 2;
	}
	& h2{
		justify-self: center;
		display: grid;
		grid-template-columns: 16px 1fr 16px;
		grid-row-gap: 8px;
		width: min(100%, 1008px);
		color: var(--color-theme);
		font-weight: 700;
		font-size: 24px;
		@media (min-width: 1200px) {
			grid-template-columns: 24px 1fr 24px;
			font-size: 32px;
		}
		&:before{
			content: "";
		}
		&:after{
			content: "";
			grid-column: 1 / 4;
			height: 2px;
			background: currentColor;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 2" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><line x1="0" y1="1" x2="2" y2="1"/></svg>') center left repeat-x;
			-webkit-mask-size: contain;
		}
	}
}

#detailPhoto{
	display: grid;
	margin-top: 32px;
	@media (min-width: 1200px) {
		margin-top: 48px;
	}
	& img{
		aspect-ratio: 3 / 2;
		object-fit: cover
	}
}

#detailPhotoSlide{
	display: grid;
	&:not(.slick-initialized){
		& li{
			grid-column: 1;
			grid-row: 1;
			justify-self: center;
		}
	}
	& li{
		display: grid;
		grid-row-gap: 8px;
		width: min(72vw, 720px);
		margin: 0 min(2.4vw, 24px);
		font-weight: 700;
		font-size: 15px;
		letter-spacing: 0.1em;
		&:after{
			content: attr(data-caption);
			justify-self: end;
			margin: 0 8px;
			font-weight: 700;
			font-size: 15px;
			letter-spacing: 0.1em;
		}
	}
	& img{
		border-radius: 16px;
	}
	.slick-list{
		overflow: visible;
	}
}

#detailPhotoSlideNav{
	display: grid;
	grid-template-columns: 48px 1fr 48px;
	margin-top: 32px;
	@media (min-width: 1200px) {
		margin-top: 48px;
	}
	&:not(.slick-initialized){
		grid-template-columns: repeat(2, 1fr);
		@media (min-width: 420px) {
			grid-template-columns: repeat(3, 1fr);
		}
		@media (min-width: 576px) {
			grid-template-columns: repeat(4, 1fr);
		}
		@media (min-width: 768px) {
			grid-template-columns: repeat(6, 1fr);
		}
		@media (min-width: 992px) {
			grid-template-columns: repeat(8, 1fr);
		}
		& li{
			grid-column: 1;
			grid-row: 1;
		}
	}
	& li{
		margin: 0 8px;
	}
	& a{
		pointer-events: none;
	}
	& img{
		border-radius: 8px;
	}
	.slick-list{
		grid-column: 2;
		&:only-child{
			.slick-track{
				transform: none !important;
			}
		}
	}
	.slick-arrow{
		align-self: center;
		background: transparent;
		border: none;
		color: var(--color-theme);
	}
}

#detailPhotoShow{
	justify-self: center;
	display: grid;
	grid-template-columns: 14px 1fr;
	align-items: center;
	width: min(100%, 220px);
	min-height: 48px;
	margin-top: 48px;
	padding: 4px 24px;
	background: var(--color-theme);
	border-radius: 24px;
	color: #fff;
	font-weight: 500;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-align: center;
	cursor: pointer;
	&:before{
		content: "";
		aspect-ratio: 1;
		background: currentColor;
		transform: translateX(-4px);
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 12"><path d="M.02,0v7.46l-.02.02.02.02v4.5h14V0H.02ZM1.02,11v-3.13l3.08-3.08,6.21,6.21H1.02ZM13.02,11h-1.29l-3.75-3.75,2.29-2.29,2.75,2.75v3.29ZM13.02,6.29l-2.75-2.75-3,3-3.17-3.17-3.08,3.08V1h12v5.29Z"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
	}
}

#detailBody{
	display: contents;
	&>*{
		grid-column: 2;
		justify-self: center;
		
	}
	& h3{
		width: min(calc(100% - 32px), 960px);
		margin-top: 16px;
		font-weight: 700;
		font-size: 18px;
		letter-spacing: 0.1em;
		@media (min-width: 1200px) {
			font-size: 20px;
		}
	}
	& h3+div{
		width: min(100%, 960px);
		margin-top: 48px;
		@media (min-width: 1200px) {
			margin-top: 64px;
		}
	}
}

#detailMovie{
	justify-self: center;
	width: min(100%, 720px);
	margin-top: 64px;
	@media (min-width: 1200px) {
		margin-top: 96px;
	}
	& h3{
		display: none;
	}
	& iframe{
		aspect-ratio: 16 / 9;
		width: 100%;
		height: auto;
		border-radius: 16px;
	}
}

#detailData{
	display: grid;
	grid-row-gap: 24px;
	margin-top: 64px;
	@media (min-width: 1200px) {
		grid-row-gap: 32px;
		margin-top: 96px;
	}
	& h3{
		justify-self: center;
		display: grid;
		grid-template-columns: 16px auto 16px;
		grid-row-gap: 8px;
		color: var(--color-theme);
		font-weight: 700;
		font-size: 20px;
		letter-spacing: 0.2em;
		text-align: center;
		&:before{
			content: "";
		}
		&:after{
			content: "";
			grid-column: 1 / 4;
			height: 2px;
			background: var(--color-theme);
			border-radius: 1px;
		}
		@media (min-width: 1200px) {
			font-size: 24px;
		}
	}
	& h3+div{
		display: grid;
		grid-gap: 8px 0;
		justify-self: center;
		width: min(100%, 960px);
		@media (min-width: 576px) {
			grid-template-columns: auto 1fr;
			&:after{
				grid-column: 1 / 3;
			}
		}
		&:after{
			content: "";
			margin-top: 8px;
			height: 2px;
			background: var(--color-theme);
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 2" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><line x1="0" y1="1" x2="2" y2="1"/></svg>') center left repeat-x;
			-webkit-mask-size: contain;
		}
		&>div{
			display: contents;
			&:before{
				content: "";
				margin: 8px 0;
				height: 2px;
				background: var(--color-theme);
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 2" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><line x1="0" y1="1" x2="2" y2="1"/></svg>') center left repeat-x;
				-webkit-mask-size: contain;
			}
			@media (min-width: 576px) {
				&:before{
					grid-column: 1 / 3;
				}
			}
		}
	}
	& h3+div+div{
		justify-self: center;
		padding-left: 1em;
		text-indent: -1em;
	}
	& h4{
		color: var(--color-theme);
		font-weight: 900;
		font-size: 14px;
		letter-spacing: 0.1em;
		@media (min-width: 576px) {
			max-width: 240px;
			padding: 0 24px;
		}
	}
	& h4+div{
		font-weight: 500;
		font-size: 14px;
		letter-spacing: 0.05em;
		@media (min-width: 576px) {
			padding: 0 24px;
		}
		&>a{
			display: grid;
			grid-template-columns: 18px 1fr;
			column-gap: 8px;
			color: #bfa108;
			&:before{
				content: "";
				aspect-ratio: 1;
				background: currentColor;
				transform: translateY(0.2em);
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 18 18" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px;"><rect x="5.5" y="1.5" width="11" height="11"/><polyline points="1 5 1 17 13 17"/></svg>') center no-repeat;
				-webkit-mask-size: contain;
			}
		}
	}
}

#detailTag{
	order: 1;
	grid-column: 1 / 4;
	display: grid;
	grid-template-columns: 1fr min(var(--wrap-fit), 640px) 1fr;
	grid-row-gap: 24px;
	padding: 64px 0;
	background: #f0f0e4;
	@media (min-width: 1200px) {
		padding: 80px 0;
	}
	&>*{
		grid-column: 2;
	}
	& h3{
		display: none;
	}
	& h3+div{
		display: grid;
		grid-gap: 16px 24px;
		@media (min-width: 576px) {
			grid-template-columns: auto 1fr;
			grid-row-gap: 32px;
		}
		&>div{
			display: contents;
		}
	}
	& h4{
		align-self: start;
		display: grid;
		grid-template-columns: auto 1fr;
		column-gap: 16px;
		color: var(--color-theme);
		font-weight: 900;
		letter-spacing: 0.05em;
		@media (min-width: 576px) {
			max-width: 16em;
			min-width: 8em;
		}
		&:after{
			content: "";
			min-width: 48px;
			margin-top: 0.75em;
			height: 2px;
			background: currentColor;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 6 2" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><line x1="0" y1="1" x2="2" y2="1"/></svg>') center left repeat-x;
			-webkit-mask-size: contain;
		}
	}
	& ul{
		display: flex;
		flex-wrap: wrap;
		grid-gap: 8px;
	}
	& li{
		display: contents;
	}
	& a{
		display: grid;
		grid-template-columns: 1fr 10px;
		align-items: center;
		min-height: 24px;
		padding: 0 12px;
		background: #fff;
		border: 1px solid currentColor;
		border-radius: 12px;
		color: inherit;
		font-weight: 500;
		font-size: 14px;
		text-decoration: none;
		&:after{
			content: "";
			aspect-ratio: 1;
			background: currentColor;
			transform: translateX(4px);
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 10 10" style="fill: none; stroke: black; stroke-linecap: round; stroke-miterlimit: 10;"><polyline points="3.25 9 7 5.13 3 1"/></svg>') center no-repeat;
			-webkit-mask-size: contain;
		}
	}
}

#detailFooter{
	display: contents;
	&>*{
		grid-column: 2;
	}
}

#detailMap{
	grid-column: 1 / 4;
	margin-top: 64px;
	@media (min-width: 1200px) {
		margin-top: 96px;
	}
	& iframe{
		width: 100%;
		height: min(75vh, 560px);
		background: #f2f2f2;
	}
}

#recommend{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	grid-row-gap: 56px;
	margin-bottom: 64px;
	overflow: hidden;
	@media (min-width: 1200px) {
		margin-bottom: 96px;
	}
	&>*{
		grid-column: 2;
	}
	& h2{
		justify-self: start;
		position: relative;
		display: grid;
		grid-template-columns: 1fr 40px;
		grid-row-gap: 8px;
		margin-top: 8px;
		color: var(--color-theme);
		font-weight: 700;
		font-size: 20px;
		letter-spacing: 0.1em;
		&:before,
		&:after{
			content: "";
			order: 1;
			background: var(--color-theme);
		}
		&:before{
			grid-column: 2;
			grid-row: 1 / 3;
			align-self: start;
			aspect-ratio: 1;
			transform: translateY(-20%);
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 40"><path d="M17.88,10.3c.03-.41-.09-.81-.34-1.13-.65-.86-1.87-.71-2.48,0-.58.67-1.29,1.21-1.96,1.78-.46.39-.62,1.06-.42,1.67.01.04.03.07.04.12.05.13.12.25.21.36.25.33.59.54.97.59.83.12,1.69-.86,2.26-1.34l1.2-1.03c.29-.25.47-.61.5-1.02ZM30.08,18.99v.03c.17.37.44.67.78.84.35.18.75.2,1.1.06.95-.37,1.99-.65,2.91-1.09.7-.34,1.11-1.13.82-1.95-.24-.67-1.01-1.29-1.68-1.05-1.06.38-2.11.8-3.17,1.21-.71.27-1.05,1.1-.79,1.88l.02.06ZM19.68,6.97c.05.13.12.25.21.37.73.96,1.63.69,2.38,0,.69-.63,1.4-1.25,2.11-1.87.85-.73,4.69-3.18,3.74-4.7-1.57-2.52-4.65,1.78-5.83,2.59-.59.4-1.06.81-1.59,1.28-.22.18-.43.37-.65.55-.46.39-.62,1.06-.42,1.67.01.04.03.08.04.11ZM25.77,21.93c.24-.68,0-1.3-.47-1.81-.12-.12-.24-.25-.38-.33-.73-.37-1.6.3-2.24.55-.69.27-1.39.54-2.08.81l-2.93,1.13c-.7.27-1.05,1.09-.79,1.89l.04.1c.61,1.5,1.77.83,2.75.44,1.21-.49,2.43-.98,3.64-1.47.77-.31,2.16-.41,2.48-1.31ZM39.99,34.28c-.04-.41-.23-.78-.53-1.06-.3-.27-.67-.41-1.06-.38l-2.47.17c-.38.02-.72.21-.96.51-.24.31-.34.7-.3,1.12.01.1.03.2.06.29,0,0,0,.01,0,.02.44,1.42,1.82,1.08,2.84,1.03.39-.02.77-.05,1.16-.08.78-.05,1.34-.78,1.25-1.62ZM31.27,33.05c-.85-.08-1.73.08-2.58.09-.98.02-1.97.03-2.95.05-1.07.02-2.91-.55-3.83-.35-1.2.26-1.62,1.96-.7,2.93.94.99,3.16.5,4.28.51,1.61-.04,3.27-.26,4.88-.15,1.04.07,2.38-.17,2.25-1.63-.07-.78-.63-1.38-1.35-1.44Z"/></svg>') center repeat-x;
			-webkit-mask-size: contain;
		}
		&:after{
			margin-left: -130px;
			height: 3px;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 3" style="fill: none; stroke: black; stroke-linecap: round; stroke-miterlimit: 10; stroke-width: 3px;"><line x1="4.5" y1="1.5" x2="7.5" y2="1.5"/></svg>') center right repeat-x;
			-webkit-mask-size: contain;
		}
		@media (min-width: 1200px) {
			font-size: 24px;
		}
		@media (min-width: 1400px) {
			justify-self: center;
			padding-left: 40px;
			text-align: center;
			&:after{
				margin-left: 0px;
			}
		}
	}
	& h2+div{
		display: grid;
		&>section:not([class]),
		& span>section{
			grid-column: 1;
			grid-row: 1;
			position: relative;
			display: grid;
			align-content: start;
			grid-row-gap: 16px;
			&:not(:has(figure)):before{
				content: "";
				grid-column: 1;
				grid-row: 1;
				aspect-ratio: 3 / 2;
				border-radius: 16px;
				background: var(--dummy);
				background-size: cover;
			}
		}
		&:before {
			aspect-ratio: 3 / 2;
		}
	}
	& h3{
		order: 1;
		margin: 0 8px;
		font-weight: 900;
		letter-spacing: 0.05em;
	}
	& h3+div{
		display: contents;
		& a{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			font-size: 0;
			z-index: 1;
		}
	}
	& figure{
		grid-column: 1;
		grid-row: 1;
		& img{
			aspect-ratio: 3 / 2;
			border-radius: 16px;
			object-fit: cover;
		}
	}
}

.slide{
	display: grid;
	&:before {
		content: "";
		grid-column: 1;
		grid-row: 1;
		width: calc(100% - 64px);
	}
	@media (min-width: 576px) {
		&:before {
			width: calc(50% - 48px);
		}
	}
	@media (min-width: 992px) {
		&:before {
			width: calc(33.33% - 32px);
		}
	}
	.slick-list {
		grid-column: 1;
		grid-row: 1 / 3;
		padding: 0 24px;
		overflow: visible;
	}
	.slick-track {
		display: flex;
		&:after {
			content: none;
		}
	}
	.slick-slide {
		display: grid;
		height: auto;
		margin: 0 12px;
	}
	.slick-arrow {
		grid-column: 1;
		grid-row: 1;
		align-self: center;
		z-index: 1;
	}
	.slick-prev {
	}
	.slick-next {
		justify-self: end;
	}
}

.slick-arrow{
	all: unset;
	position: relative;
	display: block;
	aspect-ratio: 1;
	width: 48px;
	background: #fff;
	border-radius: 100%;
	border: 2px solid currentColor;
	font-size: 0;
	&:before{
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: currentColor;
		-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 48 48"><polyline points="21 32 29 24 21 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2.4px;"/></svg>') center no-repeat;
		-webkit-mask-size: contain;
	}
	&.slick-disabled{
		visibility: hidden;
	}
	&.slick-prev{
		&:before{
			transform: scale(-1, 1);
		}
	}
}





