@charset "UTF-8";

/* ========================================
   Base Variables & Reset (Magazine Feature Theme)
======================================== */
:root {
	--color-bg: #f5f6f8; /* ほんのり青みがかった上品なグレー白 */
	--color-bg-white: #ffffff;
	--color-text-main: #111111;
	--color-text-sub: #666666;
	--color-accent: #c06c84; /* 上品なローズピンク */
	--color-gold: #c5a059;
	--color-border: #e2e4e8;

	--font-sans: 'Noto Sans JP', sans-serif;
	--font-serif: 'Shippori Mincho', serif;
	--font-eng: 'Playfair Display', serif;

	--content-max: 1100px;
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: var(--font-sans);
	background-color: var(--color-bg);
	color: var(--color-text-main);
	line-height: 1.8;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

a {
	text-decoration: none;
	color: inherit;
	transition: all 0.3s ease;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.container {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ========================================
   Magazine Hero Section
======================================== */
.mag-hero {
	position: relative;
	width: 100%;
	height: 80vh;
	min-height: 600px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 6rem;
}

.mag-hero-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
}

.mag-hero-bg img {
	width: 100%;
	height: 100%;
	opacity: 0.65;
}

.mag-hero-content {
	position: relative;
	z-index: 10;
	text-align: center;
	color: #fff;
	padding: 2rem;
	max-width: 800px;
}

.mh-en {
	display: block;
	font-family: var(--font-eng);
	font-size: 1rem;
	letter-spacing: 0.3em;
	margin-bottom: 1.5rem;
	color: var(--color-gold);
}

.mh-ja {
	font-family: var(--font-serif);
	font-size: clamp(2rem, 5vw, 3rem);
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 2rem;
	text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.mh-desc {
	font-family: var(--font-sans);
	font-size: 0.95rem;
	font-weight: 300;
	line-height: 2;
	color: #f0f0f0;
	text-align: justify;
	text-align-last: center;
}

/* ========================================
   SEO Essay (編集部のノート風)
======================================== */
.mag-essay {
	max-width: 800px;
	margin: 0 auto 8rem;
	text-align: center;
}

.essay-title {
	font-family: var(--font-serif);
	font-size: 1.5rem;
	font-weight: 800;
	margin-bottom: 2rem;
	color: var(--color-text-main);
}

.essay-text {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	color: var(--color-text-sub);
	line-height: 2.2;
	text-align: justify;
	margin-bottom: 1.5rem;
}

.essay-divider {
	width: 1px;
	height: 60px;
	background-color: var(--color-accent);
	margin: 3rem auto;
}

/* ========================================
   Overlap Shop List (画像文字切れ防止・縦長最適化レイアウト)
======================================== */
.mag-shop-list {
	margin-bottom: 8rem;
}

.overlap-card {
	position: relative;
	margin-bottom: 8rem;
	display: flex;
	flex-direction: column;
}

.overlap-card:last-child {
	margin-bottom: 0;
}

/* 画像エリア */
.oc-image {
	position: relative;
	width: 100%;
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	/* ★ aspect-ratioの強制指定を削除。画像の自然な比率に任せる */
}

/* pictureタグ内のimgの設定 */
.oc-image picture {
	display: block;
	width: 100%;
}

.oc-image picture img {
	width: 100%;
	height: auto; /* ★ 画像の比率を100%維持（トリミングしない） */
	display: block;
	/* ★ 端の文字が切れるのを防ぐため、hover時の拡大(transform)も削除 */
}

/* コンテンツエリア (白い箱) */
.oc-content {
	background: var(--color-bg-white);
	padding: 2.5rem 1.5rem;
	position: relative;
	margin: -4rem 1rem 0; /* スマホ時: 画像の下部から食い込ませて重ねる */
	z-index: 10;
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	border-top: 3px solid var(--color-accent);
}

/* PC閲覧時の大胆な重なり（縦長画像に合わせたOverlapレイアウト） */
@media (min-width: 900px) {
	.overlap-card {
		flex-direction: row;
		align-items: center; /* 縦の中央で揃える */
		margin-bottom: 10rem;
	}
	.oc-image {
		width: 45%; /* ★ 縦長画像(4:5)が美しく見えるように幅を抑える */
		z-index: 1;
	}
	.oc-content {
		width: 60%; /* ★ テキスト箱を広めにとる */
		max-width: 600px;
		margin: 0 0 0 -5%; /* ★ 左に5%ズラして縦長画像に横から重ねる */
		padding: 3.5rem;
		z-index: 10;
	}
	/* 偶数番目は左右を反転させる */
	.overlap-card:nth-child(even) {
		flex-direction: row-reverse;
	}
	.overlap-card:nth-child(even) .oc-content {
		margin: 0 -5% 0 0; /* ★ 右に5%ズラして重ねる */
	}
}

/* カード内テキスト */
.oc-badge {
	display: inline-block;
	font-family: var(--font-eng);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	color: var(--color-accent);
	margin-bottom: 1rem;
}

.oc-title {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.3;
	margin-bottom: 1.5rem;
	color: var(--color-text-main);
}

.oc-desc {
	font-family: var(--font-serif);
	font-size: 0.9rem;
	color: var(--color-text-sub);
	line-height: 1.9;
	margin-bottom: 2rem;
	text-align: justify;
}

/* シンプルな価格・スペック表 */
.oc-meta {
	border-top: 1px solid var(--color-border);
	padding-top: 1.5rem;
	margin-bottom: 2rem;
}

.meta-row {
	display: flex;
	justify-content: space-between;
	align-items: baseline;
	margin-bottom: 0.5rem;
}

.meta-label {
	font-size: 0.85rem;
	color: var(--color-text-sub);
	font-weight: 500;
}

.meta-value {
	font-size: 0.9rem;
	font-weight: 700;
	color: var(--color-text-main);
}

.meta-price {
	font-family: var(--font-eng);
	font-size: 1.4rem;
	color: var(--color-text-main);
}

.meta-price span {
	font-size: 0.8rem;
	font-family: var(--font-sans);
	margin-left: 2px;
}

.oc-btn {
	display: block;
	text-align: center;
	width: 100%;
	padding: 1rem;
	font-weight: 700;
	font-size: 0.9rem;
	background: var(--color-text-main);
	color: #fff;
	transition: background 0.3s;
}

.oc-btn:hover {
	background: var(--color-accent);
}

/* ========================================
   Clean FAQ Section
======================================== */
.mag-faq {
	background: var(--color-bg-white);
	padding: 6rem 0;
	border-top: 1px solid var(--color-border);
	border-bottom: 1px solid var(--color-border);
}

.faq-header {
	text-align: center;
	margin-bottom: 4rem;
}

.faq-en {
	font-family: var(--font-eng);
	font-size: 1rem;
	color: var(--color-accent);
	letter-spacing: 0.2em;
	display: block;
	margin-bottom: 0.5rem;
}

.faq-ja {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 800;
}

.faq-list {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.faq-item {
	border-bottom: 1px solid var(--color-border);
	padding: 2rem 0;
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.faq-item:first-child {
	border-top: 1px solid var(--color-border);
}

@media(min-width: 768px) {
	.faq-item {
		flex-direction: row;
		gap: 3rem;
	}
	.faq-q {
		flex: 0 0 40%;
	}
	.faq-a {
		flex: 1;
	}
}

.faq-q {
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-text-main);
	line-height: 1.6;
}

.faq-q::before {
	content: 'Q.';
	font-family: var(--font-eng);
	color: var(--color-accent);
	font-size: 1.2rem;
	margin-right: 0.5rem;
	font-weight: 900;
}

.faq-a {
	font-size: 0.95rem;
	color: var(--color-text-sub);
	line-height: 1.9;
}

/* ========================================
   Local Guide Section (ホテル利用・エリアコラム)
======================================== */
.mag-local-guide {
	padding-top: 7rem;
	padding-bottom: 7rem;
}

.guide-inner {
	display: flex;
	flex-direction: column;
	gap: 3rem;
}

@media(min-width: 800px) {
	.guide-inner {
		flex-direction: row;
		align-items: center;
		gap: 5rem;
	}
	.guide-image {
		flex: 0 0 45%;
	}
	.guide-content {
		flex: 1;
	}
}

.guide-image {
	position: relative;
}

.guide-image img {
	width: 100%;
	aspect-ratio: 3/4;
	border-radius: 4px;
	box-shadow: 0 15px 40px rgba(0,0,0,0.08);
	object-fit: cover;
}

/* 装飾の枠線 */
.guide-image::before {
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 40%;
	height: 40%;
	border-top: 2px solid var(--color-accent);
	border-left: 2px solid var(--color-accent);
	z-index: -1;
}

.guide-en {
	display: block;
	font-family: var(--font-eng);
	font-size: 0.9rem;
	color: var(--color-accent);
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
}

.guide-ja {
	font-family: var(--font-serif);
	font-size: 1.8rem;
	font-weight: 800;
	line-height: 1.4;
	margin-bottom: 2rem;
	color: var(--color-text-main);
}

.guide-text {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	color: var(--color-text-sub);
	line-height: 2;
	margin-bottom: 1.5rem;
	text-align: justify;
}




/* ========================================
   Empty Shop Message (掲載店舗なし時のUI)
======================================== */
.empty-shop-msg {
	background: var(--color-bg-white);
	padding: 5rem 2rem;
	text-align: center;
	border-top: 3px solid var(--color-accent);
	box-shadow: 0 20px 40px rgba(0,0,0,0.08);
	margin: 0 auto 5rem;
	max-width: 900px;
}

.empty-en {
	display: block;
	font-family: var(--font-eng);
	font-size: 0.9rem;
	color: var(--color-accent);
	letter-spacing: 0.2em;
	margin-bottom: 1rem;
}

.empty-title {
	font-family: var(--font-serif);
	font-size: clamp(1.4rem, 4vw, 1.8rem);
	font-weight: 800;
	color: var(--color-text-main);
	margin-bottom: 1.5rem;
}

.empty-desc {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	color: var(--color-text-sub);
	line-height: 2;
	margin-bottom: 4rem;
}


.btn-empty-user {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: var(--color-accent);
	color: #fff;
	font-weight: 700;
	font-size: 0.95rem;
	border-radius: 50px;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 350px;
	margin-bottom: 4rem; /* 下の運営者向け枠との隙間 */
	box-shadow: 0 4px 15px rgba(192, 108, 132, 0.3);
}

.btn-empty-user:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(192, 108, 132, 0.4);
	color: #fff;
}


/* 運営者への案内枠（点線で切り取られたクーポンや広告枠のようなデザイン） */
.empty-cta {
	max-width: 600px;
	margin: 0 auto;
	padding: 3rem 2rem;
	background: var(--color-bg);
	border: 1px dashed #ccc;
	position: relative;
}

.cta-label {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 700;
	color: var(--color-text-main);
	background: #fff;
	padding: 0.4rem 1.2rem;
	border-radius: 50px;
	margin-bottom: 1.5rem;
	border: 1px solid var(--color-border);
	letter-spacing: 0.1em;
}

.cta-text {
	font-size: 0.9rem;
	color: var(--color-text-sub);
	margin-bottom: 2rem;
	line-height: 1.8;
}

.btn-empty-cta {
	display: inline-block;
	padding: 1.2rem 3rem;
	background: var(--color-text-main);
	color: #fff;
	font-weight: 700;
	font-size: 0.9rem;
	transition: background 0.3s ease;
	width: 100%;
	max-width: 300px;
}

.btn-empty-cta:hover {
	background: var(--color-accent);
}

/* PCのみで改行させるためのユーティリティ */
.pc-only {
	display: none;
}
@media (min-width: 768px) {
	.pc-only {
		display: inline;
	}
}




		/* ========================================
		Footer Elements
		======================================== */

		.seo-area { background: #fdfdfd; padding: 4rem 0; border-top: 1px solid #eee; }
		.seo-area .container { width: 94%; max-width: 1000px; margin: 0 auto; }
		.seo-text h2 { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 800; border-bottom: 2px solid var(--text-main); padding-bottom: 0.5rem; margin-bottom: 1.5rem; }
		.seo-text p { font-size: 0.9rem; color: #555; margin-bottom: 1rem; line-height: 1.8; text-align: justify; font-family: var(--font-serif); }


		.site-footer { background: #111; color: #fff; text-align: center; padding: 3rem 0; font-size: 0.8rem; width:100%; margin:0; }
		.site-footer ul { list-style: none; }
		.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-bottom: 1.5rem; }
		.footer-links a { color: #aaa; transition: color 0.2s; }
		.footer-links a:hover { color: #fff; text-decoration: underline; }

