/*
Theme Name: HALE VISIONS
Description: ハレビジョンズ コーポレートサイト
Version: 1.0.0
Text Domain: hale-visions
*/

/* =============================================
共通設定 / Reset
============================================= */
*,
*::before,
*::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

:root {
	--color-brown: #775d4a;
	--color-gold: #c29027;
	--color-white: #ffffff;
	--color-cream: #f8f4e6;
	--font-main: "Noto Sans JP", sans-serif;
	--content-width: 1080px;
	--content-padding: max(20px, calc((100% - var(--content-width)) / 2));
}

body {
	font-family: var(--font-main);
	-webkit-font-smoothing: antialiased;
	padding-top: 94px;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

/* =============================================
Header / Navigation
============================================= */
.header {
	background-color: var(--color-brown);
	box-shadow: 0 3px 2px rgba(0, 0, 0, 0.17);
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}

.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1366px;
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- Logo ---------- */
.header__logo {
	display: block;
	flex-shrink: 0;
	background: #fff;
	padding: 14px 20px;
}

.header__logo-img {
	width: 295px;
	height: auto;
}

/* ---------- Nav ---------- */
.header__nav {
	display: flex;
	align-items: center;
	gap: 32px;
	flex-shrink: 0;
}

.nav__list {
	display: flex;
	align-items: center;
	gap: 32px;
}

.nav__link {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-white);
	letter-spacing: 0.32px;
	line-height: 1.6;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.nav__link:hover {
	opacity: 0.7;
}

/* ---------- CTA Button ---------- */
.nav__cta {
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: var(--color-gold);
	padding: 10px 26px;
	border-radius: 999px;
	transition: opacity 0.3s;
}

.nav__cta:hover {
	opacity: 0.85;
}

.nav__cta-icon {
	width: 25px;
	height: 18px;
	flex-shrink: 0;
}

.nav__cta-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-cream);
	line-height: 1.6;
	white-space: nowrap;
	text-align: center;
}

/* =============================================
FV (First View / Hero)
============================================= */
.fv {
	position: relative;
	background-color: var(--color-cream);
	height: 770px;
	overflow: hidden;
}

.fv__inner {
	position: relative;
	max-width: 1366px;
	height: 100%;
	margin: 0 auto;
}

/* ---------- 背景テクスチャ ---------- */
.fv__bg-texture {
	position: absolute;
	top: -117px;
	left: 0;
	width: 100%;
	min-width: 1426px;
	height: 1019px;
	object-fit: cover;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* ---------- メイン写真 ---------- */
.fv__photo-wrap {
	position: absolute;
	top: -90px;
	left: 50%;
	transform: translateX(-50%);
	width: 1180px;
	height: 770px;
	overflow: hidden;
	border-radius: 0 0 40px 40px;
}

.fv__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fv__photo--sp {
	display: none;
}

/* ---------- キャッチコピー ---------- */
.fv__copy {
	position: absolute;
	left: 50px;
	top: 405px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

.fv__copy-line {
	display: inline-flex;
}

.fv__copy-text {
	display: inline-block;
	background-color: var(--color-white);
	padding: 6px 28px 6px 48px;
	border-radius: 20px;
	font-size: 39px;
	font-weight: 500;
	color: var(--color-brown);
	letter-spacing: 3.12px;
	line-height: 1.6;
	white-space: nowrap;
}

/* ---------- 装飾：緑のペイント（左下） ---------- */
.fv__deco-green {
	position: absolute;
	left: -58px;
	bottom: 30px;
	width: 383px;
	height: auto;
	transform: rotate(17.78deg);
	pointer-events: none;
	z-index: 1;
}

/* ---------- 装飾：黄色のペイント（右下） ---------- */
.fv__deco-yellow {
	position: absolute;
	right: -30px;
	bottom: 30px;
	width: 410px;
	height: auto;
	pointer-events: none;
	z-index: 1;
}

/* ---------- 装飾：ローラー（右下） ---------- */
.fv__deco-roller {
	position: absolute;
	right: -50px;
	bottom: 80px;
	width: 195px;
	height: auto;
	transform: rotate(-119.41deg);
	pointer-events: none;
	z-index: 2;
}

/* =============================================
共通：セクションタイトル（家アイコン付き）
============================================= */
.section-title {
	display: flex;
	align-items: center;
	gap: 16px;
	padding-bottom: 10px;
	margin-bottom: 20px;
	position: relative;
}

/* 家アイコン画像 */
.section-title__house {
	width: 56px;
	height: auto;
	flex-shrink: 0;
}

/* 下線 */
.section-title__line {
	position: absolute;
	left: 0;
	bottom: 6px;
	width: 100%;
	height: 6px;
	border-bottom: 2px solid #775D4A;
}

.section-title__line--green {
	background-color: #5c9a91;
}

.section-title__line--gold {
	background-color: #ffcb2f;
}

/* テキスト */
.section-title__text {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.6;
	margin: 0;
}

/* =============================================
ペット塗装セクション
============================================= */
.pet-section {
	position: relative;
	background-color: var(--color-white);
	padding: 180px var(--content-padding);
	overflow: hidden;
}

/* ---------- 背景写真 ---------- */
.pet-section__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.pet-section__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pet-section__bg-img--dog {
	z-index: 0;
}

.pet-section__bg-img--cat {
	z-index: 1;
}

/* ---------- コンテンツカード ---------- */
.pet-section__card {
	position: relative;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 30px;
	padding: 48px 120px;
}

/* ---------- 説明文 ---------- */
.pet-section__body {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
}

/* =============================================
項目セクション（外装・内装）
============================================= */
.items {
	position: relative;
	background-color: var(--color-cream);
	padding: 120px var(--content-padding);
	overflow: hidden;
}

/* ---------- 背景テクスチャ ---------- */
.items__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
}

/* ---------- 行レイアウト ---------- */
.items__row {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 80px;
}

.items__row + .items__row {
	margin-top: 100px;
}

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

/* ---------- テキスト ---------- */
.items__text {
	flex: 1;
	min-width: 0;
}

.items__title-wrap {
	margin-bottom: 16px;
}

.items__title {
	font-size: 22px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.6;
	margin: 0;
	padding-bottom: 6px;
}

.items__title-line {
	display: block;
	width: 530px;
	height: 0;
	border-bottom: 2px solid #5c9a91;
}

.items__body {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
}

/* ---------- 写真 ---------- */
.items__image {
	flex-shrink: 0;
	width: 470px;
	height: 300px;
	border-radius: 30px;
	overflow: hidden;
}

.items__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =============================================
こんなお悩みありませんか? セクション
============================================= */
.worries {
	position: relative;
	height: 887px;
	overflow: hidden;
	background-color: #f8f4e6;
}

/* ---------- 背景 ---------- */
.worries__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("images/bg-dog.png") center bottom / cover no-repeat;
	pointer-events: none;
}

/* ---------- タイトル（吹き出し） ---------- */
.worries__title-wrap {
	position: relative;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding-top: 86px;
	margin-bottom: 40px;
}

.worries__title {
	position: relative;
	display: inline-block;
	margin: 0;
}

.worries__title-bg {
	display: block;
	width: 100%;
	height: auto;
}

.worries__title-text {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 32px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	letter-spacing: 1.28px;
	white-space: nowrap;
}

/* ---------- 悩みバブル群 ---------- */
.worries__bubbles {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	padding: 0 var(--content-padding);
}

.worries__row {
	display: flex;
	justify-content: center;
	gap: 50px;
}

.worries__row--top {
	gap: 120px;
}

.worries__row--bottom {
	gap: 50px;
}

/* ---------- 個別バブル ---------- */
.worries__bubble {
	width: 228px;
}

.worries__bubble img {
	width: 100%;
	height: auto;
}

/* =============================================
断熱塗装のメリット セクション
============================================= */
.merit {
	position: relative;
	background-color: var(--color-cream);
	padding: 90px var(--content-padding) 140px;
	overflow: hidden;
}

/* ---------- 背景テクスチャ ---------- */
.merit__bg-texture {
	position: absolute;
	top: -87px;
	left: -30px;
	width: 1426px;
	height: auto;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル ---------- */
.merit__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 32px;
}

.merit__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

/* ドットセパレーター */
.merit__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.merit__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.merit__dot--gold {
	background-color: #c29027;
}

.merit__dot--green {
	background-color: #5c9a91;
}

.merit__dot--brown {
	background-color: var(--color-brown);
}

.merit__dot--teal {
	background-color: #66d6d4;
}

.merit__heading-ja {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 8px;
}

/* キラキラ装飾 */
.merit__sparkle {
	flex-shrink: 0;
	width: 30px;
	height: 27px;
}

/* ---------- コンテンツカード ---------- */
.merit__card {
	position: relative;
	z-index: 1;
	background-color: var(--color-white);
	border: 3px solid #ffcb2f;
	border-radius: 30px;
	padding: 48px 120px;
	box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.15);
}

/* ---------- 説明文 ---------- */
.merit__body {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
}

/* =============================================
お客様の声 セクション
============================================= */
.voice {
	position: relative;
	padding: 120px var(--content-padding);
	overflow: hidden;
}

/* ---------- 背景テクスチャ ---------- */
.voice__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル ---------- */
.voice__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 60px;
}

.voice__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

.voice__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.voice__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.voice__dot--gold {
	background-color: #c29027;
}

.voice__dot--green {
	background-color: #5c9a91;
}

.voice__dot--brown {
	background-color: var(--color-brown);
}

.voice__dot--teal {
	background-color: #66d6d4;
}

.voice__heading-ja-wrap {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 8px;
	padding-bottom: 30px;
}

.voice__heading-ja {
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

.voice__heading-deco {
	pointer-events: none;
	flex-shrink: 0;
}

.voice__heading-deco--line {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 212px;
	height: auto;
}

.voice__heading-deco--sparkle {
	width: 20px;
	height: auto;
}

/* ---------- カード群 ---------- */
.voice__cards {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 12px;
	justify-content: center;
}

/* ---------- 個別カード ---------- */
.voice__card {
	flex: 1;
	min-width: 0;
	background-color: var(--color-white);
	border: 2px solid #c29027;
	border-radius: 30px;
	padding: 32px 24px 36px;
	box-shadow: 1px 4px 1px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.voice__card-title-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.voice__card-title {
	font-size: 20px;
	font-weight: 700;
	color: #c29027;
	line-height: 1.6;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

.voice__card-line {
	display: block;
	width: 125px;
	height: 0;
	border-bottom: 2px solid #c29027;
}

.voice__card-body {
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	line-height: 1.6;
	margin: 0;
}

/* =============================================
施工事例 セクション
============================================= */
.portfolio {
	position: relative;
	padding: 120px 0;
	overflow: clip;
}

/* ---------- 背景テクスチャ ---------- */
.portfolio__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル ---------- */
.portfolio__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 60px;
}

.portfolio__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

.portfolio__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.portfolio__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.portfolio__dot--gold {
	background-color: #c29027;
}

.portfolio__dot--green {
	background-color: #5c9a91;
}

.portfolio__dot--brown {
	background-color: var(--color-brown);
}

.portfolio__dot--teal {
	background-color: #66d6d4;
}

.portfolio__heading-ja-wrap {
	position: relative;
	display: inline-block;
}

.portfolio__heading-deco {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 498px;
	max-width: 498px;
	height: auto;
	pointer-events: none;
}

.portfolio__heading-ja {
	position: relative;
	z-index: 1;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

/* ---------- スライダー（Swiper） ---------- */
.portfolio__slider {
	position: relative;
	z-index: 1;
	padding: 0 var(--content-padding);
	padding-bottom: 50px!important;
	margin-bottom: 20px;
}

.portfolio__slider .swiper-pagination {
	bottom: 0;
}

.portfolio__slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background-color: #e1e1e1;
	opacity: 1;
}

.portfolio__slider .swiper-pagination-bullet-active {
	background-color: #5c9a91;
}

/* ---------- 個別アイテム ---------- */
.portfolio__item {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.portfolio__item-image {
	width: 100%;
	aspect-ratio: 340 / 230;
	overflow: hidden;
}

.portfolio__item-image--ba {
	aspect-ratio: auto;
}

.portfolio__item-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- Before / After（スライダー内） ---------- */
.portfolio__ba {
	display: flex;
	gap: 4px;
	width: 100%;
}

.portfolio__ba-half {
	flex: 1;
	position: relative;
	overflow: hidden;
	border-radius: 6px;
}

.portfolio__ba-half--before {
	border: 2px solid #b0b0b0;
}

.portfolio__ba-half--after {
	border: 2px solid #5c9a91;
}

.portfolio__ba-photo {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	display: block;
}

.portfolio__ba-label {
	position: absolute;
	top: 0;
	left: 0;
	padding: 3px 10px;
	font-family: "Montserrat", sans-serif;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
}

.portfolio__ba-label--before {
	background-color: #888;
}

.portfolio__ba-label--after {
	background-color: #5c9a91;
}

.portfolio__item-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.portfolio__item-title {
	font-size: 18px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
	margin: 0;
}

.portfolio__item-meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.portfolio__item-tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	background-color: var(--color-brown);
	font-size: 15px;
	font-weight: 500;
	color: var(--color-white);
	letter-spacing: 0.3px;
	line-height: 1.6;
	white-space: nowrap;
}

.portfolio__item-location {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-brown);
	line-height: 1.6;
}



/* =============================================
その他こんなことやってます セクション
============================================= */
.other {
	position: relative;
	background-color: var(--color-cream);
	padding: 80px var(--content-padding);
	overflow: hidden;
}

/* ---------- 背景テクスチャ ---------- */
.other__bg-texture {
	position: absolute;
	top: -87px;
	left: -30px;
	width: 1426px;
	height: auto;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル ---------- */
.other__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 60px;
}

.other__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

.other__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.other__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.other__dot--gold { background-color: #c29027; }
.other__dot--green { background-color: #5c9a91; }
.other__dot--brown { background-color: var(--color-brown); }
.other__dot--teal { background-color: #66d6d4; }

.other__heading-ja-wrap {
	position: relative;
	display: inline-block;
}

.other__heading-deco {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 634px;
	max-width: 634px;
	height: auto;
	pointer-events: none;
}

.other__heading-ja {
	position: relative;
	z-index: 1;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

/* ---------- コンテンツ ---------- */
.other__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 48px;
}

/* ---------- タグ一覧（左側） ---------- */
.other__tags-area {
	width: 500px;
	flex-shrink: 0;
}

.other__category {
	font-size: 24px;
	font-weight: 700;
	color: #c29027;
	line-height: 1.6;
	margin: 0 0 10px;
}

.other__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* 矢印型タグ（右向き矢印） */
.other__tag {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 40px;
	padding-right: 16px;
	background-color: var(--color-gold);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	white-space: nowrap;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

/* ---------- 写真（右側） ---------- */
.other__images {
	position: relative;
	flex: 1;
	min-height: 400px;
}

.other__image {
	width: 360px;
	height: 250px;
	border-radius: 30px;
	overflow: hidden;
}

.other__image--back {
	position: relative;
	z-index: 1;
}

.other__image--front {
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 2;
}

.other__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* =============================================
高齢者のための安心・快適な住まいづくり セクション
============================================= */
.elderly {
	position: relative;
	background-color: var(--color-white);
	padding: 180px var(--content-padding);
	overflow: hidden;
}

/* ---------- 背景写真 ---------- */
.elderly__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.elderly__bg-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* ---------- コンテンツカード ---------- */
.elderly__card {
	position: relative;
	z-index: 2;
	background-color: rgba(255, 255, 255, 0.82);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 30px;
	padding: 48px 120px;
}

/* ---------- 説明文 ---------- */
.elderly__body {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
}

/* =============================================
CTA（お問い合わせ） セクション
============================================= */
.cta {
	background-color: var(--color-cream);
	padding: 80px var(--content-padding);
	display: flex;
	justify-content: center;
}

.cta__card {
	width: 854px;
	background-color: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 30px;
	box-shadow: 20px 20px 12px 0 rgba(0, 0, 0, 0.1);
	padding: 48px 0 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

/* ---------- タイトル ---------- */
.cta__title-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.cta__title-en {
	font-family: "Montserrat", sans-serif;
	font-size: 80px;
	font-weight: 800;
	color: #c29027;
	letter-spacing: 6.4px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

.cta__title-ja {
	font-size: 28px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

/* ---------- 縦線 ---------- */
.cta__divider {
	display: block;
	width: 1px;
	height: 38px;
	background-color: var(--color-brown);
}

/* ---------- 説明文＋ボタン ---------- */
.cta__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.cta__desc {
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.8;
	letter-spacing: 0.64px;
	text-align: center;
	margin: 0;
}

.cta__button {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: var(--color-brown);
	padding: 10px 40px;
	border-radius: 999px;
	transition: opacity 0.3s;
}

.cta__button:hover {
	opacity: 0.85;
}

.cta__button-icon {
	width: 28px;
	height: 20px;
	flex-shrink: 0;
}

.cta__button-text {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.6;
	white-space: nowrap;
	text-align: center;
}

/* =============================================
Footer
============================================= */
.footer {
	background-color: var(--color-brown);
	padding: 56px var(--content-padding) 12px;
}

.footer__inner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 48px;
}

/* ---------- 左：ロゴ＋住所 ---------- */
.footer__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.footer__logo {
	display: block;
	background: #fff;
	text-align: center;
	padding: 8px;
}

.footer__logo-img {
	width: 295px;
	height: auto;
}

.footer__address {
	font-size: 15px;
	font-weight: 400;
	color: var(--color-white);
	line-height: 1.6;
	font-style: normal;
	white-space: nowrap;
}

/* ---------- 右：ナビ＋許可番号 ---------- */
.footer__right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 12px;
}

.footer__nav-row {
	display: flex;
	align-items: center;
	gap: 22px;
}

.footer__nav {
	display: flex;
	align-items: center;
	gap: 0;
}

.footer__nav-item {
	display: flex;
	align-items: center;
}

.footer__nav-item:not(:last-child)::after {
	content: "";
	display: inline-block;
	width: 1px;
	height: 16px;
	background-color: var(--color-white);
	margin: 0 16px;
}

.footer__nav-link {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-white);
	line-height: 1.6;
	white-space: nowrap;
	transition: opacity 0.3s;
}

.footer__nav-link:hover {
	opacity: 0.7;
}

/* CTAボタン（ヘッダーと同じスタイル） */
.footer__cta {
	display: flex;
	align-items: center;
	gap: 6px;
	background-color: var(--color-gold);
	padding: 10px 26px;
	border-radius: 999px;
	transition: opacity 0.3s;
}

.footer__cta:hover {
	opacity: 0.85;
}

.footer__cta-icon {
	width: 25px;
	height: 18px;
	flex-shrink: 0;
}

.footer__cta-text {
	font-size: 15px;
	font-weight: 500;
	color: var(--color-cream);
	line-height: 1.6;
	white-space: nowrap;
}

.footer__license {
	font-size: 14px;
	font-weight: 400;
	color: var(--color-white);
	line-height: 1.6;
	white-space: nowrap;
	margin: 0;
}

/* ---------- コピーライト ---------- */
.footer__bottom {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.footer__bottom-line {
	display: block;
	width: 1080px;
	max-width: 100%;
	height: 0;
	border-top: 1px solid var(--color-white);
}

.footer__copyright {
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 500;
	color: var(--color-cream);
	letter-spacing: 0.52px;
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

/* =============================================
お問い合わせフォーム セクション
============================================= */
.contact-form {
	position: relative;
	background-color: var(--color-cream);
	padding: 120px var(--content-padding);
	overflow: hidden;
}

.contact-form__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル ---------- */
.contact-form__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 56px;
}

.contact-form__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

.contact-form__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.contact-form__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.contact-form__dot--gold { background-color: #c29027; }
.contact-form__dot--green { background-color: #5c9a91; }
.contact-form__dot--brown { background-color: var(--color-brown); }
.contact-form__dot--teal { background-color: #66d6d4; }

.contact-form__heading-ja-wrap {
	position: relative;
	display: inline-block;
}

.contact-form__heading-deco {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 598px;
	max-width: 598px;
	height: auto;
	pointer-events: none;
}

.contact-form__heading-ja {
	position: relative;
	z-index: 1;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

/* ---------- 説明文 ---------- */
.contact-form__intro {
	position: relative;
	z-index: 1;
	max-width: 726px;
	margin: 0 auto 48px;
	font-size: 16px;
	font-weight: 400;
	color: #000000;
	line-height: 1.6;
}

/* ---------- フォーム ---------- */
.contact-form__form {
	position: relative;
	z-index: 1;
	max-width: 726px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.contact-form__field {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 30px;
}

.contact-form__label {
	display: flex;
	align-items: center;
	gap: 12px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
}

.contact-form__required {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 2px 8px;
	background-color: var(--color-gold);
	font-size: 15px;
	font-weight: 400;
	color: var(--color-white);
	line-height: 1.6;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
	width: 100%;
	padding: 12px 16px;
	background-color: var(--color-white);
	border: none;
	font-family: var(--font-main);
	font-size: 16px;
	color: var(--color-brown);
	line-height: 1.6;
	outline: none;
}

.contact-form__select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg width='14' height='8' viewBox='0 0 14 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23775D4A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 16px center;
	padding-right: 40px;
	cursor: pointer;
}

.contact-form__select:invalid {
	color: #a3a3a3;
}

.contact-form__textarea {
	resize: vertical;
	min-height: 128px;
}

/* ---------- チェックボックス ---------- */
.contact-form__checkboxes {
	display: flex;
	flex-direction: column;
}

.contact-form__checkbox-label {
	display: flex;
	align-items: center;
	gap: 12px;
	height: 50px;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
	cursor: pointer;
}

.contact-form__checkbox,
.contact-form__checkboxes input[type="checkbox"] {
	width: 30px;
	height: 30px;
	flex-shrink: 0;
	accent-color: #5c9a91;
	cursor: pointer;
}

.contact-form__input--inline {
	flex: 1;
	min-width: 0;
}

/* ---------- 送信ボタン ---------- */
.contact-form__submit-wrap {
	display: flex;
	justify-content: center;
	margin-top: 48px;
}

.contact-form__submit {
	width: 340px;
	padding: 20px;
	background-color: #5c9a91;
	border: none;
	border-radius: 999px;
	font-family: var(--font-main);
	font-size: 18px;
	font-weight: 700;
	color: var(--color-cream);
	letter-spacing: 1.8px;
	text-align: center;
	cursor: pointer;
	transition: opacity 0.3s;
}

.contact-form__submit:hover {
	opacity: 0.85;
}

@media (max-width: 768px) {
	.contact-form__form {
		max-width: 100%;
	}

	.contact-form__heading-ja {
		font-size: 22px;
		white-space: normal;
	}

	.contact-form__heading-deco {
		width: 360px;
	}

	.contact-form__submit {
		width: 100%;
		max-width: 340px;
	}

	.contact-form__checkbox-label {
		flex-wrap: wrap;
	}

	.contact-form__input--inline {
		width: 100%;
		flex: none;
	}
}

/* =============================================
RECRUIT（採用情報）セクション
============================================= */
.recruit {
	position: relative;
	background-color: #5c9a91;
	padding: 80px var(--content-padding);
	display: flex;
	justify-content: center;
	overflow: hidden;
}

/* ---------- 背景写真 ---------- */
.recruit__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.recruit__bg-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.recruit__bg-img--overlay {
	opacity: 0.5;
}

/* ---------- カード ---------- */
.recruit__card {
	position: relative;
	z-index: 1;
	width: 854px;
	max-width: 100%;
	background-color: rgba(255, 255, 255, 0.86);
	backdrop-filter: blur(2px);
	-webkit-backdrop-filter: blur(2px);
	border-radius: 30px;
	box-shadow: 20px 20px 12px 0 rgba(0, 0, 0, 0.1);
	padding: 48px 0 56px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

/* ---------- タイトル ---------- */
.recruit__title-area {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 4px;
}

.recruit__title-en {
	font-family: "Montserrat", sans-serif;
	font-size: 80px;
	font-weight: 800;
	color: #66d6d4;
	letter-spacing: 6.4px;
	line-height: 1;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

.recruit__title-ja {
	font-size: 28px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.6;
	text-align: center;
	margin: 0;
}

/* ---------- 縦線 ---------- */
.recruit__divider {
	display: block;
	width: 1px;
	height: 38px;
	background-color: #5c9a91;
}

/* ---------- 説明文＋ボタン ---------- */
.recruit__action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}

.recruit__desc {
	font-size: 16px;
	font-weight: 500;
	color: #5c9a91;
	line-height: 1.8;
	letter-spacing: 0.64px;
	text-align: center;
}

.recruit__desc p {
	margin: 0;
}

.recruit__button {
	display: flex;
	align-items: center;
	gap: 12px;
	background-color: #5c9a91;
	padding: 10px 40px;
	border-radius: 999px;
	transition: opacity 0.3s;
}

.recruit__button:hover {
	opacity: 0.85;
}

.recruit__button-icon {
	width: 20px;
	height: 20px;
	flex-shrink: 0;
}

.recruit__button-text {
	font-size: 20px;
	font-weight: 500;
	color: var(--color-white);
	line-height: 1.6;
	white-space: nowrap;
	text-align: center;
}

@media (max-width: 768px) {
	.recruit__card {
		padding: 36px 16px 44px;
		border-radius: 20px;
	}

	.recruit__title-en {
		font-size: 36px;
		letter-spacing: 2px;
	}

	.recruit__title-ja {
		font-size: 18px;
	}

	.recruit__desc {
		font-size: 14px;
	}

	.recruit__button {
		padding: 8px 28px;
	}

	.recruit__button-text {
		font-size: 16px;
	}
}

/* =============================================
事業内容セクション
============================================= */
.business {
	position: relative;
	padding: 120px var(--content-padding);
	overflow: hidden;
}

.business__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
}

/* ---------- セクションタイトル（施工事例と同じパターン） ---------- */
.business__heading {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	margin-bottom: 60px;
}

.business__heading-en {
	font-family: "Montserrat", sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #5c9a91;
	line-height: 1.4;
	text-align: center;
	margin: 0;
}

.business__dots {
	display: flex;
	gap: 8px;
	align-items: center;
}

.business__dot {
	display: block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
}

.business__dot--gold { background-color: #c29027; }
.business__dot--green { background-color: #5c9a91; }
.business__dot--brown { background-color: var(--color-brown); }
.business__dot--teal { background-color: #66d6d4; }

.business__heading-ja-wrap {
	position: relative;
	display: inline-block;
}

.business__heading-deco {
	position: absolute;
	top: -10px;
	left: 50%;
	transform: translateX(-50%);
	width: 498px;
	max-width: 498px;
	height: auto;
	pointer-events: none;
}

.business__heading-ja {
	position: relative;
	z-index: 1;
	font-size: 32px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.4;
	letter-spacing: 1.28px;
	text-align: center;
	white-space: nowrap;
	margin: 0;
}

/* ---------- カード群 ---------- */
.business__cards {
	position: relative;
	z-index: 1;
	display: flex;
	gap: 24px;
}

.business__card {
	flex: 1;
	min-width: 0;
	background-color: var(--color-white);
	border: 2px solid #c29027;
	border-radius: 30px;
	padding: 32px 42px 36px;
	box-shadow: 1px 4px 1px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* 矢印型タグ（右向き） */
.business__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 160px;
	height: 40px;
	padding-right: 16px;
	background-color: var(--color-gold);
	color: var(--color-white);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	white-space: nowrap;
	clip-path: polygon(0% 0%, 90% 0%, 100% 50%, 90% 100%, 0% 100%);
}

.business__list {
	list-style: disc;
	padding-left: 21px;
	font-size: 14px;
	font-weight: 400;
	color: #000000;
	line-height: 1.6;
}

@media (max-width: 768px) {
	.business__cards {
		flex-direction: column;
	}

	.business__card {
		border-radius: 20px;
		padding: 24px 24px 30px;
	}

	.business__heading-ja {
		font-size: 24px;
	}

	.business__heading-deco {
		width: 300px;
	}
}

/* =============================================
会社概要セクション
============================================= */
.company {
	position: relative;
	background-color: var(--color-cream);
	padding: 120px var(--content-padding) 0;
	overflow: clip;
}

.company__bg-texture {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	mix-blend-mode: color-burn;
	pointer-events: none;
	z-index: 0;
}

/* ---------- コンテンツ ---------- */
.company__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	gap: 80px;
	padding-bottom: 60px;
}

/* ---------- 会社情報テーブル ---------- */
.company__info {
	flex-shrink: 0;
	width: 560px;
	background-color: var(--color-white);
	border-radius: 20px;
	padding: 42px 64px;
}

.company__heading {
	font-size: 22px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.6;
	margin: 0 0 40px;
}

.company__table {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

.company__row {
	display: flex;
	align-items: flex-end;
}

.company__label {
	width: 110px;
	flex-shrink: 0;
	font-size: 16px;
	font-weight: 500;
	color: var(--color-brown);
	line-height: 1.6;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--color-brown);
}

.company__value {
	flex: 1;
	font-size: 16px;
	font-weight: 400;
	color: var(--color-brown);
	line-height: 1.6;
	padding: 0 0 10px 20px;
	margin: 0;
	border-bottom: 1px solid #d9d9d9;
}

/* ---------- 代表写真 ---------- */
.company__photo-wrap {
	flex: 1;
	min-width: 0;
}

.company__photo {
	width: 100%;
	max-width: 470px;
	height: auto;
	border-radius: 30px;
}

/* ---------- Google Map ---------- */
.company__map {
	width: 100%;
	line-height: 0;
}

.company__map iframe {
	width: 100%;
	height: 360px;
	display: block;
}

@media (max-width: 1024px) {
	.company__content {
		flex-direction: column;
		gap: 40px;
	}

	.company__info {
		width: 100%;
		padding: 32px 24px;
	}

	.company__photo {
		max-width: 100%;
		border-radius: 20px;
	}
}

@media (max-width: 768px) {
	.company {
		padding-top: 60px;
	}

	.company__heading {
		font-size: 20px;
		margin-bottom: 24px;
	}

	.company__label {
		width: 90px;
		font-size: 14px;
	}

	.company__value {
		font-size: 14px;
		padding-left: 12px;
	}

	.company__map iframe {
		height: 280px;
	}
}

/* =============================================
下層ページ FV
============================================= */
.page-fv {
	position: relative;
	height: 500px;
	background-color: var(--color-cream);
	overflow: hidden;
}

.page-fv__photo {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.page-fv__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-fv__title-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.page-fv__title {
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.96);
	padding: 6px 28px;
	border-radius: 20px;
	font-size: 39px;
	font-weight: 500;
	color: var(--color-brown);
	letter-spacing: 3.12px;
	line-height: 1.6;
	white-space: nowrap;
	margin: 0;
}

@media (max-width: 768px) {
	.page-fv {
		height: 300px;
	}

	.page-fv__title {
		font-size: 26px;
		padding: 4px 20px;
	}
}

/* =============================================
施工事例モーダル
============================================= */
.modal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s, visibility 0.3s;
}

.modal.is-open {
	opacity: 1;
	visibility: visible;
}

.modal__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
}

.modal__content {
	position: relative;
	background-color: var(--color-white);
	padding: 48px;
	max-width: 860px;
	width: 90%;
	max-height: 85vh;
	overflow-y: auto;
	z-index: 1;
}

.modal__close {
	position: absolute;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-color: var(--color-gold);
	border: none;
	cursor: pointer;
	font-size: 28px;
	line-height: 1;
	color: var(--color-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.3s;
}

.modal__close:hover {
	opacity: 0.8;
}

.modal__body {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.modal__left {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* Before / After ペア（モーダル内） */
.modal__ba-group {
	width: 100%;
}

.modal__ba-pair {
	display: flex;
	align-items: center;
	gap: 12px;
}

.modal__ba-item {
	flex: 1;
	min-width: 0;
}

.modal__ba-label {
	display: inline-block;
	padding: 4px 14px;
	font-family: "Montserrat", sans-serif;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	color: #fff;
	margin-bottom: 6px;
	border-radius: 3px;
}

.modal__ba-label--before {
	background-color: #888;
}

.modal__ba-label--after {
	background-color: #5c9a91;
}

.modal__ba-arrow {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	padding-top: 24px;
}

.modal__image {
	width: 100%;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 6px;
}

.modal__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.modal__info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.modal__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--color-brown);
	line-height: 1.6;
	margin: 0;
}

.modal__meta {
	display: flex;
	align-items: center;
	gap: 8px;
}

.modal__tag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 4px 10px;
	background-color: var(--color-brown);
	font-size: 15px;
	font-weight: 500;
	color: var(--color-white);
	letter-spacing: 0.3px;
	line-height: 1.6;
}

.modal__location {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-brown);
	line-height: 1.6;
}

.modal__right {
	min-width: 0;
}

.modal__desc {
	font-size: 16px;
	font-weight: 400;
	color: var(--color-brown);
	line-height: 1.6;
	margin: 0;
	white-space: pre-line;
}

@media (max-width: 768px) {
	.modal__content {
		padding: 32px 20px;
		width: 94%;
	}

	.modal__ba-pair {
		flex-direction: column;
		gap: 4px;
	}

	.modal__ba-arrow {
		padding-top: 0;
		transform: rotate(90deg);
	}

	.modal__ba-arrow svg {
		width: 24px;
		height: 24px;
	}

	.modal__close {
		top: 8px;
		right: 8px;
		width: 40px;
		height: 40px;
		font-size: 24px;
	}
}

/* =============================================
ハンバーガーメニュー（PC非表示）
============================================= */
.header__hamburger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	width: 36px;
	height: 28px;
	position: relative;
	z-index: 200;
	flex-shrink: 0;
}

.header__hamburger-line {
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--color-white);
	border-radius: 2px;
	position: absolute;
	left: 0;
	transition: transform 0.3s, opacity 0.3s;
}

.header__hamburger-line:nth-child(1) { top: 0; }
.header__hamburger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
.header__hamburger-line:nth-child(3) { bottom: 0; }

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
	opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
	bottom: auto;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}

/* =============================================
レスポンシブ：タブレット（1024px以下）
============================================= */
@media (max-width: 1024px) {

	/* --- Header --- */
	.header__hamburger {
		display: block;
	}

	.header__inner {
		padding: 0 20px;
	}

	.header__logo-img {
		width: 200px;
	}

	.header__nav {
		position: fixed;
		top: 0;
		right: -100%;
		width: 280px;
		height: 100vh;
		background-color: var(--color-brown);
		flex-direction: column;
		align-items: flex-start;
		padding: 100px 30px 40px;
		gap: 0;
		transition: right 0.3s;
		z-index: 150;
		overflow-y: auto;
	}

	.header__nav.is-open {
		right: 0;
	}

	.nav__list {
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
		width: 100%;
	}

	.nav__link {
		display: block;
		padding: 14px 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
		width: 100%;
	}

	.nav__cta {
		margin-top: 24px;
	}

	/* --- FV --- */
	.fv {
		height: 500px;
	}

	.fv__photo-wrap {
		width: 100%;
		left: 0;
		transform: none;
		top: -50px;
		height: 420px;
		border-radius: 0;
	}

	.fv__copy {
		left: 20px;
		top: auto;
		bottom: 80px;
	}

	.fv__copy-text {
		font-size: 24px;
		padding: 4px 20px 4px 20px;
	}

	.fv__deco-green {
		width: 200px;
		left: -30px;
		bottom: 10px;
	}

	.fv__deco-yellow {
		width: 220px;
		right: -20px;
		bottom: 10px;
	}

	.fv__deco-roller {
		width: 120px;
		right: -30px;
		bottom: 40px;
	}

	/* --- Pet Section / Elderly --- */
	.pet-section,
	.elderly {
		padding-top: 100px;
		padding-bottom: 100px;
	}

	.pet-section__card,
	.elderly__card {
		padding: 32px 24px;
	}

	/* --- Items --- */
	.items {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.items__row {
		flex-direction: column;
		gap: 30px;
	}

	.items__row--reverse {
		flex-direction: column;
	}

	.items__image {
		width: 100%;
		height: 250px;
	}

	.items__title-line {
		width: 100%;
	}

	/* --- Worries --- */
	.worries {
		height: auto;
		padding-bottom: 60px;
	}

	.worries__title-wrap {
		padding-top: 60px;
		margin-bottom: 30px;
	}

	.worries__title-text {
		font-size: 22px;
	}

	/* worries__bubbles uses var(--content-padding) via max(), no override needed */

	.worries__row--top,
	.worries__row--bottom {
		gap: 20px;
		flex-wrap: wrap;
	}

	.worries__bubble {
		width: 180px;
	}

	/* --- Merit --- */
	.merit {
		padding-top: 60px;
		padding-bottom: 100px;
	}

	.merit__card {
		padding: 32px 24px;
	}

	/* --- Voice --- */
	.voice {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.voice__cards {
		flex-wrap: wrap;
		gap: 16px;
	}

	.voice__card {
		flex: 1 1 calc(50% - 8px);
		min-width: 250px;
	}

	/* --- Portfolio --- */
	/* --- Other --- */
	.other {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.other__content {
		flex-direction: column;
		gap: 40px;
	}

	.other__tags-area {
		width: 100%;
	}

	.other__images {
		width: 100%;
		min-height: 320px;
	}

	.other__image {
		width: 280px;
		height: 195px;
	}

	/* --- CTA --- */
	.cta {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.cta__card {
		width: 100%;
	}

	.cta__title-en {
		font-size: 48px;
		letter-spacing: 3px;
	}

	.cta__title-ja {
		font-size: 22px;
	}

	/* --- Footer --- */
	.footer {
		padding-top: 40px;
		padding-bottom: 12px;
	}

	.footer__inner {
		flex-direction: column;
		gap: 32px;
	}

	.footer__right {
		align-items: flex-start;
	}

	.footer__nav-row {
		flex-wrap: wrap;
		gap: 12px;
	}

	.footer__address {
		white-space: normal;
	}

	.footer__license {
		white-space: normal;
	}
}

/* =============================================
レスポンシブ：スマートフォン（768px以下）
============================================= */
@media (max-width: 768px) {

	:root {
		--content-padding: max(16px, calc((100% - var(--content-width)) / 2));
	}

	.header__logo {
		padding: 12px 16px;
	}
	/* --- Header --- */
	.header__logo-img {
		width: 170px;
	}

	/* --- FV --- */
	.fv {
		height: 420px;
	}

	.fv__copy {
		left: 16px;
		bottom: 60px;
	}

	.fv__copy-text {
		font-size: 18px;
		padding: 3px 14px;
		border-radius: 12px;
	}

	.fv__photo--pc {
		display: none;
	}

	.fv__photo--sp {
		display: block;
		object-position: center bottom;
	}

	.fv__deco-green {
		width: 120px;
		left: -20px;
		bottom: 0;
		opacity: 0.7;
	}

	.fv__deco-yellow {
		width: 140px;
		right: -10px;
		bottom: 0;
	}

	.fv__deco-roller {
		width: 80px;
		right: -10px;
		bottom: 20px;
	}

	/* --- Pet Section / Elderly --- */
	.pet-section,
	.elderly {
		padding-top: 80px;
		padding-bottom: 80px;
	}

	.pet-section__card,
	.elderly__card {
		padding: 24px 16px;
		border-radius: 20px;
	}

	.section-title__text {
		font-size: 16px;
	}

	.section-title__house {
		width: 40px;
	}

	.pet-section__body,
	.elderly__body {
		font-size: 14px;
	}

	/* --- Items --- */
	.items {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.items__row + .items__row {
		margin-top: 60px;
	}

	.items__title {
		font-size: 18px;
	}

	.items__body {
		font-size: 14px;
	}

	.items__image {
		height: 200px;
		border-radius: 20px;
	}

	/* --- Worries --- */
	.worries__title-text {
		font-size: 16px;
	}

	.worries__bg {
		background-image: url("images/bg-dog-sp.png");
	}

	.worries__row--top {
		gap: 16px;
	}

	.worries__row--bottom {
		gap: 16px;
	}

	.worries__bubble {
		width: 150px;
	}

	/* --- Merit --- */
	.merit__heading-ja {
		font-size: 22px;
	}

	.merit__sparkle {
		width: 20px;
		height: 18px;
	}

	.merit__card {
		border-radius: 20px;
	}

	.merit__body {
		font-size: 14px;
	}

	/* --- Voice --- */
	.voice {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.voice__heading-ja {
		font-size: 24px;
	}

	.voice__cards {
		flex-direction: column;
	}

	.voice__card {
		flex: 1 1 100%;
		border-radius: 20px;
	}

	/* --- Portfolio --- */
	.portfolio {
		padding: 80px 0;
	}

	.portfolio__heading-ja {
		font-size: 24px;
	}

	.portfolio__heading-deco {
		width: 300px;
	}

	/* --- Other --- */
	.other__heading-ja {
		font-size: 22px;
		white-space: normal;
		text-align: center;
	}

	.other__heading-deco {
		width: 460px;
	}

	.other__tag {
		width: 140px;
		height: 36px;
		font-size: 14px;
	}

	.other__images {
		min-height: 260px;
	}

	.other__image {
		width: 220px;
		height: 155px;
		border-radius: 20px;
	}

	/* --- CTA --- */
	.cta__card {
		padding: 36px 16px 44px;
		border-radius: 20px;
	}

	.cta__title-en {
		font-size: 36px;
		letter-spacing: 2px;
	}

	.cta__title-ja {
		font-size: 18px;
	}

	.cta__desc {
		font-size: 14px;
	}

	.cta__button {
		padding: 8px 28px;
	}

	.cta__button-text {
		font-size: 16px;
	}

	/* --- Footer --- */
	.footer__logo-img {
		width: 200px;
	}

	.footer__nav-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}

	.footer__nav {
		flex-wrap: wrap;
		gap: 0;
	}

	.footer__nav-item:not(:last-child)::after {
		margin: 0 10px;
	}

	/* --- 共通セクションタイトル --- */
	.voice__heading,
	.portfolio__heading,
	.other__heading,
	.merit__heading {
		margin-bottom: 40px;
	}

	.voice__heading-en,
	.portfolio__heading-en,
	.other__heading-en,
	.merit__heading-en {
		font-size: 18px;
	}
}
