/* ========================================
   足立区 LP (adachi-01) 専用CSS
   モバイルファースト + PC対応
   ======================================== */

/* ========== 共通 ========== */
.adachi01 *,
.adachi01 *::before,
.adachi01 *::after {
	box-sizing: border-box;
}

.adachi01 {
	--color-text-secondary: #666;
	--adachi01-info-label: #A9D6EC;
	--adachi01-info-value-bg: #f9f9f9;
	--adachi01-thumb-bg: #D9D9D9;
	font-family: 'Noto Sans JP', sans-serif;
	color: var(--color-text);
	line-height: 1.625;
	overflow: hidden;
}

/* ========== FV（ファーストビュー） ========== */
.adachi01-fv {
	overflow: hidden;
}

.adachi01-fv__img {
	display: block;
	width: 100%;
	height: auto;
}

.adachi01-fv__link{
  display:block;
}

/* ========== お問い合わせ ========== */
.adachi01-action {
	padding: 16px 5%;
	background-color: var(--color-neutral-white);
}

.adachi01-action__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	padding: 2rem 0;
}

/* ボタンリンク共通 */
.adachi01-btn-link {
	display: block;
	width: 100%;
}

.adachi01-btn-link__img {
	display: block;
	width: 100%;
	height: auto;
}

/* ========== プランセクション ========== */
.adachi01-plan {
	background-color: var(--color-background-tertiary);
	padding: 40px 5%;
}

.adachi01-plan__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.adachi01-plan__lead {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

/* プランカード用ラッパー */
.adachi01-plan__cards {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

/* ========== 葬儀場一覧 ========== */
.adachi01-halls {
	background-color: var(--color-background-secondary);
	padding: 64px 5%;
}

.adachi01-halls__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.adachi01-halls__lead {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.6;
}

.adachi01-halls__map {
	width: 100%;
}

.adachi01-halls__iframe {
	display: block;
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
	aspect-ratio: 4 / 5;
	border: 0;
	border-radius: var(--border-radius-text);
}

.adachi01-halls__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
}

/* 葬儀場アコーディオン */
.adachi01-hall-item {
	background-color: var(--color-neutral-white);
	border-radius: var(--border-radius-text);
	overflow: hidden;
	width: 100%;
	max-width: 380px;
	padding: 0.6rem;
}

.adachi01-hall-item__header {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	list-style: none;
}

.adachi01-hall-item__thumb {
	width: 80px;
	min-width: 80px;
	height: 60px;
	border-radius: var(--border-radius-text);
	overflow: hidden;
	background-color: var(--adachi01-thumb-bg);
}

.adachi01-hall-item__thumb-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.adachi01-hall-item__info {
	flex: 1;
}

.adachi01-hall-item__name {
	font-size: 16px;
	font-weight: bold;
	color: var(--color-text);
	margin: 0;
}

.adachi01-hall-item__area {
	font-size: 12px;
	color: var(--color-text-secondary);
	margin: 4px 0 0;
	display: flex;
	align-items: center;
	gap: 4px;
}

.adachi01-hall-item__area::before {
	content: '';
	display: block;
	width: 14px;
	min-width: 14px;
	height: 18px;
	mask-image: url('../img/icon-map-pin.svg');
	mask-size: contain;
	mask-repeat: no-repeat;
	background-color: var(--color-primary);
}

.adachi01-hall-item__toggle {
	width: 1.5rem;
	height: 1.5rem;
	min-width: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adachi01-hall-item__toggle::before,
.adachi01-hall-item__toggle::after {
	content: '';
	position: absolute;
	background-color: var(--color-primary);
	transition: transform 0.3s;
}

.adachi01-hall-item__toggle::before {
	width: 16px;
	height: 2px;
}

.adachi01-hall-item__toggle::after {
	width: 2px;
	height: 16px;
}

.adachi01-hall-item[open] .adachi01-hall-item__toggle::after {
	transform: rotate(90deg);
}

.adachi01-hall-item__content {
	margin-top: 0.6rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
}

.adachi01-hall-item__slides {
	display: flex;
	gap: 8px;
}

.adachi01-hall-item__slide-img {
	display: block;
	width: calc(50% - 4px);
	max-width: 160px;
	height: 120px;
	object-fit: cover;
	border-radius: var(--border-radius-text);
}

/* 特徴ブロック */
.adachi01-hall-item__features {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	width: 100%;
}

.adachi01-hall-item__plan {
	height: 38px;
	border-radius: 3px;
	padding: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.adachi01-hall-item__plan-label {
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid #fff;
	border-radius: 3px;
	height: 100%;
	width: 100%;
	font-weight: bold;
	color: #fff;
	font-size: var(--font-size-small);
	line-height: normal;
}

.adachi01-hall-item__plan.navy { background: #586A96; }
.adachi01-hall-item__plan.rgreen { background: #58A6A1; }
.adachi01-hall-item__plan.mustard { background: #C2AD6B; }
.adachi01-hall-item__plan.brown { background: #B77D60; }
.adachi01-hall-item__plan.purple { background: #6D4B89; }
.adachi01-hall-item__plan.bred { background: #B27F87; }

.adachi01-hall-item__feature {
	background: #437C78;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0 10px;
	border-radius: 3px;
	height: 38px;
	padding: 4px;
}

.adachi01-hall-item__feature-img {
	width: 20px;
	height: auto;
	display: block;
}

.adachi01-hall-item__feature-label {
	font-weight: bold;
	color: #fff;
	font-size: var(--font-size-small);
	line-height: normal;
}

/* 情報テーブル */
.adachi01-hall-item__info-table {
	display: flex;
	flex-direction: column;
	gap: 2px;
	width: 100%;
}

.adachi01-hall-item__info-row {
	display: flex;
}

.adachi01-hall-item__info-label {
	width: 5em;
	min-width: 5em;
	padding: 6px 8px;
	background-color: var(--adachi01-info-label);
	color: var(--color-text-white);
	font-size: 12px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adachi01-hall-item__info-value {
	flex: 1;
	padding: 6px 8px;
	font-size: 12px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	background-color: var(--adachi01-info-value-bg);
}

.adachi01-hall-item__actions {
	display: flex;
	gap: 8px;
	justify-content: center;
}

/* ホールボタン */
.adachi01-hall-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	height: 2.5rem;
	border-radius: var(--border-radius-button);
	font-size: 16px;
	font-weight: bold;
	text-decoration: none;
	transition: opacity 0.3s;
}

.adachi01-hall-btn:hover {
	opacity: 0.8;
}

.adachi01-hall-btn--phone {
	width: 200px;
	background-color: var(--color-urgent);
	color: var(--color-text-white);
}

.adachi01-hall-btn__icon {
	display: block;
	width: 1rem;
	height: 1rem;
}

.adachi01-hall-btn--detail {
	width: 115px;
	border: 1px solid var(--color-primary);
	color: var(--color-text);
	background-color: var(--color-neutral-white);
}

/* ========== 選ばれる理由 ========== */
.adachi01-strength {
	background-color: var(--color-background-tertiary);
	padding: 40px 5%;
}

.adachi01-strength__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.adachi01-strength__lead {
	font-size: 16px;
	text-align: center;
	line-height: 1.8;
}

.adachi01-strength__cards {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	width: 100%;
}

/* 強みカード */
.adachi01-strength-card {
	width: 100%;
	max-width: 320px;
	background-color: var(--color-neutral-white);
	border-radius: var(--border-radius-button);
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	box-shadow: 0px 10px 16px 0px rgba(0, 0, 0, 0.08);
}

.adachi01-strength-card__header {
	display: flex;
	align-items: center;
	gap: 12px;
}

.adachi01-strength-card__icon {
	width: 2rem;
	height: 2rem;
	flex-shrink: 0;
}

.adachi01-strength-card__icon-img {
	display: block;
	width: 100%;
	height: 100%;
}

.adachi01-strength-card__title {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 4px;
	position: relative;
}

.adachi01-strength-card__title::after {
	content: '';
	display: block;
	width: 24px;
	height: 2px;
	background-color: var(--color-primary);
	border-radius: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
}

.adachi01-strength-card__text {
	font-size: 14px;
	line-height: 1.6;
}

.adachi01-strength-card__badge {
	display: inline-flex;
	align-items: center;
	background-color: var(--color-urgent);
	color: var(--color-text-white);
	font-size: 16px;
	font-weight: 700;
	padding: 4px 12px;
	border-radius: var(--border-radius-text);
	white-space: nowrap;
}

/* ========== お客様の声 ========== */
.adachi01-voice {
	background-color: var(--color-background-tertiary);
	padding: 64px 0;
}

.adachi01-voice__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.adachi01-voice__slider {
	position: relative;
	width: 100%;
	max-width: 1000px;
	padding: 0 32px;
}

.adachi01-voice-swiper .swiper-slide {
	height: auto;
}

/* Voice Card */
.adachi01-voice-card {
	background-color: var(--color-background-secondary);
	padding: 10px;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	height: 100%;
	display: flex;
	flex-direction: column;
}

.adachi01-voice-card__header {
	background-color: var(--color-primary-light);
	margin-bottom: 10px;
}

.adachi01-voice-card__heading {
	font-weight: bold;
	height: 3em;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-text-white);
}

.adachi01-voice-card__title {
	margin-bottom: 10px;
	padding: 0 10px;
}

.adachi01-voice-card__title-text {
	font-size: 18px;
	font-weight: bold;
	line-height: 1.5;
	height: 3em;
	overflow: hidden;
}

.adachi01-voice-card__body {
	display: flex;
	flex: 1;
}

.adachi01-voice-card__icon {
	width: 20%;
}

.adachi01-voice-card__icon-img {
	display: block;
	width: 100%;
}

.adachi01-voice-card__text {
	width: 80%;
	padding-left: 10px;
	overflow: hidden;
}

.adachi01-voice__nav-icon {
	width: 12px;
	height: 20px;
}

.adachi01-voice__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: var(--color-primary);
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	color: var(--color-text-white);
	transition: opacity 0.3s;
}

.adachi01-voice__nav:hover {
	opacity: 0.7;
}

.adachi01-voice__nav--prev {
	left: 0;
}

.adachi01-voice__nav--next {
	right: 0;
}

/* ========== FAQ ========== */
.adachi01-faq {
	background-color: var(--color-background-secondary);
	padding: 64px 5%;
}

.adachi01-faq__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
}

.adachi01-faq__list {
	display: flex;
	flex-direction: column;
	gap: 16px;
	width: 100%;
}

.adachi01-faq-item {
	background-color: var(--color-neutral-white);
	border-radius: var(--border-radius-button);
	overflow: hidden;
}

.adachi01-faq-item__header {
	display: flex;
	align-items: center;
	padding: 20px 16px;
	gap: 12px;
	border: none;
	background: none;
	cursor: pointer;
	text-align: left;
	font-family: inherit;
	list-style: none;
}

.adachi01-faq-item__q,
.adachi01-faq-item__a {
	display: flex;
	font-size: 16px;
	line-height: 1.6;
	color: var(--color-text);
	margin: 0;
}

.adachi01-faq-item__q {
	flex: 1;
	font-weight: bold;
}

.adachi01-faq-item__label {
	min-width: 2em;
	flex-shrink: 0;
	font-weight: bold;
}

.adachi01-faq-item__toggle {
	width: 1.5rem;
	height: 1.5rem;
	min-width: 1.5rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.adachi01-faq-item__toggle::before,
.adachi01-faq-item__toggle::after {
	content: '';
	position: absolute;
	background-color: var(--color-primary);
	transition: transform 0.3s;
}

.adachi01-faq-item__toggle::before {
	width: 18px;
	height: 3px;
}

.adachi01-faq-item__toggle::after {
	width: 3px;
	height: 18px;
}

.adachi01-faq-item[open] .adachi01-faq-item__toggle::after {
	transform: rotate(90deg);
}

.adachi01-faq-item__content {
	padding: 0 16px 20px;
}

/* ========== 火葬場一覧 ========== */
.adachi01-crematorium {
	background-color: var(--color-background-tertiary);
	padding: 64px 5%;
}

.adachi01-crematorium__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.adachi01-crematorium__list {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.adachi01-crematorium-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	background-color: var(--color-neutral-white);
	border-radius: var(--border-radius-text);
	padding: 12px 16px;
}

.adachi01-crematorium-item__icon {
	width: 1rem;
	min-width: 1rem;
	padding-top: 2px;
}

.adachi01-crematorium-item__icon-img {
	display: block;
	width: 1rem;
	height: auto;
}

.adachi01-crematorium-item__name {
	font-size: 16px;
	font-weight: bold;
	color: var(--color-text);
	margin: 0;
}

.adachi01-crematorium-item__address {
	font-size: 12px;
	color: var(--color-text-secondary);
	margin: 4px 0 0;
}

/* ========== エリアガイド ========== */
.adachi01-area-guide {
	background-color: var(--color-neutral-white);
	padding: 64px 5% 0;
}

.adachi01-area-guide__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.adachi01-area-guide__block {
	width: 100%;
}

.adachi01-area-guide__subtitle {
	font-size: 18px;
	font-weight: bold;
	color: var(--color-text);
	padding-left: 12px;
	border-left: 2px solid rgba(31, 142, 90, 0.7);
	margin-bottom: 16px;
}

.adachi01-area-guide__text {
	font-size: 16px;
	line-height: 1.625;
	margin-bottom: 8px;
}

.adachi01-area-guide__em {
	background: linear-gradient(transparent 60%, #F7E91C 60%);
	padding: 0 2px;
}

.adachi01-area-guide__list {
	padding-left: 24px;
	margin: 8px 0 12px;
	font-size: 16px;
	line-height: 1.8;
}

.adachi01-area-guide__list-item {
	list-style: disc;
}

/* ========================================
   PC対応 (min-width: 768px)
   ======================================== */
@media screen and (min-width: 768px) {

	.adachi01-btn-link {
		max-width: 500px;
	}

	.adachi01-action__tel {
		pointer-events: none;
	}

	.adachi01-fv__link{
    	pointer-events:none;
  }

	/* プラン: カード横並び2列 */
	.adachi01-plan__cards {
		display: grid;
		grid-template-columns: repeat(2, max-content);
		justify-content: center;
		gap: 24px;
	}

	/* 葬儀場: 2列グリッド */
	.adachi01-halls__list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		justify-content: center;
		align-items: start;
		justify-items: center;
		gap: 24px;
	}

	/* 葬儀場内ボタン: 電話リンク無効化 */
	.adachi01-hall-btn--phone {
		pointer-events: none;
	}

	/* 選ばれる理由: 3列横並び */
	.adachi01-strength__cards {
		flex-direction: row;
		align-items: stretch;
	}

	.adachi01-strength-card {
		flex: 1;
		max-width: none;
	}

	/* Swiper: スライド幅拡大 */
	.adachi01-voice-swiper .swiper-slide {
		width: 300px;
	}

	/* 火葬場: 3列グリッド */
	.adachi01-crematorium__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
	}

	/* エリアガイド: 幅制限 */
	.adachi01-area-guide__body {
		max-width: 800px;
		margin: 0 auto;
	}
}
