@charset "UTF-8";

:root {
	/* 色 */
	--color-text: #242F27;
	--color-text-background: rgba(36, 47, 39, 0.8);
	--color-btn-hover: rgba(50, 60, 52, 0.7);
	--color-brown-100: rgba(111, 94, 83, 0.03);
	--color-brown-200: rgba(111, 94, 83, 0.05);
	--color-brown-300: rgba(111, 94, 83, 0.1);
	--color-brown-400: rgba(111, 94, 83, 0.15);
	--color-beige-100: rgba(219, 215, 199, 0.25);
	--color-accent: #D8854F;
	--color-accent-hover: #E09563;
	--color-category-1: rgba(222, 199, 178, 0.65);
	--color-category-2: rgba(225, 134, 51, 0.2);
	--color-category-3: rgba(235, 157, 37, 0.2);

	/* フォントサイズ */
	--fz-s: 14px;
	--fz-m: 16px;
	--fz-l: 18px;
	--fz-xl: 28px;
	--fz-xxl: 36px;

	/* 余白 */
	--section-top: 100px;
	--section-bottom: 150px;
	--section-title-bottom: 80px;
}

@media screen and (max-width:640px){
	:root {
		/* フォントサイズ */
		--fz-m: 14px;
		--fz-xl: 24px;
		--fz-xxl: 28px;

		/* 余白 */
		--section-top: 72px;
		--section-bottom: 80px;
		--section-title-bottom: 56px;
	}
}


/** -----------------------------------------------
　共通
------------------------------------------------**/

html {
	/* リンク飛んだ時に、ヘッダー分下に表示する */
    scroll-padding-top: 100px;
	/* スクロールを滑らかにする */
    scroll-behavior: smooth;
}

body {
	background-color:#fff;

	/*本文テキスト*/
	font-family: "Noto Sans JP", sans-serif;
	font-size: var(--fz-m);
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.04em;
	color: var(--color-text);
}

a {
	text-decoration: none;
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	color: var(--color-text);
	font-weight: 700;
	letter-spacing: 0.08em;
	transition: all 0.3s ease;
}

a:hover {
	opacity: 0.7;
}

li {
	list-style: none;
}

.section-inner {
	width: calc(100% - 192px);
	max-width: 960px;
	margin: 0 auto;
}

.button {
	display: block;
	width: fit-content;
	color: #fff;
	font-size: var(--fz-l);
	text-align: center;
	background-color: var(--color-text-background);
	padding: 12px 32px;
    overflow: hidden;
}

.button:hover {
    background-color: var(--color-btn-hover);
	opacity: 1;
}



/* --- セクションタイトル ----------------- */

.section-title {
	text-align: center;
	margin-bottom: var(--section-title-bottom);
}

.st-en {
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: var(--fz-l);
	letter-spacing: 0.08em;
	margin-bottom: 4px;
}

h2, .cta-area p {
	font-family: "Noto Serif JP", serif;
	font-size: var(--fz-xxl);
	font-weight: 700;
	letter-spacing: 0.08em;
}



/* --- その他テキスト ----------------- */

h3 {
	font-size: var(--fz-l);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.05em;
}


/** -----------------------------------------------
　PC :  画面の横幅が641px以上
------------------------------------------------**/


/* --- ヘッダー ----------------- */

header {
	width: 100%;
	height: 100px;
	background-color: var(--color-text-background);
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
	position: fixed;
	top: 0;
	z-index: 20;
}

h1 {
	width: 160px;
}

h1 img {
	width: 100%;
	height: 100%;
	display: block;
}

.gnav-pc {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 24px;
}

.gnav-pc a {
	font-size: 24px;
	letter-spacing: 0.05em;
	color: #fff;
}

.gnav-pc a.header-btn {
	display: flex;
	align-items: center;
	font-size: var(--fz-l);
	background-color: var(--color-accent);
	padding: 12px 12px 12px 20px;
	gap: 4px;
}

.gnav-pc a.header-btn:hover {
	background-color: var(--color-accent-hover);
	opacity: 1;
}

.header-btn img {
	width: 20px;
	display: block;
	margin-top: 2px;
	transition: transform 0.3s ease;
}

.gnav-pc a.header-btn:hover img {
    transform: translateX(4px);
}



/* ハンバーガーメニューの設定（右に隠れている） */
nav.gnav-tb-sp-wrap {
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    position: fixed;
	top: 100px;
	right: -100%;
    z-index: 100;
    padding-top: 100px;	
	transition: right 0.8s ease;
}

#menu-button {
	display: none;
}


#menu-button {
	display: none;
}


/* --- ファーストビュー ----------------- */

#mainvisual {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: auto;
    aspect-ratio: 1440 / 900;
	background-image: url(../images/mv_pc.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.mv-logo {
	width: 33%;
	max-width: 550px;
	height: auto;
	padding-top: 50px;
}

.mv-logo img {
	width: 100%;
}

.bottom-btn-wrap {
	display: none;
}



/* --- コンセプト ----------------- */

#concept {
	background-color: var(--color-brown-100);
	padding-top: calc(var(--section-top) + 30px);
	padding-bottom: var(--section-bottom);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#concept::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120vw;
	height: 80vh;
	max-height: 600px;
	background-image: url(../images/concept_background.svg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

#concept::after {
	content: "CONCEPT";
	position: absolute;
	top: -48px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: 100px;
	font-weight: 700;
	letter-spacing: 0.13em;
	color: rgba(219, 215, 199, 0.35);
	z-index: 0;
}

.col-2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

#concept .col-2 {
	position: relative;
	z-index: 10;
}

.concept-text {
	flex: 0 1 60%; 
}

.concept-text h2 {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: 32px;
}

#concept .sp-only {
	display: none;
}

.concept-text p {
	line-height: 1.8;
}

.concept-text p+p {
	margin-top: 16px;
}

.concept-pic {
	flex: 0 1 40%;
	max-width: 400px;
	min-width: 300px;
	width: 100%;
	height: auto;
}



/* --- 施設・設備 ----------------- */

#space	{
	background-color: var(--color-brown-300);
	padding-top: var(--section-top);
	padding-bottom: calc(var(--section-bottom) + 30px);
}

.space-item {
	display: flex;
	align-items: flex-end;
	margin-bottom: 64px;
}

.space-item:last-child {
	margin-bottom: 0;
}

.space-pic {
	width: 420px;
	height: auto;
}

.space-text {
	background-color: #fff;
	padding: 32px;
	margin-bottom: 24px;
	margin-left: -32px;
	z-index: 1;
}

.space-text h3 {
	margin-bottom: 12px;
}

.reverse {
	flex-direction: row-reverse;
}

.reverse .space-text {
	margin-left: 0;
	margin-right: -32px;
}



/* --- ご利用方法 ----------------- */

#system {
	background-color: var(--color-beige-100);
	padding-top: var(--section-top);
	padding-bottom: var(--section-bottom);
}

.section-step-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.section-step {
	width: calc((100% - 60px) / 3);
	height: auto;
	text-align: center;
}

.system-pic {
	width: 160px;
	height: 160px;
	margin-bottom: 4px;
}

.step-title-wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
	margin-bottom: 4px;
}

.step-title-wrap h3 {
	text-align: left;
}

.number {
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: 56px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: var(--color-accent);
}

.system-text {
	text-align: left;
	padding: 0 16px;
}



/* --- ご利用プラン ----------------- */

#plan {
	background-color: var(--color-brown-100);
	padding-top: var(--section-top);
	padding-bottom: var(--section-bottom);
}

#plan .sp-only {
	display: none;
}

.plan-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

table {
	width: 100%;
	table-layout: auto;
	border-collapse: separate;
	border-spacing: 8px 0;
	min-width: 960px;
}

thead th:not(.up-left) {
	width: 300px;
	min-width: 250px;
}

.up-left {
	width: 132px;
}

thead th {
	vertical-align: top;
	border-radius: 8px 8px 0 0;
	align-items: flex-start;
	padding: 28px 24px;
}

.standard {
	background-color: rgba(222, 199, 178, 0.65);
}

.weekend-plus {
	background-color: rgba(225, 134, 51, 0.2);
}

.drop-in {
	background-color: rgba(235, 157, 37, 0.2);
}

.plan-title {
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: var(--fz-xl);
	font-weight: 700;
	letter-spacing: 0.07em;
	margin-bottom: 16px;
}

thead p {
	font-weight: 400;
	text-align: left;
}

tbody tr:nth-child(odd) {
	background-color: var(--color-brown-100);
}

tbody tr:nth-child(even) {
	background-color: var(--color-beige-100);
}

tbody th {
	font-size: var(--fz-l);
	line-height: 1.5;
	letter-spacing: 0.05em;
	padding: 0 16px;
	white-space: nowrap;
}

tbody td {
	text-align: center;
	padding: 24px 12px;
}


/* ★料金の行★ */

.price-row {
	padding: 40px 20px;
}

.price-wrap {
	display: inline-block;
	text-align: left;
}

.price {
	color: var(--color-accent);
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: 30px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.03em;
}

.yen {
	color: var(--color-accent);
	font-weight: 700;
	letter-spacing: 0.03em;
}

.tax, .three-times p {
	font-size: 12px;
	letter-spacing: 0.03em;
}

.three-times p {
	margin-bottom: 2px;
}

.one-time {
	margin-bottom: 12px;
}


/* ★利用可能時間の行★ */

.time-wrap {
	display: inline-block;
	text-align: left;
}

.plan-ja {
	display: inline-block;
	width: 4em;
	margin-right: -8px;
}

.plan-en {
	display: inline-block;
	font-family: "Cabin", "Noto Sans JP", sans-serif;
}


/* ★利用エリアの行★ */

.gray {
	opacity: 0.6;
	font-size: var(--fz-s);
	letter-spacing: 0.03em;
}


/* ★設備の行★ */

.facility-row {
	padding: 36px 12px 28px;
}

.table-icon-wrap-top, .table-icon-wrap-bottom {
	display: flex;
	justify-content: center;
	gap: 24px;
	margin-bottom: 16px;
}

.icon {
	width: 28px;
	height: 28px;
	object-fit: contain;
	margin-bottom: 4px;
}

.table-icon {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 36px;
}

.table-icon-wrap-top .table-icon:last-child {
	margin-left: 2px;
}

.bottom-row {
	width: 48px;
}

.icon-text {
	font-size: var(--fz-s);
	line-height: 1.5;
	white-space: nowrap;
}


/* ★こんな方におすすめの行★ */

.recommend {
	padding-right: 20px;
}

#plan li {
	text-align: left;
	list-style-type: disc;
	margin-left: 28px;
}


/** -----------------------------------------------
　Tableの横スクロール開始 :  画面の横幅が1140pxまで
------------------------------------------------**/
@media screen and (max-width:1140px){

#plan .section-title {
	margin-bottom: 40px
}

#plan .sp-only {
	display: block;
	text-align: center;
	margin-bottom: 56px;
}

}



/* --- イベント ----------------- */

#event {
	background-color: var(--color-brown-300);
	padding-top: var(--section-top);
	padding-bottom: var(--section-bottom);
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#event::before {
	content: "";
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 120vw;
	height: 100%;
	max-height: 440px;
	background-image: url(../images/event_background.svg);
	background-size: 100% 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 0;
}

.event-wrap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	position: relative;
	z-index: 10;
}

.event-item {
	width: calc((100% - 80px) / 4);
	height: auto;
	text-align: left;
}

.event-item img {
	display: block;
	width: 100%;
	margin-bottom: 12px;
}

.event-tag {
	display: inline-block;
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: 12px;
	letter-spacing: 0.15em;
	background-color: rgba(222, 199, 178, 0.65);
	padding: 3px 10px 2px;
}

.seminar-tag {
	background-color: rgba(225, 134, 51, 0.2);
}

.event-item .sp-only {
	display: none;
}

.event-schedule {
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: var(--fz-s);
	letter-spacing: 0.08em;
	margin-top: 6px;
}

.event-title {
	font-size: var(--fz-l);
	letter-spacing: 0.03em;
}

#event .button {
	margin: 56px auto 0;
}



/* --- よくある質問 ----------------- */

#faq {
	background-color: var(--color-brown-100);
	padding-top: var(--section-top);
	padding-bottom: var(--section-bottom);
}

.faq-item {
	background-color: var(--color-beige-100);
	padding: 36px 40px;
	margin-bottom: 20px;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.box-head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.box-head:hover {
	opacity: 0.7;
}

.question-wrap, .answer-wrap {
	display: flex;
	align-items: flex-start;
	margin-right: 20px;
}

.q-icon, .a-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 28px;
	height: 28px;
	min-width: 28px;
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: var(--fz-l);
	font-weight: 700;
	line-height: 1;
	border: 1px solid var(--color-text);
	padding-left: 1px;
	margin-right: 16px;
}

.q-icon {
	color: #fff;
	background-color: var(--color-text);
}

.a-icon {
	color: var(--color-text);
	background-color: var(--color-beige-100);
}

.question-wrap .faq-text {
	font-weight: 700;
}

.menu-icon {
	width: 14px;
	min-width: 14px;
	height: 14px;
	position: relative;
}

.menu-icon span {
	display: block;
	width: 100%;
	height: 2px;
	background-color: var(--color-text);
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: transform 0.3s ease;
}

.menu-icon span:last-child {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open .menu-icon span {
	transform: translate(-50%, -50%) rotate(0deg);
}

.box-body {
	margin-top: 32px;
	display: none;
}



/* --- アクセス ----------------- */

#access {
	background-color: var(--color-beige-100);
	padding-top: var(--section-top);
	padding-bottom: calc(var(--section-bottom) + 10px);
}

#access .col-2 {
	align-items: flex-start;
}

.map, .address {
	width: calc((100% - 64px) / 2);
}

.map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 450 / 280;
}

.address .button {
	margin-top: 40px;
}



/* --- CTA ----------------- */

#cta {
	background-image: url(../images/cta_background_pc.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: calc(var(--section-bottom) + 30px) 64px ;
}

.cta-area {
	max-width: 720px;
	width: 100%;
	padding: 64px 0 72px;
	background-color: var(--color-text-background);
	text-align: center;
	margin: 0 auto;
}

#cta .sp-only {
	display: none;
}

.cta-area p {
	color: #fff;
	margin-bottom: 40px;
}

.cta-btn {
	display: inline-block;
	color: #fff;
	font-size: 28px;
	background-color: var(--color-accent);
	padding: 24px 104px;
	position: relative;
}

.cta-btn:hover {
	background-color: var(--color-accent-hover);
	opacity: 1;
}

.cta-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-52%) translateX(0);
	width: 32px;
	height: 32px;
	background-image: url(../images/cta_right.webp);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: transform 0.3s ease;
}

.cta-btn:hover::after {
	transform: translateY(-52%) translateX(8px);
}




/* --- フッター ----------------- */

footer {
	background-color: var(--color-text);
	padding: 48px 0;
}

footer ul {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin-bottom: 12px;
}

footer a {
	color: #fff;
	font-size: var(--fz-s);
	font-weight: 400;
}

footer p {
	color: #fff;
	font-family: "Cabin", "Noto Sans JP", sans-serif;
	font-size: var(--fz-s);
	text-align: center;
}





/** -----------------------------------------------
　Tablet :  画面の横幅が1050pxまで
------------------------------------------------**/
@media screen and (max-width:1050px){

/* --- 共通 ----------------- */

.section-inner {
	width: calc(100% - 128px);
}

/* --- ヘッダー ----------------- */

.gnav-pc-wrap {
	display: none;
}

header {
	padding-right: 16px;
}


/* ハンバーガーメニューのアイコン */

#menu-button {
	display: block;
	width: 72px;
	height: 60px;
	padding: 16px;
}

.menu-button-inner {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}

.menu-button-inner span {
	display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    position: absolute;
	transition: all 0.3s ease;
}

.menu-button-inner span:nth-child(1) {
    top: 0;
}

.menu-button-inner span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
}

.menu-button-inner span:nth-child(3) {
    bottom: 0;
}

.close span:nth-of-type(1){
    width: 100%;
    transform: rotate(45deg);
    top: 13px;
}

.close span:nth-of-type(2){
	opacity: 0;
}

.close span:nth-of-type(3){
    width: 100%;
	transform: rotate(-45deg);
    bottom: 13px;
}



/* ハンバーガーメニューの中身 */

.gnav-tb-sp-wrap.is-open {
    right: 0;
}

.gnav-tb-sp li {
	font-size: var(--fz-xl);
	letter-spacing: 0.04em;
    text-align: center;
    margin-bottom: 40px;
}

.gnav-tb-sp .bottom-btn {
	margin: 48px auto 0;
}



/* --- ファーストビュー ----------------- */

.bottom-btn-wrap {
	display: block;
	position: fixed;
	bottom: 4vh;
	left: 0;
	width: 100%;
	z-index: 20;
}

.bottom-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 280px;
	height: 72px;
	margin: 0 auto;
	color: #fff;
	font-size: 24px;
	background-color: var(--color-accent);
	position: relative;
}

.bottom-btn::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 26px;
	transform: translateY(-52%);
	width: 28px;
	height: 28px;
	background-image: url(../images/cta_right.webp);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

/* 透明にして、クリックもできないようにする */
.bottom-btn-wrap.is-hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}



/* --- コンセプト ----------------- */

#concept::before {
	display: none;
}

.col-2 {
	display: block;
}

.concept-text h2 {
	text-align: center;
}

.concept-text {
	max-width: 520px;
	margin: 0 auto;
}

.concept-text p {
	line-height: 2;
}

.concept-text p+p {
	margin-top: 24px;
}

.concept-text .pc-only {
	display: none;
}

.concept-pic {
	display: block;
	width: 100%;
	max-width: 400px;
	height: auto;
	padding-left: 2%;
	margin: 56px auto 0;
}



/* --- 施設・設備 ----------------- */

/** -----------------------------------------------
　Tab小さめ :  画面の横幅が910pxまで
------------------------------------------------**/
@media screen and (max-width:910px){

.space-item {
	flex-direction: column;
	max-width: 420px;
	margin: 0 auto 72px;
}

.space-item:last-child {
	margin-bottom: 0;
}

.space-pic {
	width: 100%;
}

.space-text {
	width: 100%;
	padding: 28px 26px 32px 26px;
	margin: 0;
}

.space-text h3 {
	margin-bottom: 10px;
}

.reverse .space-text {
	margin: 0;
}

}



/* --- ご利用方法 ----------------- */

.section-step-wrap {
	flex-direction: column;
}

.section-step {
	width: 100%;
	max-width: 352px;
	text-align: center;
	margin: 0 auto 64px;
}

.section-step:last-child {
	margin-bottom: 0;
}

.system-pic {
	margin-bottom: 0;
}

.step-title-wrap {
	margin-bottom: 0;
}



/* --- ご利用プラン ----------------- */

#plan .section-inner {
	width: 100%;
	max-width: none;
	padding: 0;
}

table {
	width: 1126px;
	padding-left: 64px;
}



/* --- イベント ----------------- */

#event::before {
	display: none;
}

.event-wrap {
	flex-wrap: wrap;
	row-gap: 48px;
}

.event-item {
	width: calc((100% - 48px) / 2);
}



/* --- よくある質問 ----------------- */

.box-head {
	align-items: flex-start;
}

.menu-icon {
	margin-top: 0.5em;
}



/* --- アクセス ----------------- */

#access .col-2 {
	display: block;
}

.map, .address {
	width: 100%;
	max-width: 600px;
	margin: 0 auto;
}

.map iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 450 / 280;
}

.address {
	margin-top: 24px;
}

.address .button {
	margin: 56px auto 0;
}


}



/** -----------------------------------------------
　Smartphone :  画面の横幅が640pxまで
------------------------------------------------**/
@media screen and (max-width:640px){


/* --- 共通 ----------------- */

html {
    scroll-padding-top: 70px;
}

body {
	line-height: 1.7;
}

.section-inner {
	width: 100%;
	padding: 0 32px;
}

.button {
	font-size: 16px;
	width: 208px;
	height: 52px;
	padding: 12px 0;
}



/* --- セクションタイトル ----------------- */

.st-en {
	font-size: 16px;
	line-height: 1;
}



/* --- ヘッダー ----------------- */

header {
	height: 70px;
	padding: 0 4px 0 20px;
}

h1 {
	width: 104px;
}


/* ハンバーガーメニューのアイコン */

#menu-button {
	width: 64px;
	height: 52px;
	padding: 16px;
}

.close span:nth-of-type(1){
    top: 9px;
}

.close span:nth-of-type(3){
    bottom: 9px;
}


/* ハンバーガーメニューの中身 */

nav.gnav-tb-sp-wrap {
	top: 70px;
}

/* ハンバーガーメニューの中身 */

nav.gnav-tb-sp-wrap {
	padding-top: 70px;
}

.gnav-tb-sp-wrap.is-open {
    right: 0;
}

.gnav-tb-sp li {
	font-size: var(--fz-l);
    margin-bottom: 24px;
}

.gnav-tb-sp .bottom-btn {
	margin: 36px auto 0;
}



/* --- ファーストビュー ----------------- */

#mainvisual {
	display: block;
	height: auto;
	aspect-ratio: 375 / 700;
	background-image: url(../images/mv_sp.webp);
	position: relative;
}

.mv-logo {
	position: absolute;
	top: 24%;
	left: 50%;
    transform: translateX(-50%);
	width: 70%;
	max-width: 300px;
	height: auto;
	padding-top: 0;
}

.mv-logo img {
	width: 100%;
}

.bottom-btn {
	width: 208px;
	height: 58px;
	font-size: 20px;
}

.bottom-btn::after {
	right: 16px;
	width: 24px;
	height: 24px;
}


/* --- コンセプト ----------------- */

#concept {
	padding: 64px 0;
}

#concept::after {
	top: -24px;
	font-size: 48px;
}

.concept-text h2 {
	font-size: 20px;
}

#concept .sp-only {
	display: inline;
}

.concept-pic {
	margin: 32px auto 0;
}



/* --- 施設・設備 ----------------- */

#space	{
	padding-bottom: var(--section-bottom);
}

.space-item {
	margin-bottom: 48px;
}

.space-item:last-child {
	margin-bottom: 0;
}

.space-text h3 {
	margin-bottom: 8px;
}

.space-text {
	padding: 24px 22px 28px 24px;
	margin: 0;
}



/* --- ご利用方法 ----------------- */

.section-step {
	margin-bottom: 56px;
}

.section-step:last-child {
	margin-bottom: 0;
}

.system-pic {
	width: 144px;
	height: 144px;
}

.number {
	font-size: 48px;
}



/* --- ご利用プラン ----------------- */

#plan .section-title {
	margin-bottom: 24px
}

#plan .sp-only {
	margin-bottom: 48px;
}

table {
	padding-left: 32px;
}

.up-left {
	width: 112px;
}

thead th {
	align-items: flex-start;
	padding: 32px 24px 28px;
}

thead th:not(.up-left) {
	width: 330px;
}

tbody th {
	font-size: 16px;
	padding: 10px 12px;
}


/* ★料金の行★ */

.price-row {
	padding: 28px 12px;
}

.price {
	font-size: 26px;
}

.three-times p {
	margin-bottom: 2px;
}

.one-time {
	margin-bottom: 8px;
}


/* ★設備の行★ */

.facility-row {
	padding: 32px 12px 24px;
}

.all-icon-wrap {
	display: flex;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 10px;
}

.table-icon-wrap-top, .table-icon-wrap-bottom {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-bottom: 6px;
}

.table-icon-wrap-top {
	gap: 0;
}

.table-icon-wrap-top .table-icon:first-child {
	margin-right: -2px;
}

.table-icon-wrap-top .table-icon:last-child {
	margin-left: 4px;
}

.table-icon {
    width: 50px; 
}

.icon {
	width: 22px;
	height: 22px;
}

.icon-text {
	font-size: 12px;
}



/* --- イベント ----------------- */

.event-wrap {
	row-gap: 24px;
}

.event-item {
	width: calc((100% - 24px) / 2);
}

.event-item img {
	margin-bottom: 8px;
}

.event-item .sp-only {
	display: inline;
}

.event-title {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	font-size: 16px;
}



/* --- よくある質問 ----------------- */

.faq-item {
	padding: 20px;
	margin-bottom: 16px;
}

.faq-item:last-child {
	margin-bottom: 0;
}

.box-head {
	align-items: flex-start;
}

.question-wrap, .answer-wrap {
	margin-right: 8px;
}

.q-icon, .a-icon {
	width: 24px;
	height: 24px;
	min-width: 24px;
	font-size: 16px;
	margin: 2px 12px 0 0;
}

.box-body {
	margin-top: 20px;
}




/* --- アクセス ----------------- */

.address {
	margin-top: 8px;
}

.address .button {
	margin: 32px auto 0;
}



/* --- CTA ----------------- */

#cta {
	background-image: url(../images/cta_background_sp.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding: var(--section-bottom) 32px;
}

.cta-area {
	max-width: 400px;
	padding: 40px 0 48px;
}

#cta .sp-only {
	display: inline;
}

.cta-area p {
	margin-bottom: 28px;
}

.cta-btn {
	font-size: 20px;
	width: 260px;
	height: auto;
	padding: 20px 0;
}

.cta-btn::after {
	right: 32px;
	width: 24px;
	height: 24px;
}



/* --- フッター ----------------- */

footer {
	padding: 36px 0;
}

footer ul {
	flex-direction: column;
	gap: 0;
	margin-bottom: 16px;
}

footer a {
	font-size: 12px;
}

}