/* ===============================================
全体の設定
=============================================== */
/* フォント */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap');

/* common */
html {
	font-size: 10px;
}
body {
	font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", HiraKakuPro-W3, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, Verdana, sans-serif;
	font-size: 1.5rem;
	font-weight: 300;
	line-height: 1.5;
	color: #fff;
	background: #0F0F0F;
}
.main {
	overflow: hidden;
}

a {
	color: #fff;
	text-decoration: underline 0.5px;
	transition: all 0.2s;
}
a:hover {
	color: #fff;
	text-decoration: none;
}



/* ===============================================
ボタン系
=============================================== */
/* 基本のボタン */
.button {
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.button a {
	position: relative;
	z-index: 1;
	margin: auto;
	padding: 0.6rem 0;
	width: fit-content;
	min-width: 300px;
	font-size: 2.4rem;
	font-weight: 400;
	text-align: center;
	text-decoration: none;
	border: 1px solid #fff;
	border-radius: 9999px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.2s;
}
.button a:hover {
	color: #0F0F0F;
}
.button a:hover::after {
	transform: scaleY(1);
}
.button a::after {
	position: absolute;
	top: -1px;
	left: -1px;
	z-index: -1;
	content: "";
	display: block;
	width: calc(100% + 2px);
	height: calc(100% + 2px);
	background: #fff;
	border-radius: 9999px;
	transform: scaleY(0);
	transition: all 0.3s ease;
	transition-property: transform;
}

/* 電話ボタン */
.button-tel a::before {
	content: "\F5C1";
	margin-right: 0.2em;
	font-family: bootstrap-icons;
}


/* Instagramリンク */
.instagram-link {
	width: fit-content;
	display: block;
}
.instagram-link::before {
	content: "\F437";
	font-family: bootstrap-icons;
}
.dl-list + .instagram-link {
	margin-bottom: 3rem;
}

/* スクロールボタン・ページトップボタン共通 */
.rotating {
	width: 100%;
	max-width: 130px;
	aspect-ratio: 200 / 200;
	height: auto;
	position: relative;
}
@keyframes rotation {
	0% { transform: rotateZ(0);}
	100% { transform: rotateZ(360deg); }
}
.rotating-circle {
	width: 120px;
	animation: 20s linear infinite rotation;
	object-fit: contain;
}
.rotating-icon{
	width: 80px;
	aspect-ratio: 60 / 120;
	object-fit: contain;
	position: absolute;
	top: calc(44% - 80px);
	left: calc(50% - 43px);
}

/* スクロールボタンの設定 */
.scroll-down {
	position: absolute;
	left: 8px;
	bottom: -90px;
	z-index: 2;
	max-width: 110px;
}
.scroll-down a {
	transition: all 0.2s;
}
.scroll-down a:active {
	opacity: 0.5;
}
.scroll-down .rotating-circle {
	width: 110px;
}
.scroll-down .rotating-icon {
	top: calc(44% - 70px);
	left: calc(50% - 35px);
	width: 70px;
}
@media (min-width: 768px) {
	.scroll-down {
		left: -30px;
		bottom: -50px;
		max-width: 130px;
	}
	.scroll-down .rotating-circle {
		width: 130px;
	}
	.scroll-down .rotating-icon {
		width: 80px;
		top: calc(44% - 80px);
	    left: calc(50% - 43px)
	}
}

/* ページトップボタンの設定 */
.back-top {
	margin: 40px auto 50px;
	filter: drop-shadow(0 0 0.75rem rgba(0, 0, 0, 0.3));
	transform: rotate(180deg);
	display: none;
}
.back-top a {
	transition: all 0.2s;
}
.back-top a:hover {
	opacity: 0.5;
}
@media (min-width: 768px) {
	.back-top {
		position: fixed;
		right: 20px;
		bottom: 24px;
		margin: 0;
		display: revert;
		z-index: 9999;
	}
}



/* ===============================================
見出しの設定
=============================================== */



/* ===============================================
共通パーツ
=============================================== */
/* 説明リストの設定 */
.dl-list {
	margin-bottom: 3rem;
	display: flex;
	flex-wrap: wrap;
}
.dl-list dt {
	margin-bottom: 0.8rem;
	width: 6em;
	height: fit-content;
	font-weight: 300;
	text-align: center;
	border: 1px solid #ffffff40;
	border-radius: 9999px;
}
.dl-list dd {
	width: 100%;
}
.dl-list dd:not(:last-child) {
	margin-bottom: 2rem;
}
@media (min-width: 768px) {
	.dl-list dt {
		height: fit-content;
	}
	.dl-list dd {
		margin-left: 1em;
		width: calc(100% - 7em);
	}
}
/* 下に「instagram-link」がある場合 */
.dl-list:has(+ .instagram-link) {
	margin-bottom: 10px;
}

/* セクションの設定 */
.section {
	margin-top: 100px;
}
.section:first-child {
	margin-top: 80px;
}
.section:last-child {
	position: relative;
}
.section:last-child * {
	z-index: 1;
}
.section:last-child::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
	width: 100vw;
	height: 100%;
	background: linear-gradient(transparent 40%, #272727 40%);
	z-index: 0;
}
@media (min-width: 768px) {
	.section {
		margin-top: 110px;
	}
	.section:first-child {
		margin-top: 100px;
	}
}



/* ===============================================
ヘッダー
=============================================== */



/* ===============================================
フッター
=============================================== */
.copyright {
	margin: 24px auto;
	font-size: 1.2rem;
	text-align: center;
}