@charset "utf-8";
/* =====================================================================
   information.css  ／  特定商取引法に基づく表記（page-information.php）

   ・間隔はすべて rem（1rem = 16px）。ボタン内側は em
   ・見出し・光のあしらい・Reservation は flow / contact と同じ作り
   ・表はカンプ実測（1440幅）：幅900px・中央、ラベル列240px、罫線1px
   ・ブレイクポイントは 768px（テーマ共通）／ SP は最小 375px まで対応
   ===================================================================== */

:root {
	--info-line:      #B3B3B3; /* 表の罫線 */
	--info-label-bg:  #EEDDCB; /* ラベル列の地色 */
	--info-text:      #1A1A1A; /* 表の本文 */
	--info-max:       80rem;     /* コンテンツ幅 1280px */
	--info-table-max: 56.25rem;  /* 表の幅 900px */
	--info-label-w:   15rem;     /* ラベル列 240px */
	--info-header-h:  5.1365rem; /* 固定ヘッダーぶんの高さ確保 */
}

.p-information {
	position: relative;
	overflow: hidden;
	background-color: var(--back-color);
	color: var(--main-color);
	font-family: var(--font-jp);
	padding-top: var(--info-header-h);
	padding-bottom: 10rem;
}

/* 右上の光のあしらい（contact / flow と同じ画像・同じ扱い） */
.p-information__bg {
	position: absolute;
	top: var(--info-header-h); /* 固定ヘッダーのぶん下げる */
	right: 0;
	z-index: 0;
	width: 70%;
	aspect-ratio: 2357 / 2993;
	background-image: url("../img/common/bg-sunlight-kasou.webp");
	background-repeat: no-repeat;
	background-position: right top;
	background-size: contain;
	pointer-events: none;
}

/* 画面幅 1440px でちょうど 1280px になる（1280 / 1440 = 88.9%） */
.p-information__inner {
	position: relative;
	z-index: 1;
	width: 88.9%;
	max-width: var(--info-max);
	margin: 0 auto;
}

/* =====================================================================
   ページ見出し（Information／特定商取引法に基づく表記）
   ===================================================================== */
.p-information__head {
	text-align: center;
	padding-top: 5.625rem;
}
.p-information__title {
	font-family: var(--font-en);
	font-size: var(--fs50);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
	color: var(--main-color);
	margin: 0;
}
.p-information__title-jp {
	font-size: var(--fs18);
	letter-spacing: 0.08em;
	color: var(--main-color);
	margin: 0.5rem 0 0;
}

/* =====================================================================
   表
   カンプ実測：表の幅900px・中央、ラベル列240px、罫線1px #B3B3B3、
   セル余白は上下22px・ラベル左23px・値左55px
   ===================================================================== */
.p-information__table {
	width: 100%;
	max-width: var(--info-table-max);
	margin: 5.4375rem auto 0;
	border: 1px solid var(--info-line);
	border-collapse: collapse;
	/* 列幅を指定どおりに固定し、長い文章は値列の中で折り返す */
	table-layout: fixed;
	background-color: #fff;
	font-size: var(--fs15);
	line-height: 1.9;
	color: var(--info-text);
	text-align: left;
}
.p-information__table th,
.p-information__table td {
	border: 1px solid var(--info-line);
	vertical-align: top;
	font-weight: 400;
	overflow-wrap: break-word;
}
.p-information__table th {
	width: var(--info-label-w);
	padding: 1.375rem 1.25rem 1.375rem 1.4375rem;
	background-color: var(--info-label-bg);
}
.p-information__table td {
	padding: 1.375rem 1.375rem 1.375rem 3.4375rem;
}
.p-information__table td p {
	margin: 0;
}

/* キャンセル料の表（罫線なし・内容ぶんの幅） */
.p-information__cancel {
	width: auto;
	margin: 0.75rem 0;
	border: none;
	border-collapse: collapse;
}
.p-information__cancel th,
.p-information__cancel td {
	width: fit-content;
	padding: 0 2.5rem 0 0;
	border: none;
	background-color: transparent;
	font-weight: 400;
	text-align: left;
	white-space: nowrap;
}

/* =====================================================================
   Reservation（ご予約はこちら）
   ===================================================================== */
.p-reservation {
	width: 100%;
	font-family: var(--font-jp);
}
.p-reservation__link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1440 / 365;
	background-image: url("../img/common/bg-reservation.webp");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	color: #fff;
	text-decoration: none;
	-webkit-tap-highlight-color: transparent;
}
.p-reservation__link::before {
	content: "";
	position: absolute;
	inset: 0;
	background-color: rgba(17, 42, 69, 0);
	transition: background-color 0.3s;
}
.p-reservation__link:hover::before {
	background-color: rgba(17, 42, 69, 0.2);
}
.p-reservation__text {
	position: relative;
	z-index: 1;
	text-align: center;
}
.p-reservation__title {
	display: block;
	font-family: var(--font-en);
	font-size: var(--fs40);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.04em;
}
.p-reservation__sub {
	display: block;
	margin-top: 0.375rem;
	font-size: var(--fs18);
	letter-spacing: 0.08em;
}

/* =====================================================================
   SP（〜768px ／ 最小 375px）
   ===================================================================== */
@media (max-width: 768px) {
	:root {
		--info-header-h: 4.042rem;
	}

	.p-information {
		padding-bottom: 6rem;
	}
	.p-information__bg {
		width: 100%;
		aspect-ratio: 787 / 796;
		background-image: url("../img/common/bg-sunlight-sp.webp");
		background-size: 100% auto;
	}
	.p-information__inner {
		width: 100%;
		padding: 0 0.9375rem;
	}

	/* --- 見出し --- */
	.p-information__head {
		padding-top: 2.8125rem;
	}
	.p-information__title-jp {
		font-size: var(--fs20);
		margin-top: 0.375rem;
	}

	/* --- 表 ---
	   ラベル列は割合指定。375px でも「お問い合わせ先」が1行に収まる幅にしている */
	.p-information__table {
		max-width: none;
		margin-top: 2.1875rem;
		font-size: var(--fs16);
		line-height: 1.8;
	}
	.p-information__table th {
		width: 35%;
		padding: 0.9375rem 0.625rem;
	}
	.p-information__table td {
		padding: 0.9375rem 0.625rem;
	}
	.p-information__cancel th,
	.p-information__cancel td {
		padding-right: 1.25rem;
	}

	/* --- Reservation --- */
	.p-reservation__link {
		aspect-ratio: 786 / 600;
		background-image: url("../img/common/bg-reservation-sp.webp");
	}
	.p-reservation__sub {
		margin-top: 0.25rem;
		font-size: var(--fs20);
	}
}
