/* CSS Document */

#tab {
	margin-top: 24px;
}

@media (min-width: 992px) {
	#tab {
		margin-top: 40px;
	}
}

#photo {
	display: grid;
	grid-template-columns: 1fr var(--wrap) 1fr;
	padding-top: 56px;
	grid-row-gap: 56px;
}

@media (min-width: 992px) {
	#photo {
		padding-top: 72px;
		grid-row-gap: 72px;
	}
}

#photo > * {
	grid-column: 2;
}

#photo h2 {
	justify-self: center;
	display: grid;
	grid-template-columns: 1.25em 1fr;
	grid-gap: 0.5em;
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.1em;
}

@media (min-width: 992px) {
	#photo h2 {
		font-size: 32px;
	}
}

#photo h2:before {
	content: "";
	aspect-ratio: 1;
	background: var(--color-theme);
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="-3 -3 16 16"><path d="M3,0h7v7c0,1.66-1.34,3-3,3H0V3C0,1.34,1.34,0,3,0Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
	transform: translateY(0.25em);
}

#photo h2 + div {
	display: flex;
	justify-content: center;
}

#photo h2 + div a {
	display: grid;
	grid-template-columns: 1fr 24px;
	grid-gap: 8px;
	align-items: center;
	width: min(100%, 280px);
	min-height: 64px;
	padding: 4px 16px 4px 24px;
	border-radius: 32px;
	border: 1px solid currentColor;
	color: inherit;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
}

#photo h2 + div a:before,
#photo h2 + div a:after {
	grid-column: 2;
	grid-row: 1;
	content: "";
	aspect-ratio: 1;
}

#photo h2 + div a:before {
	background: #5ab6b6;
	border-radius: 100%;
}

#photo h2 + div a:after {
	background: #fff;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.81,11.4l-4.38-4.38c-.33-.33-.86-.33-1.19,0-.33.33-.33.86,0,1.19l2.79,2.79H6.93c-.55,0-.99.45-.99.99s.44.99.99.99h8.1l-2.79,2.79c-.33.33-.33.86,0,1.19.16.16.38.25.6.25s.43-.08.6-.25l4.38-4.38c.33-.33.33-.86,0-1.19Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
}

#photo #tab {
	grid-column: 1 / 4;
	margin: 0;
}


#detail {
	display: grid;
	grid-template-columns: 1fr min(var(--wrap-fit), 960px) 1fr;
	margin-bottom: 64px;
}

#detail:not(:has(#detailPhoto)) {
	margin-top: 24px;
}

@media (min-width: 1200px) {
	#detail:not(:has(#detailPhoto)) {
		margin-top: 40px;
	}
}

#detail #detailSide {
	order: 2;
	margin-top: 64px;
}

@media (min-width: 992px) {
	#detail #detailSide {
		position: sticky;
		top: 0;
		grid-column: 3;
		justify-self: end;
		align-self: start;
		width: 280px;
		margin-top: 92px;
	}
}

#detail:has(#detailSide) {
	margin-bottom: 88px;
}

@media (min-width: 992px) {
	#detail:has(#detailSide) {
		grid-template-columns: 1fr calc(var(--wrap) - 320px) 320px 1fr;
	}

	#detail:has(#detailSide) #detailHeader h2,
	#detail:has(#detailSide) #detailHeader h2 + div {
		grid-column: 2 / 4;
	}

	#detail:has(#detailSide) #detailPhoto {
		grid-column: 1 / 5;
	}

	#detail:has(#detailSide) #detailArticle {
		grid-column: 2;
	}

	#detail:has(#detailSide) #detailArticle section {
		grid-template-columns: 0 100% 0;
	}

	#detail:has(#detailSide) .photos {
		width: 100%;
	}

	#detail:has(#detailSide) .column:has(figure) {
		grid-template-columns: min(34vw, 280px) 1fr;
	}

	#detail:has(#detailSide) .map {
		grid-template-columns: 1fr;
		grid-template-rows: min(75vw, 560px);
	}

	#detail:has(#detailSide) .map .mapText {
		grid-column: 1;
	}

	#detail:has(#detailSide) .mapBody {
		border-width: 1px 1px 0 1px;
	}

	#detail:has(#detailSide) .mapList {
		border-width: 0 1px 1px 1px;
		max-height: min(50vw, 240px);
	}

	#detail:has(#detailTable) #detailSide {
		grid-row: 3 / 5;
		margin-top: 72px;
	}
}

@media (min-width: 1200px) {
	#detail:has(#detailSide) {
		grid-template-columns: 1fr calc(var(--wrap) - 360px) 360px 1fr;
	}
}

#detail > * {
	grid-column: 2;
}

#detailHeader {
	display: contents;
}

#detailHeader > * {
	grid-column: 2;
}

#detailHeader h2 {
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.05em;
}

#detail:has(#detailPhoto) #detailHeader h2 {
	grid-row: 1;
	margin: 1em 0;
	align-self: end;
	color: #fff;
	text-shadow: 0 0 20px rgba(0, 0, 0, 0.75);
	z-index: 1;
}

@media (min-width: 992px) {
	#detailHeader h2 {
		font-size: 32px;
	}
}

#detailHeader h2 + div {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 1em;
	margin-top: 48px;
	letter-spacing: 0.05em;
}

#detailHeader h2 + div > time {
	justify-self: end;
	align-self: center;
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0.05em;
}

#detailHeader h2 + div > time:before {
	content: "Date : ";
}

@media (min-width: 576px) {
	#detailHeader h2 + div > time {
		justify-self: unset;
	}
}

#detailHeader h2 + div > i {
	align-self: center;
	display: grid;
	min-height: 24px;
	padding: 0 16px;
	align-items: center;
	font-size: 12px;
	border: 1px solid var(--color-border);
	border-radius: 12px;
	font-style: normal;
	letter-spacing: 0.05em;
}

@media (min-width: 576px) {
	#detailHeader h2 + div > i {
		justify-self: start;
	}
}

@media (min-width: 992px) {
	#detailHeader h2 + div {
		margin-top: 80px;
	}
}

#detailHeader .fr-view {
	width: 100%;
}

#detailTable {
	justify-self: center;
	width: min(100%, 720px);
	margin-top: 40px;
	border: 1px solid var(--color-variable);
	border-radius: 8px;
	overflow: hidden;
}

@media (min-width: 992px) {
	#detailTable {
		margin-top: 72px;
	}
}

#detailTable h3 {
	display: grid;
	grid-template-columns: 24px auto 24px;
	justify-content: center;
	align-items: center;
	grid-gap: 24px;
	margin-top: 16px;
	color: var(--color-variable);
	font-weight: 700;
	font-size: 24px;
	font-family: kiro, sans-serif;
	letter-spacing: 0.2em;
}

@media (min-width: 992px) {
	#detailTable h3 {
		margin-top: 24px;
	}
}

#detailTable h3:before,
#detailTable h3:after {
	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 24 24" style="fill: none; stroke: black; stroke-linecap: round; stroke-linejoin: round;"><line x1="23.68" y1=".5" x2=".5" y2=".5"/><line x1="23.68" y1="5.45" x2="3.33" y2="5.45"/><line x1="23.68" y1="10.41" x2="6.17" y2="10.41"/><line x1="23.68" y1="15.36" x2="3.33" y2="15.36"/><line x1="23.68" y1="20.31" x2=".5" y2="20.31"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
}

#detailTable h3:after {
	transform: scale(-1, 1);
}

#detailTable h3 + div {
	padding: 16px 24px;
}

@media (min-width: 992px) {
	#detailTable h3 + div {
		padding: 24px 40px;
	}
}

#detailTable ul {
	display: grid;
	grid-gap: 8px;
}

#detailTable ul span {
	display: inherit;
	grid-gap: inherit;
}

#detailTable a {
	display: grid;
	grid-template-columns: 16px 1fr;
	grid-gap: 8px;
	color: inherit;
	letter-spacing: 0.05em;
	text-decoration: none;
}

#detailTable a:before {
	content: "";
	aspect-ratio: 1;
	background: var(--color-variable);
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path d="M14.15,8.3c-.41-.41-1.07-.41-1.48,0l-3.45,3.45V1.73c0-.68-.55-1.23-1.23-1.23s-1.23.55-1.23,1.23v10.02l-3.45-3.45c-.41-.41-1.07-.41-1.48,0-.2.2-.31.47-.31.74s.1.53.31.74l5.42,5.42c.41.41,1.07.41,1.48,0l5.42-5.42c.41-.41.41-1.07,0-1.48Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
	transform: translateY(0.35em);
}

#detailTable menu {
	all: unset;
	display: grid;
	grid-template-columns: auto 24px;
	justify-content: center;
	align-items: center;
	grid-gap: 8px;
	min-height: 40px;
	background: var(--color-variable);
	color: #fff;
	cursor: pointer;
}

#detailTable menu:after {
	content: "+";
}

#detailTable menu.open:after {
	content: "\30FC";
}

#detailPhoto {
	grid-column: 1 / 4;
	grid-row: 1;
}

#detailPhoto img {
	height: min(66.67vw, 600px);
	object-fit: cover;
}

#detailArticle {
	grid-column: 1 / 4;
}

#detailArticle section {
	display: grid;
	grid-template-columns: 1fr min(var(--wrap-fit), 960px) 1fr;
	margin-top: 64px;
	scroll-margin-top: 24px;
}

@media (min-width: 992px) {
	#detailArticle section {
		margin-top: 92px;
	}
}

#detailArticle section > *:not(.photos) {
	grid-column: 2;
}

#detailArticle section:not(:has(.title)) {
	margin-top: 0;
}

#detailShare {
	order: 1;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	grid-gap: 8px 24px;
	margin-top: 56px;
}

@media (min-width: 992px) {
	#detailShare {
		margin-top: 72px;
	}
}

#detailShare h3 {
	display: none;
}

#detailShare a[href*="twitter.com"] {
	display: grid;
	grid-template-columns: 10px 1fr;
	align-items: center;
	grid-gap: 4px;
	min-height: 20px;
	padding: 0 8px;
	border-radius: 10px;
	background: #000;
	color: #fff;
	font-size: 10px;
	text-decoration: none;
}

#detailShare a[href*="twitter.com"]:before {
	content: "";
	aspect-ratio: 1;
	background: currentColor;
	-webkit-mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 28 28"><path d="M16.23,12.16L24.98,2h-2.07l-7.59,8.82L9.25,2H2.26l9.17,13.34L2.26,26h2.07l8.02-9.32,6.4,9.32h6.99l-9.51-13.84h0ZM13.4,15.46l-.93-1.33L5.08,3.56h3.18l5.96,8.53.93,1.33,7.75,11.09h-3.18l-6.33-9.05h0Z"/></svg>');
}

#detailShare iframe {
	vertical-align: unset;
}

#detailShare #fb-root {
	margin: -8px 0;
}

#recommend {
	display: grid;
	grid-template-columns: 1fr min(var(--wrap-fit), 960px) 1fr;
	grid-row-gap: 24px;
	margin: 64px 0 72px 0;
	overflow: hidden;
}

@media (min-width: 992px) {
	#recommend {
		grid-row-gap: 32px;
		margin: 72px 0 88px 0;
	}
}

#recommend > * {
	grid-column: 2;
}

#recommend h2 {
	position: relative;
	margin-left: 24px;
	color: var(--color-variable);
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.08em;
}

@media (min-width: 1200px) {
	#recommend h2 {
		margin-left: 0;
	}
}

#recommend h2:before {
	content: "";
	position: absolute;
	top: 10px;
	right: calc(100% + 32px);
	width: 100vw;
	height: 28px;
	background: currentColor;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 10"><circle cx="6.5" cy="1.5" r="1.5"/></svg>') top right;
	-webkit-mask-size: 8px 10px;
}

#recommend h2 + div {
	display: grid;
	grid-gap: 16px 24px;
}

@media (min-width: 576px) {
	#recommend h2 + div {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 992px) {
	#recommend h2 + div {
		grid-gap: 20px 40px;
	}
}

#recommend dl {
	position: relative;
	display: grid;
	grid-gap: 8px;
}

#recommend dl:nth-child(n+2) {
	display: none;
}

#recommend dl:not(:has(img)):before {
	content: "";
	grid-column: 1;
	grid-row: 1;
	aspect-ratio: 1 / 0.667;
	background: var(--dummy);
	background-size: 50% auto;
	border-radius: 8px;
	transition: opacity 0.2s ease-out;
}

#recommend dl:has(a):hover:before,
#recommend dl:has(a):hover img {
	opacity: 0.8;
}

#recommend dt {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.05em;
}

#recommend dd {
	letter-spacing: 0.05em;
}

#recommend dd:has(img) {
	order: -1;
}

#recommend dd:has(a) {
	display: contents;
}

#recommend dd img {
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
	border-radius: 8px;
	transition: opacity 0.2s ease-out;
}

#recommend dd a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-size: 0;
}

#recommend .slide {
	grid-column: 1 / 4;
	justify-self: center;
	width: min(var(--wrap-fit), 1080px);
}

#recommend .slick-slider {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr) auto;
	column-gap: 24px;
}

#recommend .slick-slider:before {
	content: "";
	grid-column: 2;
	grid-row: 1;
	aspect-ratio: 1 / 0.667;
}

@media (min-width: 576px) {
	#recommend .slick-slider:before {
		width: calc(50% - 16px);
	}
}

@media (min-width: 768px) {
	#recommend .slick-slider:before {
		width: calc(33.33% - 16px);
	}
}

@media (min-width: 1200px) {
	#recommend .slick-slider:before {
		width: calc(25% - 16px);
	}
}

#recommend .slick-list {
	grid-column: 2;
	grid-row: 1 / 3;
	margin: 0 -12px;
	overflow: visible;
}

#recommend .slick-list:only-child .slick-track {
	margin: 0;
}

@media (min-width: 1200px) {
	#recommend .slick-list {
		overflow: hidden;
	}
}

#recommend .slick-slide {
	margin: 0 12px;
}

#recommend .slick-arrow {
	all: unset;
	position: relative;
	aspect-ratio: 1;
	align-self: center;
	width: 40px;
	background: #999;
	border-radius: 100%;
	color: #fff;
	font-size: 0;
	z-index: 1;
	cursor: pointer;
}

#recommend .slick-arrow: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 16 16"><path d="M14.24,7.36l-4.7-4.7c-.35-.35-.93-.35-1.28,0-.35.35-.35.93,0,1.28l2.99,2.99H2.56c-.59,0-1.07.48-1.07,1.07s.48,1.07,1.07,1.07h8.69l-2.99,2.99c-.35.35-.35.93,0,1.28.18.18.41.26.64.26s.46-.09.64-.26l4.7-4.7c.35-.35.35-.93,0-1.28Z"/></svg>') center no-repeat;
	-webkit-mask-size: 16px;
}

#recommend .slick-prev:before {
	transform: scale(-1, 1);
}

.title {
	position: relative;
	margin-left: 24px;
	color: var(--color-variable);
	font-weight: 700;
	font-size: 24px;
	letter-spacing: 0.08em;
}

@media (min-width: 1200px) {
	.title {
		margin-left: 0;
	}
}

.title:before {
	content: "";
	position: absolute;
	top: 10px;
	right: calc(100% + 32px);
	width: 100vw;
	height: 28px;
	background: currentColor;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 8 10"><circle cx="6.5" cy="1.5" r="1.5"/></svg>') top right;
	-webkit-mask-size: 8px 10px;
}

.photos {
	grid-column: 1 / 4;
	justify-self: center;
	display: grid;
	grid-template-columns: 32px minmax(0, 1fr) 32px;
	grid-gap: 24px 24px;
	width: min(var(--wrap-fit), 1072px);
	margin: 32px 0 0 0;
}

.photos ul:not(.photoSlideNav) li{
	position: relative;
}

.photos ul:not(.photoSlideNav) li:not([data-caption=""]):before {
	content: attr(data-caption);
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	align-items: end;
	width: 100%;
	height: min(50%, 120px);
	padding: 16px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.photos ul:only-child {
	grid-column: 1 / 4;
	justify-self: center;
	width: min(100%, 960px);
}

.photos img {
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
}

.photoSlide {
	display: contents;
}

.photoSlide:not(.slick-initialized){
	display: grid;
}

.photoSlide:not(.slick-initialized) li{
	grid-column: 1;
	grid-row: 1;
}

/*.photoSlide li {
	position: relative;
}

.photoSlide li:before {
	content: attr(data-caption);
	position: absolute;
	left: 0;
	bottom: 0;
	display: grid;
	align-items: end;
	width: 100%;
	height: min(50%, 120px);
	padding: 16px;
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.3), transparent);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.08em;
}*/

@media (min-width: 992px) {
	.photoSlide li:before {
		font-size: 18px;
		padding: 24px;
	}
}

.photoSlide .slick-list {
	grid-column: 1 / 4;
	justify-self: center;
	width: min(100%, 960px);
}

.photoSlide .slick-arrow {
	all: unset;
	position: relative;
	grid-row: 2;
	aspect-ratio: 1;
	align-self: center;
	width: 32px;
	background: #fff;
	border: 1px solid currentColor;
	border-radius: 100%;
	color: var(--color-variable);
	font-size: 0;
	cursor: pointer;
}

.photoSlide .slick-arrow: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 16 16" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><polyline points="5.75 12.5 10.25 8 5.75 3.5"/></svg>') center no-repeat;
	-webkit-mask-size: 16px;
}

.photoSlide .slick-prev {
	grid-column: 1;
}

.photoSlide .slick-prev:before {
	transform: scale(-1, 1);
}

.photoSlide .slick-next {
	grid-column: 3;
}

.photoSlideNav {
	grid-column: 2;
}

.photoSlideNav li {
	cursor: pointer;
}

.photoSlideNav img {
	aspect-ratio: 1;
	border-radius: 100%;
}

.photoSlideNav .slick-list {
	margin: 0 -10px;
}

.photoSlideNav .slick-list:only-child .slick-track {
	transform: none !important;
}

.photoSlideNav .slick-slide {
	margin: 0 10px;
}

.photoSlideNav .slick-arrow {
	display: none !important;
}

.text {
	margin-top: 24px;
	letter-spacing: 0.05em;
	}

.links {
	margin-top: 64px;
}

@media (min-width: 922px) {
	.links {
		margin-top: 80px;
	}
}

.links ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 16px 24px;
}

@media (min-width: 922px) {
	.links ul {
		gap: 56px;
	}
}

.links li {
	display: contents;
}

.links a {
	display: grid;
	grid-template-columns: 1fr 24px;
	gap: 8px;
	align-items: center;
	width: min(100%, 280px);
	min-height: 64px;
	padding: 4px 16px 4px 24px;
	border-radius: 32px;
	border: 1px solid currentColor;
	color: inherit;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
}

.links a:before,
.links a:after {
	grid-column: 2;
	grid-row: 1;
	content: "";
	aspect-ratio: 1;
}

.links a:before {
	background: var(--color-variable);
	border-radius: 100%;
}

.links a:after {
	background: #fff;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.81,11.4l-4.38-4.38c-.33-.33-.86-.33-1.19,0-.33.33-.33.86,0,1.19l2.79,2.79H6.93c-.55,0-.99.45-.99.99s.44.99.99.99h8.1l-2.79,2.79c-.33.33-.33.86,0,1.19.16.16.38.25.6.25s.43-.08.6-.25l4.38-4.38c.33-.33.33-.86,0-1.19Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
}

.documents {
	justify-self: center;
	width: min(100%, 720px);
	margin-top: 64px;
}

@media (min-width: 922px) {
	.documents {
		margin-top: 80px;
	}
}

.documents h4 {
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.08em;
}

.documents h4 + div {
	margin-top: 8px;
}

.documents ul {
	display: grid;
	grid-gap: 8px;
}

.documents li {
	display: contents;
}

.documents a {
	display: grid;
	grid-template-columns: 1fr 24px;
	align-items: center;
	min-height: 32px;
	padding: 4px 16px;
	border-radius: 2px;
	border: 1px solid var(--color-border);
	color: inherit;
	letter-spacing: 0.05em;
	text-decoration: none;
}

.documents a:after {
	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 24 24"><path d="M21.6,14.6c-.43,0-.78.35-.78.78v5.22H3.18v-5.22c0-.43-.35-.78-.78-.78s-.78.35-.78.78v6c0,.43.35.78.78.78h19.2c.43,0,.78-.35.78-.78v-6c0-.43-.35-.78-.78-.78ZM11.41,16.82c.33.33.86.33,1.18,0l4.33-4.33c.33-.33.33-.85,0-1.18-.33-.33-.85-.33-1.18,0l-2.76,2.76V6.05c0-.54-.44-.98-.98-.98s-.98.44-.98.98v8.02l-2.76-2.76c-.33-.33-.86-.33-1.18,0-.16.16-.24.38-.24.59s.08.43.24.59l4.33,4.33Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
	transform: translateX(8px);
}

.movie {
	justify-self: center;
	width: min(100%, 720px);
	margin-top: 32px;
}

.movie iframe {
	aspect-ratio: 16 / 9;
	width: 100%;
	height: auto;
}

.movie .fr-view {
	margin-top: 16px;
	letter-spacing: 0.05em;
}

.articles {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 40px 32px;
	margin-top: 32px;
}

.articles:has(dl:nth-child(n+3)) {
	@media (min-width: 992px) {
		grid-template-columns: repeat(3, 1fr);
		grid-column-gap: 64px;
	}
}

.articles dl {
	position: relative;
	display: grid;
	grid-gap: 8px;
	grid-template-rows: auto auto 1fr;
}

.articles dl:not(:has(img)) {
	grid-template-rows: auto 1fr;
}

.articles dt {
	font-weight: 700;
	font-size: min(3.5vw, 18px);
	letter-spacing: 0.05em;
}

.articles dd {
	font-size: min(3vw, 16px);
	letter-spacing: 0.05em;
}

.articles dd:has(img) {
	order: -1;
}

.articles dd:has(a) {
	display: flex;
	margin-top: 8px;
}

.articles img {
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
	border-radius: 20px 0 20px 0;
	transition: opacity 0.2s ease-out;
}

.articles a {
	display: grid;
	grid-template-columns: 1fr 16px;
	align-items: center;
	min-width: min(100%, 200px);
	min-height: 40px;
	padding: 4px 16px;
	border-radius: 20px;
	background: var(--color-variable);
	color: #fff;
	font-size: 14px;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
}

.articles a:after {
	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"><path d="M13.81,7.4l-4.38-4.38c-.33-.33-.86-.33-1.19,0-.33.33-.33.86,0,1.19l2.79,2.79H2.93c-.55,0-.99.45-.99.99s.44.99.99.99h8.1l-2.79,2.79c-.33.33-.33.86,0,1.19.16.16.38.25.6.25s.43-.08.6-.25l4.38-4.38c.33-.33.33-.86,0-1.19Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
	transform: translateX(8px);
}

.column {
	position: relative;
	display: grid;
	grid-gap: 16px;
	margin-top: 64px;
	padding: 24px;
}

@media (min-width: 576px) {
	.column {
		grid-gap: 24px 40px;
		padding: 32px;
	}
}

@media (min-width: 922px) {
	.column {
		grid-gap: 24px 48px;
		margin-top: 80px;
		padding: 32px 48px 48px 48px;
	}
}

@media (min-width: 576px) {
	.column:has(figure) {
		grid-template-columns: min(34vw, 402px) 1fr;
		grid-template-rows: auto 1fr;
	}
	.column:has(figure) h4 {
		grid-column: 1 / 3;
	}
}

@media (min-width: 576px) {
	.column:has(h4+div+div) figure {
		grid-row: 2 / 4;
	}
}

.column:before,
.column:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 1px solid var(--color-variable);
	z-index: -1;
	}

.column:before {
	left: 4px;
	width: calc(100% - 8px);
	}

.column:after {
	top: 4px;
	height: calc(100% - 8px);
	box-shadow: 0 0 1px 1px #fff;
}

.column h4 {
	order: -1;
	display: grid;
	grid-gap: 8px 24px;
	color: var(--color-variable);
	font-weight: 700;
	font-size: 20px;
	letter-spacing: 0.08em;
}

.column h4:before {
	content: "Column";
	display: grid;
	width: 120px;
	aspect-ratio: 120 / 84;
	align-items: center;
	margin-top: -24px;
	padding-top: 10px;
	background: var(--color-variable) url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 84"><line x1="14" y1="14" x2="106" y2="14" style="fill: none; stroke: white; stroke-linecap: round; stroke-linejoin: round;"/></svg>') center no-repeat;
	background-size: contain;
	color: #fff;
	font-size: 18px;
	font-family: cronos-pro, sans-serif;
	letter-spacing: 0.18em;
	text-align: center;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 120 84"><polygon points="0 0 0 84 .01 84 60 76.01 119.99 84 120 84 120 0 0 0"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
}

.column h4 + div + div {
	display: flex;
	justify-content: center;
	margin-top: 16px;
}

.column h4 + div + div a {
	display: grid;
	grid-template-columns: 1fr 24px;
	grid-gap: 8px;
	align-items: center;
	width: min(100%, 280px);
	min-height: 64px;
	padding: 4px 16px 4px 24px;
	border-radius: 32px;
	border: 1px solid currentColor;
	color: inherit;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
}

.column h4 + div + div a:before,
.column h4 + div + div a:after {
	grid-column: 2;
	grid-row: 1;
	content: "";
	aspect-ratio: 1;
}

.column h4 + div + div a:before {
	background: var(--color-variable);
	border-radius: 100%;
}

.column h4 + div + div a:after {
	background: #fff;
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M17.81,11.4l-4.38-4.38c-.33-.33-.86-.33-1.19,0-.33.33-.33.86,0,1.19l2.79,2.79H6.93c-.55,0-.99.45-.99.99s.44.99.99.99h8.1l-2.79,2.79c-.33.33-.33.86,0,1.19.16.16.38.25.6.25s.43-.08.6-.25l4.38-4.38c.33-.33.33-.86,0-1.19Z"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
}

.column figure {
	order: -1;
}

.column figure img {
	aspect-ratio: 1 / 0.667;
	object-fit: cover;
}

.fr-view {
	letter-spacing: 0.05em;
}

/* Media Queries */
@media (min-width: 576px) {
	.column h4 {
		grid-template-columns: auto 1fr;
	}
	.column h4:before {
		margin-top: -32px;
	}
	.column figure {
		grid-template-rows: 1 / 4;
	}
}

@media (min-width: 992px) {
	.column h4 {
		column-gap: 64px;
		font-size: 24px;
	}
}

.comment {
	display: grid;
	grid-gap: 40px;
	margin-top: 40px;
}

@media (min-width: 992px) {
	.comment {
		grid-gap: 64px;
		margin-top: 56px;
	}
}

.comment dl {
	display: grid;
	grid-template-columns: 80px 1fr;
	grid-gap: 8px 40px;
}

@media (min-width: 992px) {
	.comment dl {
		grid-template-columns: 120px 1fr;
		column-gap: 64px;
	}
}

.comment dl:not(:has(img)):before {
	content: "";
	grid-column: 1;
	grid-row: 1;
	align-self: end;
	aspect-ratio: 1;
	background: #f2f2f2 url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path opacity="0.2" d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l388.6 0c16.4 0 29.7-13.3 29.7-29.7C448 383.8 368.2 304 269.7 304l-91.4 0z"/></svg>') center bottom no-repeat;
	background-size: 70%;
	border-radius: 100%;
}

.comment dt {
	grid-row: 2;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-align: center;
}

.comment img {
	grid-column: 1;
	grid-row: 1;
	align-self: end;
	aspect-ratio: 1;
	border-radius: 100%;
	object-fit: cover;
}

.comment dd:has(img) {
	display: contents;
}

.comment dd:nth-of-type(1) {
	grid-row: 1 / 3;
	align-self: center;
	position: relative;
	padding: 16px;
	background: var(--color-theme-bg);
	border-radius: 10px;
	letter-spacing: 0.05em;
}

@media (max-width: 575.98px) {
	.comment dd:nth-of-type(1) {
		font-size: 14px;
	}
}

@media (min-width: 576px) {
	.comment dd:nth-of-type(1) {
		padding: 24px;
	}
}

.comment dd:nth-of-type(1):before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	aspect-ratio: 24 / 20;
	width: 24px;
	background: var(--color-theme-bg);
	-webkit-mask: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 20"><polygon points="0 10 24 20 24 0 0 10"/></svg>') center no-repeat;
	-webkit-mask-size: contain;
	transform: translate(-100%, -50%);
}

.comment .commentRight {
	grid-template-columns: 1fr 80px;
}

.comment .commentRight:before {
	grid-column: 2;
}

@media (min-width: 576px) {
	.comment .commentRight {
		grid-template-columns: 1fr 120px;
	}
}

.comment .commentRight dt {
	grid-column: 2;
}

.comment .commentRight dd {
	grid-column: 1;
}

.comment .commentRight dd:nth-of-type(1):before {
	left: 100%;
	transform: translate(0, -50%) scale(-1, 1);
}

.comment .commentRight img {
	grid-column: 2;
}

.map {
	display: grid;
	grid-template-rows: min(75vh, 440px);
	padding-top: 16px;
}

.mapText {
	margin-top: 16px;
}

@media (min-width: 576px) {
	.map {
		grid-template-rows: min(75vw, 640px);
	}
}

@media (min-width: 992px) {
	.map {
		grid-template-columns: 1fr min(30vw, 320px);
	}

	.mapText {
		grid-column: 1 / 3;
	}
}

.mapBody {
	position: relative;
	border: 0 solid currentColor;
	border-width: 1px 1px 0 1px;
	overflow: hidden;
}

@media (min-width: 992px) {
	.mapBody {
		border-width: 1px 0 1px 1px;
	}
}

.mapBody iframe,
.mapBody [id^="gMap"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.mapBody > img {
	position: absolute;
	width: 32px;
	left: 50%;
	bottom: 16px;
	transform: translate(-50%, 0);
	z-index: 1;
}

.mapList {
	position: relative;
	max-height: min(50vw, 240px);
	overflow: hidden;
	border: 0 solid currentColor;
	border-width: 0 1px 1px 1px;
}

@media (min-width: 992px) {
	.mapList {
		border-width: 1px 1px 1px 0;
		max-height: 100%;
	}
}

.mapList:has(menu) {
	display: grid;
	grid-template-rows: auto 1fr auto;
}

.mapList ul {
	counter-reset: count;
	padding: 0 16px;
}

.mapList:has(menu) ul {
	background: #fff;
	overflow-y: auto;
}

.mapList li {
	display: grid;
	grid-template-columns: 32px auto;
	align-content: center;
	grid-gap: 16px;
	padding: 16px 0;
	font-weight: 500;
	letter-spacing: 0.05em;
	cursor: pointer;
}

.mapList li:nth-child(n+2) {
	border-top: 1px solid var(--color-border);
}

.mapList li:before {
	counter-increment: count;
	content: counter(count);
	display: grid;
	align-content: center;
	aspect-ratio: 1;
	padding-bottom: 2px;
	background: var(--color-theme);
	border-radius: 100%;
	color: #fff;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0;
	line-height: 1;
}

.mapList menu {
	all: unset;
	position: relative;
	height: 32px;
	margin: 0;
	padding: 0;
	background: var(--color-variable);
	color: #fff;
	font-size: 0;
	cursor: pointer;
	z-index: 1;
}

.mapList menu: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 16 16" style="fill: none; stroke: black; stroke-miterlimit: 10; stroke-width: 2px;"><polyline points="2 11 8 5 14 11"/></svg>') center no-repeat;
	-webkit-mask-size: 16px;
}

.mapList menu.mapListDown {
	transform: scale(1, -1);
}

.mapToggle {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	grid-gap: 16px;
	min-height: 64px;
	margin: 0;
	padding: 8px 24px;
	margin-top: 40px;
	border: 1px solid currentColor;
	color: var(--color-variable);
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 0.05em;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

@media (min-width: 992px) {
	.mapToggle {
		min-height: 72px;
	}
}

.mapToggle:after {
	content: "+";
	font-size: 2em;
	line-height: 1;
	transform: translate(8px, -0.1em);
}

.mapToggle.open:after {
	content: "\30FC";
}




