@charset "UTF-8";


/*=======================================================*/
/*					セクション毎のCSS					  */
/*======================================================*/

/*============ 共通 =========== */

/* 親要素からはみ出して画面いっぱいに */
.full {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
@media print {
	.full {
		margin: 0;
		width: 100%;
	}
}

.hline {
	display: inline-block;
	width: 40px; /* 横棒の長さ（調整可） */
	height: 1px; /* 横棒の太さ（調整可） */
	background-color: #2d2d2d; /* 横棒の色 */
	vertical-align: middle;
	margin: 0 0.1em; /* 文章と横棒の間隔 */
}

/*パンくず*/
.sec_pankuzu{
	padding: 0px;
	background-color: var(--base-color);
	position: relative;
	z-index: 1;
}

/* タグ */
.kakomi01{
	text-align: center;
}
.kakomi01 span {
	padding: 3px 7px 2px 7px;
	margin: 0px 0px 5px;
	background-color: var(--main-color);
	border: 1px solid #eee;
	color:#FFF;
	border-radius: 5px;
	text-align: center;
	display: inline-block;
	font-size: clamp(12px, 1.3vw, 12px);
}

/* タグ（左右が揃う）  */
.kakomi-tag01 {
	display: flex;
	flex-wrap: wrap; /* 子要素を折り返す */
	gap: 10px;
	width: 100%;
	justify-content: space-between; /* 左右のボックスを揃える */
}
.kakomi-tag01 p {
	background-color: var(--accent-color3);
	padding: 5px 10px;
	font-size: clamp(14px, 1.6vw, 16px);
	font-family: Arial, sans-serif;
	flex-grow: 1; /* ボックスのサイズを自動調整 */
	min-width: 100px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: center; /* 水平方向の中央揃え */
}
.kakomi-tag01 .end{		/* などを末尾につけたい場合に */
	background-color:transparent;
	padding: 5px;
	font-size: clamp(14px, 1.3vw, 14px);
	font-family: Arial, sans-serif;
	width: 20px;
	min-width: 40px; /* ボックスの最小幅を設定 */
	box-sizing: border-box;
	text-align: right; /* 水平方向の中央揃え */
}


/*======= TOPページ ======*/
/*ご挨拶*/
.greeting {
	padding: clamp(40px, 6vw, 90px) 0 var(--v-space2);
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

.greeting-haba{
	margin: 0 auto;
	max-width: 900px;
	padding: 2% 0 0 0;
}
/* 短期滞在イントロ */
.stay-intro {
	background: #ffffff;
	max-width: 1000px;
	margin: 0 auto;
	padding: 32px 24px;
}

.stay-intro__head {
	margin-bottom: 16px;
}

.stay-intro__label {
	display: inline-block;
	background: var(--main-color);
	color: #ffffff;
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	padding: 3px 14px;
	border-radius: 9999px;
	margin-bottom: 8px;
	opacity: 0.9;
}

.stay-intro__title {
	font-size: 1.45rem;
	font-weight: 800;
	color: #1f2937;
	line-height: 1.35;
	letter-spacing: 0.02em;
	margin: 0;
}

/* ターゲット */
.stay-intro__targets {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	margin: 18px auto 16px;
	max-width: 860px;
}

.stay-intro__target {
	background: #f8fafc;
	border: 1px solid #f1f5f9;
	border-radius: 14px;
	padding: 16px 10px;
	text-align: center;
	transition: transform 0.2s, background 0.2s;
}

.stay-intro__target:hover {
	transform: translateY(-2px);
	background: #f1f5f9;
}

.stay-intro__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 8px;
}

.stay-intro__icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

.stay-intro__text {
	font-size: 1rem;
	font-weight: 700;
	color: #475569;
}

/* 注釈 */
.stay-intro__note {
	border-top: 1px solid #f1f5f9;
	padding-top: 14px;
	margin: 0 auto;
	max-width: 760px;
	color: #64748b;
	font-size: 0.875rem;
	line-height: 1.8;
}

/* SP */
@media (max-width: 640px) {
	.stay-intro {
		padding: 28px 16px;
	}

	.stay-intro__title {
		font-size: 1.2rem;
	}

	.stay-intro__targets {
		grid-template-columns: 1fr;
		gap: 12px;
		margin: 16px 0 14px;
		max-width: none;
	}

	.stay-intro__target {
		padding: 14px 12px;
		display: grid;
		grid-template-columns: 40px 1fr;
		align-items: center;
		gap: 12px;
		text-align: left;
	}

	.stay-intro__icon {
		margin-bottom: 0;
	}

	.stay-intro__icon img {
		width: 32px;
		height: 32px;
	}

	.stay-intro__note {
		max-width: none;
		padding-top: 12px;
	}
}


/*TELバナー*/
.tel_bnr{
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	grid-row-gap: 10px;
}
@media only screen and (max-width: 767px) {
	.tel_bnr{
		grid-template-columns: repeat(1, 1fr);
		grid-row-gap: 10px;
	}
}


/* =========================
	top_sec1 / 選ばれる理由
========================= */

.top_sec1 {
	padding: var(--v-space2) 0;
	background-color: #F5F8FC;

	position: relative;
	z-index: 1;
}

.top_sec1__head {
	text-align: center;
	margin-bottom: 32px;
}

.top_sec1__en {
	font-size: 12px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: var(--main-color);
	margin: 0 0 10px;
}

.top_sec1__ttl {
	font-size: clamp(22px, 2.4vw, 32px);
	line-height: 1.3;
	margin: 0;
	position: relative;
	display: inline-block;
	padding-bottom: 10px;
}

.top_sec1__ttl::after {
	content: "";
	display: block;
	width: 56px;
	height: 3px;
	background: #d9e6f2;
	border-radius: 999px;
	margin: 12px auto 0;
}

/* feature（POINT04） */
.top_sec1__feature {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	grid-template-areas: "img body";
	gap: 24px;
	align-items: center;
	background: #fff;
	border: 1px solid #eaf0f6;
	border-radius: 28px;
	padding: 24px;
	box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
	margin-bottom: 28px;
}

.top_sec1__feature-img {
	grid-area: img;
	margin: 0;
	border-radius: 20px;
	overflow: hidden;
}

.top_sec1__feature-img img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 3 / 2;
	object-fit: cover;
}

.top_sec1__feature-body {
	grid-area: body;
}

.top_sec1__point {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.16em;
	font-weight: 700;
	color: #475569;
	background: #f1f5f9;
	border: 1px solid #e2e8f0;
	padding: 6px 12px;
	border-radius: 10px;
	margin: 0 0 12px;
}

.top_sec1__feature-ttl {
	font-size: clamp(20px, 2.1vw, 30px);
	line-height: 1.25;
	margin: 0 0 12px;
	color: #0f172a;
	position: relative;
	padding-left: 14px;
}

.top_sec1__feature-ttl::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0em;
	width: 8px;
	height: 1.2em;
	background: #d9e6f2;
	border-radius: 3px;
}

.top_sec1__feature-txt {
	margin: 0 0 18px;
	color: #475569;
	line-height: 1.9;
	font-size: 15px;
}

/* stats */
.top_sec1__stats {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	border-top: 1px solid #eef2f7;
	padding-top: 16px;
}

.top_sec1__stat {
	display: grid;
	gap: 6px;
}

.top_sec1__stat-label {
	font-size: 12px;
	color: #64748b;
	letter-spacing: 0.08em;
}

.top_sec1__stat-val {
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

/* cards（POINT01〜03） */
.top_sec1__cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.top_sec1__card {
	background: #fff;
	border: 1px solid #eaf0f6;
	border-radius: 22px;
	padding: 22px 20px;
	box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
}

.top_sec1__card-point {
	font-size: 12px;
	letter-spacing: 0.16em;
	font-weight: 700;
	color: #64748b;
	margin: 0 0 12px;
	position: relative;
	padding-bottom: 10px;
}

.top_sec1__card-point::after {
	content: "";
	display: block;
	width: 44px;
	height: 2px;
	background: #d9e6f2;
	border-radius: 999px;
	margin-top: 10px;
}

.top_sec1__card-ttl {
	font-size: 18px;
	line-height: 1.35;
	margin: 0 0 10px;
	color: #0f172a;
}

.top_sec1__card-txt {
	margin: 0;
	color: #475569;
	line-height: 1.9;
	font-size: 14px;
}

/* responsive */
@media only screen and (max-width: 960px) {
	.top_sec1__feature {
		grid-template-columns: 1fr;
		grid-template-areas:
			"img"
			"body";
	}

	.top_sec1__cards {
		grid-template-columns: 1fr;
	}
}

/* =========================
	top_sec2 / お部屋のご紹介
========================= */

.top_sec2{
	padding: var(--v-space) 0;
	background: #EEF9F4;

	position: relative;
	z-index: 1;
}

.top_sec2__head{
	text-align: center;
	margin-bottom: 28px;
}

.top_sec2__ttl{
	font-size: clamp(22px, 2.4vw, 34px);
	line-height: 1.25;
	margin: 0 0 10px;
	color: #1f2937;
}

.top_sec2__ttl span{
	display: block;
	font-size: 12px;
	letter-spacing: 0.22em;
	font-weight: 700;
	color: var(--main-color);
	margin-top: 10px;
}

.top_sec2__lead{
	margin: 0;
	color: #475569;
	font-size: 14px;
	line-height: 1.9;
}

/* 3カード */
.top_sec2__grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-areas: "card card card";
	gap: 18px;
	margin-top: 24px;
	max-width: 1000px;
	margin: 0 auto;
}

/* カード（高さ揃え：subgrid） */
.top_sec2__card{
	background: #fff;
	border: 1px solid rgba(15, 23, 42, 0.15);
	border-radius: 16px;
	box-sizing: border-box;
	overflow: hidden;

	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 4;
	gap: 0;
}

.top_sec2__img{
	margin: 0;
	background: #fff;
	border-bottom: 1px solid rgba(15, 23, 42, 0.12);
	display: grid;
	place-items: top;
	padding: 18px;
}

.top_sec2__img img{
	width: 100%;
	height: auto;
	display: block;
	max-width: 360px;
}

.top_sec2__name{
	margin: 0;
	padding: 16px 18px 4px;
	font-size: 18px;
	font-weight: 800;
	color: #1f2937;
	text-align: center;
}

.top_sec2__meta{
	margin: 0;
	padding: 0 18px 14px;
	font-size: 13px;
	letter-spacing: 0.06em;
	color: #64748b;
	text-align: center;
}

/* ボタン（カード内） */
.top_sec2__btn{
	margin: 0;
	padding: 0 18px 18px;
	display: grid;
	place-items: center;
}

.top_sec2__btn a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: min(100%, 200px);
	padding: 12px 16px;
	border-radius: 9999px;
	background: rgba(15, 118, 110, 0.85);
	color: #fff;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}

.top_sec2__btn a::after{
	content: "›";
	font-size: 18px;
	line-height: 1;
}

.top_sec2__btn a:hover{
	transform: translateY(-2px);
	filter: brightness(1.02);
}

/* 下のCTA（料金について） */
.top_sec2__cta{
	margin: 22px 0 0;
	display: grid;
	place-items: center;
}

.top_sec2__cta a{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	min-width: 280px;
	padding: 14px 22px;
	border-radius: 10px;
	background: #0b84a6;
	color: #fff;
	font-weight: 800;
	text-decoration: none;
	transition: transform 0.2s, filter 0.2s;
}

.top_sec2__cta a::after{
	content: "→";
	font-size: 16px;
}

.top_sec2__cta a:hover{
	transform: translateY(-2px);
	filter: brightness(1.02);
}

/* responsive */
@media only screen and (max-width: 768px){
	.top_sec2{
		padding: 48px 0;
	}

	.top_sec2__grid{
		grid-template-columns: 1fr;
		grid-template-areas:
			"card";
	}
}

/* お部屋のご紹介 */
/* お部屋タイプ 選択ボタン */
.room_type {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	gap: 10px;
	max-width: 600px;
	margin: 0 auto;
	padding: 30px 20px 0;
}

@media only screen and (max-width: 567px) {
	.room_type {
		grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
	}
}

.room_type__btn {
	display: block;
	text-align: center;
	text-decoration: none;
	width: 160px;
	margin: auto;
	padding: 1rem 0;
	font-weight: bold;
	font-size: 14px;
	background-color: var(--main-color);
	border-radius: 100vh;
	color: #fff;
	border: 2px solid #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
	transition: 0.5s;
}

.room_type__btn:hover {
	color: #fff;
	background-color: #b4e12b;
}

/* ==============
	room_sec1
============== */
.room_sec1 {
	background-color: #fff;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.room_sec1 .container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}

.room_sec1 .room_unit{
	padding-bottom: var(--v-space2);
}
.room_sec1 .room_unit + .room_unit {
	border-top: 1px solid #eee;
}

.room_sec1 .room_unit__header {
	background: linear-gradient(90deg, var(--main-color) 0%, #34d399 100%);
	padding: 10px 15px;
	display: flex;
	align-items: center;
}

.room_sec1 .room_unit__header h2 {
	margin: 0;
	color: #fff;
	font-size: 1.25rem;
	letter-spacing: 0.05em;
}

.room_sec1 .room_unit__content {
	display: flex;
	flex-wrap: wrap;
}

.room_sec1 .room_unit__gallery {
	width: 50%;
	padding: 30px;
	background-color: #fff;
	box-sizing: border-box;
}

.room_sec1 .room_unit__details {
	width: 50%;
	padding: 40px;
	box-sizing: border-box;
}

/* Swiper */
.room_sec1 .swiper {
	width: 100%;
}

.room_sec1 .roomA-main,
.room_sec1 .roomB-main,
.room_sec1 .roomC-main {
	height: 380px;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 10px;
}

.room_sec1 .roomA-main img,
.room_sec1 .roomB-main img,
.room_sec1 .roomC-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.room_sec1 .roomA-thumb,
.room_sec1 .roomB-thumb,
.room_sec1 .roomC-thumb {
	height: 80px;
}

.room_sec1 .roomA-thumb .swiper-slide,
.room_sec1 .roomB-thumb .swiper-slide,
.room_sec1 .roomC-thumb .swiper-slide {
	opacity: 0.5;
	cursor: pointer;
	border-radius: 4px;
	overflow: hidden;
	transition: opacity 0.3s;
}

.room_sec1 .roomA-thumb .swiper-slide-thumb-active,
.room_sec1 .roomB-thumb .swiper-slide-thumb-active,
.room_sec1 .roomC-thumb .swiper-slide-thumb-active {
	border: none;
	outline: 2px solid var(--main-color);
	outline-offset: -2px; /* 内側に出したい場合 */
	opacity: 1;
}

.room_sec1 .roomA-thumb img,
.room_sec1 .roomB-thumb img,
.room_sec1 .roomC-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* 物件概要 */
.room_sec1 .details__title {
	font-size: 1.15rem;
	font-weight: bold;
	color: var(--main-color);
	border-bottom: 2px solid #e5e7eb;
	padding-bottom: 10px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
}

.room_sec1 .details__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 25px;
}

.room_sec1 .details__table th {
	width: 30%;
	text-align: left;
	padding: 15px;
	background-color: #f9fafb;
	border: 1px solid #eee;
	font-size: 0.9rem;
}

.room_sec1 .details__table td {
	padding: 15px;
	border: 1px solid #eee;
	font-size: 0.95rem;
}

.room_sec1 .price-text {
	font-size: 1.4rem;
	font-weight: bold;
	color: #111;
}

.room_sec1 .price-unit {
	font-size: 0.8rem;
	color: #666;
	font-weight: normal;
}

/* 設備リスト */
.room_sec1 .facility-list {
	display: block;
	padding: 0;
	margin: 0;
	list-style: none;
}

.room_sec1 .facility-list li {
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 5px;
	position: relative;
	padding-left: 15px;
}

.room_sec1 .facility-list li::before {
	content: "＊";
	position: absolute;
	left: 0;
	color: var(--main-color);
}

/* 注意事項 */
.room_sec1 .notes-box {
	background-color: #f8fafc;
	padding: 20px;
	border-radius: 8px;
	border-left: 4px solid #cbd5e1;
}

.room_sec1 .notes-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.room_sec1 .notes-list li {
	font-size: 0.75rem;
	color: #64748b;
	margin-bottom: 8px;
	display: flex;
	align-items: flex-start;
}

.room_sec1 .notes-list li::before {
	content: "●";
	color: var(--main-color);
	font-size: 0.6rem;
	margin-right: 8px;
	margin-top: 1px;
}

/* レスポンシブ */
@media only screen and (max-width: 960px) {
	.room_sec1 .room_unit__gallery,
	.room_sec1 .room_unit__details {
		width: 100%;
	}

	.room_sec1 .room_unit__details {
		border-left: none;
		border-top: 1px solid #eee;
		padding: 30px 20px;
	}

	.room_sec1 .roomA-main,
	.room_sec1 .roomB-main,
	.room_sec1 .roomC-main {
		height: 300px;
	}
}
@media only screen and (max-width: 767px) {
	.room_sec1 .room_unit__gallery {
		padding: 30px 0px;
	}
}
/* スライドタイトル表示 */
.room_sec1 .swiper-slide {
	position: relative;
}

.room_sec1 .slide-title {
	position: absolute;
	left: 12px;
	bottom: 12px;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: bold;
	color: #fff;
	background: rgba(0, 0, 0, 0.65);
	border-radius: 999px;
	letter-spacing: 0.05em;
	z-index: 5;
	pointer-events: none;
}

.room_sec1 .swiper-button-next,
.room_sec1 .swiper-button-prev {
	color: #fff;
	text-shadow: 0 0 6px rgba(0,0,0,0.4);
}

@media print {
	/* ===== メイン：アクティブのみ表示 ===== */
	.room_sec1 .room_unit__gallery {
		overflow: hidden !important;
	}

	.room_sec1 .room_unit__gallery .swiper-wrapper {
		transform: none !important;
		transition: none !important;
		display: block !important;
	}

	.room_sec1 .room_unit__gallery .roomA-main .swiper-slide,
	.room_sec1 .room_unit__gallery .roomB-main .swiper-slide,
	.room_sec1 .room_unit__gallery .roomC-main .swiper-slide {
		display: none !important;
		width: 100% !important;
		margin-right: 0 !important;
		flex: none !important;
	}

	.room_sec1 .room_unit__gallery .roomA-main .swiper-slide.swiper-slide-active,
	.room_sec1 .room_unit__gallery .roomB-main .swiper-slide.swiper-slide-active,
	.room_sec1 .room_unit__gallery .roomC-main .swiper-slide.swiper-slide-active {
		display: block !important;
	}

	/* ===== サムネ：表示する（チラ見え防止で“グリッド化”） ===== */
	.room_sec1 .room_unit__gallery .roomA-thumb,
	.room_sec1 .room_unit__gallery .roomB-thumb,
	.room_sec1 .room_unit__gallery .roomC-thumb {
		height: auto !important;
		overflow: hidden !important;
	}

	/* thumbの横スライドを解除して、等幅で並べる */
	.room_sec1 .room_unit__gallery .roomA-thumb .swiper-wrapper,
	.room_sec1 .room_unit__gallery .roomB-thumb .swiper-wrapper,
	.room_sec1 .room_unit__gallery .roomC-thumb .swiper-wrapper {
		transform: none !important;
		transition: none !important;
		display: grid !important;
		grid-template-columns: repeat(6, 1fr) !important; /* 6枚想定 */
		gap: 6px !important;
	}

	.room_sec1 .room_unit__gallery .roomA-thumb .swiper-slide,
	.room_sec1 .room_unit__gallery .roomB-thumb .swiper-slide,
	.room_sec1 .room_unit__gallery .roomC-thumb .swiper-slide {
		display: block !important;
		width: auto !important;
		margin-right: 0 !important;
		opacity: 1 !important;
		outline: none !important;
	}

	/* ナビ等は印刷不要 */
	.room_sec1 .room_unit__gallery .swiper-button-next,
	.room_sec1 .room_unit__gallery .swiper-button-prev,
	.room_sec1 .room_unit__gallery .swiper-pagination,
	.room_sec1 .room_unit__gallery .swiper-notification {
		display: none !important;
	}

	/* 画像比率崩れ防止 */
	.room_sec1 .room_unit__gallery .roomA-thumb img,
	.room_sec1 .room_unit__gallery .roomB-thumb img,
	.room_sec1 .room_unit__gallery .roomC-thumb img {
		width: 100% !important;
		height: 60px !important;
		object-fit: cover !important;
		display: block !important;
	}
}


/* 共同設備 */
.room_sec2 {
	padding: var(--v-space) 0;
	background-color: #EEF9F4;
	position: relative;
	z-index: 1;
}

/* ==============
	room_sec2-card
============== */

/* 親：カードの並び（Grid） */
.room_sec2-card {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

/* 子：カード */
.room_sec2-card__item {
	display: grid;
	grid-template-rows: auto auto 1fr;
	background-color: var(--base-color);
	border: 1px solid #ddd;
	border-radius: 10px;
	overflow: hidden;
	color: var(--txt-color);
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* 写真 */
.room_sec2-card__photo {
	width: 100%;
	margin: 0;
	overflow: hidden;
}

.room_sec2-card__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* タイトル */
.room_sec2-card__title {
	font-size: clamp(17px,2vw,20px);
	margin: 18px 20px 12px;
	text-align: center;
	font-weight: bold;
	color: var(--main-color);
	border-bottom: dotted 2px var(--main-color);
}

/* テキスト */
.room_sec2-card__text {
	padding: 0 22px 22px;
}

.room_sec2-card__text p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

/* 小見出し */
.room_sec2-card__sub {
	padding-top: 18px;
	font-weight: bold;
}

/* 食事時間 */
.room_sec2-card__time {
	margin: 0px 0 0;
	padding: 0;
	list-style: none;
}

.room_sec2-card__time li {
	font-size: 15px;
	line-height: 1.7;
}

/* レスポンシブ */
@media only screen and (max-width: 960px) {
	.room_sec2-card {
		grid-template-columns: repeat(1, 1fr);
		gap: 24px;
	}
}

/* 料金プラン */
.room_sec3 {
	padding: var(--v-space) 0;
	background-color: #fff;
	position: relative;
	z-index: 1;
}

/* =========================
	room_sec3_price
========================= */

.room_sec3_price {
	max-width: 1000px;
	margin: 0 auto;
}

/* ブロック */
.room_sec3_price__block {
	margin-bottom: 50px;
}
.room_sec3_price__block:last-child {
	margin-bottom: 0;
}
.room_sec3_price__title {
	font-size: 20px;
	color: var(--main-color);
	margin-bottom: 10px;
}

.room_sec3_price__note {
	font-size: 14px;
	color: #666;
	margin-bottom: 15px;
	line-height: 1.6;
}

/* テーブル */
.room_sec3_price__table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 15px;
}

.room_sec3_price__table th,
.room_sec3_price__table td {
	border: 1px solid #ccc;
	padding: 14px;
	font-size: 15px;
	text-align: center;
}

.room_sec3_price__table th {
	background-color: var(--accent-color3);
	font-weight: bold;
	color: #333;
}

.room_sec3_price__table td {
	background-color: #fff;
}

/* 単列表 */
.room_sec3_price__table--single th {
	width: 60%;
}

/* 注意書きリスト */
.room_sec3_price__list {
	padding-left: 1.2em;
	margin-top: 10px;
}

.room_sec3_price__list li {
	font-size: 14px;
	color: #555;
	line-height: 1.6;
	list-style: disc;
}

/* レスポンシブ */
@media only screen and (max-width: 767px) {
	.room_sec3_price__table th,
	.room_sec3_price__table td {
		font-size: 14px;
		padding: 10px;
	}

	/* 月額テーブルだけ対象 */
	.room_sec3_price__table--monthly thead {
		display: none;
	}

	.room_sec3_price__table--monthly,
	.room_sec3_price__table--monthly tbody,
	.room_sec3_price__table--monthly tr,
	.room_sec3_price__table--monthly th,
	.room_sec3_price__table--monthly td {
		display: block;
	}

	.room_sec3_price__table--monthly tr {
		border: 1px solid #ccc;
		border-radius: 10px;
		overflow: hidden;
		margin-bottom: 14px;
		background: #fff;
	}

	/* 行見出し（基本室料/敷金/礼金） */
	.room_sec3_price__table--monthly tbody th {
		background-color: var(--accent-color3);
		border: none;
		padding: 12px 14px;
		text-align: left;
		font-weight: bold;
	}

	/* セル（A/B/C） */
	.room_sec3_price__table--monthly tbody td {
		border: none;
		border-top: 1px solid #e5e5e5;
		padding: 12px 14px;
		text-align: right;
		position: relative;
	}

	/* ラベル（A/B/C）を左側に表示 */
	.room_sec3_price__table--monthly tbody td::before {
		content: attr(data-label);
		position: absolute;
		left: 14px;
		top: 50%;
		transform: translateY(-50%);
		font-weight: bold;
		color: #333;
		text-align: left;
	}

	/* colspan（礼金）も自然に見せる */
	.room_sec3_price__table--monthly tbody td[colspan] {
		text-align: right;
	}
}


/*======= FAQ ======*/
.faq_sec1 {
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;
	background-color: #fff;

	position: relative;
	z-index: 1;
}

.faq-item {
	display: grid;
	grid-template-columns: 1.5em 1fr;
	column-gap: 10px;
	row-gap: 5px;
}

.faq-label {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: bold;
	font-size: 110%;
	line-height: 1.5;
	border-radius: 3px;
	width: 1.5em;
	text-align: center;
	align-self: start;
	/* lavelを上揃えに */
}

.faq-label.q {
	background-color: var(--main-color);
}

.faq-label.a {
	background-color: var(--accent-color1);
}

.faq-question,
.faq-answer {
	margin: 0;
	line-height: 1.6;
	text-align: justify;
}

.faq-question {
	font-weight: bold;
}

hr.faqHr {
	margin-top: 15px;
	margin-bottom: 15px;
	border-top: 1px solid #e9e9e9;
}

/*======= 会社案内ページ ======*/
/*会社案内*/
.info_sec1{
	padding: clamp(70px, 6vw, 90px) 0 var(--v-space) 0;
	background-color: #FFF;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}

/* 概要部分のテーブル */

.info_sec1__haba{
	max-width: 850px;
	margin: 0 auto;
}
.info_sec1_container {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	font-family: 'Arial', sans-serif;
}

.info_sec1_container .item {
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.1);
	border-radius: 6px;
	background-color: #fff;
	padding: 12px 16px;
	display: grid;
	grid-template-columns: 180px 1fr;
	align-items: center;
	gap: 20px;
	align-items: stretch;
}

.info_sec1_container .label {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--txt-color);
	white-space: nowrap;
	background-color: var(--accent-color3);
	padding: 5px 7px;
}

.info_sec1_container .content {
	/* display: flex; */
	align-items: center;
	color: #333;
	padding: 5px 7px;
}
.info_sec1_container .content a {
	display: inline-block;
	line-height: inherit;
}

.tel-label {
	display: inline-block;
	width: 48px;          /* ← 幅指定できる */
	margin: 0px 10px 0px 0px;
	font-size: 15px;
	font-weight: bold;
}
.mt4{
	margin-top: 4px;
}

/* レスポンシブ：568px以下で縦並び＋枠内レイアウトも縦に */
@media only screen and (max-width: 568px) {
	.info_sec1_container .item {
		grid-template-columns: 1fr;
		gap:0px;
		padding: 10px 14px;
	}

	.info_sec1_container .label {
		line-height: 1.6;
		font-size: 14px;
	}

	.info_sec1_container .content {
		font-size: 14px;
	}
}


.access_sec1{
	padding: var(--v-space) 0;
	background-color: #F1FAF7;

	position: relative; /* sectionの位置を相対的にする*/ 
	z-index: 1; /* 背景画像より上に表示 */ 
}
/* アクセス部分のテーブル */
.access1 {
	font-weight: bold;
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 5.25em;
}
.access2 {
	border-bottom: 1px dashed #999;
	padding: 5px;
	width: 400px;
}
@media screen and (max-width: 568px) {
	.access1 {
		display: block;
		padding: 8px 2px 2px 2px;
		width: 100%;
		border-bottom: 1px solid rgba(255,255,255,0);
	}
	.access2 {
		display: block;
		padding: 2px;
		width: 99%;
	}
}
