/* CSS Document */

#header{
	@media (min-width: 1200px) {
		.scrollTop &{
			border: none;
		}
	}
}

#siteName{
	@media (min-width: 1200px) {
		.scrollTop &{
			position: relative;
			width: clamp(240px, calc(280 / 1400 * 100vw), 280px);
			align-self: start;
			& a{
				position: absolute;
				top: -8px;
				left: 0;
				aspect-ratio: 1;
				width: 100%;
				height: auto;
				background: #fff url("/common/images/logo.vt.svg") no-repeat center / 65%;
				border-radius: 0 0 24px 24px;
			}
		}
	}
}

#pagePath{
	@media (max-width: 1199.98px) {
		display: none;
	}
	@media (min-width: 1200px) {
		grid-template-columns: 1fr var(--wrap-fit) 1fr;
		width: min(100%, 1360px);
		margin: 24px auto 0 auto;
		border-top: 1px solid #b3b3b3;
		grid-row: 3;
	}
	& li:last-child a{
		text-decoration: none;
		pointer-events: none;
	}
}

#main{
	@media (min-width: 1200px) {
		display: contents;
	}
}

#hero{
	overflow: hidden;
	margin-top: 8px;
	@media (min-width: 1200px) {
		margin-top: 16px;
	}
}

#heroPhoto{
	display: grid;
	grid-template-columns: auto 1fr auto;
	@media (min-width: 1200px) {
		width: min(var(--wrap-fit), 1120px);
		margin: 0 auto;
	}
	&:before{
		content: "";
		aspect-ratio: 1120 / 540;
		grid-column: 1 / 4;
		grid-row: 1;
		visibility: hidden;
	}
	&>dl{
		grid-column: 1 / 4;
		grid-row: 1;
		&:nth-child(n+2){
			visibility: hidden;
		}
	}
	& dl{
		display: grid;
		grid-row-gap: 16px;
		margin: 0 10px;
	}
	& dt{
		font-size: clamp(16px, calc(24 / 768 * 100vw), 24px);
		letter-spacing: 0.18em;
		text-align: center;
	}
	& dd{
		display: contents;
		& a{
			grid-column: 1;
			grid-row: 1;
			display: block;
			z-index: 1;
		}
		& picture{
			grid-column: 1;
			grid-row: 1;
			display: grid;
			&>*{
				grid-column: 1;
				grid-row: 1;
			}
		}
		& img{
			aspect-ratio: 390 / 590;
			object-fit: cover;
			@media (min-width: 576px) {
				aspect-ratio: 3 / 2;
			}
			@media (min-width: 1200px) {
				aspect-ratio: 1120 / 540;
				border-radius: 10px;
			}
		}
	}
	.slick-list{
		grid-column: 1 / 4;
		grid-row: 1 / 3;
		margin: 0 -10px;
		overflow: visible;
	}
	.slick-arrow{
		all: unset;
		align-self: center;
		grid-row: 1;
		position: relative;
		z-index: 1;
		aspect-ratio: 36 / 80;
		width: 40px;
		border-radius: 8px;
		background: rgba(255, 255, 255, 0.6);
		font-size: 0;
		cursor: pointer;
		&:before{
			content: "";
			position: absolute;
			top: 0;
			width: calc(100% - 8px);
			height: 100%;
			background: var(--color);
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px;"><polyline points="8 4 16 12 8 20"/></svg>') no-repeat center / 24px;
		}
	}
	.slick-prev{
		grid-column: 1;
		transform: translateX(-8px);
		&:before{
			right: 0;
			transform: scale(-1, 1);
		}
	}
	.slick-next{
		grid-column: 3;
		transform: translateX(8px);
		&:before{
			left: 0;
		}
	}
	.slick-dots{
		grid-column: 1 / 4;
		grid-row: 3;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: center;
		grid-gap: 16px clamp(24px, calc(32 / 576 * 100vw), 32px);
		margin-top: 24px;
		&:has(li:only-child){
			display: none;
			}
		li{
			display: contents;
			}
		button{
			all: unset;
			box-sizing: border-box;
			aspect-ratio: 1;
			width: 9px;
			background: #b3b3b3;
			border-radius: 100%;
			font-size: 0;
			overflow: hidden;
			.slick-active &{
				background: var(--color-theme-sub);
			}
		}
	}
}

#heroMovie{
	position: relative;
	overflow: hidden;
	aspect-ratio: 390 / 590;
	@media (min-width: 576px) {
		aspect-ratio: 3 / 2;
	}
	@media (min-width: 1200px) {
		aspect-ratio: 1120 / 540;
	}
	[class^="moviePlayer_"]{
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-position: center center !important;
		background-attachment: inherit !important;
		background-size: cover !important;
		pointer-events: none;
	}
	.inline-YTPlayer,
	.ytp{
		position: static !important;
	}
	.playerBox{
		top: 50% !important;
		left: 50% !important;
		margin: 0 !important;
		transform: translate(-50%, -50%);
	}
}

#emergency{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	margin-top: 16px;
	&>*{
		grid-column: 2;
	}
	& h2{
		display: none;
	}
	& h2+div{
		display: grid;
		grid-row-gap: 24px;
	}
	& section{
		display: grid;
		grid-row-gap: 16px;
		padding: 24px;
		background: #f2f2f2;
		border-radius: 10px;
	}
	& h3{
		display: grid;
		grid-template-columns: auto auto;
		justify-content: center;
		align-items: center;
		column-gap: 16px;
		font-size: clamp(16px, calc(20 / 768 * 100vw), 20px);
		letter-spacing: 0.1em;
		&:before{
			content: "";
			aspect-ratio: 1;
			width: 40px;
			background: #1560bd;
			-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="M20,27.96c-1.31,0-2.38,1.07-2.38,2.39s1.06,2.39,2.38,2.39,2.37-1.07,2.37-2.39c0-1.32-1.06-2.39-2.37-2.39ZM20,11.87c-1.31,0-2.38,1.07-2.38,2.39l.91,10.82c0,.81.65,1.47,1.46,1.47s1.46-.66,1.46-1.47l.91-10.82c0-1.32-1.06-2.39-2.37-2.39ZM39.46,31.9L23.5,4.03c-.72-1.26-2.06-2.03-3.5-2.03s-2.78.78-3.5,2.03L.54,31.9c-.72,1.26-.72,2.81,0,4.07.72,1.26,2.06,2.03,3.5,2.03h31.93c1.44,0,2.78-.78,3.5-2.03.72-1.26.72-2.81,0-4.07ZM36.29,33.89c-.23.4-.66.65-1.12.65H4.83c-.46,0-.89-.25-1.12-.65-.23-.4-.23-.9,0-1.3L18.88,6.11c.23-.4.66-.65,1.12-.65s.89.25,1.12.65l15.17,26.47c.23.4.23.9,0,1.3Z"/></svg>') no-repeat center / contain;
		}
	}
	& h3+div{
		display: flex;
		justify-content: center;
	}
	& a{
		display: grid;
		grid-template-columns: auto auto;
		justify-content: center;
		align-items: center;
		column-gap: 16px;
		min-width: min(100%, 420px);
		min-height: clamp(48px, calc(56 / 768 * 100vw), 56px);
		padding: 8px 16px;
		border-radius: clamp(24px, calc(28 / 768 * 100vw), 28px);
		background: #1560bd;
		color: #fff;
		font-weight: 700;
		font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
		letter-spacing: 0.1em;
		text-align: center;
		text-decoration: none;
		&:before,
		&:after{
			content: "";
			aspect-ratio: 1;
			grid-column: 2;
			grid-row: 1;
			align-self: center;
			justify-self: center;
		}
		&:before{
			width: clamp(24px, calc(32 / 768 * 100vw), 32px);
			background: currentColor;
			border-radius: 100%;
		}
		&:after{
			width: 16px;
			background: inherit;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="2 8 14 8"/><polyline points="10 4 14 8 10 12"/></svg>') no-repeat center / contain;
			@media (max-width: 767.98px) {
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="4 8 12 8"/><polyline points="9 5 12 8 9 11"/></svg>');
			}
		}
		&:hover{
			background: var(--color);
			border-color: transparent;
			color: #fff;
		}
	}
}

#subsidy{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	margin-top: clamp(64px, calc(80 / 1200 * 100vw), 80px);
	&>*{
		grid-column: 2;
	}
	& h2{
		display: none;
	}
	& h2+div{
		display: flex;
		justify-content: center;
	}
	& a{
		display: grid;
		grid-template-columns: auto auto;
		justify-content: center;
		align-items: center;
		column-gap: 16px;
		min-width: min(100%, 720px);
		min-height: clamp(80px, calc(96 / 768 * 100vw), 96px);
		padding: 8px 16px;
		border-radius: clamp(40px, calc(48 / 768 * 100vw), 48px);
		background: #f18241;
		color: #fff;
		font-weight: 700;
		font-size: clamp(18px, calc(24 / 768 * 100vw), 24px);
		letter-spacing: 0.1em;
		text-align: center;
		text-decoration: none;
		&:before,
		&:after{
			content: "";
			aspect-ratio: 1;
			grid-column: 2;
			grid-row: 1;
			align-self: center;
			justify-self: center;
		}
		&:before{
			width: clamp(24px, calc(32 / 768 * 100vw), 32px);
			background: currentColor;
			border-radius: 100%;
		}
		&:after{
			width: 16px;
			background: inherit;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="2 8 14 8"/><polyline points="10 4 14 8 10 12"/></svg>') no-repeat center / contain;
			@media (max-width: 767.98px) {
				-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="4 8 12 8"/><polyline points="9 5 12 8 9 11"/></svg>');
			}
		}
		&:hover{
			background: var(--color);
			border-color: transparent;
			color: #fff;
		}
	}
}

#topics{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	margin-top: clamp(64px, calc(80 / 1200 * 100vw), 80px);
	&>*{
		grid-column: 2;
	}
	& h2{
		font: 700 clamp(28px, calc(32 / 768 * 100vw), 32px) var(--font-title);
		letter-spacing: 0.1em;
		text-align: center;
	}
	#topicsList{
		margin-top: clamp(16px, calc(40 / 1200 * 100vw), 40px);
	}
	#topicsLink{
		margin-top: clamp(32px, calc(48 / 1200 * 100vw), 48px);
	}
}

#topicsList{
	& section{
		position: relative;
		display: flex;
		flex-wrap: wrap;
		column-gap: clamp(8px, calc(16 / 768 * 100vw), 16px);
		padding: clamp(16px, calc(24 / 768 * 100vw), 24px);
		&:has(figure){
			min-height: clamp(76px, calc(148 / 768 * 100vw), 116px);
			padding-right: clamp(80px, calc(160 / 1200 * 100vw), 160px);
		}
		&:has(a):hover{
			& h3{
				color: var(--color-theme-sub);
			}
		}
		&:nth-of-type(even){
			background: #f2f2f2;
		}
	}
	& h3{
		order: 1;
		width: 100%;
		margin-top: 8px;
		font-size: clamp(14px, calc(18 / 768 * 100vw), 18px);
		transition: color 0.2s ease-out;
	}
	& h3+div{
		display: contents;
		& time{
			align-self: center;
			font-size: clamp(12px, calc(16 / 768 * 100vw), 16px);
		}
		& ul{
			display: flex;
			flex-wrap: wrap;
			align-items: center;
			column-gap: clamp(4px, calc(8 / 768 * 100vw), 8px);
		}
		& li{
			display: flex;
			align-items: center;
			font-size: clamp(10px, calc(14 / 768 * 100vw), 14px);
			&[class]{
				min-width: clamp(20px, calc(32 / 768 * 100vw), 32px);
				padding: 0.25em 1em;
				background: var(--color-tagNew);
				border-radius: clamp(10px, calc(16 / 768 * 100vw), 16px);
				color: #fff;
				font-size: clamp(10px, calc(16 / 768 * 100vw), 16px);
				&.tagCheck{
					background: var(--color-tagCheck);
				}
			}
			&:not([class]){
				&:before,
				&:after{
					content: "-";
				}
			}
		}
		& a{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			font-size: 0;
		}
	}
	& figure{
		position: absolute;
		right: 8px;
		top: 50%;
		width: clamp(60px, calc(150 / 1200 * 100vw), 150px);
		transform: translateY(-50%);
		& img{
			aspect-ratio: 3 / 2;
			object-fit: cover;
			border-radius: clamp(4px, calc(10 / 768 * 100vw), 10px);
		}
	}
}

#topicsLink{
	display: flex;
	justify-content: center;
	& a{
		display: grid;
		grid-template-columns: auto auto;
		justify-content: center;
		align-items: center;
		column-gap: 1em;
		width: min(100%, 400px);
		min-height: clamp(64px, calc(80 / 768 * 100vw), 80px);
		padding: 0.5em 1.5em;
		background: #fff;
		border: 1px solid #b3b3b3;
		border-radius: clamp(32px, calc(40 / 768 * 100vw), 40px);
		color: inherit;
		font-size: clamp(14px, calc(20 / 768 * 100vw), 20px);
		letter-spacing: 0.1em;
		text-align: center;
		text-decoration: none;
		&:before,
		&:after{
			content: "";
			grid-column: 2;
			grid-row: 1;
			aspect-ratio: 1;
			width: clamp(24px, calc(32 / 768 * 100vw), 32px);
		}
		&:before{
			background: currentColor;
			border-radius: 100%;
		}
		&:after{
			background: #fff;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" style="fill: none; stroke: white; stroke-linecap: round; stroke-linejoin: round;"><polyline points="10 16 22 16"/><polyline points="18 12 22 16 18 20"/></svg>') no-repeat center / 32px;
		}
		&:hover{
			background: var(--color);
			border-color:transparent;
			color: #fff;
			&:after{
				background: var(--color);
			}
		}
	}
}

#pickup{
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	margin-top: clamp(80px, calc(120 / 1200 * 100vw), 120px);
	padding: clamp(64px, calc(80 / 1200 * 100vw), 80px) 0 clamp(80px, calc(120 / 1200 * 100vw), 120px) 0;
	background: #fcf6bb;
	overflow: hidden;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none" viewBox="0 0 10 10"><rect width="10" height="10"/></svg>') no-repeat center bottom / 100% calc(100% - clamp(6px, calc(12 / 768 * 100vw), 12px)), url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 90 12"><path d="M69.84,6.58c-5.79-3.09-12.35-6.58-24.84-6.58s-19.05,3.5-24.84,6.58c-5.45,2.91-10.15,5.42-20.16,5.42h90c-10.01,0-14.71-2.51-20.16-5.42Z"/></svg>') repeat-x center top / auto clamp(6px, calc(12 / 768 * 100vw), 12px);
	&>*{
		grid-column: 2;
	}
	& h2{
		justify-self: center;
		aspect-ratio: 100 / 21;
		width: clamp(113px, calc(142 / 576 * 100vw), 142px);
		background: currentColor;
		font-size: 0;
		 -webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 142.65 29.79"><path d="M26.5,8c0-.67-.19-.8-.93-.8h-1.86c-.74,0-.93.13-.93.8,0,.22.06,2.88.06,4.32v6.18c0,1.44-.06,4.1-.06,4.32,0,.67.19.8.93.8h1.86c.74,0,.93-.13.93-.8,0-.22-.06-2.88-.06-4.32v-6.18c0-1.44.06-4.1.06-4.32ZM24.74.7c-1.54,0-2.4,1.12-2.4,2.43s.96,2.14,2.21,2.14c1.54,0,2.4-1.12,2.4-2.53,0-1.22-.96-2.05-2.21-2.05ZM138.85,15.84c.03.8.19.96.99.96h1.02c.8,0,.96-.16.99-.96l.19-7.68c.06-2.34.22-5.89.22-6.53,0-.54-.19-.67-.9-.67h-2.08c-.7,0-.9.13-.9.67,0,.64.16,4.19.22,6.3l.22,7.9ZM8.45.96h-3.26c-1.5,0-4.03-.06-4.26-.06C.22.9.03,1.15.03,1.92c.03,1.82.06,3.81.06,5.38v9.92c0,1.86-.1,5.38-.1,5.6,0,.67.19.8.93.8h1.98c.74,0,.93-.13.93-.8,0-.22-.1-3.74-.1-5.6v-.74c0-.8.16-.96.96-.96h2.53c5.92,0,8.51-3.36,8.51-7.93S12.99.96,8.45.96ZM7.23,12.35h-2.53c-.8,0-.96-.16-.96-.96v-6.18c0-.8.16-.96.96-.96h3.07c2.37,0,4.19.9,4.19,3.68,0,3.17-2.08,4.42-4.74,4.42ZM45.5,7.58c-.93-.35-2.08-.54-3.2-.54-5.7,0-8.8,3.87-8.8,8.99,0,3.97,2.27,7.78,7.78,7.78,1.47,0,2.91-.32,4-.8.45-.22.67-.38.67-.67,0-.16-.06-.35-.16-.61l-.45-1.12c-.19-.51-.29-.7-.54-.7-.16,0-.35.06-.64.19-.67.32-1.54.51-2.37.51-3.1,0-4.58-2.24-4.58-4.67,0-3.17,2.08-5.44,5.18-5.44.7,0,1.34.16,1.92.38.29.13.48.19.64.19.26,0,.35-.19.54-.7l.58-1.57c.1-.26.13-.45.13-.58-.03-.32-.22-.48-.7-.64ZM64.41,18.37l-2.56-4.29c-.19-.32-.29-.54-.29-.74,0-.26.16-.45.48-.8l.93-.96c1.12-1.18,2.3-2.37,3.65-3.71.13-.13.19-.26.19-.38,0-.16-.19-.29-.58-.29h-2.46c-.83,0-1.09.13-1.6.74-.9,1.02-1.76,1.95-2.66,2.85l-2.24,2.33c-.22.22-.38.35-.48.35-.13,0-.19-.19-.19-.61v-7.74c0-1.44.06-4.1.06-4.32,0-.67-.19-.8-.93-.8h-1.79c-.74,0-.93.13-.93.8,0,.22.06,2.88.06,4.32v13.38c0,1.44-.06,4.1-.06,4.32,0,.67.19.8.93.8h1.79c.74,0,.93-.13.93-.8,0-.22-.06-2.72-.06-4,0-.51.03-.64.29-.93l1.34-1.41c.26-.26.45-.42.61-.42.19,0,.35.19.54.54l1.38,2.3c.74,1.22,1.47,2.53,2.21,3.87.38.71.58.83,1.41.83h2.3c.48,0,.7-.06.7-.26,0-.13-.1-.29-.26-.54-1.06-1.66-1.98-3.17-2.72-4.45ZM140.45,19.2c-1.54,0-2.4,1.15-2.4,2.53,0,1.25.93,2.08,2.18,2.08,1.57,0,2.43-1.15,2.43-2.43s-.96-2.18-2.21-2.18ZM113.82,7.01c-1.63,0-3.1.61-4.22,1.41-.22.16-.38.22-.48.22-.16,0-.22-.16-.26-.58-.03-.74-.16-.86-.9-.86h-1.57c-.74,0-.93.13-.93.8,0,.22.06,2.88.06,4.32v12.35c0,1.44-.06,4.1-.06,4.32,0,.67.19.8.93.8h1.86c.74,0,.93-.13.93-.8,0-.22-.06-2.88-.06-4.32v-.16c0-.64.06-.83.48-.83.13,0,.26,0,.45.03.42.06.83.1,1.28.1,4.48,0,9.15-2.91,9.15-9.31,0-4.54-2.59-7.49-6.66-7.49ZM111.39,20.77c-.51,0-.96-.03-1.34-.1-.74-.13-.93-.35-.93-1.12v-6.66c0-.7.16-.99.74-1.44.86-.61,1.86-.99,2.98-.99,2.27,0,3.94,1.63,3.94,4.51,0,3.74-2.66,5.79-5.38,5.79ZM97.6,8c0-.67-.19-.8-.93-.8h-1.86c-.74,0-.93.13-.93.8,0,.22.06,2.88.06,4.29v5.79c0,.7-.16.99-.7,1.44-.99.74-2.02,1.06-3.01,1.06-2.11,0-3.14-1.31-3.14-3.26v-5.02c0-1.41.06-4.06.06-4.29,0-.67-.19-.8-.93-.8h-1.86c-.74,0-.93.13-.93.8,0,.22.06,2.88.06,4.29v5.79c0,3.55,2.21,5.73,5.5,5.73,1.73,0,3.23-.58,4.45-1.47.22-.16.38-.22.48-.22.16,0,.19.16.22.58.03.83.19.93.96.93h1.54c.74,0,.93-.13.93-.8,0-.22-.06-2.88-.06-4.32v-6.21c0-1.41.06-4.06.06-4.29Z"/></svg>') no-repeat center / contain;
	}
	#pickupList{
		grid-column: 1 / 4;
		justify-self: center;
		width: min(var(--wrap-fit), 1360px);
		margin-top: clamp(32px, calc(48 / 1200 * 100vw), 48px);
	}
}

#pickupList{
	& section{
		position: relative;
		display: grid;
		grid-row-gap: 16px;
		margin: 0 10px;
		&:not(:has(figure)){
			&:before{
				content: "";
				order: -1;
				aspect-ratio: 3 / 2;
				background: var(--dummy);
				border-radius: 10px;
			}
		}
	}
	& h3{
		text-align: center;
		font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
	}
	& h3+div{
		display: contents;
		& a{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			font-size: 0;
		}
	}
	& figure{
		order: -1;
		& img{
			aspect-ratio: 3 / 2;
			object-fit: cover;
			border-radius: 10px;
			&[src]{
				display: block;
				background: #ccc;
			}
		}
	}
	.slide{
		&:not(.slick-slider){
			display: grid;
			grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
			grid-gap: 20px;
		}
	}
	.slick-slider{
		display: grid;
		grid-template-columns: auto 1fr auto;
		overflow: hidden;
		&:before{
			content: "";
			grid-column: 1 / 4;
			grid-row: 1;
			aspect-ratio: 3 / 2;
			width: min(100% - 100px);
			visibility: hidden;
		}
		@media (min-width: 576px) {
			&:before{
				width: calc((100% - 20px) / 2);
			}
		}
		@media (min-width: 992px) {
			&:before{
				width: calc((100% - 40px) / 3);
			}
		}
		@media (min-width: 1200px) {
			&:before{
				width: calc((100% - 60px) / 4);
			}
		}
	}
	.slick-list{
		grid-column: 1 / 4;
		grid-row: 1 / 3;
		margin: 0 -10px;
		@media (max-width: 575.98px) {
			padding-right: 100px;
		}
	}
	.slick-arrow{
		all: unset;
		align-self: center;
		grid-row: 1;
		position: relative;
		z-index: 1;
		aspect-ratio: 36 / 80;
		width: 40px;
		border-radius: 8px;
		background: #fcf6bb;
		font-size: 0;
		cursor: pointer;
		&:before{
			content: "";
			position: absolute;
			top: 0;
			width: calc(100% - 8px);
			height: 100%;
			background: var(--color);
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px;"><polyline points="8 4 16 12 8 20"/></svg>') no-repeat center / 24px;
		}
	}
	.slick-prev{
		grid-column: 1;
		transform: translateX(-8px);
		&:before{
			right: 0;
			transform: scale(-1, 1);
		}
	}
	.slick-next{
		grid-column: 3;
		transform: translateX(8px);
		&:before{
			left: 0;
		}
	}
}

#contents{
	display: grid;
	grid-template-columns: 1fr min(var(--wrap-fit), 720px) 1fr;
	grid-row-gap: 32px;
	padding: 80px 0 clamp(80px, calc(160 / 1200 * 100vw), 160px) 0;
	background: #f2f2f2;
	&>*{
		grid-column: 2;
	}
	& dl{
		display: grid;
		grid-gap: 16px;
		padding: 32px;
		background: #fff;
		border: 1px solid var(--color);
		border-radius: 10px;
		@media (min-width: 576px) {
			grid-template-columns: auto auto;
			justify-content: space-between;
		}
	}
	dt{
		justify-self: center;
		display: grid;
		grid-template-columns: 32px auto;
		align-items: center;
		column-gap: 8px;
		padding: 0 1em;
		font-size: clamp(16px, calc(20 / 768 * 100vw), 20px);
		letter-spacing: 0.1em;
		&:before{
			content: "";
			aspect-ratio: 1;
			background: currentColor;
			-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 2px;"><circle cx="6" cy="6" r="5"/><line x1="11.5" y1="11.5" x2="15" y2="15"/></svg>') no-repeat center / contain;
		}
	}
	dd{
		display: contents;
		& a{
			display: grid;
			grid-template-columns: auto auto;
			justify-content: center;
			align-items: center;
			column-gap: 16px;
			min-width: min(100%, 320px);
			min-height: clamp(56px, calc(64 / 768 * 100vw), 64px);
			padding: 8px 24px;
			border-radius: clamp(28px, calc(32 / 768 * 100vw), 32px);
			background: #f18241;
			color: #fff;
			font-weight: 700;
			font-size: clamp(14px, calc(16 / 768 * 100vw), 16px);
			letter-spacing: 0.1em;
			text-align: center;
			text-decoration: none;
			&:before,
			&:after{
				content: "";
				aspect-ratio: 1;
				grid-column: 2;
				grid-row: 1;
				align-self: center;
				justify-self: center;
			}
			&:before{
				width: clamp(24px, calc(32 / 768 * 100vw), 32px);
				background: currentColor;
				border-radius: 100%;
			}
			&:after{
				width: 16px;
				background: inherit;
				-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="2 8 14 8"/><polyline points="10 4 14 8 10 12"/></svg>') no-repeat center / contain;
				@media (max-width: 767.98px) {
					-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="4 8 12 8"/><polyline points="9 5 12 8 9 11"/></svg>');
				}
			}
			&:hover{
				background: var(--color);
				border-color: transparent;
				color: #fff;
			}
		}
	}
	& ul{
		display: grid;
		grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
		grid-gap: 32px;
	}
	& li{
		display: contents;
		& a{
			position: relative;
			display: grid;
			grid-template-columns: auto auto;
			justify-content: center;
			align-items: center;
			column-gap: 16px;
			margin-top: clamp(16px, calc(24 / 768 * 100vw), 24px);
			padding: clamp(32px, calc(48 / 768 * 100vw), 48px) 24px 24px;
			background: #fff;
			border: 1px solid var(--color);
			border-radius: 10px;
			color: currentColor;
			font-family: var(--font-title);
			font-size: clamp(16px, calc(24 / 768 * 100vw), 24px);
			letter-spacing: 0.1em;
			text-decoration: none;
			text-align: center;
			word-break: keep-all;
			overflow-wrap: anywhere;
			&:before{
				content: "";
				position: absolute;
				top: 0;
				left: 50%;
				aspect-ratio: 1;
				width: clamp(48px, calc(64 / 768 * 100vw), 64px);
				background: #f18241 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"></svg>') no-repeat center / contain;
				border-radius: 100%;
				transform: translate(-50%, -50%);
			}
			&:after{
				content: "";
				grid-column: 2;
				grid-row: 1;
				aspect-ratio: 1;
				width: clamp(24px, calc(32 / 768 * 100vw), 32px);
				background: #f18241 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: white; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="2 8 14 8"/><polyline points="10 4 14 8 10 12"/></svg>') no-repeat center / 16px;
				border-radius: 100%;
				-webkit-mask: 
				@media (max-width: 767.98px) {
					background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" style="fill: none; stroke: white; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1px;"><polyline points="4 8 12 8"/><polyline points="9 5 12 8 9 11"/></svg>');
				}
			}
			&:hover{
				color: var(--color-theme-sub);
			}
			&[href="/business/photos/index.html"]:before{
				background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M29.4,18.62h-1.57v.99h1.57v-.99ZM26.27,18.62h-1.57v.99h1.57v-.99ZM23.13,18.62h-1.57v.99h1.57v-.99ZM32.54,18.62h-1.57v.99h1.57v-.99ZM35.67,18.62h-1.57v.99h1.57v-.99ZM44.21,23.13h.99v-1.57h-.99v1.57ZM44.19,20.12l.96-.25c-.19-.74-.86-1.26-1.63-1.26h0v.99c.32,0,.6.21.68.52ZM38.81,18.62h-1.57v.99h1.57v-.99ZM20,18.62h-1.57v.99h1.57v-.99ZM41.94,18.62h-1.57v.99h1.57v-.99ZM15.92,24.46h-.99v1.57h.99v-1.57ZM18.2,41.52h1.57v-.99h-1.57v.99ZM15.11,19.55l.89.44c.12-.24.36-.39.62-.39h.25v-.99h-.25c-.64,0-1.22.36-1.51.94ZM47.88,23.47h-26.9c-.65,0-1.19.53-1.19,1.19v19.54c0,.65.54,1.19,1.19,1.19h26.9c.65,0,1.19-.53,1.19-1.19v-19.54c0-.65-.53-1.19-1.19-1.19ZM46.89,43.2h-9.29s9.29,0,9.29,0h0ZM46.89,34.95l-5.34-5.34-2.6,2.6c0-.08.02-.16.02-.24,0-1.58-1.28-2.86-2.85-2.86s-2.85,1.28-2.85,2.86,1.28,2.85,2.85,2.85c.08,0,.16-.02.24-.02l-3.58,3.58h0s-2.99-2.99-2.99-2.99l-7.81,7.81v-17.55h24.92v9.29ZM15.94,40.01l-.96.25c.19.75.86,1.26,1.63,1.26h.01v-.99c-.33,0-.61-.21-.68-.52ZM15.92,33.86h-.99v1.57h.99v-1.57ZM15.92,37h-.99v1.57h.99v-1.57ZM15.92,30.73h-.99v1.57h.99v-1.57ZM15.92,27.59h-.99v1.57h.99v-1.57ZM15.92,21.32h-.99v1.57h.99v-1.57Z" style="fill: white;"/></svg>');
			}
			&[href="/business/feature/movie/index.html"]:before{
				background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64"><path d="M44.78,25.12v1.23l-4.74,2.11h-1.41v-2.31c0-.11-.03-.23-.07-.34,1.95-.91,3.32-2.87,3.32-5.17,0-3.15-2.56-5.71-5.71-5.71s-5.71,2.56-5.71,5.71c0,1.83.87,3.44,2.21,4.48h-5.65c1.34-1.05,2.21-2.65,2.21-4.48,0-3.15-2.56-5.71-5.71-5.71s-5.71,2.56-5.71,5.71c0,2.3,1.36,4.26,3.32,5.17-.04.11-.07.22-.07.34v1.44h-2.46l1.23,3.25h1.23v4.69c0,.26.1.52.3.72.2.2.46.3.72.3h5.39v1.41h.88v1.41l-5.61,9.71h.29l6.08-7.83.62,7.83h.23l.62-7.83,6.08,7.83h.29l-5.61-9.71v-1.41h.88v-1.41h5.39c.26,0,.52-.1.72-.3.2-.2.3-.46.3-.72v-2.31h1.41l4.74,2.11v1.23h1.4v-11.42h-1.4Z" style="fill: white;"/></svg>');
			}
		}
	}
}




