@charset "utf-8";

:root {
    /* メインカラー（ロゴのグリーン） */
    --key: #0e9a7c;
    /* メインカラー（ホバー・濃いめ） */
    --key-dark: #0b8268;
    /* アクセント（木の温もり） */
    --accent: #b8956b;
    /* サブカラー（ロゴグリーンの明るめ） */
    --sub: #2fb896;
    /* セミオーダー（完全注文の緑・規格住宅の茶と区別） */
    --semi: #3d7ea8;
    /* ボーダー */
    --border: #e5d9c8;
    /* 背景ベージュ（メイン） */
    --bg1: #f5ede3;
    /* 背景ベージュ（濃いめ） */
    --bg2: #ebe2d4;
    /* 背景ベージュ（薄め・カード・セクション面） */
    --bg3: #FBF8F3;
    /* クリーム（ヘッダー・装飾） */
    --cream: #f7f0e6;
    /* テキスト */
    --text: #3d3d3d;
    /* ダーク */
    --dark: #3a3228;
    /* イエロー */
    --yellow: #f2d56b;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* フォールバック */
  overflow-x: clip;
}
body{
	font-family: "Noto Sans JP", sans-serif;
    overflow-x: hidden; /* フォールバック */
    overflow-x: clip;
    color: var(--text);
    background: var(--bg1);
}
.skip-link {
    position: absolute;
    left: 16px;
    top: -120px;
    z-index: 10000;
    padding: 10px 18px;
    background: var(--key);
    color: #fff;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
}
.skip-link:focus {
    top: 16px;
    outline: 2px solid #fff;
    outline-offset: 2px;
}
img{
	width: 100%;
    height: auto;
	display: block;
}
p{
	line-height: 2;
	letter-spacing: 2px;
}
h1,h2,h3,h4{
	font-weight: 500;
	line-height: 1.5;
	letter-spacing: 3px;
    font-family: "Noto Serif JP", serif;
}
h5,h6{
    line-height: 1.5;
    letter-spacing: 2px;
}
table{
	width: 100%;
}
table , td, th {
	border-collapse: collapse;
    letter-spacing: 2px;
	border: 1px solid #d8d8db;
}
th, td{
	padding: 10px 20px;
	height: 25px;
	line-height: 1.5;
    letter-spacing: 2px;
}
th{
    white-space: nowrap;
}
dt, dd, li {
	line-height: 1.5;
    letter-spacing: 2px;
}
section{
    padding: 80px 0;
}

@media screen and (max-width:768px){
    h1 {
        font-size: 22px;
        letter-spacing: 2px;
    }
    h2 {
        font-size: 20px;
        letter-spacing: 2px;
    }
    h3 {
        font-size: 18px;
        letter-spacing: 2px;
    }
    p, th, td, li, time {
        font-size: 14px;
    }
    th, td {
        padding: 8px 12px;
        font-size: 13px;
    }
    th {
        white-space: normal;
    }
    section{
        padding: 30px 0;
    }
    .table-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .table-scroll table {
        min-width: 480px;
    }
    .width-900,
    .width-ss,
    .width-s,
    .width-m,
    .width-l {
        width: 92%;
    }
}

.width-ss{
	max-width: 800px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-900{
	max-width: 900px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-s{
	max-width: 1000px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-1100{
	max-width: 1100px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-m{
	max-width: 1200px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-1300{
	max-width: 1300px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-1400{
	max-width: 1400px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-l{
	max-width: 1500px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}
.width-full{
	max-width: 2000px;
	margin-left: auto;
	margin-right: auto;
}

.flex{
	display: flex;
	flex-wrap: wrap;
}
.flex-sb{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.rev{
	flex-direction: row-reverse;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.bg-w{
    background: #fff;
}
@media screen and (max-width:768px){
	.flex,.flex-sb {
		display: block;
	}
}

.text-r{
	text-align: right;
}
.text-c{
	text-align: center;
}
.sec-title{
    margin-bottom: 70px;
    text-align: center;
}
.sec-title .title-main span{
    display: block;
    font-size: 36px;
    position: relative;
    margin-bottom: 25px;
}
.sec-title .title-main span::after{
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 80px;
    background: var(--accent);
}
.sec-title .title-main small{
    font-size: 16px;
    color: #aaa;
}

.sec-title p{
    margin-top: 60px;
    font-size: 18px;
    line-height: 2.4;
}

/* セクション見出し（共通） */
.section-head {
    text-align: center;
    margin-bottom: 80px;
}
.section-head::before {
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    margin: 0 auto 18px;
    background: linear-gradient(90deg, transparent, var(--key), transparent);
    opacity: 0.8;
}
.section-head__title {
    font-size: clamp(20px, 3.2vw, 34px);
    letter-spacing: 0.12em;
    margin-bottom: 8px;
    line-height: 1.5;
}
.section-head__en {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: clamp(13px, 1.7vw, 17px);
    color: var(--key);
    letter-spacing: 0.1em;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.section-head__en::before,
.section-head__en::after {
    content: "";
    width: 18px;
    height: 1px;
    background: var(--key);
    opacity: 0.45;
}
.section-head__lead {
    margin-top: 60px;
    font-size: 18px;
}
.section-head__label {
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.16em;
    margin: 0 0 10px;
    font-weight: 500;
}

.page-foot .line{
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: var(--key);
}

@media screen and (max-width:768px){
    .sec-title {
        margin-bottom: 40px;
    }
    .sec-title .title-main span {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .sec-title .title-main span::after {
        width: 50px;
        bottom: -8px;
    }
    .sec-title .title-main small {
        font-size: 13px;
    }
    .sec-title p {
        margin-top: 24px;
        font-size: 14px;
        line-height: 2;
    }
    .section-head {
        margin-bottom: 36px;
    }
    .section-head::before {
        width: 28px;
        margin-bottom: 14px;
    }
    .section-head__lead {
        margin-top: 16px;
        font-size: 14px;
        text-align: left;
    }
    .page-foot .line {
        height: 70px;
    }


}

.swiper-pagination-bullet-active{
    background: var(--key)!important;
}

.josefin{
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    letter-spacing: 2px;
    color: #777;
}

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

/**********************************************************************/
/*************************  リンクボタン  *************************/
/**********************************************************************/

/**********************************************************************/
/*************************  ホバーアニメーション  *************************/
/**********************************************************************/
@media screen and (min-width:768px){
	.hov-underline {
	  position: relative;
	  display: inline-block;
	  text-decoration: none;
	  color: inherit;
	}

	/* 下線の初期状態（非表示） */
	.hov-underline::after {
	  content: "";
	  position: absolute;
	  bottom: -5px;
	  left: 0;
	  height: 2px;
	  width: 100%;
	  background: var(--key);
	  transform: scaleX(0);     /* 横幅を0に */
	  transform-origin: left;   /* 左から伸びる */
	  transition: transform 0.3s ease;
	}
	/* ホバー時にアンダーラインを伸ばす */
	.hov-underline:hover::after {
	  transform: scaleX(1);     /* 横幅を元に戻す */
	}

	.hov-zoom {
	  overflow: hidden;
	}
	.hov-zoom img {
	  transition: transform 0.4s ease, opacity 0.4s ease;
	}
	.hov-zoom:hover img {
	  transform: scale(1.1);  /* 少し拡大 */
	  opacity: 0.7;            /* ちょっと薄くする */
	}

	.hov-opa{
		transition: opacity 0.3s ease;
	}
	.hov-opa:hover{
		opacity: 0.7;
	}
	.hov-btn {
		background-color: transparent;
		transition: all 0.3s ease;
	}
	.hov-btn:hover {
		background-color: rgba(0, 0, 0, 0.05);
		border-color: var(--key);
        color: var(--key);
		transform: translateY(-2px);
	}

	.hov-up {
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: block;
	}
	.hov-up:hover {
		transform: translateY(-6px);
	}
}

/**********************************************************************/
/**********************  オブザーバーアニメーション  ***********************/
/**********************************************************************/
/* フェイド + スライド <div class="fade-up js-fadein"> */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: 0.8s ease;
}
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
/* フェイド + スケール <div class="fade-scale js-fadein"> */
.fade-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: 0.6s ease;
}
.fade-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}
/* 横からスライド <div class="fade-left js-fadein"> */
.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: 0.8s ease;
}
.fade-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}
/* 横からスライド（右） <div class="fade-right js-fadein"> */
.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: 0.8s ease;
}
.fade-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}
/* ぼかしながら出現 <div class="blur-item js-fadein"> */
.blur-item {
    opacity: 0;
    filter: blur(8px);
    transform: translateY(20px);
    transition: 
        opacity 0.8s ease,
        filter 0.8s ease,
        transform 0.8s ease;
}
.blur-item.is-visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.delay-15 { transition-delay: 0.15s; }
.delay-20 { transition-delay: 0.2s; }
.delay-30 { transition-delay: 0.3s; }
.delay-40 { transition-delay: 0.4s; }
.delay-50 { transition-delay: 0.5s; }

/**********************************************************************/
/*****************************  ヘッダー  *****************************/
/**********************************************************************/

.header-fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    padding: 16px 0;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    transform: translateY(-100%);
}
.header-fix.show,
.header-fix--top {
    transform: translateY(0);
}
.header-fix.show {
    background: rgba(245, 237, 227, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(8px);
}
.header-fix--top {
    transform: translateY(0);
    background: var(--cream);
    box-shadow: none;
}
.header-fix--top.show {
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-fix--inner {
    transform: translateY(0);
    background: rgba(245, 237, 227, 0.95);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.site-logo {
    display: block;
    text-decoration: none;
    color: inherit;
    line-height: 1.2;
}
.site-logo-img {
    width: auto;
    height: 44px;
    display: block;
}
.site-logo-img--drawer {
    width: 100%;
    height: auto;
    max-width: 360px;
    margin: 0 auto;
}
.site-logo-img--footer-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin: 0 auto;
}
.site-logo-main {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
}
.site-logo-sub {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--accent);
    margin-top: 2px;
}
.header-fix--top .site-logo {
    color: var(--text);
}
.header-fix--top .site-logo-sub {
    color: var(--accent);
}
.header-nav-wrap {
    display: block;
}
.header-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.header-nav-item {
    position: relative;
}
.header-nav-item--has-sub > .header-nav-label {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text);
    cursor: pointer;
}
.header-nav-item--has-sub > a.header-nav-label:hover {
    color: var(--key);
}
.header-subnav {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    min-width: 220px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(58, 50, 40, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 120;
}
.header-subnav::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -16px;
    height: 16px;
}
.header-nav-item--has-sub:hover .header-subnav,
.header-nav-item--has-sub:focus-within .header-subnav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}
.header-subnav a {
    display: block;
    padding: 10px 18px;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--text);
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.header-subnav a:hover {
    background: var(--cream);
    color: var(--key);
}
.header-nav a {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--text);
}
.header-nav-btn {
    border: 1px solid var(--key);
    padding: 10px 20px;
    border-radius: 2px;
    font-size: 13px!important;
    color: var(--key)!important;
    font-weight: 500;
}
@media screen and (max-width: 768px) {
    .header-nav-wrap {
        display: none;
    }
    .site-logo-main {
        font-size: 16px;
    }
    .header-fix {
        padding: 10px 0;
    }
    /* トップのヒーローではヘッダーを隠し、スクロール後に出現 */
    .header-fix--top:not(.show) {
        transform: translateY(-100%);
        pointer-events: none;
    }
}

/**********************************************************************/
/*************************  ハンバーガーメニュー  *************************/
/**********************************************************************/

.hamburger-area {
    position: fixed;
    top: 26px;
    right: 28px;
    z-index: 100;
}
.hamburger {
  position: relative;
  width: 30px;
  height: 24px;
  border: none;
  background: none;
  cursor: pointer;
}
/* 各線（span） */
.hamburger span {
  position: absolute;
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}
/* 上の線 */
.hamburger span:nth-child(1) {
  top: 0;
}
/* 真ん中の線 */
.hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
/* 下の線 */
.hamburger span:nth-child(3) {
  bottom: 0;
}
/* ✕ に変わるときの状態 */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: auto;
  top: 50%;
}
/* ドロワーメニュー初期状態 */
.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg1);
    transition: right 0.4s ease;
    z-index: 90;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0;
}
/* 開いた状態 */
.drawer.open {
  right: 0;
}
.drawer-logo{
    text-align: center;
    margin-bottom: 80px;
}
.drawer-logo a{
    width: 280px;
    display: inline-block;
    margin-bottom: 10px;
}
.drawer-column{
    flex: 1;
}
.drawer-menu{
    flex-grow: 1;
}
.drawer-column{
    flex-basis: 32%;
}
.drawer-menu-section:not(:last-of-type){
    margin-bottom: 40px;
}
.drawer-menu-title{
    border-left: 4px solid var(--key);
    padding: 4px 0 6px 10px;
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 600;
}
.drawer-menu-section ul{
    padding-left: 16px;
}
.drawer-menu-section ul li:not(:last-of-type){
    margin-bottom: 20px;
}
.drawer-submenu {
    margin-top: 10px;
    margin-left: 4px;
    padding-left: 14px;
}
.drawer-submenu li {
    font-size: 0.9em;
}
.drawer-menu-section .drawer-submenu li:not(:last-of-type) {
    margin-bottom: 10px;
}
.drawer-cta{
    flex-basis: 26%;
    display: flex;
    flex-direction: column;
}
.drawer-cta__btn{
    display: block;
    padding: 15px 12px;
    margin-bottom: 12px;
    text-align: center;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.08em;
    border-radius: 999px;
    border: 1px solid transparent;
    box-shadow: 0 4px 16px rgba(58, 50, 40, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.drawer-cta__btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(58, 50, 40, 0.14);
}
.sns-icons {
    display: flex;
    justify-content: end;
    gap: 14px;
    margin: 18px 0 0;
    padding-right: 10px;
    list-style: none;
}
.sns-icons__link {
    display: block;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    overflow: hidden;
    transition: transform 0.2s ease, opacity 0.2s ease;
}
.sns-icons__link:hover {
    transform: translateY(-2px);
    opacity: 0.85;
}
.sns-icons__link img {
    display: block;
    width: 100%;
    height: 100%;
}
.drawer-cta__btn--event{
    background: var(--key);
    color: #fff;
}
.drawer-cta__btn--event:hover{
    background: var(--key-dark);
    color: #fff;
}
.drawer-cta__btn--catalog{
    background: #fff;
    color: var(--key);
    border-color: var(--border);
}
.drawer-cta__btn--catalog:hover{
    background: var(--bg3);
    color: var(--key);
}
.drawer-cta__btn--contact{
    background: var(--accent);
    color: #fff;
}
.drawer-cta__btn--contact:hover{
    background: #a6845c;
    color: #fff;
}
.drawer-info a{
    gap: 15px;
    justify-content: flex-end;
    align-items: center;
    margin-top: 30px;
}
.d-tel-text{
    font-size: 48px;
    line-height: 0.8;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 500;
    margin: 10px 0 0;
}
.jimo{
    margin-top: auto;
}

@media screen and (max-width:768px){
	.hamburger-area {
		top: 20px;
		right: 16px;
	}
    /* ヘッダー非表示時も写真の上で判別できるようにする */
    .header-fix--top:not(.show) ~ .hamburger-area {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(247, 240, 230, 0.92);
        border-radius: 50%;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    }
    .drawer {
        padding: 70px 0 100px;
        justify-content: flex-start;
    }
    .drawer-logo {
        margin-bottom: 36px;
    }
    .drawer-logo a {
        width: 220px;
    }
    .site-logo-img--drawer {
        max-width: 220px;
    }
    .site-logo-img--footer-icon {
        width: 56px;
        height: 56px;
    }
    .drawer-main {
        display: block;
    }
    .drawer-menu {
        display: block;
    }
    .drawer-column {
        flex-basis: 100%;
        margin-bottom: 8px;
    }
    .drawer-menu-section {
        margin-bottom: 28px;
    }
    .drawer-menu-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    .drawer-menu-section ul li:not(:last-of-type) {
        margin-bottom: 12px;
    }
    .drawer-cta {
        flex-basis: 100%;
        margin-top: 24px;
    }
    .drawer-cta__btn {
        padding: 13px 12px;
        font-size: 14px;
    }
    .sns-icons {
        gap: 12px;
        margin-top: 16px;
    }
    .drawer-info {
        margin-top: 28px;
    }
    .drawer-info a.flex {
        display: flex !important;
        text-align: center;
        gap: 10px;
        justify-content: center;
    }
    .d-tel-text {
        font-size: 32px;
        margin: 10px 0 5px;
    }
    .jimo {
        margin: 30px auto 10px;
        width: 240px;
    }
}

/**********************************************************************/
/***************************  フロントページ  ***************************/
/**********************************************************************/

.front-page {
    padding-top: 0;
}

/* ---- 左右分割ヒーロー（坂井工務店参考） ---- */
.hero-split-wrap {
    margin-top: 72px;
    padding-top: 0;
}
.hero-split {
    position: relative;
    width: 100%;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    min-height: 480px;
    overflow: hidden;
    background: #2a2a2a;
}
.hero-split-sliders {
    position: absolute;
    inset: 0;
    display: flex;
}
.hero-split-col {
    flex: 1 1 50%;
    width: 50%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-split-col .swiper,
.hero-split-col .swiper-wrapper {
    width: 100%;
    height: 100%;
}
.hero-split-col .swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.hero-split-col .swiper-slide-active {
    z-index: 1;
}
.hero-slide-img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.hero-slide-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.hero-slide-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 3px;
    text-align: center;
    padding: 20px;
}
/* プレースホルダー用トーン */
.hero-slide-img--warm  { background: linear-gradient(160deg, #4a3f35 0%, #7a6555 45%, #3d3530 100%); }
.hero-slide-img--green { background: linear-gradient(160deg, #3d4a38 0%, #5c6b52 45%, #2e3828 100%); }
.hero-slide-img--earth { background: linear-gradient(160deg, #5c4a3a 0%, #8a7260 45%, #403530 100%); }
.hero-slide-img--amber { background: linear-gradient(160deg, #5a4530 0%, #8a7050 45%, #3a3028 100%); }
.hero-slide-img--moss  { background: linear-gradient(160deg, #3a4538 0%, #5a6a55 45%, #2a3228 100%); }
.hero-slide-img--dusk  { background: linear-gradient(200deg, #2c3548 0%, #4a5568 40%, #1a2030 100%); }
.hero-slide-img--soft  { background: linear-gradient(200deg, #4a4540 0%, #6e6860 40%, #353028 100%); }
.hero-slide-img--light { background: linear-gradient(200deg, #5a5048 0%, #8a7e72 40%, #3a342e 100%); }
.hero-slide-img--clay  { background: linear-gradient(200deg, #4a3e38 0%, #7a6a60 40%, #322a26 100%); }
.hero-slide-img--slate { background: linear-gradient(200deg, #3a4048 0%, #5a6570 40%, #242830 100%); }

/* 雲の装飾 */
.hero-deco-clouds {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}
.hero-cloud {
    position: absolute;
    background: var(--cream);
    border-radius: 50px;
    opacity: 0.95;
}
.hero-cloud::before,
.hero-cloud::after {
    content: "";
    position: absolute;
    background: inherit;
    border-radius: 50%;
}
.hero-cloud--1 {
    width: 90px;
    height: 28px;
    top: 8%;
    left: 12%;
}
.hero-cloud--1::before { width: 36px; height: 36px; top: -16px; left: 12px; }
.hero-cloud--1::after  { width: 28px; height: 28px; top: -10px; left: 44px; }
.hero-cloud--2 {
    width: 70px;
    height: 22px;
    top: 5%;
    right: 18%;
}
.hero-cloud--2::before { width: 30px; height: 30px; top: -14px; left: 8px; }
.hero-cloud--2::after  { width: 22px; height: 22px; top: -8px; left: 36px; }
.hero-cloud--3 {
    width: 60px;
    height: 20px;
    top: 14%;
    left: 38%;
}
.hero-cloud--3::before { width: 24px; height: 24px; top: -12px; left: 10px; }
.hero-cloud--4 {
    width: 50px;
    height: 18px;
    top: 10%;
    right: 32%;
}
.hero-cloud--4::before { width: 20px; height: 20px; top: -10px; left: 8px; }

/* 中央の家型オーバーレイ */
.hero-house {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    z-index: 5;
    width: min(480px, 92vw);
    pointer-events: none;
}
.hero-house-shape {
    position: relative;
    background: var(--cream);
    clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0% 100%, 0% 30%);
    padding: 20% 10% 16%;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.hero-house-en {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(12px, 1.8vw, 15px);
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 12px;
    line-height: 1.4;
}
.hero-house-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(17px, 2.8vw, 26px);
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 14px;
}
.hero-house-sub {
    font-size: clamp(12px, 1.8vw, 14px);
    line-height: 1.8;
    letter-spacing: 1px;
    color: #666;
}

/* イラスト差し替え用スロット */
.hero-deco-slot {
    position: absolute;
    pointer-events: none;
}
.hero-deco-slot--bird {
    width: 28px;
    height: 20px;
    top: 6%;
}
.hero-deco-slot--bird-l { left: 18%; transform: rotate(-8deg); }
.hero-deco-slot--bird-r { right: 16%; transform: rotate(8deg) scaleX(-1); }
.hero-deco-slot--bird::before {
    content: "🐦";
    font-size: 18px;
    opacity: 0.7;
}
.hero-deco-slot--accent {
    width: 32px;
    height: 32px;
    bottom: 12%;
}
.hero-deco-slot--bl { left: 10%; }
.hero-deco-slot--br { right: 8%; }
.hero-deco-slot--accent::before {
    content: "✿";
    font-size: 22px;
    opacity: 0.5;
    color: var(--accent);
}

/* 下部スタッフアイコン列 */
.hero-staff-row {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    display: flex;
    gap: clamp(4px, 1vw, 12px);
    padding: 0 16px 12px;
    pointer-events: none;
}
.hero-staff-icon {
    width: clamp(36px, 5vw, 56px);
    height: clamp(36px, 5vw, 56px);
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-staff-icon span {
    font-size: 11px;
    color: var(--key);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
}
.hero-staff-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.f-event-top {
    background: var(--bg1);
    padding: 48px 0 56px;
}
.f-event-top .iemiru-embed {
    margin-bottom: 8px;
}
.iemiru-embed {
    width: 100%;
    min-height: 80px;
}
.iemiru-embed img,
.iemiru-embed iframe {
    max-width: 100%;
    height: auto;
}
.f-event-top .event-card img,
.f-event-top .event-card .img-placeholder {
    border-radius: 4px;
    overflow: hidden;
}
.f-worry-solution {
    background: var(--bg3);
    padding: 64px 0 80px;
}
.worry-solution-body {
    margin-top: 8px;
}
.worry-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 24px;
}
.worry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.worry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.worry-card__visual {
    width: 100%;
    padding: 38px 20px 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.worry-card__visual img {
    width: 100%;
    max-width: 300px;
    height: auto;
}
.worry-card__text {
    margin: 0;
    padding: 12px 24px 28px;
    text-align: center;
}
.worry-card__label {
    font-size: 15px;
    line-height: 1.75;
}
.worry-solution-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 40px 0 28px;
}
.worry-solution-bridge-line {
    flex: 1;
    max-width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.worry-solution-bridge-text {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
    color: var(--key);
    white-space: nowrap;
}
.worry-solution-answer {
    text-align: center;
    padding: 40px 32px;
    background: var(--key);
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.worry-solution-answer-title {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(22px, 3.2vw, 34px);
    margin-bottom: 20px;
    line-height: 1.6;
}
.worry-solution-answer p {
    font-size: 15px;
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 28px;
}
.worry-solution-answer__btn {
    margin-top: 4px;
}
.btn-pill--light {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
    box-shadow: none;
}
.btn-pill--light:hover {
    background: #fff;
    color: var(--key);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.btn-pill--light:hover .btn-pill__label small {
    color: var(--accent);
}
.btn-pill--light .btn-pill__icon {
    background: #fff;
    color: var(--key);
}
.btn-pill--light:hover .btn-pill__icon {
    background: var(--key);
    color: #fff;
}
.f-value {
    background: var(--bg1);
}
.f-value-body {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
    margin-bottom: 60px;
}
.f-value-visual {
    position: relative;
    min-height: 420px;
    padding-bottom: 48px;
}
.f-value-photo {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(58, 50, 40, 0.1);
}
.f-value-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.f-value-photo--main {
    width: 72%;
    max-width: 360px;
}
.f-value-photo--sub {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 58%;
    max-width: 300px;
    border: 4px solid var(--bg3);
}
.f-value-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.f-value-item {
    margin-bottom: 28px;
}
.f-value-item:last-child {
    margin-bottom: 0;
}
.f-value-label {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}
.f-value-item-title {
    font-size: clamp(18px, 2.2vw, 22px);
    font-weight: 600;
    line-height: 1.6;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px dashed var(--border);
    color: var(--dark);
}
.f-value-item-text {
    font-size: 13px;
    line-height: 1.9;
    letter-spacing: 0.06em;
    color: #666;
}
.f-value-foot {
    display: flex;
    align-items: flex-end;
    gap: 16px;
    margin-top: 36px;
    padding-top: 8px;
}
.f-value-illust {
    flex: 0 0 120px;
}
.f-value-illust img,
.f-value-illust-placeholder {
    width: 120px;
    height: 90px;
    display: block;
}
.f-value-illust-placeholder {
    background:
        radial-gradient(circle at 30% 55%, transparent 18px, var(--border) 18px, var(--border) 19px, transparent 19px),
        radial-gradient(circle at 68% 55%, transparent 16px, var(--border) 16px, var(--border) 17px, transparent 17px),
        linear-gradient(var(--border), var(--border)) 50% 72% / 56px 1px no-repeat,
        linear-gradient(var(--border), var(--border)) 22% 38% / 28px 1px no-repeat,
        linear-gradient(var(--border), var(--border)) 78% 38% / 28px 1px no-repeat;
    opacity: 0.7;
}
.f-value-message {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
    padding: 10px 16px;
    border: 1px dashed var(--border);
    border-radius: 4px;
    background: var(--bg1);
}
.f-strength {
    background: var(--bg3);
    padding: 72px 0 80px;
}
.f-strength-visual {
    width: 100%;
    max-width: 600px;
    margin: 0 auto 60px;
}
.f-strength-visual img {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.f-strength-equation {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 8px;
    margin-bottom: 80px;
}
.strength-op {
    flex: 0 0 auto;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 400;
    color: var(--dark);
    line-height: 1;
    padding: 0 4px;
}
.strength-blob {
    position: relative;
    flex: 0 1 168px;
    min-width: 140px;
    min-height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px 16px 20px;
    background: #f2d56b;
    border-radius: 58% 42% 52% 48% / 48% 54% 46% 52%;
    box-shadow: 0 4px 0 rgba(180, 150, 60, 0.15);
}
.strength-blob--result {
    flex: 0 1 220px;
    min-width: 180px;
    min-height: 148px;
    padding-bottom: 28px;
    border-radius: 50% 50% 46% 54% / 42% 46% 54% 58%;
}
.strength-blob-lead {
    font-size: 13px;
    color: var(--key-dark);
    line-height: 1.5;
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}
.strength-blob-main {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.strength-blob-sub {
    font-size: 13px;
    color: var(--key-dark);
    line-height: 1.6;
    margin-top: 8px;
    letter-spacing: 0.04em;
}
.strength-blob-icon {
    display: block;
    width: 56px;
    margin-top: 10px;
    color: #8a8a8a;
}
.strength-blob-icon svg {
    width: 100%;
    height: auto;
}
.strength-blob-result {
    font-size: 13px;
    color: var(--key-dark);
    line-height: 1.7;
    margin-top: 8px;
    letter-spacing: 0.04em;
}
.strength-blob-deco {
    position: absolute;
    left: 50%;
    bottom: 10px;
    transform: translateX(-50%);
    width: 72%;
    height: 14px;
    background:
        linear-gradient(135deg, transparent 49%, var(--key) 49%, var(--key) 51%, transparent 51%) 0 0 / 50% 100% no-repeat,
        linear-gradient(-135deg, transparent 49%, var(--key) 49%, var(--key) 51%, transparent 51%) 100% 0 / 50% 100% no-repeat;
    opacity: 0.45;
}
.f-works {
    background: var(--bg2);
}
.works-tax-nav {
    margin: -16px 0 36px;
}
.works-tax-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.works-tax-list a {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.06em;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--text);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.works-tax-list a:hover,
.works-tax-list a.is-current {
    background: var(--key);
    color: #fff;
    border-color: var(--key);
}
.works-items{
    gap: 20px;
    margin-bottom: 80px;
}
.works-card{
    flex-basis: calc(100% / 3 - 15px);
}
.works-card a img {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
    object-fit: cover;
}
.works-card h3 {
    font-size: 15px;
    margin-top: 12px;
    text-align: center;
}
.works-card-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
}
.works-card-tags li span {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: var(--key-dark);
    background: #fff;
    border: 1px solid var(--border);
}
.f-reviews {
    background: #fff;
    padding: 64px 0 80px;
}
.f-reviews__widget {
    margin-top: 8px;
}
.f-reviews__note {
    margin: 28px 0 0;
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.04em;
}
.f-reviews__note a {
    color: var(--key-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.f-lineup {
    background: var(--bg1);
    padding: 64px 0 80px;
}
.f-lineup--hub {
    padding-top: 0px;
}
.lineup-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.lineup-item__link {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
    gap: 36px;
    align-items: center;
    padding: 30px;
    background: var(--bg3);
    border-radius: 24px;
    border: 2px solid #fff;
    box-shadow: 0 8px 28px rgba(58, 50, 40, 0.07);
    transition: box-shadow 0.25s ease;
    overflow: hidden;
}
.lineup-item__link:hover {
    box-shadow: 0 14px 36px rgba(58, 50, 40, 0.11);
}
.lineup-item:nth-child(even) .lineup-item__link {
    grid-template-columns: minmax(0, 1fr) minmax(0, 50%);
}
.lineup-item:nth-child(even) .lineup-item__visual {
    order: 2;
}
.lineup-item:nth-child(even) .lineup-item__body {
    justify-self: end;
}
.lineup-item__visual {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 10px 28px rgba(58, 50, 40, 0.1);
    background: var(--bg2);
}
.lineup-item__type {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.lineup-item__type--overlay {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    gap: 7px;
    padding: 7px 14px 7px 10px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(58, 50, 40, 0.12);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
}
.lineup-item__type--overlay.lineup-item__type--order {
    background: var(--key);
}
.lineup-item__type--overlay.lineup-item__type--series {
    background: var(--accent);
}
.lineup-item__type--overlay.lineup-item__type--semi {
    background: var(--semi);
}
.lineup-item__type--inline {
    gap: 7px;
    margin-bottom: 30px;
    padding: 6px 14px 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #fff;
}
.lineup-item__type--inline.lineup-item__type--order {
    background: var(--key);
}
.lineup-item__type--inline.lineup-item__type--series {
    background: var(--accent);
}
.lineup-item__type--inline.lineup-item__type--semi {
    background: var(--semi);
}
.lineup-item__type--inline .lineup-item__type-icon {
    transform: translateY(1px);
}
.lineup-item__type-icon {
    display: flex;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}
.lineup-item__type-icon svg {
    width: 100%;
    height: 100%;
}
.lineup-item__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.lineup-item__link:hover .lineup-item__photo {
    transform: scale(1.05);
}
.lineup-item__body {
    padding: 8px 8px 8px 24px;
    border-left: 3px solid var(--key);
}
.lineup-item--order .lineup-item__body {
    border-color: var(--key);
}
.lineup-item--linera .lineup-item__body {
    border-color: var(--semi);
}
.lineup-item--trettio .lineup-item__body,
.lineup-item--arie .lineup-item__body {
    border-color: var(--accent);
}
.lineup-item__en {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 15px;
    color: var(--key);
    margin-bottom: 2px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    font-weight: 600;
}
.lineup-item__body h3 {
    font-size: clamp(20px, 2.4vw, 26px);
    color: var(--dark);
    margin-bottom: 12px;
    line-height: 1.45;
    letter-spacing: 0.06em;
}
.lineup-item__text {
    color: #666;
    margin-bottom: 30px;
}
.lineup-item__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--key);
    background: #fff;
    border: 2px solid var(--key);
    box-shadow: 0 3px 0 rgba(14, 154, 124, 0.1);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
}
.lineup-item__more::after {
    content: "→";
    font-size: 12px;
    transition: transform 0.25s ease;
}
.lineup-item__link:hover .lineup-item__more {
    background: var(--key);
    color: #fff;
    transform: translateY(-1px);
}
.lineup-item__link:hover .lineup-item__more::after {
    transform: translateX(3px);
}
.f-news-blog {
    background: var(--bg2);
    padding: 64px 0 80px;
}
.f-news-blog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}
.f-news-col,
.f-blog-col {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 28px 24px 24px;
    background: var(--bg3);
    border-radius: 20px;
    border: 2px solid #fff;
    box-shadow: 0 8px 24px rgba(58, 50, 40, 0.06);
}
.f-news-col__head,
.f-blog-col__head {
    margin-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    display: flex;
    gap: 15px;
    align-items: baseline;
    padding: 0 20px 10px;
}
.f-news-col__head h3,
.f-blog-col__head h3 {
    font-size: 20px;
    margin-bottom: 4px;
    letter-spacing: 0.08em;
}
.f-news-col__head p,
.f-blog-col__head p {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 14px;
    color: var(--key);
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.f-news-col__list,
.f-blog-col__list {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.f-news-item {
    flex: 1;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border);
}
.f-news-item:last-child {
    border-bottom: none;
}
.f-news-item a {
    display: block;
    width: 100%;
    padding: 18px 4px;
}
.f-news-item time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.f-news-item h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
}
.f-blog-item {
    flex: 1;
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid var(--border);
}
.f-blog-item:last-child {
    border-bottom: none;
}
.f-blog-item a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 14px 4px;
}
.f-blog-item__thumb {
    flex: 0 0 88px;
    width: 88px;
    height: 88px;
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg2);
}
.f-blog-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.f-blog-item__body {
    flex: 1;
    min-width: 0;
}
.f-blog-item time {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.f-blog-item h4 {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 0.04em;
}
.f-news-col__foot,
.f-blog-col__foot {
    margin-top: 16px;
    text-align: right;
}
.f-news-col__more,
.f-blog-col__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--key);
    letter-spacing: 0.06em;
    transition: gap 0.25s ease;
}
.f-news-col__more::after,
.f-blog-col__more::after {
    content: "→";
    font-size: 12px;
}
.f-news-col__more:hover,
.f-blog-col__more:hover {
    gap: 10px;
}
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 300px;
    padding: 14px 28px 14px 32px;
    border-radius: 999px;
    background: #fff;
    color: var(--key);
    border: 2px solid var(--key);
    box-shadow: 0 4px 0 rgba(14, 154, 124, 0.12), 0 8px 20px rgba(58, 50, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-pill:hover {
    background: var(--cream);
    box-shadow: 0 6px 0 rgba(14, 154, 124, 0.1), 0 12px 24px rgba(58, 50, 40, 0.08);
}
.btn-pill__label {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.3;
}
.btn-pill__label strong {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.08em;
}
.btn-pill__label small {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 12px;
    color: var(--accent);
    letter-spacing: 0.04em;
}
.btn-pill__icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--key);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.btn-pill__icon::after {
    content: "→";
    font-size: 13px;
    line-height: 1;
}
.btn-pill:hover .btn-pill__icon {
    transform: translateX(3px);
}
.link-btn {
    margin-top: 40px;
}
.f-banner-area{
    gap: 20px;
}
.f-banner-area div{
    flex-basis: calc(50% - 10px);
}
@media screen and (max-width: 768px) {
    .hero-split-wrap {
        margin-top: 0;
    }
    .hero-split {
        height: 100vh;
        height: 100dvh;
        min-height: 360px;
        max-height: none;
    }
    .hero-split-sliders {
        flex-direction: column;
    }
    .hero-split-col {
        flex: 1 1 50%;
        width: 100%;
        height: 50%;
    }
    .hero-house {
        width: min(290px, 82vw);
    }
    .hero-house-shape {
        min-height: 220px;
        padding: 20% 8% 14%;
    }
    .hero-house-en {
        font-size: 11px;
        margin-bottom: 8px;
    }
    .hero-house-title {
        font-size: 14px;
        letter-spacing: 0.5px;
        margin-bottom: 8px;
    }
    .hero-house-sub {
        font-size: 11px;
        line-height: 1.65;
    }
    .hero-staff-row {
        flex-wrap: wrap;
        justify-content: center;
        max-width: 100%;
    }
    .hero-staff-icon {
        width: 32px;
        height: 32px;
    }
    .hero-cloud--1 {
        width: 54px;
        height: 17px;
        top: 30%;
        left: 14%;
    }
    .hero-cloud--1::before { width: 22px; height: 22px; top: -10px; left: 8px; }
    .hero-cloud--1::after  { width: 16px; height: 16px; top: -6px; left: 28px; }
    .hero-cloud--2 {
        width: 42px;
        height: 14px;
        top: 26%;
        right: 13%;
        left: auto;
    }
    .hero-cloud--2::before { width: 18px; height: 18px; top: -8px; left: 6px; }
    .hero-cloud--2::after  { width: 14px; height: 14px; top: -5px; left: 22px; }
    .hero-cloud--3,
    .hero-cloud--4 {
        display: none;
    }
    .f-event-top {
        padding: 32px 0 40px;
    }
    .f-worry-solution {
        padding: 48px 0 56px;
    }
    .worry-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .worry-card__visual {
        padding: 24px 16px 4px;
    }
    .worry-card__text {
        padding: 10px 20px 24px;
    }
    .worry-card__label {
        font-size: 14px;
    }
    .worry-solution-bridge {
        margin: 28px 0 20px;
    }
    .worry-solution-bridge-line {
        max-width: 48px;
    }
    .worry-solution-answer {
        padding: 32px 20px;
        text-align: center;
    }
    .worry-solution-answer p {
        margin-bottom: 24px;
        font-size: 14px;
        text-align: left;
    }
    .f-value {
        padding: 48px 0 40px;
    }
    .f-value-body {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .f-value-visual {
        min-height: 0;
        padding-bottom: 72px;
        max-width: 420px;
        margin: 0 auto;
    }
    .f-value-photo--main {
        width: 78%;
    }
    .f-value-photo--sub {
        width: 62%;
    }
    .f-value-item{
        background: var(--bg3);
        padding: 20px;
        border-radius: 10px;
        margin-bottom: 12px;
    }
    .f-value-foot {
        margin-top: 28px;
    }
    .works-tax-list {
        gap: 8px;
    }
    .works-tax-list a {
        font-size: 12px;
        padding: 7px 14px;
    }
    .btn-pill {
        padding: 12px 22px 12px 24px;
        gap: 10px;
    }
    .btn-pill__label strong {
        font-size: 13px;
    }
    .f-strength {
        padding: 48px 0 56px;
    }
    .f-strength-equation {
        flex-direction: column;
        gap: 8px;
    }
    .strength-blob,
    .strength-blob--result {
        flex: 0 0 auto;
        width: min(280px, 88vw);
        min-width: 0;
    }
    .strength-op {
        font-size: 24px;
        padding: 4px 0;
    }
    .works-card {
        margin-bottom: 25px;
    }
    .strength-blob-main{
        font-size: 20px;
    }
    .strength-blob-sub,.strength-blob-lead{
        font-size: 16px;
    }
    .strength-blob-result{
        font-size: 15px;
    }
    .f-lineup {
        padding: 48px 0 56px;
    }
    .lineup-item__link,
    .lineup-item:nth-child(even) .lineup-item__link {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 16px;
    }
    .lineup-item:nth-child(even) .lineup-item__visual,
    .lineup-item:nth-child(even) .lineup-item__body {
        order: 0;
    }
    .lineup-item__body,
    .lineup-item:nth-child(even) .lineup-item__body {
        max-width: none;
        justify-self: stretch;
        text-align: center;
        padding: 0 4px 4px;
        border: none;
    }
    .lineup-item__body h3 {
        margin-bottom: 14px;
    }
    .lineup-item__text {
        text-align: left;
    }
    .lineup-item__more {
        margin: 0 auto;
    }
    .f-news-blog {
        padding: 48px 0 56px;
    }
    .f-news-blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .f-news-col,
    .f-blog-col {
        padding: 22px 18px 18px;
    }
    .f-news-item,
    .f-blog-item {
        flex: none;
    }
    .f-banner-area div{
        width: 90%;
        margin: 0 auto 15px;
    }

}

/**********************************************************************/
/***************************  contact-link  ***************************/
/**********************************************************************/

.contact-area {
    gap: 2px;
    margin-bottom: 1px;
}
.contact-area > article {
    flex: 1;
    position: relative;
}
.contact-area-card {
    position: relative;
    overflow: hidden;
}
.contact-area-card img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.contact-area-text {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.2);
    color: #fff;
    text-align: center;
}
.contact-area-text h2 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 4px;
}
.contact-area-text p {
    font-size: 12px;
    letter-spacing: 2px;
    opacity: 0.8;
}
@media screen and (max-width: 768px) {
    .contact-area > article {
        margin-bottom: 2px;
    }
}

/**********************************************************************/
/******************************  footer  ******************************/
/**********************************************************************/

.sec-company {
    background: var(--dark);
    color: #fff;
    padding: 36px 0;
}
.sec-com-info {
    text-align: center;
}
.com-logo-link {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.com-logo-name {
    display: block;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 0.14em;
    color: #fff;
    line-height: 1.4;
}
.com-logo-en {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.4;
    text-transform: none;
}
.site-logo--footer .site-logo-main {
    color: #fff;
    font-size: 24px;
}
.site-logo--footer .site-logo-sub {
    color: var(--accent);
}
.com-info {
    margin-top: 16px;
}
.com-info p {
    font-size: 14px;
    line-height: 2;
}
.com-info .d-tel-text a {
    color: #fff;
    font-size: 28px;
    font-family: 'Josefin Sans', sans-serif;
}
.footer-nav {
    background: var(--bg1);
    padding: 70px 0;
}
.footer-nav .drawer-menu-title {
    font-size: 22px;
    margin-bottom: 16px;
}
.footer-nav .drawer-menu-section:not(:last-of-type) {
    margin-bottom: 32px;
}
.footer-nav .drawer-menu-section ul li:not(:last-of-type) {
    margin-bottom: 14px;
}
.footer-nav .drawer-submenu {
    margin-top: 12px;
}
.map-area {
    height: 300px;
}
.footer-legal {
    text-align: center;
    padding: 16px 20px 0;
    font-size: 12px;
    background: var(--dark);
}
.footer-legal a {
    color: rgba(255,255,255,0.8);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.copyright {
    text-align: center;
    padding: 12px 20px 20px;
    font-size: 12px;
    background: var(--dark);
    color: rgba(255,255,255,0.6);
}
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 70;
    background: var(--key);
    display: none;
}
.bottom-nav a {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    font-size: 13px;
    letter-spacing: 1px;
    color: #fff;
}

/* トップページ：右下フローティングCTA */
.fv-floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 75;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.page .fv-floating-cta {
    bottom: auto;
    top: 100px;
}
.fv-floating-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 168px;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(58, 50, 40, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.fv-floating-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(58, 50, 40, 0.18);
    opacity: 1;
}
.fv-floating-cta__btn--event {
    background: var(--key);
    color: #fff;
}
.fv-floating-cta__btn--event:hover {
    background: var(--key-dark);
    color: #fff;
}
.fv-floating-cta__btn--catalog {
     background: #fff;
    color: var(--key);
    border: 1px solid var(--border);
}
.fv-floating-cta__btn--catalog:hover {
    background: var(--bg3);
    color: var(--key);
}
.fv-floating-cta.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

@media screen and (max-width: 768px) {
    .footer-nav {
        padding: 40px 0 32px;
    }
    .footer-nav-inner{
        max-width: 300px;
    }
    .footer-nav .drawer-menu-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    .footer-nav .drawer-menu-section {
        margin-bottom: 24px;
    }
    .footer-nav .drawer-menu-section ul li:not(:last-of-type) {
        margin-bottom: 10px;
    }
    .footer-nav .drawer-cta {
        margin-top: 8px;
    }
    .fv-floating-cta {
        right: 16px;
        bottom: 16px;
        gap: 8px;
    }
    .page .fv-floating-cta {
        top: auto;
        bottom: 16px;
    }
    .fv-floating-cta__btn {
        min-width: 148px;
        padding: 11px 20px;
        font-size: 13px;
    }
}
/**********************************************************************/
/*****************************  マージン  *****************************/
/**********************************************************************/

.mb-0{
    margin-bottom: 0!important;
}
.mb-5{
	margin-bottom: 5px!important;
}
.mb-10{
	margin-bottom: 10px!important;
}
.mb-20{
	margin-bottom: 20px!important;
}
.mb-30{
	margin-bottom: 30px!important;
}
.mb-50{
	margin-bottom: 50px!important;
}
.mb-80{
	margin-bottom: 80px!important;
}
.mb-100{
	margin-bottom: 100px!important;
}
.mt-30{
	margin-top: 30px;
}
.mt-50{
	margin-top: 50px;
}

@media screen and (max-width:768px){
    .mb-0-sp{
        margin-bottom: 0!important;
    }
	.mb-30{
		margin-bottom: 20px!important;
	}
	.mb-50{
		margin-bottom: 30px!important;
	}
	.mb-80{
		margin-bottom: 30px!important;
	}
	.mb-100{
		margin-bottom: 50px!important;
	}
	.mt-30{
		margin-top: 20px!important;
	}
	.mt-50{
		margin-top: 20px!important;
	}
}

/**********************************************************************/
/**************************  PCスマホ切り替え  **************************/
/**********************************************************************/

.pc {
  display: block !important;
}
/*pcのみ表示ブロック*/
.sp {
  display: none !important;
}
/*スマホのみ表示ブロック*/
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  /*pcのみ表示ブロック*/
  .sp {
    display: block !important;
  }
  /*スマホのみ表示ブロック*/
}

/**********************************************************************/
/************************  共通コンポーネント  ************************/
/**********************************************************************/

/* 画像プレースホルダー */
.img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8dcc8 0%, #d9cbb5 50%, #c9b89e 100%);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.img-placeholder span {
    font-size: 13px;
    color: rgba(61, 61, 61, 0.5);
    letter-spacing: 2px;
    text-align: center;
    padding: 16px;
}
.img-placeholder--16-9 { aspect-ratio: 16 / 9; }
.img-placeholder--4-3  { aspect-ratio: 4 / 3; }
.img-placeholder--3-4  { aspect-ratio: 3 / 4; }
.img-placeholder--hero { aspect-ratio: auto; }

/* 下層ページ共通 */
main {
    padding-top: 70px;
}
.page main{
    padding-top: 0;
}
.page-intro {
    padding: 60px 0 40px;
    background: var(--bg1);
}
.page-section {
    padding: 60px 0;
}
.page-section-body p:not(:last-of-type){
    margin-bottom: 20px;
}
.page-section-list {
    padding-left: 0;
    list-style: none;
}
.page-section-list li {
    padding: 12px 0 12px 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
}
.page-section-list li::before {
    content: "●";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 10px;
    top: 16px;
}
.page-note {
    margin-top: 32px;
    font-size: 13px;
    color: #999;
}

.ds-flex-img{
    flex-basis: 50%;
}
.ds-flex-img img{
    border-radius: 0 50px 50px 0;
}
.rev .ds-flex-img img {
    border-radius: 50px 0 0 50px;
}
.ds-flex-info{
    flex-basis: 50%;
    padding: 0 5% 0 3%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.rev .ds-flex-info{
    padding: 0 3% 0 5%;
}
.ds-flex-info h2{
    font-size: 26px;
    border-left: 5px solid var(--key);
    margin-bottom: 30px;
    padding: 0 0 3px 15px;
}
.con5{
    padding-top: 0;
}
.con5-list{
    margin-top: 30px;
    gap: 14px;
}
.con5-list li{
    flex-basis: calc(50% - 7px);
    background: #fff;
    padding: 15px 20px;
    border-radius: 50px;
    font-size: 15px;
    box-shadow: 3px 3px 5px rgba(0,0,0,0.2);
    color: var(--key);
    font-weight: bold;
}

.page-hero {
    display: flex;
    align-items: stretch;
    margin-top: 72px;
    background: var(--cream);
    padding-top: 30px;
}
.page-hero__main {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    background: transparent;
}
.page-hero__main-media {
    position: relative;
    flex: 0 0 auto;
    height: calc(100dvh - 120px);
    overflow: hidden;
    background: var(--cream);
    border-radius: 0 50px 50px 0;
}
/* ルーミングプラス .page-ttl-fig 相当：上から滑らかに画像を見せる（角丸なし） */
.page-hero__main-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: var(--cream);
    transform-origin: left bottom;
    transform: scaleY(1);
    pointer-events: none;
    border-radius: 0;
}
.page-hero.is-revealed .page-hero__main-media::after {
    transform: scaleY(0);
    transition: transform 0.8s cubic-bezier(0.76, 0.09, 0.215, 1);
}
@media (prefers-reduced-motion: reduce) {
    .page-hero__main-media::after {
        transform: scaleY(0);
        transition: none;
    }
}
.page-hero__main-media .page-hero__img {
    position: absolute;
    top: -14%;
    left: 0;
    width: 100%;
    height: 128%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    transform-origin: center center;
    will-change: transform;
}
.page-hero__img {
    display: block;
}
.page-hero__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    transform: none;
}
.page-hero__img--placeholder span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 3px;
}
.page-hero__side {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 0 50px;
    background: var(--cream);
}

.page-hero__side > .breadcrumb {
    flex: 0 0 auto;
    padding: 20px 0;
}
.page-hero__side > .breadcrumb .width-m {
    width: 100%;
    max-width: none;
    margin: 0;
}
.page-hero__body {
    flex: 0 0 auto;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.page-hero__label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.4vw, 18px);
    line-height: 1.9;
    letter-spacing: 0.12em;
    color: #888;
    margin: 0 0 clamp(12px, 2vh, 20px);
}

.page-hero__en {
    font-family: "Quicksand", "Josefin Sans", sans-serif;
    font-size: clamp(48px, 7vw, 88px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: var(--dark);
    margin: 0 0 clamp(20px, 3vh, 32px);
}
.page-hero__intro {
    font-size: clamp(14px, 1.5vw, 18px);
    line-height: 2.1;
    letter-spacing: 0.08em;
    color: var(--text);
    margin: 0;
}
.page-hero__sub {
    position: relative;
    flex: 1 1 auto;
    width: 70%;
    max-width: 650px;
    margin: 5vh 5% 0 auto;
    background: var(--bg2);
    aspect-ratio: 13 / 10;
    border-radius: 30px;
    overflow: hidden;
}
.page-hero__sub .page-hero__img {
    position: absolute;
    top: -16%;
    left: 0;
    width: 100%;
    height: 132%;
    object-fit: cover;
    object-position: center center;
    transform: translate3d(0, var(--parallax-y, 0), 0);
    transform-origin: center center;
    will-change: transform;
}

.breadcrumb {
    padding: 12px 0 24px;
    font-size: 14px;
    color: #888;
}
.breadcrumb ul,
.breadcrumb__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
}
.breadcrumb li {
    display: inline-flex;
    align-items: center;
    line-height: 1.6;
    white-space: nowrap;
}
.breadcrumb li:not(:last-child)::after {
    content: ">";
    display: inline-block;
    margin: 0 20px;
    color: #ccc;
}
.breadcrumb a {
    color: inherit;
    text-decoration: none;
}
.breadcrumb a:hover {
    color: var(--key);
}

.page-nav {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    gap: 24px 30px;
    width: 100%;
    min-height: 30vh;
    margin: 0 -10% 0 auto;
    box-sizing: border-box;
}
.page-nav a {
    width: 240px;
    border-bottom: 1px solid #bbb;
    padding: 0 10px 20px;
    position: relative;
}
.page-nav a::after {
    content: "";
    background-image: url("../img/yajirusi.svg");
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 15px;
    height: 20px;
    background-repeat: no-repeat;
    object-fit: contain;
}
.page-nav a.is-current {
    color: var(--key);
    border-bottom-color: var(--key);
}

@media screen and (max-width: 900px) {
    .page-section{
        padding: 30px 0;
    }
    .page-hero {
        flex-direction: column;
        margin-top: 64px;
        padding-top: 0;
    }
    .page-hero__main {
        display: contents;
    }
    .page-hero__main-media {
        order: 1;
        width: 100%;
        height: auto;
        aspect-ratio: 3 / 2;
        border-radius: 0 0 24px 24px;
    }
    .page-hero__main-media .page-hero__img {
        top: -16%;
        height: 120%;
        transform: translate3d(0, var(--parallax-y, 0), 0);
        object-position: center center;
    }
    .page-hero__side {
        order: 2;
        width: 100%;
        min-height: 0;
        padding: 20px 5% 8px;
        box-sizing: border-box;
    }
    .page-hero__side > .breadcrumb {
        padding: 0px 0 16px;
        font-size: 12px;
        border-bottom: 1px solid #ccc;
        margin-bottom: 25px;
    }
    .page-hero__side > .breadcrumb li {
        white-space: normal;
        line-height: 1.5;
        font-size: 12px;
    }
    .page-hero__side > .breadcrumb li:not(:last-child)::after {
        margin: 0 8px;
    }
    .page-hero__body {
        min-height: 0;
        padding-bottom: 0;
    }
    .page-hero__label {
        font-size: 13px;
        letter-spacing: 0.08em;
        line-height: 1.7;
        margin-bottom: 10px;
    }
    .page-hero__en {
        font-size: clamp(30px, 8.5vw, 42px);
        letter-spacing: 0.03em;
        line-height: 1.25;
        margin-bottom: 14px;
        overflow-wrap: anywhere;
        word-break: break-word;
    }
    .page-hero__intro {
        max-width: none;
        font-size: 14px;
        line-height: 1.9;
        letter-spacing: 0.04em;
    }
    .page-hero__sub {
        width: 80%;
        max-width: none;
        margin: 20px 0 0 auto;
        flex: 0 0 auto;
        border-radius: 16px;
    }
    .page-hero__sub .page-hero__img {
        top: -8%;
        height: 116%;
    }
    .page-nav {
        order: 3;
        min-height: 0;
        width: 100%;
        max-width: none;
        gap: 0;
        padding: 20px 5% 28px;
        margin: 0;
        box-sizing: border-box;
    }
    .page-nav a {
        width: 100%;
        padding: 14px 28px 14px 2px;
        box-sizing: border-box;
        font-size: 14px;
    }
    .page-nav a::after {
        transform: translateY(-10%);
    }
}

@media screen and (max-width: 768px) {
    .page-hero__main-media {
        aspect-ratio: 4 / 3;
        border-radius: 0 0 20px 20px;
    }
}

.page-section{
    scroll-margin-top: 76px;
}
.lineup-item[id] {
    scroll-margin-top: 76px;
}

/* ページガイド（下に表示される順序） */
.page-guide {
    background: var(--border);
    padding: 60px 0;
}
.page-guide-head {
    text-align: center;
    margin-bottom: 32px;
}
.page-guide-head h2 {
    font-size: 20px;
    margin-bottom: 10px;
}
.page-guide-lead {
    margin: 0;
    color: var(--key-dark);
    font-size: 14px;
    letter-spacing: 0.12em;
}
.page-guide-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    padding: 0;
    justify-content: center;
}
.page-guide-list li {
    position: relative;
    flex: 1 1 calc(16.666% - 30px);
    min-width: 120px;
}
.page-guide-list li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    z-index: 1;
    width: 8px;
    height: 8px;
    border-top: 1.5px solid var(--key);
    border-right: 1.5px solid var(--key);
    transform: translate(50%, -50%) rotate(45deg);
    pointer-events: none;
    opacity: 0.55;
}
.page-guide-list a {
    display: block;
    text-align: center;
    padding: 20px 12px;
    background: #fff;
    border-radius: 4px;
    transition: all 0.3s;
}
.page-guide-list a span {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 8px;
}
.page-guide-list .is-current a {
    background: var(--key);
    color: #fff;
}
.page-guide-list .is-current a span {
    color: #fff;
}

/* フロントページはヘッダー上余白なし */
.front-page {
    padding-top: 0;
}
body.home main {
    padding-top: 0;
}

/* 下層共通まわりのレスポンシブ（page-guide / voice / event / flow） */
@media screen and (max-width: 768px) {
    .page-guide-list {
        flex-direction: column;
        gap: 28px;
    }
    .page-guide-list li {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
    .page-guide-list li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -14px;
        transform: translate(50%, 50%) rotate(135deg);
    }
    .page-guide-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 10px;
    }
    .page-guide-list a span {
        margin-bottom: 0;
        transform: translateY(2px);
    }
    .event-card:not(:last-of-type) {
        margin-bottom: 20px;
    }
    .page-section-body.text-c{
        text-align: left;
    }
}

/**********************************************************************/
/**************************  固定ページ関係  **************************/
/**********************************************************************/

/* プライバシーポリシー */
.privacy-policy-body h2 {
    margin: 40px 0 16px;
    font-size: 18px;
    font-weight: 600;
}
.privacy-policy-body h2:first-of-type {
    margin-top: 32px;
}
.privacy-policy-contact {
    margin-top: 16px;
    line-height: 2;
}
.privacy-policy-contact a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.page-header-minimal {
    background: var(--cream);
}
.page-header-minimal .breadcrumb {
    margin-top: 76px;
    padding: 20px 0;
}
main.privacy-page,
main.error404-page {
    padding-top: 0;
}
main.privacy-page .page-section,
main.error404-page .page-section {
    padding-top: 40px;
}
@media screen and (max-width: 900px) {
    .page-header-minimal .breadcrumb {
        margin-top: 52px;
    }
}

.concept-infographic {
    margin: 48px auto 0;
    max-width: 800px;
    text-align: center;
}
.concept-infographic__link {
    display: block;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--bg3);
    box-shadow: 0 4px 24px rgba(58, 50, 40, 0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.concept-infographic__link:hover {
    box-shadow: 0 8px 32px rgba(58, 50, 40, 0.1);
    transform: translateY(-2px);
}
.concept-infographic__link img {
    width: 100%;
    height: auto;
}
.concept-infographic__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 12px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--dark);
    background: rgba(247, 240, 230, 0.92);
    border: 1px solid var(--border);
    border-radius: 999px;
}
.concept-infographic__caption {
    margin-top: 14px;
    font-size: 13px;
    color: #999;
    letter-spacing: 2px;
}

/* コンセプト（想い本編） */
.concept-page .page-section,
.concept-block,
.concept-story-intro,
.concept-chapter {
    scroll-margin-top: 76px;
}
.concept-block--origin {
    padding: 60px 0;
    background: var(--bg2);
}
.concept-origin {
    align-items: flex-start;
    gap: 40px;
}
.concept-origin__photo {
    flex: 0 0 260px;
}
.concept-origin__photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}
.concept-origin__sign {
    margin-top: 14px;
    text-align: center;
    line-height: 1.7;
}
.concept-origin__sign span {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: #888;
}
.concept-origin__sign span:last-child {
    margin-top: 4px;
    font-size: 18px;
    color: var(--dark);
    letter-spacing: 0.12em;
}
.concept-origin__body {
    flex: 1;
    min-width: 0;
}
.concept-story-intro {
    padding: clamp(64px, 9vw, 108px) 5%;
    text-align: center;
    background: var(--bg3);
}
.concept-story-intro__en {
    margin-bottom: 18px;
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 14px;
    line-height: 1.4;
    color: var(--key);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: bold;
}
.concept-story-intro h2 {
    margin-bottom: 28px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.7;
    letter-spacing: 0.14em;
}
.concept-story-intro h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    margin: 26px auto 0;
    background: var(--accent);
}
.concept-story-intro > div > p:last-child {
    font-size: 15px;
    color: #6f685f;
}

.concept-chapter__visual {
/*    aspect-ratio: 4 / 3;*/
    overflow: hidden;
    border-radius: 4px 36px 4px 4px;
    flex-basis: 42%;
}
.rev .concept-chapter__visual {
    border-radius: 36px 4px 4px 4px;
}
.concept-chapter__visual img {
    height: 100%;
    object-fit: cover;
}
.concept-chapter__content {
    padding: 24px 5%;
    flex-basis: 58%;
}
.concept-chapter__head {
    margin-bottom: 36px;
}
.concept-chapter__label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 14px;
    line-height: 1.4;
    color: var(--key);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.concept-chapter__label span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: #fff;
    background: var(--key);
    border-radius: 50%;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
    letter-spacing: 0.05em;
}
.concept-chapter__head h3 {
    margin-bottom: 22px;
    font-size: clamp(26px, 3.3vw, 38px);
    line-height: 1.65;
    letter-spacing: 0.1em;
}
.concept-chapter__theme {
    display: inline-block;
    padding: 7px 14px;
    color: #756b5f;
    background: var(--bg3);
    border-left: 3px solid var(--accent);
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.1em;
}
.concept-chapter .page-section-body {
    font-size: 15px;
}
.concept-closing__quote {
    margin: 48px auto 0;
    padding: 25px 50px;
    background: #fff;
    border-left: 4px solid var(--key);
    box-shadow: 0 4px 24px rgba(58, 50, 40, 0.06);
    max-width: 800px;
}
.concept-closing__quote-foot {
    margin-top: 24px;
    color: var(--key);
}
.community-page .concept-chapter__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (max-width: 900px) {
    .concept-origin {
        flex-direction: column;
        gap: 28px;
    }
    .concept-origin__photo {
        flex: none;
        width: 100%;
        max-width: 260px;
        margin: 0 auto 20px;
    }
    .concept-story-intro {
        padding-right: 0;
        padding-left: 0;
    }
    .concept-story-intro h2 {
        margin-bottom: 22px;
        font-size: 21px;
    }
    .concept-story-intro h2::after {
        margin: 12px auto 40px;
    }
    .concept-chapter {
        padding: 0;
    }
    .concept-chapter__inner {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .concept-chapter__visual,
    .concept-chapter__content,
    .concept-chapter__head {
        margin-bottom: 28px;
    }
    .concept-chapter__head h3 {
        margin-bottom: 18px;
        font-size: 21px;
    }
    .concept-chapter__label {
        margin-bottom: 16px;
    }
    .concept-chapter__label span {
        width: 38px;
        height: 38px;
    }
    .concept-closing__quote {
        padding: 28px 20px;
    }
}

/* 家づくりへのこだわり */
.con2-item{
    align-items: center;
}
.con2-list{
    flex-basis: 30%;
}
.con2-list__title{
    font-size: 20px;
    color: var(--accent);
    margin-bottom: 20px;
    padding-left: 10px;
}
.con2-img{
    flex-basis: 65%;
}
.con3{
    background: var(--bg2);
}

/* 家づくりの流れ */
.flow-phase-band {
    scroll-margin-top: 76px;
    background: var(--key);
    color: #fff;
    padding: 48px 5%;
    text-align: center;
}
.flow-phase-band--alt {
    background: var(--key-dark);
}
.flow-phase-band--deep {
    background: linear-gradient(135deg, var(--key) 0%, var(--key-dark) 100%);
}
.flow-phase-band__inner {
    max-width: 800px;
    margin: 0 auto;
}
.flow-phase-band__phase {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 13px;
    letter-spacing: 0.2em;
    opacity: 0.85;
    margin: 0 0 12px;
}
.flow-phase-band__title {
    font-size: clamp(22px, 3.5vw, 32px);
    letter-spacing: 0.14em;
    line-height: 1.5;
    margin: 0 0 10px;
    font-weight: 600;
}
.flow-phase-band__en {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: clamp(14px, 1.8vw, 17px);
    letter-spacing: 0.1em;
    margin: 0;
    opacity: 0.92;
}
.flow-phase {
    padding: 48px 0 64px;
}
.flow-phase--warm {
    background: var(--bg2);
}
.flow-phase--light {
    background: #fff;
}
.flow-phase__lead {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
    line-height: 1.9;
    font-size: 16px;
}
.flow-steps {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}
.flow-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}
.flow-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.flow-step--rev .flow-step__visual {
    order: 2;
}
.flow-step__visual {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    overflow: hidden;
    background: var(--bg3);
    box-shadow: 0 4px 20px rgba(61, 61, 61, 0.08);
}
.flow-step__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.flow-step__photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(145deg, var(--cream) 0%, var(--bg3) 100%);
    border: 1px dashed var(--border);
}
.flow-step__photo-placeholder-label {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.24em;
    color: #bbb;
    text-transform: uppercase;
}
.flow-step__body {
    min-width: 0;
}
.flow-step-num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 36px;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 12px;
}
.flow-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--key);
    letter-spacing: 0.06em;
}
.flow-step__body > p {
    line-height: 1.9;
    margin: 0;
}
.flow-step__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}
.flow-step__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--key);
    font-weight: 500;
    letter-spacing: 0.04em;
    border-bottom: 1px solid rgba(14, 154, 124, 0.35);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}
.flow-step__link::after {
    content: "";
    width: 12px;
    height: 12px;
    background-image: url("../img/yajirusi.svg");
    background-repeat: no-repeat;
    background-size: contain;
    flex-shrink: 0;
}
.flow-step__link:hover {
    color: var(--key-dark);
    border-color: var(--key-dark);
}
.flow-page-cta {
    padding-top: 20px;
    background: var(--bg1);
}

@media screen and (max-width:768px){
    .flow-phase-band {
        padding: 20px 5%;
    }
.flow-phase-band__phase {
    margin: 0 0 2px;
}
.flow-phase-band__title {
    margin: 0 0 3px;
}

    .flow-phase {
        padding: 32px 0 48px;
    }
    .flow-phase__lead {
        margin-bottom: 24px;
        font-size: 15px;
        text-align: left;
    }
    .flow-step {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 32px 0;
    }
    .flow-step h3 {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .flow-step--rev .flow-step__visual {
        order: 0;
    }
    .flow-step__body .flow-step__visual {
        margin: 4px 0 20px;
    }
    .flow-step-num {
        font-size: 28px;
        margin: 0;
        transform: translateY(3px);
    }
}

/* お客様の声 */

/* 会社概要・沿革 */
.company-page .section-head__title {
    color: var(--key);
}
.company-message-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}
.company-message-photo {
    flex: 0 0 260px;
    max-width: 100%;
}
.company-message-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 20px rgba(61, 61, 61, 0.08);
}
.company-message-sign {
    margin: 16px 0 0;
    text-align: center;
    line-height: 1.7;
    letter-spacing: 0.08em;
}
.company-message-sign span {
    display: block;
    font-size: 14px;
    color: var(--text);
}
.company-message-sign span:last-child {
    font-size: 18px;
    font-weight: 600;
    color: var(--key);
    margin-top: 4px;
}
.company-message-body {
    flex: 1;
    min-width: 0;
}
@media screen and (max-width: 768px) {
    .company-message-layout {
        flex-direction: column;
        gap: 28px;
    }
    .company-message-photo {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
}

.company-page .company-section--overview {
    background: var(--bg2);
}
.company-page .company-section--history {
    background: #fff;
}
.company-overview-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(61, 61, 61, 0.06);
    overflow: hidden;
}
.company-overview {
    margin: 0;
}
.company-overview__row {
    display: flex;
    border-bottom: 1px solid var(--border);
}
.company-overview__row:last-child {
    border-bottom: none;
}
.company-overview__row dt {
    flex: 0 0 200px;
    margin: 0;
    padding: 18px 24px;
    background: rgba(14, 154, 124, 0.07);
    color: var(--key);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 1.6;
}
.company-overview__row dd {
    flex: 1;
    margin: 0;
    padding: 18px 28px;
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    letter-spacing: 0.04em;
}
.company-history-layout {
    display: flex;
    gap: 48px;
}
.company-history-photo {
    flex-basis: 40%;
    max-width: 100%;
}
.company-history-photo img {
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}
.company-history-body {
    flex-basis: 55%;
    min-width: 0;
    padding-top: 8px;
}
.company-history {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 2px solid rgba(184, 149, 107, 0.45);
}
.company-history li {
    position: relative;
    padding: 0 0 32px 32px;
}
.company-history li:last-child {
    padding-bottom: 0;
}
.company-history li::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--accent);
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px rgba(184, 149, 107, 0.35);
}
.company-history time {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--key);
    margin-bottom: 6px;
    letter-spacing: 0.04em;
}
.company-history p {
    margin: 0;
    line-height: 1.85;
    font-size: 15px;
    color: var(--text);
}
.company-faq-section {
    background: var(--bg2);
}
.company-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}
.company-faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px 28px;
    box-shadow: 0 4px 16px rgba(61, 61, 61, 0.05);
}
.company-faq-item dt,
.company-faq-item dd {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin: 0;
}
.company-faq-item dd {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px dashed var(--border);
}
.company-faq-item__label {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--key);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
}
.company-faq-item__label--a {
    background: var(--accent);
}
.company-faq-item__question {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.7;
    color: var(--key);
    padding-top: 6px;
}
.company-faq-item__answer {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    padding-top: 6px;
}
.company-faq-item a {
    color: var(--key);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.company-faq-item a:hover {
    color: var(--key-dark);
}
@media screen and (max-width: 768px) {
    .company-overview__row {
        flex-direction: column;
    }
    .company-overview__row dt {
        flex: none;
        width: 100%;
        padding: 14px 18px;
        border-bottom: 1px solid rgba(14, 154, 124, 0.12);
    }
    .company-overview__row dd {
        padding: 14px 18px 18px;
        font-size: 14px;
    }
    .company-history-layout {
        flex-direction: column;
        gap: 28px;
    }
    .company-history-photo {
        flex: none;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    .company-history-body {
        padding-top: 0;
        width: 100%;
    }
    .company-history li {
        padding-left: 24px;
    }
    .company-faq-item {
        padding: 20px 18px;
    }
    .company-faq-item dt,
    .company-faq-item dd {
        gap: 12px;
    }
    .company-faq-item__label {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .company-faq-item__question {
        font-size: 15px;
        padding-top: 4px;
    }
    .company-faq-item__answer {
        font-size: 14px;
        padding-top: 4px;
    }
}
.company-staff-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.company-staff-card {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 32px 40px;
    padding: 32px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.company-staff-card__img {
    flex: 0 0 200px;
    max-width: 100%;
}
.company-staff-card__img img {
    border-radius: 6px;
}
.company-staff-card__body {
    flex: 1;
    min-width: 260px;
}
.company-staff-card__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 16px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}
.company-staff-card__name {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: var(--key);
    letter-spacing: 0.06em;
}
.company-staff-card__role {
    font-size: 13px;
    color: #fff;
    background: var(--accent);
    margin: 0;
    padding: 4px 12px;
    border-radius: 2px;
    font-weight: 500;
    line-height: 1.5;
}
.company-staff-card__certs {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.company-staff-card__certs li {
    font-size: 12px;
    line-height: 1.4;
    color: var(--key);
    background: rgba(14, 154, 124, 0.08);
    border: 1px solid rgba(14, 154, 124, 0.2);
    padding: 4px 10px;
    border-radius: 3px;
}
.company-staff-card__message {
    margin-bottom: 20px;
    padding: 16px 20px;
    background: var(--bg1);
    border-left: 3px solid var(--key);
    border-radius: 0 4px 4px 0;
}
.company-staff-card__message p {
    margin: 0;
    line-height: 1.9;
    font-size: 15px;
    color: var(--text);
}
.company-staff-card__message p + p {
    margin-top: 8px;
}
.company-staff-card__details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px dashed var(--border);
    font-size: 13px;
    line-height: 1.7;
}
.company-staff-card__details li {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.company-staff-card__details li span {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
    .company-staff-card {
        padding: 24px 20px;
        display: block;
    }
    .company-staff-card__img {
        margin: 0 auto 20px;
        width: 80%;
    }
    .company-staff-card__body {
        min-width: 0;
        width: 100%;
    }
    .company-staff-card__name {
        font-size: 20px;
    }
    .company-staff-card__details {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* 会社案内：ZEH */
.company-zeh-link {
    margin-top: 20px;
}
.company-zeh-link a {
    color: var(--key);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.company-zeh-tables {
    margin-top: 40px;
}
.company-zeh-tables__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--key);
    margin: 0 0 10px;
}
.company-zeh-tables__title--sub {
    margin-top: 32px;
}
.company-zeh-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}
.company-zeh-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
}
.company-zeh-table th,
.company-zeh-table td {
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
    white-space: nowrap;
}
.company-zeh-table thead th {
    background: rgba(14, 154, 124, 0.07);
    color: var(--key);
    font-weight: 600;
}
.company-zeh-table tbody th {
    text-align: left;
    font-weight: 600;
    color: #444;
    background: #fcfaf7;
    min-width: 72px;
}
.company-zeh-table tbody tr:last-child th,
.company-zeh-table tbody tr:last-child td {
    border-bottom: 0;
}
#sec-zeh {
    scroll-margin-top: 76px;
}

/* こだわりの仕様 */
.spec-perf-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.spec-perf-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
}
.spec-perf-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--key);
    margin-bottom: 4px;
}
.spec-perf-card__en {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}
.spec-perf-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.spec-perf-card .page-section-list {
    margin-top: 12px;
}
#sec-wall, #sec-sw{
    background: var(--bg3);
}
.spec-material-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin: 40px 0 0;
    padding: 0;
    list-style: none;
}
.spec-material-card {
    margin: 0;
}
.spec-material-card__media {
    position: relative;
    margin: 0 0 14px;
    overflow: hidden;
}
.spec-material-card__badge {
    position: absolute;
    left: 0;
    bottom: 12px;
    display: inline-block;
    max-width: calc(100% - 16px);
    margin: 0;
    padding: 6px 12px;
    background: var(--accent);
    color: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1.4;
}
.spec-material-card__body p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.spec-material-card__note {
    font-size: 12px !important;
    color: var(--accent) !important;
    margin-bottom: 6px !important;
}
.spec-sango {
    margin-top: 56px;
    padding: 40px 36px;
    background: var(--bg1);
}
.spec-sango__title {
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 600;
    line-height: 1.6;
    color: var(--key);
    margin-bottom: 20px;
}
.spec-sango__body {
    margin-bottom: 28px;
}
.spec-sango__points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 28px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.spec-sango__points li {
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
}
.spec-sango__points h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--key);
    margin: 0 0 8px;
    line-height: 1.5;
}
.spec-sango__points p {
    font-size: 13px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.spec-feature{
    background: var(--bg3);
    padding: 40px;
}
.spec-feature + .spec-feature {
    margin-top: 64px;
}
#sec-charcoal > .width-m > .spec-feature:first-of-type {
    margin-top: 48px;
}
.spec-feature__head {
    text-align: center;
    margin-bottom: 50px;
}
.spec-feature__title {
    font-size: clamp(22px, 2.6vw, 28px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--key);
    margin: 0 0 6px;
}
.spec-feature__en {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0 0 12px;
}
.spec-feature__lead {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.spec-feature__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 48px);
    align-items: start;
}
.spec-feature__media {
    margin: 0;
}
.spec-feature__media img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.spec-feature__more {
    margin-top: 20px !important;
    font-size: 13px;
}
.spec-feature__more a {
    color: var(--key);
    text-decoration: underline;
    text-underline-offset: 3px;
}
.spec-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #1a1a1a;
    overflow: hidden;
}
.spec-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
#sec-underprotect,
#sec-sumicas,
#sec-iyashirochi {
    scroll-margin-top: 76px;
}
@media (max-width: 900px) {
    .spec-perf-grid {
        grid-template-columns: 1fr;
    }
    .spec-material-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
    .spec-sango {
        padding: 32px 20px;
    }
    .spec-sango__points {
        grid-template-columns: 1fr;
    }
    .spec-feature__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 560px) {
    .spec-material-grid {
        grid-template-columns: 1fr;
    }
}

/* アフターサポート */
.after-flow-flex {
    align-items: stretch;
    gap: 24px;
}
.after-warranty-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.after-warranty-card {
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--border);
}
.after-warranty-card__label {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 16px;
    background: var(--key);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.after-warranty-card__title {
    font-size: clamp(18px, 2vw, 22px);
    font-weight: 600;
    color: var(--key);
    margin-bottom: 4px;
}
.after-warranty-card__en {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin-bottom: 16px;
}
.after-warranty-card__lead {
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
    color: var(--dark);
}
.after-warranty-card__body {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.after-warranty-card__body p {
    margin: 0 0 12px;
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}
.after-warranty-card__body p:last-child {
    margin-bottom: 0;
}
.after-warranty-card__note {
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 1.7;
    color: #777;
}
.after-warranty-card__note a {
    color: var(--key);
    text-decoration: underline;
    text-underline-offset: 3px;
}
@media (max-width: 900px) {
    .after-warranty-grid {
        grid-template-columns: 1fr;
    }
    .after-warranty-card {
        padding: 28px 20px;
    }
}

.after-flow-section{
    background: var(--bg3);
}
.after-flow-img{
    flex-basis: 36%;
    position: relative;
}
.after-flow-img::after{
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px 0 0 50px;
    background: rgba(255,255,255,0.3)
}
.after-flow-img img{
    height: 100%;
    object-fit: cover;
    border-radius: 50px 0 0 50px;
    position: relative;
}
.after-flow {
    flex-basis: 50%;
    list-style: none;
    margin: 0 6%;
    border-left: 2px solid var(--border);
}
.after-flow-item {
    position: relative;
    padding: 0 0 32px 32px;
}
.after-flow-marker {
    position: absolute;
    left: -8px;
    top: 4px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--accent);
}
.after-flow-item--highlight .after-flow-marker {
    background: var(--accent);
}
.after-flow-body h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--key);
}
.after-flow-body p {
    margin: 8px 0 0;
    line-height: 1.8;
}
.after-flow-body .page-section-list {
    margin-top: 8px;
}
@media (max-width: 900px) {
    .after-flow-flex {
        flex-direction: column;
    }
    .after-flow {
        margin: auto;
        width: 90%;
    }
.after-flow-item {
    padding: 0 0 12px 22px;
}
.after-flow-body h3 {
    font-size: 16px;
    margin-bottom: 5px;
}



    .after-flow-img {
        flex-basis: auto;
        min-height: 220px;
    }
    .after-flow-img img {
        width: 100%;
        height: 220px;
    }
}

/* アフター：家守り */
.after-partner {
    margin-top: 40px;
    padding: 36px 40px;
    background: #fff;
    border: 1px solid var(--border);
}
.after-partner__head {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}
.after-partner__label {
    display: inline-block;
    padding: 4px 12px;
    margin-bottom: 14px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
}
.after-partner__catch {
    margin: 0;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 600;
    line-height: 1.7;
    color: var(--key);
}
.after-partner__body {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 32px;
    align-items: start;
}
.after-partner__logo {
    display: block;
    width: auto;
    max-width: 220px;
    height: auto;
    margin-bottom: 12px;
}
.after-partner__name {
    margin: 0 0 8px;
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}
.after-partner__tag {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.04em;
}
.after-partner__info p {
    margin: 0 0 14px;
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}
.after-partner__info p:last-child {
    margin-bottom: 0;
}
.after-partner__list {
    list-style: none;
    margin: 0;
    padding: 20px 22px;
    background: var(--bg1);
}
.after-partner__list li {
    position: relative;
    padding: 8px 0 8px 18px;
    font-size: 13px;
    line-height: 1.6;
    color: #444;
    border-bottom: 1px solid rgba(184, 149, 107, 0.25);
}
.after-partner__list li:last-child {
    border-bottom: 0;
}
.after-partner__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}
@media (max-width: 900px) {
    .after-partner {
        padding: 28px 20px;
    }
    .after-partner__body {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* 規格住宅ページ */
.series-intro {
    background: var(--bg1);
}
.series-intro__body {
    max-width: 720px;
    margin: 0 auto;
}
.series-compare {
    background: var(--cream);
}
.series-compare-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.series-compare-table {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(58, 50, 40, 0.06);
}
.series-compare-table th,
.series-compare-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
    vertical-align: top;
}
.series-compare-table thead th {
    background: var(--key);
    color: #fff;
    font-weight: 600;
    text-align: center;
    border-bottom: none;
}
.series-compare-table thead th:first-child {
    background: transparent;
}
.series-compare-table tbody th {
    width: 22%;
    background: var(--bg1);
    font-weight: 600;
    white-space: nowrap;
}
.series-compare-table tbody tr:last-child th,
.series-compare-table tbody tr:last-child td {
    border-bottom: none;
}
.series-brand {
    padding: 80px 0;
}
.series-brand.rev {
    background: var(--bg1);
}
.series-brand__en {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 15px;
    color: var(--key);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.series-brand__tagline {
    font-size: 15px;
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 600;
}
.series-brand .page-section-list {
    margin: 24px 0;
}
.series-brand .ds-flex-info h2 {
    margin-bottom: 8px;
}
.series-price {
    margin: 28px 0 20px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid var(--key);
    box-shadow: 0 2px 12px rgba(58, 50, 40, 0.05);
}
.series-brand.rev .series-price {
    background: var(--cream);
}
.series-price dt {
    font-size: 13px;
    font-weight: 600;
    color: var(--key);
    margin-bottom: 8px;
    letter-spacing: 0.06em;
}
.series-price dd {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.6;
}
.series-price dd + dd {
    margin-top: 4px;
}
.series-price__tsubo {
    display: inline-block;
    min-width: 3.5em;
    font-size: 14px;
    font-weight: 500;
    color: #666;
}
.series-brand__target {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.series-brand__target strong {
    color: var(--dark);
}
.series-gallery {
    padding-top: 0;
    padding-bottom: 60px;
}
.series-gallery--trettio {
    background: var(--bg1);
}
.series-gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.series-gallery__item {
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg3);
}
.series-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.series-gallery__item:hover img {
    transform: scale(1.04);
}
.series-why {
    background: var(--cream);
}
.series-why__note {
    margin-top: 32px;
    text-align: center;
    font-size: 15px;
    line-height: 1.9;
}
.btn-pill--external:hover {
    background: var(--cream);
}
.btn-pill__icon--external::after {
    content: "↗";
    font-size: 12px;
}
@media screen and (max-width: 900px) {
    .series-brand {
        padding: 60px 0;
    }
    .series-brand.flex.ds-flex,
    .series-brand.flex.ds-flex.rev {
        flex-direction: column;
    }
    .series-brand .ds-flex-img,
    .series-brand.rev .ds-flex-img {
        flex-basis: auto;
        width: 100%;
    }
    .series-brand .ds-flex-img img,
    .series-brand.rev .ds-flex-img img {
        border-radius: 0;
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
    }
    .series-brand .ds-flex-info,
    .series-brand.rev .ds-flex-info {
        flex-basis: auto;
        padding: 32px 5% 0;
    }
    .series-gallery__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .series-gallery__item {
        aspect-ratio: 16 / 10;
    }
    .series-compare-table tbody th {
        white-space: normal;
        font-size: 13px;
    }
    .series-compare-table th,
    .series-compare-table td {
        padding: 12px 14px;
        font-size: 13px;
    }
}

/* 断熱リフォーム */
.reform-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}
.reform-feature-card {
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.reform-feature-card__en {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: 0 0 8px;
}
.reform-feature-card__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--key);
    margin: 0 0 14px;
    line-height: 1.5;
}
.reform-feature-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.reform-merit-list {
    list-style: none;
    margin: 40px 0 0;
    padding: 0;
    display: grid;
    gap: 20px;
}
.reform-merit-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
}
.reform-merit-item__num {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 22px;
    color: var(--accent);
    line-height: 1;
    padding-top: 2px;
}
.reform-merit-item h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--key);
    margin: 0 0 8px;
    line-height: 1.5;
}
.reform-merit-item p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}
.ref-osusume ul, .ref-osusume div{
    flex-basis: 48%;
}
.reform-target-list {
    list-style: none;
    padding: 0;
}
.reform-target-list li {
    position: relative;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    line-height: 1.8;
    color: #444;
}
.reform-target-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    transform: translateY(-50%);
}
.reform-page #sec-method,.reform-page #sec-target{
    background: var(--bg3);
}
.reform-method-list {
    margin-top: 40px;
    display: grid;
    gap: 56px;
}
.reform-method-item__head {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 20px;
    align-items: start;
    margin-bottom: 20px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}
.reform-method-item__num {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 28px;
    color: var(--accent);
    line-height: 1;
    padding-top: 2px;
}
.reform-method-item__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--key);
    margin: 0 0 10px;
    line-height: 1.5;
}
.reform-method-item__head p {
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin: 0;
}
.reform-method-item__figure {
    margin: 0 auto;
    max-width: 880px;
}
.reform-figure-link {
    display: block;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(58, 50, 40, 0.05);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.reform-figure-link:hover {
    box-shadow: 0 8px 28px rgba(58, 50, 40, 0.09);
    transform: translateY(-2px);
}
.reform-figure-link img {
    display: block;
    width: 100%;
    height: auto;
}
.reform-figure-link__zoom {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 14px;
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--dark);
    background: rgba(247, 240, 230, 0.92);
    border-radius: 999px;
}
.reform-ba-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}
.reform-ba-card {
    margin: 0;
}
.reform-ba-card__label {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 0 0 10px;
    text-transform: uppercase;
}
.reform-ba-card figcaption {
    margin-top: 14px;
}
.reform-ba-card figcaption strong {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: var(--key);
    margin-bottom: 6px;
}
.reform-ba-card figcaption span {
    display: block;
    font-size: 13px;
    line-height: 1.8;
    color: #666;
}
.reform-note-section {
    padding-top: 20px;
}
.reform-note {
    padding: 24px 28px;
    background: var(--bg1);
    border-left: 4px solid var(--key);
    border-radius: 0 16px 16px 0;
}
.reform-note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.9;
    color: #555;
}
@media (max-width: 900px) {
    .reform-feature-grid {
        grid-template-columns: 1fr;
    }
    .reform-merit-item {
        padding: 20px;
        gap: 14px;
    }
    .reform-method-list {
        gap: 40px;
    }
    .reform-method-item__head {
        gap: 14px;
        margin-bottom: 16px;
    }
    .reform-method-item__title {
        font-size: 18px;
    }
    .reform-ba-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* フォームプレースホルダー */
.form-placeholder,
.catalog-form-area,
.contact-form-area {
    margin-top: 40px;
    padding: 40px;
    background: var(--bg1);
    border-radius: 4px;
    text-align: center;
}

/***************************  catalog page  ***************************/
.catalog-banner-section {
    padding-bottom: 0;
}
.catalog-banner {
    display: block;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(61, 61, 61, 0.1);
}
.catalog-banner img {
    display: block;
    width: 100%;
    height: auto;
}
.catalog-intro-section {
    padding-top: 48px;
}
.catalog-intro {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}
.catalog-intro__body {
    flex: 1;
    min-width: 0;
    max-width: calc(100% - 280px - 48px);
}
.catalog-intro__title {
    margin: 0 0 24px;
    font-size: clamp(20px, 2.4vw, 26px);
    letter-spacing: 0.08em;
    line-height: 1.6;
    color: var(--key);
}
.catalog-intro__body > p {
    margin: 0 0 1.4em;
    line-height: 2;
    letter-spacing: 0.04em;
}
.catalog-intro__em {
    color: var(--accent);
    font-weight: 600;
}
.catalog-points {
    margin: 28px 0;
    padding: 24px 28px;
    background: var(--bg2);
    border-radius: 12px;
}
.catalog-points__label {
    margin: 0 0 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--key);
}
.catalog-points__list {
    margin: 0;
    padding: 0;
    list-style: none;
}
.catalog-points__list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 10px;
    line-height: 1.7;
    letter-spacing: 0.04em;
}
.catalog-points__list li:last-child {
    margin-bottom: 0;
}
.catalog-points__list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 0.7em;
    height: 0.7em;
    border-radius: 50%;
    background: var(--key);
}
.catalog-intro__note {
    color: #c45c3e;
    font-weight: 500;
}
.catalog-intro__cover {
    flex: 0 0 280px;
    position: sticky;
    top: 100px;
}
.catalog-intro__cover img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 8px 28px rgba(61, 61, 61, 0.14);
}
@media screen and (max-width: 768px) {
    .catalog-banner-section {
        padding-top: 8px;
    }
    .catalog-banner {
        border-radius: 8px;
    }
    .catalog-intro-section {
        padding-top: 32px;
    }
    .catalog-intro {
        flex-direction: column-reverse;
        gap: 28px;
    }
    .catalog-intro__cover {
        flex: none;
        max-width: 180px;
        margin: 0 auto;
    }
    .catalog-points {
        padding: 20px;
    }
}

.contact-phone-section {
    padding-top: 0;
}
.contact-phone-cta {
    display: flex;
    align-items: center;
    padding: 34px 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(61, 61, 61, 0.05);
}
.contact-phone-cta__body {
    flex: 1;
    min-width: 0;
    padding-right: 44px;
}
.contact-phone-cta__label {
    margin-bottom: 6px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.5;
}
.contact-phone-cta__title {
    margin-bottom: 8px;
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: 0.1em;
}
.contact-phone-cta__note {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
}
.contact-phone-cta__link {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 44px;
    border-left: 1px solid var(--border);
    color: var(--key);
}
.contact-phone-cta__link-label {
    margin-bottom: 3px;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.contact-phone-cta__number {
    font-family: 'Josefin Sans', sans-serif;
    font-size: clamp(28px, 3.2vw, 38px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.05em;
}
.contact-phone-cta__hours {
    margin-top: 5px;
    color: var(--text);
    font-size: 13px;
    letter-spacing: 1px;
}
.contact-line-cta {
    display: flex;
    align-items: center;
    margin-top: 20px;
    padding: 34px 44px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(61, 61, 61, 0.05);
    scroll-margin-top: 76px;
}
.contact-line-cta__body {
    flex: 1;
    min-width: 0;
    padding-right: 44px;
}
.contact-line-cta__label {
    margin-bottom: 6px;
    color: #06C755;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.14em;
    line-height: 1.5;
}
.contact-line-cta__title {
    margin-bottom: 8px;
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: 0.1em;
}
.contact-line-cta__note {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1px;
}
.contact-line-cta__banner {
    flex: 0 0 min(420px, 48%);
    display: block;
    overflow: hidden;
    border-radius: 12px;
}
.contact-line-cta__banner img {
    display: block;
    width: 100%;
    height: auto;
}
@media screen and (max-width:768px){
    .contact-phone-cta {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
    }
    .contact-phone-cta__body {
        padding-right: 0;
    }
    .contact-phone-cta__note {
        font-size: 13px;
    }
    .contact-phone-cta__link {
        flex: none;
        width: 100%;
        margin-top: 22px;
        padding: 22px 0 0;
        border-top: 1px solid var(--border);
        border-left: 0;
    }
    .contact-phone-cta__hours {
        font-size: 12px;
    }
    .contact-line-cta {
        flex-direction: column;
        padding: 28px 20px;
        text-align: center;
    }
    .contact-line-cta__body {
        padding-right: 0;
        margin-bottom: 20px;
    }
    .contact-line-cta__note {
        font-size: 13px;
    }
    .contact-line-cta__banner {
        flex: none;
        width: 100%;
    }
}

/**********************************************************************/
/**************************  一覧ページ関係  **************************/
/**********************************************************************/

/* 固定ページ以外の横長ヘッダー */
.page-header {
    margin-top: 76px;
    padding: 0;
}
.page-header-img {
    margin-left: 10%;
    padding: 0 0 50px 50px;
    position: relative;
}
.page-header-img img {
    max-height: 70vh;
}
.header-text {
    position: absolute;
    left: 0;
    bottom: 0;
    background: var(--bg1);
    font-size: 70px;
    padding: 10px 50px 20px 0;
    margin-bottom: 10px;
}
.header-text span {
    font-family: "Noto Serif JP", serif;
    font-size: 14px;
    margin-top: 8px;
    letter-spacing: 2px;
}

.archive main{
    padding-top: 10px;
}

.a-page-top{
    background: #fff;
}
.a-page-top .sec-title {
    margin-bottom: 0;
    text-align: center;
}

/* 最新情報一覧（画像なし・リスト型） */
.a-news {
    padding: 48px 0 80px;
    background: var(--bg1);
}
.a-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.a-news-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
}
.a-news-item__link {
    display: grid;
    grid-template-columns: 7.5em 1fr auto;
    gap: 16px 28px;
    align-items: center;
    padding: 22px 28px;
}
.a-news-item__date {
    font-family: "Josefin Sans", "Quicksand", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    color: #999;
    line-height: 1.4;
}
.a-news-item__title {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: var(--dark);
}
.a-news-item__more {
    font-size: 12px;
    letter-spacing: 0.12em;
    color: var(--key);
    white-space: nowrap;
}
.a-news-item__more::after {
    content: " ›";
}
.a-news-item__link:hover .a-news-item__title {
    color: var(--key);
}
.a-news .pagination {
    margin-top: 40px;
    text-align: center;
}
.a-news .item-none {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #888;
}
@media screen and (max-width: 700px) {
.page-header-img {
    padding: 0;
}
.header-text {
    left: 0;
    bottom: 0;
    font-size: 20px;
    padding: 10px 20px 10px 0;
}
.header-text span {
    font-size: 12px;
}




    .a-news {
        padding: 32px 0 64px;
    }
    .a-news-list {
        gap: 10px;
    }
    .a-news-item {
        border-radius: 10px;
    }
    .a-news-item__link {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto auto;
        gap: 8px 16px;
        padding: 18px 18px;
    }
    .a-news-item__date {
        grid-column: 1 / 2;
        grid-row: 1;
        font-size: 13px;
    }
    .a-news-item__more {
        grid-column: 2 / 3;
        grid-row: 1;
        align-self: center;
    }
    .a-news-item__title {
        grid-column: 1 / -1;
        grid-row: 2;
        font-size: 15px;
    }
}

/* ブログ一覧（画像あり・カード型） */
.a-blog {
    padding: 48px 0 80px;
    background: var(--bg1);
}
.a-blog-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.a-blog-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.a-blog-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.a-blog-item__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg2);
}
.a-blog-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.a-blog-item__link:hover .a-blog-item__thumb img {
    transform: scale(1.04);
}
.a-blog-item__thumb--empty {
    background: linear-gradient(160deg, #ebe2d4 0%, #f5ede3 100%);
}
.a-blog-item__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 24px;
}
.a-blog-item__date {
    font-family: "Josefin Sans", "Quicksand", sans-serif;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: #999;
    margin-bottom: 10px;
    line-height: 1.4;
}
.a-blog-item__title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--dark);
}
.a-blog-item__excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #777;
}
.a-blog-item__link:hover .a-blog-item__title {
    color: var(--key);
}
.a-blog .pagination {
    margin-top: 48px;
    text-align: center;
}
.a-blog .item-none {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #888;
}
@media screen and (max-width: 900px) {
    .a-blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}
@media screen and (max-width: 700px) {
    .a-blog {
        padding: 32px 0 64px;
    }
    .a-blog-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .a-blog-item {
        border-radius: 12px;
    }
    .a-blog-item__body {
        padding: 16px 16px 20px;
    }
    .a-blog-item__title {
        font-size: 16px;
    }
}

/* 施工事例一覧（画像あり・カード型） */
.a-works {
    padding: 48px 0 80px;
    background: var(--bg1);
}
.a-works .works-tax-nav {
    margin: 0 0 40px;
}
.a-works-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.a-works-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
}
.a-works-item__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: inherit;
}
.a-works-item__thumb {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg2);
}
.a-works-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}
.a-works-item__link:hover .a-works-item__thumb img {
    transform: scale(1.04);
}
.a-works-item__thumb--empty {
    background: linear-gradient(160deg, #ebe2d4 0%, #f5ede3 100%);
}
.a-works-item__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 24px;
}
.a-works-item__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}
.a-works-item__tags li span {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    color: var(--key-dark);
    background: var(--bg2);
    border: 1px solid var(--border);
}
.a-works-item__title {
    margin: 0 0 12px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--dark);
}
.a-works-item__excerpt {
    margin: 0;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #777;
}
.a-works-item__link:hover .a-works-item__title {
    color: var(--key);
}
.a-works .pagination {
    margin-top: 48px;
    text-align: center;
}
.pagination .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: #fff;
    color: var(--dark);
    font-size: 14px;
    letter-spacing: 0.04em;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.pagination .page-numbers:hover {
    border-color: var(--key);
    color: var(--key);
}
.pagination .page-numbers.current {
    background: var(--key);
    border-color: var(--key);
    color: #fff;
    pointer-events: none;
}
.pagination .page-numbers.dots {
    min-width: auto;
    height: auto;
    padding: 0 4px;
    border: none;
    background: transparent;
    color: #999;
}
.pagination .page-numbers.prev,
.pagination .page-numbers.next {
    padding: 0 14px;
    font-size: 13px;
}
.a-works .item-none {
    padding: 48px 24px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    color: #888;
}
@media screen and (max-width: 900px) {
    .a-works-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}
@media screen and (max-width: 700px) {
    .a-works {
        padding: 32px 0 64px;
    }
    .a-works .works-tax-nav {
        margin-bottom: 28px;
    }
    .a-works-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .a-works-item {
        border-radius: 12px;
    }
    .a-works-item__body {
        padding: 16px 16px 20px;
    }
    .a-works-item__title {
        font-size: 16px;
    }
}

/* イベント・施工グリッド */
.event-grid,
.works-grid {
    gap: 24px;
}
.event-card {
    flex: 1 1 calc(33.333% - 16px);
}
.event-card a {
    display: block;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}
.event-card__thumb {
    position: relative;
}
.event-card__status {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 2px;
    color: #fff;
    background: var(--key);
}
.event-card a.closed .event-card__status {
    background: #999;
}
.event-card h3 {
    font-size: 18px;
    margin-top: 12px;
    text-align: center;
}
.event-card__meta {
    margin-top: 8px;
    padding: 10px;
    border: 1px solid #666;
}
.event-card__meta-row {
    display: flex;
    gap: 8px;
    font-size: 13px;
    line-height: 1.6;
    align-items: center;
}
.event-card__meta-row:not(:last-of-type) {
    margin-bottom: 4px;
    border-bottom: 1px solid #e2e2e2;
    padding-bottom: 4px;
}
.event-card__meta-row + .event-card__meta-row {
    margin-top: 2px;
}
.event-card__meta-row dt {
    flex-shrink: 0;
    color: #333;
    background: var(--yellow);
    padding: 5px 10px;
    border-radius: 7px;
}
.event-card__meta-row dd {
    color: #666;
}

/**********************************************************************/
/*************************  シングルページ関係  *************************/
/**********************************************************************/

.single{
    margin-top: 84px;
}
.single-page{
    padding-top: 20px;
}
.single-in{
    background: var(--bg3);
    padding: 50px;
}
.single-in h1 {
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.6;
    letter-spacing: 4px;
    margin: 0 0 12px;
    color: var(--key-dark);
}
.single-in .time {
    margin-bottom: 32px;
}
.single-in time {
    font-size: 14px;
    letter-spacing: 0.08em;
    color: #999;
}
.s-thumbnail {
    margin: 28px 0 8px;
    border-radius: 4px;
    overflow: hidden;
    background: var(--bg2);
}
.s-thumbnail img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: cover;
}
.single-event-meta {
    margin-top: 32px;
    padding: 20px 28px;
    border: 1px solid #666;
}
.single-event-meta__title {
    font-size: 22px;
    color: var(--key-dark);
    text-align: center;
}
.single-event-meta__list {
    margin: 0;
    padding: 0;
}
.single-event-meta__row {
    display: flex;
    gap: 20px;
    font-size: 16px;
    line-height: 1.7;
    align-items: center;
    padding: 16px 0;
}
.single-event-meta__row:not(:last-child) {
    border-bottom: 1px solid #e2e2e2;
}
.single-event-meta__row dt {
    flex-shrink: 0;
    min-width: 6.5em;
    color: #333;
    background: var(--yellow);
    padding: 8px 16px;
    border-radius: 7px;
    font-size: 15px;
    text-align: center;
}
.single-event-meta__row dd {
    flex: 1;
    margin: 0;
    color: #666;
}
.single-btn-back .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: 260px;
    padding: 14px 32px 14px 28px;
    border-radius: 999px;
    background: #fff;
    color: var(--key);
    border: 2px solid var(--key);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-decoration: none;
    box-shadow: 0 4px 0 rgba(14, 154, 124, 0.12), 0 8px 20px rgba(58, 50, 40, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.single-btn-back .btn::before {
    content: "←";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--key);
    color: #fff;
    font-size: 13px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}
.single-btn-back .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 0 rgba(14, 154, 124, 0.1), 0 12px 24px rgba(58, 50, 40, 0.08);
}
.single-btn-back .btn:hover::before {
    transform: translateX(-3px);
}


/* 本文エリア（blog / news / event 共通） */

.single-main {
    margin: 40px auto 60px;
}
.single-main > *:first-child {
    margin-top: 0;
}
.single-main h2 {
    font-size: 24px;
    margin-top: 48px;
    margin-bottom: 20px;
    padding: 0 0 3px 15px;
    border-left: 5px solid var(--key);
}
.single-main h3 {
    font-size: 20px;
    margin-top: 36px;
    margin-bottom: 16px;
    padding: 0 10px 8px;
    border-bottom: 2px solid var(--border);
    font-weight: bold;
}
.single-main h4 {
    font-size: 18px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--key);
}
.single-main p {
    margin-bottom: 1.5em;
}
.single-main p:last-child {
    margin-bottom: 0;
}
.single-main img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 1.2em auto;
}
.single-main .news-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 1.5em 0;
    padding: 0;
    list-style: none;
}
.single-main .news-gallery li {
    padding: 0;
    border: 0;
}
.single-main .news-gallery li::before {
    content: none;
}
.single-main .news-gallery img {
    width: 100%;
    height: 100%;
    max-height: 280px;
    object-fit: cover;
    margin: 0;
    border-radius: 4px;
}
.single-main ul {
    margin: 1.5em 0;
    padding: 0 20px;
}
.single-main ul:last-child {
    margin-bottom: 0;
}
.single-main li {
    position: relative;
    padding: 8px 0 8px 32px;
    border-bottom: 1px solid var(--border);
}
.single-main li::before {
    content: "●";
    position: absolute;
    left: 10px;
    top: 14px;
    color: var(--accent);
    font-size: 10px;
    line-height: 1;
}
.single-main li:last-child {
    border-bottom: none;
}
.single-main ul ul {
    margin: 8px 0 0;
    padding-left: 8px;
}
.single-main ul ul li {
    padding-left: 20px;
    border-bottom: none;
}
.single-main ul ul li::before {
    content: "–";
    top: 10px;
    font-size: 12px;
    color: var(--key);
}

.single-adjacent {
    display: flex;
    gap: 5%;
    margin-bottom: 80px;
    justify-content: space-between;
}
.single-adjacent .adjacent {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding: 7px 15px;
    flex: 1;
    min-width: 0;
}
.single-adjacent a.adjacent.hov-up {
    display: flex;
}
.single-adjacent .adjacent.next{
    justify-content: flex-end;
    text-align: end;
}
.single-adjacent .thumb {
    flex-shrink: 0;
}
.single-adjacent .meta {
    flex: 1;
    min-width: 0;
}
.single-adjacent .thumb img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.single-adjacent .meta .label {
    display: block;
    font-size: 14px;
    opacity: .7;
    margin-bottom: 8px;
}
.single-adjacent .meta .title {
    font-size: 16px;
    line-height: 1.4;
    overflow-wrap: anywhere;
}
.single-adjacent--text-only .adjacent {
    gap: 0;
}
.single-adjacent--text-only .adjacent.prev {
    justify-content: flex-start;
}
.single-adjacent--text-only .adjacent.next {
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .single-adjacent {
        flex-direction: column;
        gap: 12px;
        margin: 50px auto 0;
    }
    .single-adjacent .thumb img {
        width: 72px;
        height: 72px;
    }
    .single-adjacent .meta .label {
        font-size: 12px;
    }
    .single-adjacent .meta .title {
        font-size: 14px;
    }
    .single-main {
        margin-top: 28px;
    }
    .single-main h2 {
        font-size: 20px;
        margin-top: 36px;
        margin-bottom: 16px;
        padding-left: 12px;
        border-left-width: 4px;
    }
    .single-main h3 {
        font-size: 18px;
        margin-top: 28px;
        margin-bottom: 12px;
    }
    .single-main h4 {
        font-size: 16px;
        margin-top: 24px;
        margin-bottom: 10px;
    }
    .single-main li {
        padding: 6px 0 6px 20px;
    }
    .single-main li::before {
        top: 12px;
    }
    .single-main .news-gallery li {
        padding: 0;
    }
    .single-main .news-gallery li::before {
        content: none;
    }
    .single-in {
        padding: 28px 20px;
    }
    .single-in h1 {
        font-size: 22px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }
    .single-in .time {
        margin-bottom: 24px;
    }
    .single-in time {
        font-size: 13px;
    }
    .single-event-meta {
        margin-top: 24px;
        padding: 16px 18px;
    }
    .single-event-meta__title {
        font-size: 18px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        padding-left: 12px;
        border-left-width: 4px;
    }
    .single-event-meta__row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        font-size: 15px;
        padding: 14px 0;
    }
    .single-event-meta__row dt {
        min-width: 0;
        font-size: 14px;
        padding: 6px 12px;
    }
    .single-btn-back {
        margin-top: 36px;
        padding-top: 32px;
    }
    .single-btn-back .btn {
        min-width: 0;
        width: 100%;
        max-width: 320px;
        padding: 12px 24px;
        font-size: 13px;
    }
    .single-btn-back .btn::before {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}
/* 施工事例シングル */
.single-works .breadcrumb {
    margin-top: 76px;
    padding-top: 20px;
    padding-bottom: 0;
    background: var(--bg3);
}
.s-works-page {
    padding-bottom: 40px;
    padding-top: 20px;
    background: var(--bg3);
}
.s-works-thumb {
    margin-bottom: 40px;
}
.s-works-thumb__img {
    border-radius: 30px;
    aspect-ratio: 3/2;
    object-fit: cover;
}
.s-works-title {
    font-size: clamp(22px, 3vw, 32px);
    letter-spacing: 5px;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}
.s-works-voice {
    gap: 60px;
    margin-bottom: 48px;
    padding: 0 20px;
}
.s-works-voice__item {
    flex: 1 1 100%;
    min-width: 0;
}
.s-works-voice--both .s-works-voice__item {
    flex: 1 1 calc(50% - 30px);
}
.s-works-voice--youbou-only .s-works-voice__item--youbou {
    flex: 1 1 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}
.s-works-voice--voice-only .s-works-voice__item--happy {
    flex: 1 1 100%;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}
.s-works-voice__heading {
    font-size: 18px;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}
.s-works-voice__heading-ja {
    font-family: "Noto Serif JP", serif;
}
.s-works-voice__heading-en {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 14px;
    color: var(--key);
    letter-spacing: 0.08em;
    line-height: 1;
}
.s-works-voice__heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 48px;
    height: 2px;
    background: var(--key);
}
/* ご要望：コルクボード */
.s-works-corkboard {
    position: relative;
    padding: 30px 24px 34px;
    border-radius: 6px;
    border: 10px solid #8a5c37;
    background-image:
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 68% 12%, rgba(40, 20, 5, 0.22) 0 2px, transparent 3px),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.09) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 86% 46%, rgba(40, 20, 5, 0.18) 0 2px, transparent 3px),
        radial-gradient(circle at 10% 55%, rgba(40, 20, 5, 0.16) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 58% 70%, rgba(255, 255, 255, 0.08) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 92% 82%, rgba(40, 20, 5, 0.2) 0 2px, transparent 3px),
        radial-gradient(circle at 26% 88%, rgba(40, 20, 5, 0.15) 0 1.5px, transparent 2.5px),
        repeating-linear-gradient(108deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 1px, transparent 1px, transparent 5px),
        linear-gradient(150deg, #c9925c 0%, #b9824c 45%, #a86f3d 100%);
    background-size:
        70px 70px, 95px 95px, 60px 60px, 110px 110px,
        80px 80px, 90px 90px, 75px 75px, 100px 100px,
        auto, 100% 100%;
    box-shadow:
        inset 0 0 0 3px rgba(255, 214, 170, 0.18),
        inset 0 3px 14px rgba(255, 214, 170, 0.12),
        inset 0 -18px 34px rgba(35, 18, 6, 0.5),
        inset 18px 0 30px rgba(35, 18, 6, 0.22),
        inset -18px 0 30px rgba(35, 18, 6, 0.22),
        0 10px 24px rgba(58, 50, 40, 0.2);
}
.s-works-youbou {
    display: flex;
    flex-wrap: wrap;
    gap: 26px 18px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.s-works-voice--youbou-only .s-works-youbou {
    justify-content: center;
}
.s-works-youbou__note {
    flex: 0 1 auto;
    max-width: 100%;
    padding: 16px 18px 14px;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0.06em;
    background-image:
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.012) 0px, rgba(0, 0, 0, 0.012) 1px, transparent 1px, transparent 3px),
        linear-gradient(175deg, #fffefb 0%, #fbf5e9 100%);
    border-radius: 2px;
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -6px 10px -8px rgba(0, 0, 0, 0.12) inset,
        3px 6px 4px -2px rgba(30, 18, 5, 0.22),
        3px 10px 14px rgba(30, 18, 5, 0.22);
    position: relative;
    transform: rotate(-0.8deg);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.s-works-youbou__note::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    z-index: 2;
    box-shadow:
        0 3px 4px rgba(0, 0, 0, 0.4),
        inset 0 -2px 3px rgba(0, 0, 0, 0.3),
        inset 0 2px 2px rgba(255, 255, 255, 0.5);
}
.s-works-youbou__note::after {
    content: "";
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 22px;
    height: 7px;
    background: rgba(20, 12, 4, 0.22);
    border-radius: 50%;
    filter: blur(2px);
    z-index: 1;
}
.s-works-youbou__note:nth-child(even) {
    transform: rotate(0.9deg);
}
.s-works-youbou__note:nth-child(3n) {
    transform: rotate(-0.3deg);
}
.s-works-youbou__note:hover {
    transform: rotate(0deg) translateY(-2px);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.5) inset,
        0 -6px 10px -8px rgba(0, 0, 0, 0.12) inset,
        4px 10px 6px -3px rgba(30, 18, 5, 0.24),
        4px 14px 18px rgba(30, 18, 5, 0.26);
}
.s-works-youbou__note--0::before {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 46%),
        radial-gradient(circle at 42% 42%, #ff8a80 0%, #b71c1c 80%);
}
.s-works-youbou__note--1::before {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 46%),
        radial-gradient(circle at 42% 42%, #7fe0bd 0%, var(--key-dark) 80%);
}
.s-works-youbou__note--2::before {
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 46%),
        radial-gradient(circle at 42% 42%, #ffe08a 0%, #b9791f 80%);
}

/* Happy Voice：便箋レター */
.s-works-happy {
    position: relative;
    margin: 0;
    padding: 38px 34px 24px 42px;
    background: linear-gradient(175deg, #fffefb 0%, #fdfaf3 100%);
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset,
        0 6px 20px rgba(58, 50, 40, 0.12);
    transform: rotate(-1deg);
}
.s-works-happy::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 26px;
    width: 1px;
    background: rgba(216, 122, 110, 0.4);
}
.s-works-happy::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, transparent 50%, var(--bg2) 50%);
    border-bottom-left-radius: 4px;
}
.s-works-happy__seal {
    position: absolute;
    top: -14px;
    left: 50%;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25),
        inset 0 2px 3px rgba(255, 255, 255, 0.35),
        inset 0 -3px 4px rgba(0, 0, 0, 0.2);
    transform: rotate(-8deg) translateX(-50%);
    background: radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.9) 0 2px, transparent 46%),
        radial-gradient(circle at 42% 42%, #7fe0bd 0%, var(--key-dark) 80%);
}
.s-works-happy__text {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 0 4px 0 6px;
    font-family: "Yomogi", "Klee One", "Noto Serif JP", serif;
    font-size: 17px;
    line-height: 32px;
    letter-spacing: 0.03em;
    color: #4a4038;
    background-image: repeating-linear-gradient(
        to bottom,
        transparent -1px,
        transparent 30px,
        rgba(120, 150, 140, 0.45) 30px,
        rgba(120, 150, 140, 0.45) 31px
    );
}

.s-works-comment {
    border: 1px solid #777;
    padding: 30px 40px;
    border-radius: 30px;
    margin-bottom: 60px;
}
.s-works-comment__heading {
    font-size: 22px;
    color: var(--key);
    text-align: center;
    margin-bottom: 20px;
}
.s-works-imgs {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}
.s-works-imgs__item {
    flex: 0 0 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 4px;
    display: block;
    background: var(--bg2);
}
.s-works-imgs__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    transition: transform 0.35s ease;
}
.s-works-imgs__item:hover img {
    transform: scale(1.04);
}
.s-works-page .link-btn {
    margin-top: 56px;
}

@media screen and (max-width: 768px) {
    .single-works .breadcrumb {
        margin-top: 52px;
        padding-top: 12px;
    }
    .s-works-thumb {
        margin-bottom: 28px;
    }
    .s-works-title {
        margin-bottom: 32px;
        text-align: left;
    }
    .s-works-voice {
        gap: 32px;
        margin-bottom: 36px;
        padding: 0;
    }
    .s-works-voice__item {
        flex-basis: 100%;
    }
    .s-works-voice--youbou-only .s-works-voice__item--youbou,
    .s-works-voice--voice-only .s-works-voice__item--happy {
        max-width: none;
    }
    .s-works-voice__heading {
        font-size: 16px;
        margin-bottom: 16px;
    }
    .s-works-corkboard {
        padding: 20px 14px 22px;
        border-width: 6px;
    }
    .s-works-youbou {
        gap: 20px 12px;
    }
    .s-works-youbou__note {
        flex: 1 1 100%;
        padding: 14px 16px 12px;
        font-size: 13px;
        transform: none;
    }
    .s-works-youbou__note:nth-child(even),
    .s-works-youbou__note:nth-child(3n) {
        transform: none;
    }
    .s-works-happy {
        padding: 34px 18px 16px 26px;
        border-radius: 4px;
    }
    .s-works-happy::before {
        left: 16px;
    }
    .s-works-happy__seal {
        width: 28px;
        height: 28px;
        font-size: 13px;
        top: -12px;
        right: 18px;
    }
    .s-works-happy__text {
        padding: 0 0 0 4px;
        font-size: 15px;
        line-height: 27px;
        background-image: repeating-linear-gradient(
            to bottom,
            transparent -1px,
            transparent 25px,
            rgba(120, 150, 140, 0.45) 25px,
            rgba(120, 150, 140, 0.45) 26px
        );
    }
    .s-works-voice__item--youbou{
        margin-bottom: 20px;
    }
    .s-works-voice__heading,
    .s-works-comment__heading {
        font-size: 16px;
    }
    .s-works-comment {
        margin-bottom: 40px;
    }
    .s-works-imgs {
        gap: 10px;
    }
    .s-works-imgs__item {
        flex: 0 0 calc((100% - 10px) / 2);
        max-width: calc((100% - 10px) / 2);
        aspect-ratio: 1 / 1;
    }
    .s-works-page .link-btn {
        margin-top: 40px;
    }
}

/**********************************************************************/
/*****************************  コンタクト  *****************************/
/**********************************************************************/
.form{
    background: var(--bg2);
    scroll-margin-top: 76px;
}
.contact-form {
    padding: 50px;
    background: var(--bg3);
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.contact-top-p{
    text-align: center;
    margin-bottom: 40px;
}

/* お問い合わせの流れ（3ステップ） */
.contact-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    list-style: none;
    padding: 0;
}
.contact-step {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 20px;
    position: relative;
}
.contact-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 26px;
    right: -10px;
    width: 20px;
    height: 20px;
    border-top: 2px solid var(--border);
    border-right: 2px solid var(--border);
    transform: translateY(-50%) rotate(45deg);
}
.contact-step__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--key);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.contact-step__title {
    font-size: 17px;
    margin-bottom: 10px;
}
.contact-step__text {
    font-size: 14px;
    line-height: 1.85;
    letter-spacing: 1px;
    color: var(--text);
}
@media screen and (max-width:768px){
    .contact-steps {
        flex-direction: column;
        gap: 32px;
    }
    .contact-step {
        max-width: none;
        padding: 0 10px;
    }
    .contact-step:not(:last-child)::after {
        top: auto;
        right: auto;
        bottom: -22px;
        left: 50%;
        transform: translateX(-50%) rotate(135deg);
    }
}

/* FAQアコーディオン（お問い合わせページ） */
.contact-faq-section {
    background: var(--bg2);
}
.contact-faq {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(61, 61, 61, 0.05);
    overflow: hidden;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    color: inherit;
}
.faq-question__label {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--key);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.faq-question__text {
    flex: 1;
    min-width: 0;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.7;
    color: var(--key);
    letter-spacing: 1px;
}
.faq-question__icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    position: relative;
}
.faq-question__icon::before,
.faq-question__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--key);
    transition: transform 0.3s ease;
}
.faq-question__icon::before {
    width: 20px;
    height: 2px;
    transform: translate(-50%, -50%);
}
.faq-question__icon::after {
    width: 2px;
    height: 20px;
    transform: translate(-50%, -50%);
}
.faq-item.active .faq-question__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-item.active .faq-question__text {
    color: var(--dark);
}
.faq-answer-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 0 28px 24px;
}
.faq-answer__label {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}
.faq-answer__text {
    flex: 1;
    min-width: 0;
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    letter-spacing: 1px;
}
.faq-answer__text a {
    color: var(--key);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.faq-answer__text a:hover {
    color: var(--key-dark);
}
@media screen and (max-width:768px){
    .faq-question {
        padding: 20px 18px;
        gap: 12px;
    }
    .faq-question__label,
    .faq-answer__label {
        flex: 0 0 32px;
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    .faq-question__text {
        font-size: 15px;
    }
    .faq-answer {
        padding: 0 18px 20px;
        gap: 12px;
    }
    .faq-answer__text {
        font-size: 14px;
    }
}

.form-group {
    margin-bottom: 20px;
}
.form-label {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.required {
    color: #fff;
    background: var(--key);
    border: 1px solid var(--key);
    margin: 0 10px;
    font-size: 12px;
    padding: 3px 10px;
    letter-spacing: 2px;
}
.optional {
    color: var(--key);
	border: 1px solid var(--key);
    margin-left: 10px;
    font-size: 12px;
    padding: 3px 10px;
    letter-spacing: 2px;
}
.input-group {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    width: 100%;
    line-height: 1;
}
.input-label {
    width: 70px;
	font-size: 13px;
	color: #949497;
}
.input-group span{
    width: 100%;
}
.has-label span{
    width: calc(100% - 70px)!important;
}
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 5px;
}
input[type="checkbox"] {
    -webkit-appearance: checkbox;
    appearance: checkbox;
    flex: 0 0 18px;
    cursor: pointer;
}
input[type="radio"]{
  -webkit-appearance: auto;  /* iOS Safari向け */
  appearance: auto;
  background: initial;
  border: initial;
  width: auto;
  height: auto;
}
.checkbox-group .wpcf7-list-item-label {
    flex: 1 1 auto; /* 残りを自動で折り返して使う */
    word-break: break-word;
    white-space: nowrap;
    line-height: 2;
}
.form-message-text{
    color: #949497;
    font-size: 13px;
    margin-bottom: 15px;
}
input, select, textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    background: #fff;
}
textarea {
    resize: vertical;
}
.hogo{
    margin-bottom: 30px!important;
}
.hogo a,.contact-bottom-p a{
    letter-spacing: 1px;
    color: blue;
    text-decoration: underline;
}
.submit-button {
    width: 250px;
    text-align: center;
    background: var(--key);
    margin: 0 auto;
    display: inline-block;
    color: #fff;
    padding: 15px;
    letter-spacing: 2px;
    border-radius: 5px;
    cursor: pointer;
    border: none;
}

/* 希望日時：日付・時・分を横並び */
.contact-form .input-group3.has-label3 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    width: 100%;
}
.contact-form .input-group3.has-label3 > .input-label {
    flex: 0 0 100px;
    width: 100px;
    white-space: nowrap;
    margin: 0;
    font-size: 13px;
    color: #949497;
}
.contact-form .input-group3 .input-3items {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
    line-height: 1;
    letter-spacing: 0;
}
.contact-form .input-group3 .input-3items .wpcf7-form-control-wrap {
    width: auto !important;
    margin: 0;
}
.contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:first-child {
    flex: 0 0 auto;
}
.contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:first-child input {
    width: 180px;
    max-width: 100%;
}
.contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:not(:first-child) {
    flex: 0 0 auto;
}
.contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:not(:first-child) select {
    width: 64px;
    flex: 0 0 64px;
    padding: 8px 4px;
}

.wpcf7-spinner{
    display: none!important;
}
.wpcf7-not-valid-tip {
    font-size: 14px;
    margin-top: 10px;
}
.contact-bottom-p{
    margin-top: 20px;
    line-height: 1.5;
}
.wpcf7-list-item {
margin-left: 0!important;
}
.wpcf7-checkbox{
    display: flex;
    flex-wrap: wrap;
    gap: 3%;
}
.wpcf7-radio .wpcf7-list-item{
    margin-right: 2%;
}
.howday-group{
    flex-direction: row;
    flex-wrap: wrap;
}
.entry-content .howday-group>p{
    margin-bottom: 0;
}
.howday-item {
    flex-wrap: wrap;
    margin-right: 10px;
}
.howday-item .wpcf7-list-item-label{
    display: none;
}
.howday-bg{
    background: cornflowerblue;
    color: #fff;
    padding: 5px 10px;
    line-height: 1;
}
.font16{
    font-size: 16px;
}
.br2 p:nth-of-type(even){
    flex-basis: calc(100% - 250px);
}

@media screen and (max-width:768px){
    .contact-page {
        padding: 50px 0;
    }
    .contact-top-p {
        margin-bottom: 30px;
    }
    .contact-width{
        width: 100%;
    }
    .contact-width .contact-top-p {
        width: 90%;
        margin: 0 auto 30px;
    }
	.contact-form {
		padding: 20px;
	}
    .contact-form .submit-button,
    .contact-form input[type="submit"] {
        width: 100%;
    }
    .contact-form .input-group3.has-label3 {
        flex-wrap: wrap;
        gap: 8px;
    }
    .contact-form .input-group3.has-label3 > .input-label {
        flex: 0 0 100%;
        width: 100%;
    }
    .contact-form .input-group3 .input-3items {
        flex: 1 1 100%;
        flex-wrap: wrap;
    }
    .contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:first-child {
        flex: 0 0 100%;
        width: 100%;
    }
    .contact-form .input-group3 .input-3items .wpcf7-form-control-wrap:first-child input {
        width: 100%;
    }
	.input-label {
		width: 70px;
	}
	input, select, textarea {
		font-size: 14px;
	}
	.form-label {
		font-size: 14px;
	}
	.required{
		white-space: nowrap;
		width: 60px;
		text-align: center;
	}
	.optional {
		width: 70px;
		text-align: center;
	}
    .contact-bottom-p {
        font-size: 13px;
    }
    .checkbox-group .wpcf7-list-item-label {
        white-space: normal;
    }
    .contact-width .contact-bottom-p {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .br2 p:nth-of-type(even) {
        flex-basis: auto;
    }
    .howday-group p{
        width: 100%;
    }
    .howday-item .font16{
        flex-basis: calc(100% - 19px);
        font-size: 14px;
        letter-spacing: 1px;
    }
}

/***************************  order page  ***************************/

/* ① 導入 */
.order-intro {
    background: var(--bg2);
    text-align: center;
}
.order-intro__catch {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: clamp(15px, 2.8vw, 26px);
    color: var(--key);
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}
.order-intro__title {
    font-size: clamp(19px, 2.6vw, 28px);
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
}
.order-intro-img{
    margin-bottom: 30px;
}
.order-intro__body p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.4em;
}
.order-intro__body p:last-child {
    margin-bottom: 0;
}

/* ② 本当に良い家とは */
.order-philosophy {
    background: var(--key);
    color: #fff;
}
.order-philosophy .section-head__title,
.order-philosophy .section-head__en {
    color: #fff;
}
.order-philosophy .section-head__title::after {
    background: rgba(255,255,255,0.4);
}
.order-philosophy__body{
    text-align: center;
}
.order-philosophy__lead {
    font-size: clamp(15px, 1.8vw, 17px);
    line-height: 1.9;
    margin: 0 0 28px;
}
.order-philosophy__list {
    list-style: none;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
    background: var(--bg3);
    border-radius: 20px;
    color: #333;
    padding: 30px 10%;
    max-width: 750px;
    text-align: left;
}
.order-philosophy__list li {
    padding-left: 1.4em;
    position: relative;
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
}
.order-philosophy__list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--key-dark);
}
.order-philosophy__close {
    font-size: clamp(15px, 1.8vw, 17px);
    font-weight: 600;
    margin: 0;
}

/* ③ SW / ④ 健康住宅 は既存の .con2 / .con3 / .con3-text を流用 */
.order-health {
    background: var(--bg2);
}

/* ⑤ Feature */
.order-features {
    background: #fff;
}
.order-feature-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.order-feature-item {
    background: var(--bg1);
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-feature-item__head {
    display: flex;
    align-items: center;
    gap: 10px;
}
.order-feature-item__num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    line-height: 1;
    white-space: nowrap;
}
.order-feature-item__en {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin: 0;
    opacity: 0.75;
}
.order-feature-item__title {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.6;
    letter-spacing: 0.06em;
    margin: 0;
    color: var(--key-dark);
}
.order-feature-item__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}

/* ⑥ おすすめ */
.order-target {
    background: var(--bg2);
}
.order-target__layout {
    display: flex;
    gap: clamp(32px, 5vw, 56px);
}
.order-target__visual {
    flex: 0 0 42%;
    margin: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
}
.order-target__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.order-target__body {
    flex: 1 1 auto;
    min-width: 0;
}
.order-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.order-target-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 18px 12px 14px;
    background: #fff;
    border-radius: 8px;
}
.order-target-row__icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.order-target-row__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.order-target-row__text {
    flex: 1 1 auto;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: var(--text);
}

/* ⑦ クロージング */
.order-closing {
    background: var(--key);
    color: #fff;
    text-align: center;
}
.order-closing .line{
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: #fff;
}
.order-closing__inner p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.2em;
}
.order-closing__inner p:last-child {
    margin-bottom: 0;
}
.order-closing__title {
    font-size: clamp(20px, 2.6vw, 28px);
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
    color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 900px) {
    .order-feature-list {
        grid-template-columns: repeat(2, 1fr);
    }
    .order-target__layout {
        flex-direction: column;
        gap: 28px;
    }
    .order-target__visual {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .order-target-row {
        gap: 12px;
        padding: 10px 14px 10px 12px;
    }
    .order-target-row__icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
    }
    .order-closing .line {
        height: 60px;
    }
}
@media screen and (max-width: 600px) {
    .order-philosophy__list {
        grid-template-columns: 1fr;
    }
    .order-feature-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .order-feature-item {
        padding: 20px 18px;
    }
}

/***************************  arie page（PC基準 / 768px以下で調整）  ***************************/

/* 共通：本文 */
.lineup-page--arie .arie-spec-item__note {
    font-size: 14px;
}

/* ① 導入 */
.arie-intro {
    background: var(--bg2);
    text-align: center;
}
.arie-intro__catch {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 24px;
    color: var(--key);
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}
.arie-intro__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
}
.arie-intro-img {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.arie-intro-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.arie-intro__body p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.4em;
}
.arie-intro__body p:last-child {
    margin-bottom: 0;
}

/* ② About */
.arie-about {
    background: #fff;
}
.arie-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.arie-about-card {
    background: var(--bg1);
    border-radius: 8px;
    padding: 32px 28px;
}
.arie-about-card__num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}
.arie-about-card__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0 0 12px;
    color: var(--key-dark);
}
.arie-about-card__text {
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}

/* ③ Spec */
.arie-spec {
    background: var(--bg2);
}
.arie-spec-item {
    margin-top: 64px;
}
.arie-spec-item:first-of-type {
    margin-top: 40px;
}
.arie-spec-item__title {
    font-size: 24px;
    letter-spacing: 0.08em;
    line-height: 1.55;
    margin: 0 0 40px;
    color: var(--key-dark);
    text-align: center;
}
.arie-spec-item__text {
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0 0 24px;
}
.arie-spec-item__lead {
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.04em;
    margin: 0 0 28px;
    color: var(--text);
    text-align: center;
    font-size: 18px;
}
.arie-spec-item__note {
    line-height: 1.7;
    color: #888;
    margin: 16px 0 0;
}
.arie-spec-box {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 32px;
    background: #fff;
    border-radius: 8px;
}
.arie-spec-box__image {
    flex: 0 0 38%;
    max-width: 280px;
    margin: 0;
}
.arie-spec-box__image--sm {
    flex: 0 0 160px;
    max-width: 160px;
}
.arie-spec-box__image img {
    display: block;
    width: 100%;
    height: auto;
}
.arie-spec-box__text {
    flex: 1 1 auto;
    min-width: 0;
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.arie-spec-figure {
    margin: 0 0 28px;
    text-align: center;
}
.arie-spec-figure img {
    display: block;
    width: 100%;
    max-width: 560px;
    height: auto;
    margin: 0 auto;
}
.arie-spec-figure--table {
    margin: 28px 0 36px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.arie-spec-figure--table img {
    max-width: none;
    width: 100%;
    min-width: 560px;
}
.arie-spec .sp-only {
    display: none;
}

/* ④ Lineup */
.arie-lineup {
    background: #fff;
    padding-left: 0;
    padding-right: 0;
}
.arie-lineup > .width-m {
    padding-left: 5%;
    padding-right: 5%;
}
.lineup-split-list {
    margin-top: 48px;
}
.lineup-split {
    display: flex;
    align-items: stretch;
    min-height: 420px;
}
.lineup-split--rev {
    flex-direction: row-reverse;
}
.lineup-split__visual {
    flex: 0 0 50%;
    margin: 0;
    overflow: hidden;
    background: var(--bg2);
}
.lineup-split__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.lineup-split:hover .lineup-split__visual img {
    transform: scale(1.04);
}
.lineup-split__body {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 56px 64px;
    background: #fff;
}
.lineup-split--rev .lineup-split__body {
    text-align: right;
    align-items: end;
}
.lineup-split__en {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin: 0 0 8px;
}
.lineup-split__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.55;
    margin: 0 0 20px;
    color: var(--dark, #333);
}
.lineup-split__text {
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
    max-width: 32em;
}
.lineup-split__meta {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    color: #888;
    margin: 16px 0 0;
}
.lineup-floorplan {
    margin: 24px 0 0;
    max-width: 420px;
    width: 100%;
}
.lineup-floorplan__link {
    position: relative;
    display: block;
    border-radius: 4px;
    overflow: hidden;
    background: #f7f7f7;
    border: 1px solid rgba(0, 0, 0, 0.06);
}
.lineup-floorplan__link img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}
.lineup-floorplan__link:hover img {
    transform: scale(1.03);
}
.lineup-floorplan__zoom {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 4px;
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--key-dark);
    line-height: 1.3;
    pointer-events: none;
}
.lineup-floorplan__caption {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #888;
    letter-spacing: 0.04em;
}
.arie-lineup__note {
    margin-top: 40px;
    text-align: center;
    line-height: 1.8;
    color: #777;
}

/* ⑤ Target */
.arie-target {
    background: var(--bg2);
}
.arie-target__layout {
    display: flex;
    gap: 48px;
    align-items: center;
}
.arie-target__visual {
    flex: 0 0 42%;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #fff;
}
.arie-target__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.arie-target__body {
    flex: 1 1 auto;
    min-width: 0;
}
.arie-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.arie-target-list li {
    position: relative;
    padding: 14px 18px 14px 2.2em;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.arie-target-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: var(--key-dark);
    font-weight: 600;
}

/* ⑥ Closing */
.arie-closing {
    background: var(--key);
    color: #fff;
    text-align: center;
}
.arie-closing .line {
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: #fff;
}
.arie-closing__inner p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.2em;
}
.arie-closing__inner p:last-child {
    margin-bottom: 0;
}
.arie-closing__inner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.arie-closing__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
    color: #fff;
}

/* Arie SP */
@media screen and (max-width: 768px) {
    .lineup-page--arie .arie-intro__body p,
    .lineup-page--arie .section-head__lead,
    .lineup-page--arie .arie-about-card__text,
    .lineup-page--arie .arie-spec-item__text,
    .lineup-page--arie .arie-spec-item__lead,
    .lineup-page--arie .arie-spec-box__text,
    .lineup-page--arie .lineup-split__text,
    .lineup-page--arie .arie-lineup__note,
    .lineup-page--arie .arie-closing__inner p {
        font-size: 15px;
    }
    .lineup-page--arie .arie-spec-item__note {
        font-size: 12px;
    }

    .arie-intro__catch {
        font-size: 18px;
    }
    .arie-intro__title,
    .arie-closing__title {
        font-size: 20px;
    }

    .arie-about__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .arie-about-card {
        padding: 24px 20px;
    }
    .arie-about-card__title {
        font-size: 16px;
    }
    .arie-about-card__num {
        font-size: 24px;
    }

    .arie-spec-item {
        margin-top: 48px;
    }
    .arie-spec-item__title {
        font-size: 20px;
    }
    .arie-spec-box {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px 20px;
    }
    .arie-spec-box__image,
    .arie-spec-box__image--sm {
        flex: none;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }
    .arie-spec-box__image--sm {
        max-width: 140px;
    }
    .arie-spec-box__text {
        text-align: left;
    }
    .arie-spec .sp-only {
        display: inline;
    }
    .arie-spec-figure--table img {
        min-width: 480px;
    }

    .lineup-split,
    .lineup-split--rev {
        flex-direction: column;
        min-height: 0;
    }
    .lineup-split__visual {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 10;
    }
    .lineup-split__body {
        flex: none;
        width: 100%;
        padding: 28px 5% 36px;
    }
    .lineup-split--rev .lineup-split__body {
        text-align: left;
        align-items: stretch;
    }
    .lineup-split__title {
        font-size: 18px;
    }
    .lineup-split__text {
        max-width: none;
    }
    .lineup-floorplan {
        max-width: 100%;
    }

    .arie-target__layout {
        flex-direction: column;
        gap: 28px;
    }
    .arie-target__visual {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .arie-target-list li {
        font-size: 15px;
        padding: 12px 14px 12px 2em;
    }
    .arie-target-list li::before {
        left: 12px;
    }

    .arie-closing .line {
        height: 80px;
    }
}

/***************************  trettio page（PC基準 / 768px以下で調整）  ***************************/

/* ① 導入 */
.trettio-intro {
    background: var(--bg2);
    text-align: center;
}
.trettio-intro__catch {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 24px;
    color: var(--key);
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}
.trettio-intro__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
}
.trettio-intro-img {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.trettio-intro-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.trettio-intro__body p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.4em;
}
.trettio-intro__body p:last-child {
    margin-bottom: 0;
}

/* ② About */
.trettio-about {
    background: #fff;
}
.trettio-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.trettio-about-card {
    background: var(--bg1);
    border-radius: 8px;
    padding: 32px 28px;
}
.trettio-about-card__num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}
.trettio-about-card__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0 0 12px;
    color: var(--key-dark);
}
.trettio-about-card__text {
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.trettio-about__note {
    margin-top: 40px;
    text-align: center;
}
.trettio-about__note p {
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}

/* ③ SW性能 */
.trettio-sw {
    background: var(--bg2);
}
.trettio-sw__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.trettio-sw-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trettio-sw-card__head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.trettio-sw-card__num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    line-height: 1;
}
.trettio-sw-card__lead {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin: 0;
    opacity: 0.85;
}
.trettio-sw-card__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0;
    color: var(--key-dark);
}
.trettio-sw-card__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.trettio-sw__link {
    margin-top: 32px;
    text-align: center;
    line-height: 1.8;
    color: #777;
    font-size: 14px;
}
.trettio-sw__link a {
    color: var(--key-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ④ Styles */
.trettio-styles {
    background: #fff;
    padding-left: 0;
    padding-right: 0;
}
.trettio-styles > .width-m {
    padding-left: 5%;
    padding-right: 5%;
}
.trettio-styles__note {
    margin-top: 40px;
    text-align: center;
    line-height: 1.8;
    color: #777;
}

/* ⑤ Steps */
.trettio-steps {
    background: var(--bg2);
}
.trettio-steps__figure {
    margin: 40px auto 0;
    max-width: 720px;
    text-align: center;
}
.trettio-steps__figure img {
    display: block;
    width: 100%;
    height: auto;
}
.trettio-step-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.trettio-step-item {
    background: #fff;
    border-radius: 8px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trettio-step-item__num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
}
.trettio-step-item__title {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.55;
    margin: 0;
    color: var(--key-dark);
}
.trettio-step-item__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
    flex: 1 1 auto;
}
.trettio-step-item__tags {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.trettio-step-item__tags li {
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    background: var(--bg1);
    color: var(--key-dark);
    border-radius: 4px;
    line-height: 1.4;
}
.trettio-steps__note {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ⑥ Interior */
.trettio-interior {
    background: #fff;
}
.trettio-interior__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.trettio-interior-card {
    background: var(--bg1);
    border-radius: 8px;
    padding: 32px 28px;
    overflow: hidden;
}
.trettio-interior-card__image {
    margin: -32px -28px 20px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    aspect-ratio: 16 / 10;
    background: #fff;
}
.trettio-interior-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trettio-interior-card__title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 14px;
    color: var(--key-dark);
}
.trettio-interior-card__text {
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.trettio-interior__note {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ⑦ Target */
.trettio-target {
    background: var(--bg2);
}
.trettio-target__layout {
    display: flex;
    gap: 48px;
    align-items: center;
}
.trettio-target__visual {
    flex: 0 0 42%;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #fff;
}
.trettio-target__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trettio-target__body {
    flex: 1 1 auto;
    min-width: 0;
}
.trettio-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.trettio-target-list li {
    position: relative;
    padding: 14px 18px 14px 2.2em;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.trettio-target-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: var(--key-dark);
    font-weight: 600;
}

/* ⑧ Closing */
.trettio-closing {
    background: var(--key);
    color: #fff;
    text-align: center;
}
.trettio-closing .line {
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: #fff;
}
.trettio-closing__inner p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.2em;
}
.trettio-closing__inner p:last-child {
    margin-bottom: 0;
}
.trettio-closing__inner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.trettio-closing__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
    color: #fff;
}

/* TRETTIO SP */
@media screen and (max-width: 900px) {
    .trettio-step-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .lineup-page--trettio .trettio-intro__body p,
    .lineup-page--trettio .section-head__lead,
    .lineup-page--trettio .trettio-about-card__text,
    .lineup-page--trettio .trettio-about__note p,
    .lineup-page--trettio .trettio-sw-card__text,
    .lineup-page--trettio .lineup-split__text,
    .lineup-page--trettio .trettio-styles__note,
    .lineup-page--trettio .trettio-step-item__text,
    .lineup-page--trettio .trettio-interior-card__text,
    .lineup-page--trettio .trettio-closing__inner p {
        font-size: 15px;
    }

    .trettio-intro__catch {
        font-size: 18px;
    }
    .trettio-intro__title,
    .trettio-closing__title {
        font-size: 20px;
    }

    .trettio-about__grid,
    .trettio-sw__grid,
    .trettio-interior__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .trettio-about-card,
    .trettio-interior-card {
        padding: 24px 20px;
    }
    .trettio-interior-card__image {
        margin: -24px -20px 16px;
    }
    .trettio-about-card__title,
    .trettio-sw-card__title {
        font-size: 16px;
    }
    .trettio-about-card__num,
    .trettio-sw-card__num {
        font-size: 24px;
    }
    .trettio-sw-card {
        padding: 22px 18px;
    }

    .trettio-step-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .trettio-step-item {
        padding: 22px 18px;
    }

    .trettio-target__layout {
        flex-direction: column;
        gap: 28px;
    }
    .trettio-target__visual {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .trettio-target-list li {
        font-size: 15px;
        padding: 12px 14px 12px 2em;
    }
    .trettio-target-list li::before {
        left: 12px;
    }

    .trettio-closing .line {
        height: 80px;
    }
}

/* =============================
   LINERA
   ============================= */
.linera-intro {
    background: var(--bg2);
    text-align: center;
}
.linera-intro__catch {
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 24px;
    color: var(--key);
    letter-spacing: 0.12em;
    margin: 0 0 12px;
}
.linera-intro__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
}
.linera-intro-img {
    margin-bottom: 30px;
    border-radius: 4px;
    overflow: hidden;
}
.linera-intro-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}
.linera-intro__body p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.4em;
}
.linera-intro__body p:last-child {
    margin-bottom: 0;
}

/* ② About */
.linera-about {
    background: var(--bg3);
}
.linera-about__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.linera-about-card {
    background: var(--bg1);
    border-radius: 8px;
    padding: 32px 28px;
}
.linera-about-card__num {
    display: block;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 14px;
}
.linera-about-card__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0 0 12px;
    color: var(--key-dark);
}
.linera-about-card__text {
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.linera-about__note {
    margin-top: 40px;
    text-align: center;
}
.linera-about__note p {
    line-height: 2;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}

/* ③ SW性能 */
.linera-sw {
    background: var(--bg2);
}
.linera-sw__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.linera-sw-card {
    background: #fff;
    border-radius: 8px;
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.linera-sw-card__head {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}
.linera-sw-card__num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--accent);
    line-height: 1;
}
.linera-sw-card__lead {
    font-size: 13px;
    letter-spacing: 0.06em;
    color: var(--accent);
    margin: 0;
    opacity: 0.85;
}
.linera-sw-card__title {
    font-size: 18px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0;
    color: var(--key-dark);
}
.linera-sw-card__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.linera-sw__link {
    margin-top: 32px;
    text-align: center;
    line-height: 1.8;
    color: #777;
    font-size: 14px;
}
.linera-sw__link a {
    color: var(--key-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ④ Styles */
.linera-styles,
.linera-plans {
    background: #fff;
    padding-left: 0;
    padding-right: 0;
}
.linera-styles > .width-m,
.linera-plans > .width-m {
    padding-left: 5%;
    padding-right: 5%;
}
.linera-styles__note {
    margin-top: 40px;
    text-align: center;
    line-height: 1.8;
    color: #777;
}

/* ⑤ Steps */
.linera-steps {
    background: var(--bg2);
}
.linera-steps__figure {
    margin: 40px auto 0;
    max-width: 720px;
    text-align: center;
}
.linera-steps__figure img {
    display: block;
    width: 100%;
    height: auto;
}
.linera-step-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.linera-step-item {
    background: #fff;
    border-radius: 8px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.linera-step-item__num {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
}
.linera-step-item__title {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.55;
    margin: 0;
    color: var(--key-dark);
}
.linera-step-item__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
    flex: 1 1 auto;
}
.linera-step-item__tags {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.linera-step-item__tags li {
    font-size: 12px;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    background: var(--bg1);
    color: var(--key-dark);
    border-radius: 4px;
    line-height: 1.4;
}
.linera-steps__note {
    margin-top: 24px;
    text-align: center;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ⑥ Interior */
.linera-interior {
    background: var(--bg3);
}
.linera-interior__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.linera-interior-card {
    background: var(--bg1);
    border-radius: 8px;
    padding: 32px 28px;
    overflow: hidden;
}
.linera-interior-card__image {
    margin: -32px -28px 20px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
    aspect-ratio: 21 / 9;
    background: #fff;
}
.linera-interior-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.linera-interior-card__title {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin: 0 0 14px;
    color: var(--key-dark);
}
.linera-interior-card__text {
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.linera-interior__note {
    margin-top: 28px;
    text-align: center;
    font-size: 13px;
    color: #888;
    line-height: 1.7;
}

/* ⑦ Target */
.linera-target {
    background: var(--bg2);
}
.linera-target__layout {
    display: flex;
    gap: 48px;
    align-items: center;
}
.linera-target__visual {
    flex: 0 0 42%;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #fff;
}
.linera-target__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.linera-target__body {
    flex: 1 1 auto;
    min-width: 0;
}
.linera-target-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.linera-target-list li {
    position: relative;
    padding: 14px 18px 14px 2.2em;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.04em;
}
.linera-target-list li::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: var(--key-dark);
    font-weight: 600;
}

/* ⑧ Closing */
.linera-closing {
    background: var(--key);
    color: #fff;
    text-align: center;
}
.linera-closing .line {
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: #fff;
}
.linera-closing__inner p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 1.2em;
}
.linera-closing__inner p:last-child {
    margin-bottom: 0;
}
.linera-closing__inner a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.linera-closing__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 28px;
    color: #fff;
}


.linera-interior-card__ja {
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--accent);
    margin: -8px 0 12px;
}
.linera-spec-note {
    margin-top: 28px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #777;
}
.linera-spec-note strong {
    color: var(--key-dark);
    font-weight: 600;
}
/* LINERA SP */
@media screen and (max-width: 900px) {
    .linera-step-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .lineup-page--linera .linera-intro__body p,
    .lineup-page--linera .section-head__lead,
    .lineup-page--linera .linera-about-card__text,
    .lineup-page--linera .linera-about__note p,
    .lineup-page--linera .linera-sw-card__text,
    .lineup-page--linera .lineup-split__text,
    .lineup-page--linera .linera-styles__note,
    .lineup-page--linera .linera-step-item__text,
    .lineup-page--linera .linera-interior-card__text,
    .lineup-page--linera .linera-closing__inner p {
        font-size: 15px;
    }

    .linera-intro__catch {
        font-size: 18px;
    }
    .linera-intro__title,
    .linera-closing__title {
        font-size: 20px;
    }

    .linera-about__grid,
    .linera-sw__grid,
    .linera-interior__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .linera-about-card,
    .linera-interior-card {
        padding: 24px 20px;
    }
    .linera-interior-card__image {
        margin: -24px -20px 16px;
    }
    .linera-about-card__title,
    .linera-sw-card__title {
        font-size: 16px;
    }
    .linera-about-card__num,
    .linera-sw-card__num {
        font-size: 24px;
    }
    .linera-sw-card {
        padding: 22px 18px;
    }

    .linera-step-list {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .linera-step-item {
        padding: 22px 18px;
    }

    .linera-target__layout {
        flex-direction: column;
        gap: 28px;
    }
    .linera-target__visual {
        flex: none;
        width: 100%;
        max-width: 480px;
        margin: 0 auto;
    }
    .linera-target-list li {
        font-size: 15px;
        padding: 12px 14px 12px 2em;
    }
    .linera-target-list li::before {
        left: 12px;
    }

    .linera-closing .line {
        height: 80px;
    }
}

/* =============================
   Community（流木工作会・たのしむマルシェ）
   ============================= */
.community-page .community-intro,
.community-page .concept-chapter,
.community-page .page-section {
    scroll-margin-top: 76px;
}
.community-page .concept-chapter__visual img {
    object-position: center 22%;
    aspect-ratio: 1/1;
}
.community-intro {
    padding: clamp(64px, 9vw, 108px) 5%;
    text-align: center;
    background: var(--bg3);
}
.community-intro__en {
    margin-bottom: 18px;
    font-family: "Zen Kurenaido", "Klee One", cursive;
    font-size: 14px;
    line-height: 1.4;
    color: var(--key);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: bold;
}
.community-intro h2 {
    margin-bottom: 28px;
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.7;
    letter-spacing: 0.14em;
}
.community-intro h2::after {
    content: "";
    display: block;
    width: 48px;
    height: 1px;
    margin: 26px auto 0;
    background: var(--accent);
}
.community-intro .page-section-body {
    text-align: left;
    max-width: 42em;
    margin: 0 auto;
}
.community-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
}
.community-chips li {
    padding: 8px 16px;
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--key-dark);
    background: #fff;
}
.community-quote {
    margin: 32px 0 0;
    padding: 18px 22px;
    background: var(--bg3);
    border-left: 3px solid var(--accent);
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.06em;
}
.community-page .concept-chapter#sec-marche .width-m {
    padding-top: 48px;
    padding-bottom: 80px;
}
.community-activity {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.community-activity-card {
    background: var(--bg3);
    border-radius: 8px;
    padding: 28px 24px;
}
.community-activity-card__num,
.community-activity-card__en {
    font-family: "Josefin Sans", sans-serif;
    letter-spacing: 0.08em;
    color: var(--accent);
    line-height: 1;
}
.community-activity-card__num {
    display: block;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.community-activity-card__en {
    font-size: 13px;
    margin: 0 0 12px;
}
.community-activity-card__title {
    font-size: 16px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    margin: 0 0 10px;
    color: var(--key-dark);
}
.community-activity-card__text {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.04em;
    color: var(--text-sub, #666);
    margin: 0;
}
.community-gallery {
    background: var(--bg2);
}
.community-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.community-gallery__item {
    margin: 0;
}
.community-gallery__item a {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    background: var(--bg3);
    aspect-ratio: 3 / 4;
}
.community-gallery__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.community-gallery__item a:hover img {
    transform: scale(1.04);
}
.community-gallery__item figcaption {
    margin-top: 12px;
    font-size: 13px;
    letter-spacing: 0.06em;
    line-height: 1.6;
    color: #888;
}
.community-promise {
    background: #fff;
}
.community-promise__layout {
    display: flex;
    gap: 48px;
    align-items: center;
}
.community-promise__visual {
    flex: 0 0 46%;
    margin: 0;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: var(--bg2);
}
.community-promise__visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.community-promise__body {
    flex: 1 1 auto;
    min-width: 0;
}
.community-promise .section-head--left {
    text-align: left;
    margin-bottom: 28px;
}
.community-promise .section-head--left::before {
    margin: 0 0 18px;
}
.community-promise__sign {
    margin: 28px 0 0;
    color: var(--key);
    letter-spacing: 0.16em;
    font-size: 18px;
}
.community-closing {
    background: var(--key);
    color: #fff;
    text-align: center;
}
.community-closing .line {
    margin: 0 auto 30px;
    width: 2px;
    height: 120px;
    background: #fff;
}
.community-closing__inner p {
    line-height: 2;
    letter-spacing: 0.04em;
    margin: 0 0 32px;
}
.community-closing__title {
    font-size: 26px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    margin: 0 0 20px;
    color: #fff;
}
.community-closing__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

@media screen and (max-width: 900px) {
    .community-activity {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .community-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .community-promise__layout {
        flex-direction: column;
        gap: 28px;
    }
    .community-promise__visual {
        flex: none;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
}
@media screen and (max-width: 768px) {
    .community-intro {
        padding-right: 0;
        padding-left: 0;
    }
    .community-intro h2 {
        margin-bottom: 22px;
        font-size: 21px;
    }
    .community-intro h2::after {
        margin: 12px auto 40px;
    }
    .community-chips {
        margin-top: 28px;
    }
    .community-quote {
        font-size: 15px;
        padding: 16px 18px;
    }
    .community-page .concept-chapter#sec-marche .width-m {
        padding-top: 8px;
        padding-bottom: 56px;
    }
    .community-activity-card {
        padding: 22px 18px;
    }
    .community-gallery__item a {
        aspect-ratio: 1 / 1;
    }
    .community-closing__title {
        font-size: 20px;
    }
    .community-closing .line {
        height: 80px;
    }
    .community-closing__actions {
        flex-direction: column;
        align-items: center;
    }
    .community-closing__actions .btn-pill {
        min-width: 0;
        width: 100%;
        max-width: 320px;
    }
}
