/* --- 1. 基本設定・変数（ここが不足していました） --- */
:root {
    --bg-base: #ceebc3;
    --primary: #d97706;
    --text-main: #44403c;
    --text-sub: #78716c;
    --white: #ffffff;
    --border: #e7e5e4;
    --bg-sub: #f4f2f0;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    color: var(--text-main);
    line-height: 1.8;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
}

p {
    margin-bottom: 1rem;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
    background: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

.pc-only {
    display: block;
}

.sp-only {
    display: none;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .pc-only {
        display: none;
    }

    .sp-only {
        display: block;
    }
}

/* --- 2. レイアウト用共通クラス --- */
section {
    padding: 80px 0;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
}
.sub-page-main{
    margin-bottom: 60px;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.font-bold {
    font-weight: 700;
}

.w-full {
    width: 100%;
}

.h-full {
    height: 100%;
}

.hidden-md {
    display: none;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.white {
    color: #fff;
}

@media (min-width: 768px) {
    section {
        padding: 120px 0;
    }

    .md-flex {
        display: flex;
    }

    .md-row {
        flex-direction: row;
    }

    .md-w-half {
        width: 50%;
    }

    .md-w-3rd {
        width: 33.33%;
    }

    .hidden-md {
        display: block;
    }

    .hidden-on-desktop {
        display: none;
    }
}

/* --- 3. ボタンのスタイル --- */
.btn {
    padding: 14px 32px;
    border-radius: 9999px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #b45309);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.3);
}

.btn-outline {
    background-color: var(--white);
    color: var(--text-main);
    border: 1px solid var(--text-sub);
}

/* ヘッダー内のボタンサイズ調整 */
.btn-nav-cta {
    padding: 10px 20px;
}


/* --- 4. ヘッダー固有のスタイル --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--text-main);
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.logo-text span {
    font-weight: 400;
    font-size: .75rem;
}

.logo-container {
    cursor: pointer;
    background: #fff;
    padding: .5rem 1rem .5rem 1.5rem;
    border-radius: 0 0 15px 0;
    box-shadow: 0 0 5px #707070;
    min-width: 190px;
}


/* --- 5. スマホ・PC切り替え（レスポンシブ） --- */

/* ハンバーガーアイコン（PCでは消すため初期設定が必要） */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1002;
    width: 60px;
    height: 64px;
    background-color: #fff;
    border-radius: 0 0 0 15px;
    padding: 20px 15px;
    box-shadow: 0 0 5px #707070;
}

.hamburger-line {
    width: 34px;
    height: 2px;
    background-color: var(--text-main);
    transition: 0.3s;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ナビゲーションメニュー（スマホ初期状態） */
.main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    padding: 5rem 2rem;
    gap: 2rem;
    transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.main-nav.nav-open {
    right: 0;
    /* メニュー表示 */
}

@media (min-width: 1080px) {
    .hamburger-btn {
        display: none;
    }

    .main-nav {
        position: static;
        width: auto;
        height: 64px;
        box-shadow: none;
        flex-direction: row;
        background: none;
        gap: 1.6rem;
        padding: .74rem 1rem .74rem 1.5rem;
        border-radius: 0 0 0 15px;
        background: #fff;
        box-shadow: 0 0 5px #707070;
    }

    .nav-link {
        font-weight: 500;
        position: relative;
        padding-top: 10px;
    }

    /* リンクの下線アニメーション */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--primary);
        transition: 0.3s;
    }

    .nav-link:hover::after {
        width: 100%;
    }
}

/* --- ヒーローセクション --- */
.hero-section {
    padding: 0;
    background-color: #81C784;
}

.hero-layout {
    width: 100%;
    height: 100vh;
    position: relative;
}

/* === モバイル・デフォルト設定 (スマホの要件) === */
.hero-grid {
    display: grid;
    width: 100%;
    height: 100vh;
    box-sizing: border-box;
    padding: 15px 10px;
    gap: 10px;
    grid-template-rows: 45% 18% 35%;
    grid-template-columns: repeat(3, 1fr);
}

.hero-grid-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    overflow: hidden;
    border-radius: 12px;
    pointer-events: none;
}

.hero-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
    filter: brightness(0.7);
}

/* --- スマホでの画像配置 --- */
.hero-image1 {
    grid-row: 1 / 2;
    grid-column: 1 / 4;
}

.hero-image3 {
    grid-row: 2 / 3;
    grid-column: 1 / 2;
}

.hero-image4 {
    grid-row: 2 / 3;
    grid-column: 2 / 3;
}

.hero-image5 {
    grid-row: 2 / 3;
    grid-column: 3 / 4;
}

.hero-image2 {
    grid-row: 3 / 4;
    grid-column: 1 / 4;
}

/* === PC設定 (1024px以上) === */
@media (min-width: 1024px) {
    .hero-grid {
        padding: 20px;
        gap: 20px;
        grid-template-columns: repeat(16, 1fr);
        grid-template-rows: 45% 53%;
    }

    .hero-grid-item {
        border-radius: 20px;
    }

    .hero-image3 {
        grid-row: 1 / 2;
        grid-column: 1 / 5;
    }

    .hero-image4 {
        grid-row: 1 / 2;
        grid-column: 5 / 9;
    }

    .hero-image5 {
        grid-row: 1 / 2;
        grid-column: 9 / 17;
    }

    .hero-image1 {
        grid-row: 2 / 3;
        grid-column: 1 / 11;
    }

    .hero-image2 {
        grid-row: 2 / 3;
        grid-column: 11 / 17;
    }
}

.hero-content-wrapper {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.hero-title {
    font-size: 10vw;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #fff;
    padding-left: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.99);
    font-feature-settings: "palt";
}

.badge-new-open {
    background-color: #388E3C;
    color: #fff;
    display: inline-flex;
    align-items: baseline;
    font-weight: bold;
    padding: 15px 25px 15px 15px;
    font-size: 10vw;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.badge-new-open span {
    font-size: 5.5vw;
}
.hero-description {
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.99);
    color: #fff;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    line-height: 1.8;
    padding: 0 15px;
    font-weight: 500;
}

.hero-pickup-badge {
    border: 2px solid #e89f38;
    border-radius: 50px;
    padding: 10px 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 2rem auto;
    background: #fff;
    text-align: center;
    margin: 0 auto;
    max-width: 280px;
}

.pickup-top {
    color: var(--text-main);
    font-weight: bold;
    font-size: 1rem;
}

.pickup-note {
    font-size: 0.8rem;
    color: var(--text-sub);
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
}


/* --- タブレット表示（768px以上） --- */
@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 5px;
        padding-left: 70px;
        margin-bottom: 3rem;
    }

    .badge-new-open {
        padding: 20px 30px 20px 70px;
        margin-bottom: 2rem;
        font-size: 3.5rem;
    }
    .badge-new-open span {
        font-size: 1.8rem;
    }

    .hero-description {
        padding-left: 70px;
        font-size: 1.1rem;
    }
    .hero-pickup-badge{
        max-width: 380px;
    }
}
/* --- PC表示（1024px以上） --- */
@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 5px;
        padding-left: 100px;
        margin-bottom: 3rem;
    }

    .badge-new-open {
        padding: 20px 30px 20px 100px;
        margin-bottom: 2rem;
        font-size: 3.5rem;
    }
    .badge-new-open span {
        font-size: 1.8rem;
    }

    .hero-description {
        padding-left: 100px;
    }
}

/* --- スクロールダウン誘導アニメーション --- */
.scroll-down {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px); /* 少し下に沈めておく */
    transition: all 1s ease-out; /* ふわっと出す設定 */
}

.scroll-down.is-active {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}

.scroll-text {
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* 線の設定 */
.scroll-line {
    width: 1px;
    height: 80px;
    background: rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: scrollFlow 2s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

@keyframes scrollFlow {
    0% {
        transform: translateY(-100%); 
    }
    100% {
        transform: translateY(100%); 
    }
}

/* PC表示時の位置調整（画面が広いので少し内側へ） */
@media (min-width: 1024px) {
    .scroll-down {
        left: 50px;
        bottom: 40px;
    }
    
    .scroll-line {
        height: 100px;
    }
}

/* 1. タイトル：左に隠れて透明 */
.hero-title {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.215, 0.610, 0.355, 1.000);
}
/* クラスがついたら表示 */
.hero-title.is-active {
    opacity: 1;
    transform: translateX(0);
}

/* 2. バッジ：最初は文字透明・背景なし */
.badge-new-open {
    position: relative;
    color: transparent; /* 文字は透明 */
    background-color: transparent; /* 背景色なし */
    z-index: 1;
    transition: color 0.5s ease-out; /* 文字が出る時のスピード */
    display: inline-block; /* 幅の計算のため */
    vertical-align: middle;
}

/* 背景用の緑の帯（擬似要素） */
.badge-new-open::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0; /* 最初は幅0 */
    background-color: #388E3C;
    z-index: -1;
    transition: width 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000); /* 帯が伸びるスピード */
}

/* 背景アニメーション用クラス */
.badge-new-open.is-bg-active::before {
    width: 100%; /* 幅を100%にする */
}

/* 文字表示用クラス */
.badge-new-open.is-text-active {
    color: #fff; /* 文字を白にする */
}

/* 3. 説明文とピックアップ：下に隠れて透明 */
.hero-description,
.hero-pickup-badge {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease-out;
}

/* クラスがついたら表示 */
.hero-description.is-active,
.hero-pickup-badge.is-active {
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    margin-bottom: 3rem;
}

.section-title::before {
    content: attr(data-en);
    display: block;
    font-size: 0.9rem;
    color: #388E3C;
    letter-spacing: .5em;
    font-weight: bold;
}

.section-title.white::before {
    content: attr(data-en);
    display: block;
    font-size: 0.9rem;
    color: #fff;
    letter-spacing: .5em;
    font-weight: bold;
}

.section-lead {
    margin-bottom: 3rem;
}

.concept-area {
    margin-bottom: 5rem;
}

.concept-title {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
}

.concept-area p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.grid-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.grid-item {
    text-align: center;
}

.grid-item img {
    max-width: 100%;
    height: auto;
}

.grid-item p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
}

.grid-item p span {
    font-size: 1rem;
    font-weight: 400;
}

/* --- PC表示（1024px以上） --- */
@media (min-width: 768px) {
    .grid-layout {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trouble-box {
    padding: 1rem;
}

@media (min-width: 768px) {

    .strength-box {
        background: var(--white);
        border-radius: 16px;
        padding: 2.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
}

.works {
    background-color: #81C784;
    background-image: url('//syuroub-irodori.com/wp-content/themes/irodori/assets/image/top_bg1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 15px;
}

.card {
    display: flex;
    flex-direction: column;
}

.card-image {
    text-align: right;
    margin-bottom: -170px;
}

.card-content {
    background: #fff;
    max-width: 320px;
    padding: 30px 20px;
    box-shadow: #388E3C 15px 15px;
    box-sizing: border-box;
}



.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.card-subtitle {
    color: #388E3C;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.card-text {
    margin-bottom: 20px;
    text-align: justify;
}

/* チェックリスト */
.card-list {
    list-style: none;
    font-weight: bold;
}

.card-list li {
    margin-bottom: 5px;
    display: flex;
}

.card-list li::before {
    content: '✓';
    margin-right: 8px;
    font-weight: normal;
    color: #388E3C;
}

/* --- タブレット・中画面対応（1200px以下なら2列にする） --- */
@media (max-width: 1200px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
        /* 2列にする */
        gap: 40px;
        justify-items: center;
        /* カードを中央寄せにする */
    }

    .card {
        width: 100%;
        max-width: 400px;
    }
}

/* --- レスポンシブ対応（スマホ表示） --- */
@media (max-width: 900px) {
    .card-container {
        grid-template-columns: 1fr;
        gap: 60px;
        max-width: 500px;
        margin: 0 auto 15px auto;
    }

    .card-content {
        width: 95%;
    }
}

/* タイムライン全体のコンテナ */
.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: #388E3C;
    transform: translateX(-50%);
    z-index: 0;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    min-height: 160px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s cubic-bezier(0.2, 1, 0.3, 1), transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-time {
    background: #fff;
    color: #333333;
    border: 3px solid #388E3C;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    z-index: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-top: -10px;
}

/* テキストコンテンツエリア */
.timeline-content {
    width: 42%;
    padding: 0 20px;
    box-sizing: border-box;
}

.timeline-content h3 {
    color: #388E3C;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.timeline-content p {
    margin: 0;
    line-height: 1.6;
}

/* 奇数番目（左にテキスト） */
.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    margin-right: 80px;
}

/* レイアウトバランス用の空要素 */
.timeline-item:nth-child(odd)::after {
    content: "";
    width: 42%;
}

/* 偶数番目（右にテキスト） */
.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    margin-left: 80px;
}

.timeline-item:nth-child(even)::after {
    content: "";
    width: 42%;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    /* 2. 丸とテキストを「横並び」にする重要設定 */
    .timeline-item {
        flex-direction: row !important;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 30px;
        min-height: auto;
    }

    .timeline-time {
        position: relative;
        left: auto;
        transform: none;
        margin: 0;
        flex-shrink: 0;
        margin-top: 0;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: 100%;
        text-align: left;
        margin: 0;
        padding: 0;
        padding-top: 8px;
    }

    .timeline-item::after {
        display: none;
    }
}

.flow {
    background-color: #81C784;
    background-image: url('//syuroub-irodori.com/wp-content/themes/irodori/assets/image/top_bg1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* グリッドレイアウト（PCは4列） */
.flow-grid {
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 68px;
    align-items: start;
}

/* カード本体 */
.flow-card {
    background: #fff;
    border-radius: 4px;
    /* 角を少しだけ丸く */
    overflow: visible;
    /* 数字バッジをはみ出させるためvisibleに */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

/* 画像エリア */
.flow-img-wrapper {
    position: relative;
    /* バッジの基準点 */
    width: 100%;
    aspect-ratio: 3 / 2;
    /* 画像の比率を固定（横3:縦2） */
}

.flow-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 数字のバッジ（左上の丸） */
.step-badge {
    position: absolute;
    top: -15px;
    /* 上にはみ出す */
    left: -10px;
    /* 左にはみ出す */
    width: 50px;
    height: 50px;
    background-color: #fff;
    border: 3px solid #FBC02D;
    /* 黄色い枠線 */
    color: #FBC02D;
    /* 文字色も黄色 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    z-index: 10;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

/* テキストエリア */
.flow-content {
    padding: 20px 15px;
    flex-grow: 1;
    /* 高さを揃える */
}

.flow-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.4;
}

.flow-content p {
    line-height: 1.6;
    margin: 0;
}

/* 2番目のカードを少し下げる */
.flow-grid .flow-card:nth-child(2) {
    margin-top: 40px;
}

/* 3番目のカードをさらに下げる */
.flow-grid .flow-card:nth-child(3) {
    margin-top: 80px;
}

/* 4番目のカードをもっと下げる */
.flow-grid .flow-card:nth-child(4) {
    margin-top: 120px;
}

/* --- レスポンシブ対応 --- */
/* タブレットサイズ（2列表示） */
@media (max-width: 1024px) {
    .flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 24px;
    }

    /* 【重要】PC用の階段設定を一旦リセットします */
    .flow-grid .flow-card:nth-child(n) {
        margin-top: 0;
    }

    /* 2列になるので、右側の列（偶数番目）だけを下げて「互い違い」にします */
    .flow-grid .flow-card:nth-child(even) {
        margin-top: 50px;
    }
}

/* スマホサイズ（1列表示） */
@media (max-width: 600px) {
    .flow-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0;
    }

    .flow-grid .flow-card:nth-child(n),
    .flow-grid .flow-card:nth-child(even) {
        margin-top: 15px;
    }
}


.faq {
    background-color: #FFFCEA;
    background-image: url('//syuroub-irodori.com/wp-content/themes/irodori/assets/image/top_bg2.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    position: relative;
    transition: background-color 0.2s;
}

.faq-header:hover {
    background-color: #fafafa;
}

.faq-icon-q {
    font-size: 1.5rem;
    color: #FBBF24;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
    line-height: 1;
}

.faq-question {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    flex-grow: 1;
    padding-right: 20px;
}

.faq-toggle {
    width: 20px;
    height: 20px;
    position: relative;
    flex-shrink: 0;
}

.faq-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transform: translateY(-50%);
    transition: transform 0.3s;
}

.faq-toggle::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background-color: #333;
    transform: translateX(-50%);
    transition: transform 0.3s, opacity 0.3s;
}

.faq-body {
    height: 0;
    opacity: 0;
    overflow: hidden;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.faq-item.is-open .faq-body {
    height: auto;
    opacity: 1;
    border-top: 1px solid #f0f0f0;
}

.faq-item.is-open .faq-toggle::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
}

.faq-answer-inner {
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
}

.faq-icon-a {
    font-size: 1.5rem;
    color: #388E3C;
    font-weight: bold;
    margin-right: 16px;
    flex-shrink: 0;
    line-height: 1;
}

.faq-text {
    margin: 0;
    color: #444;
    line-height: 1.6;
}


.pickup-box {
    border: 2px solid #FBC02D;
    background-color: #FFFDE7;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 4px;
}

.pickup-title {
    color: #e6a23c;
    font-weight: bold;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.pickup-box p {
    color: #444;
    line-height: 1.8;
    margin: 0;
}

.news-header .section-title {
    margin-bottom: 0;
}

.access-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
}

.access-info {
    width: 45%;
    flex-shrink: 0;
}

.info-list {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 24px 40px;
    align-items: baseline;
}

.info-list dt {
    font-weight: bold;
    color: #444;
}

.info-list dd {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

.access-map-wrapper {
    width: 55%;
    height: 300px;
}

.access-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    border: none;
}

@media (max-width: 768px) {
    .access-content {
        flex-direction: column;
        gap: 40px;
    }

    .access-info,
    .access-map-wrapper {
        width: 100%;
    }

    .info-list {
        gap: 15px 20px;
    }

    .map-placeholder {
        height: 250px;
    }
}

.news-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (max-width: 767px) {
    .news-container {
        display: flex;
        flex-direction: column;
    }

    .news-header {
        order: 1;
    }

    .news-description {
        order: 2;
    }

    .news-list {
        order: 3;
    }

}

/* --- PC表示時のレイアウト (768px以上) --- */
@media (min-width: 768px) {
    .news-container {
        grid-template-columns: 40% 1fr;
        grid-template-areas:
            "header list"
            "desc   list"
            "btn    list";
        align-items: start;
        column-gap: 60px;
    }

    .news-header {
        grid-area: header;
    }

    .news-description {
        grid-area: desc;
    }


    .news-list {
        grid-area: list;
    }
}

.news-description {
    text-align: justify;
}


/* リスト部分のデザイン */
.news-list {
    border-top: 1px solid #eee;
    /* 上の線（任意） */
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    /* スマホは縦並び */
    gap: 10px;
}

@media (min-width: 768px) {
    .news-item {
        flex-direction: row;
        /* PCは横並び */
        align-items: baseline;
    }
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
    /* 日付+ラベル部分の幅確保 */
}

.news-item time {
    font-family: monospace, serif;
    color: #666;
    width: 90px;
}

.category-label {
    background-color: #388E3C;
    color: #fff;
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 2px;
}

.news-link {
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}

.news-link:hover {
    opacity: 0.7;
}

/* =========================================
   お問い合わせセクション
   ========================================= */
.contact-container {
    background-color: #81C784;
    color: #ffffff;
    text-align: center;
    background-image: url('//syuroub-irodori.com/wp-content/themes/irodori/assets/image/top_bg1.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact-description {
    margin-bottom: 50px;
}


/* =========================================
   フッター
   ========================================= */
.site-footer {
    background-color: #ffffff;
    text-align: center;
}

.footer-link{
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: .85rem;
}

.copyright {
    font-size: 0.75rem;
    color: #333;
    font-family: Arial, sans-serif;
}

/* =========================================
   アニメーション
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.2, 1, 0.3, 1), transform 1.5s cubic-bezier(0.2, 1, 0.3, 1);
}

/* 表示時のスタイル（JSで付与） */
.fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.card.fade-up:nth-child(1),
.flow-card.fade-up:nth-child(1) {
    transition-delay: 0s;
}

.card.fade-up:nth-child(2),
.flow-card.fade-up:nth-child(2) {
    transition-delay: 0.3s;
}

.card.fade-up:nth-child(3),
.flow-card.fade-up:nth-child(3) {
    transition-delay: 0.6s;
}

.card.fade-up:nth-child(4),
.flow-card.fade-up:nth-child(4) {
    transition-delay: 0.9s;
}

/* =========================================
   お知らせ一覧ボタン
   ========================================= */
.news-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto; 
    width: fit-content;
    min-width: 240px;
    padding: 16px 32px;
    border: 2px solid #388E3C;
    background-color: transparent;
    color: #388E3C;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    order: 4;
}

.news-btn::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 15px;
    border-top: 2px solid #388E3C;
    border-right: 2px solid #388E3C;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.news-btn:hover {
    background-color: #388E3C;
    color: #fff;
    box-shadow: 0 5px 15px rgba(56, 142, 60, 0.3);
    transform: translateY(-2px);
}

.news-btn:hover::after {
    border-color: #fff;
    transform: translateX(5px) rotate(45deg);
}

/* =========================================
   お問い合わせボタン
   ========================================= */
.contact-btn-group {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 360px;
    padding: 20px 30px;
    background-color: #fff;
    color: #44403c;
    border-radius: 100px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.05rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

@media (min-width: 768px) {
    .contact-btn {
        width: auto;
        min-width: 320px;
    }
}

.contact-btn::after {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #FBC02D;
    border-right: 2px solid #FBC02D;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-btn:hover::after {
    transform: translateX(5px) rotate(45deg);
}


/* =========================================
   下層ページ用スタイル (single, archive, page)
   ========================================= */

/* 下層ページのヘッダー帯 */
.page-header {
    background-color: var(--bg-base);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    padding: 120px 0 64px 0;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3); 
    z-index: 0;
}

/* タイトルをフィルターより上に表示 */
.page-header .container {
    position: relative;
    z-index: 1;
}

.page-title {
    font-size: 2rem;
    font-weight: bold;
    color: #fff; /* 文字色を白に強制 */
}

.post-header {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.post-title {
    font-size: 1.8rem;
    margin-top: 15px;
    line-height: 1.4;
}

/* 記事本文（WordPressが出力するタグへのスタイル） */
.post-body p {
    margin-bottom: 1.5em;
    font-size: 1rem;
    line-height: 1.8;
}

.post-body h2 {
    font-size: 1.5rem;
    border-left: 5px solid var(--primary);
    padding-left: 15px;
    margin: 40px 0 20px;
}

.post-body h3 {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 30px 0 15px;
    color: var(--primary);
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}
.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.post-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* 前後の記事リンク */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.post-navigation a {
    color: var(--primary);
    font-weight: bold;
}

/* ページネーション（一覧ページ用） */
.pagination {
    margin-top: 40px;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 4px;
    border: 1px solid #ddd;
    color: var(--text-main);
    border-radius: 4px;
}

.pagination .current {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* スマホ対応 */
@media (max-width: 768px) {
    .page-header{
        padding: 80px 0 40px 0;
    }
    .post-title {
        font-size: 1.4rem;
    }
}
/* =========================================
   アーカイブページのデザイン
   ========================================= */

/* 1. 全体レイアウト（2カラムにする） */
.archive-flex-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 40px; /* メインとサイドバーの隙間 */
    margin-top: 30px;
}

/* メインカラム（記事一覧） */
.archive-main-column {
    width: 72%; /* 左側の幅 */
}

/* サイドバーカラム */
.archive-sidebar-column {
    width: 25%; /* 右側の幅 */
}

/* -------------------------------------------
   記事カード（サムネ＋テキスト）のデザイン
   ------------------------------------------- */
.news-card {
    display: flex; /* 画像とテキストを横並び */
    border-bottom: 1px solid #ddd; /* 下線 */
    padding-bottom: 30px;
    margin-bottom: 30px;
    gap: 25px; /* 画像とテキストの間隔 */
}

/* 画像エリア */
.news-card-img {
    flex-shrink: 0; /* 幅を縮ませない */
    width: 220px;   /* 画像の固定幅 */
    height: 160px;  /* 画像の固定高さ */
    background-color: #f0f0f0;
    display: block;
}

.news-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいにトリミングして表示 */
}

/* テキストエリア */
.news-card-body {
    flex-grow: 1; /* 余った幅いっぱいまで広げる */
    display: flex;
    flex-direction: column; /* 中身を縦並びにする */
}

/* 日付 */
.news-meta time {
    font-size: 14px;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

/* タイトル */
.news-title {
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.news-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s;
}
.news-title a:hover {
    color: #007bff; /* ホバー色（サイトに合わせて変更可） */
}

/* 抜粋文 */
.news-excerpt {
    font-size: 14px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}
.news-excerpt p {
    margin: 0;
}

/* 詳しく見るボタン */
.news-btn-area {
    margin-top: auto; /* 一番下に配置 */
    text-align: right; /* 右寄せ */
}

.btn-readmore {
    display: inline-block;
    position: relative;
    background-color: #5DB260;
    color: #fff; 
    font-size: 14px;
    padding: 8px 25px 8px 15px; 
    border-radius: 2px;
    text-decoration: none;
    transition: 0.3s; 
}

/* --- CSSで三角形を作る（::after擬似要素） --- */
.btn-readmore::after {
    content: '';
    position: absolute;
    top: 50%;           /* 上から50%の位置 */
    right: 10px;        /* 右端からの位置（初期位置） */
    transform: translateY(-50%); /* 上下中央揃え */
    
    /* 三角形を描くための魔法の記述（border法） */
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 6px; /* 上0 下0 左6px */
    border-color: transparent transparent transparent #fff; /* 左側の線だけ色をつける＝右向き三角になる */
    
    transition: 0.3s; /* 三角形の移動アニメーション */
}

/* --- ホバー時の動き --- */
.btn-readmore:hover {
    opacity: .7;
}

/* ホバー時に三角形だけ右へ動かす */
.btn-readmore:hover::after {
    right: 5px; /* 10px から 5px に移動（右へ動く） */
}

/* =========================================
   スマホ対応（レスポンシブ）
   ========================================= */
@media (max-width: 768px) {
    /* 2カラムを1カラムに戻す */
    .archive-flex-wrapper {
        display: block;
    }
    .archive-main-column, 
    .archive-sidebar-column {
        width: 100%;
    }
    
    .archive-sidebar-column {
        margin-top: 50px;
    }

    /* 記事カードを縦積みにする */
    .news-card {
        display: block;
    }
    .news-card-img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
    }
    .news-card-img img {
        aspect-ratio: 16 / 9; /* スマホでは横長の比率に */
    }
    
    .news-btn-area {
        text-align: left; /* スマホなら左寄せでもOK */
    }
}
/* =========================================
   パンくずリスト (Breadcrumb)
   ========================================= */
.breadcrumb-nav {
    width: 100%;
    padding: 10px 0;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

/* スマホでは文字を少し小さく */
@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.8rem;
        padding: 8px 0;
    }
}

/* リストの並び */
.breadcrumb-list {
    max-width: 1240px; 
    margin: 0 auto;
    padding: 0 15px;
    list-style: none;
    display: flex;
    flex-wrap: wrap; 
    color: var(--text-sub);
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

/* 矢印（>）をつける */
.breadcrumb-list li:not(:last-child)::after {
    content: '>';
    margin: 0 10px;
    color: #ccc;
    font-size: 0.8em;
}

/* リンクの色 */
.breadcrumb-list a {
    color: var(--text-sub);
    text-decoration: underline;
}

.breadcrumb-list a:hover {
    color: var(--primary);
    text-decoration: none;
}

/* 現在のページ（一番最後）は太字にしない */
.breadcrumb-list li:last-child {
    color: var(--text-main);
    font-weight: bold;
}

/* フォーム全体の枠 */
.contact-form-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* 各行のレイアウト */
.form-row {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 25px;
}

/* 項目名（左側） */
.form-row dt {
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* 必須・任意のラベル */
.required, .any {
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    color: #fff;
}
.required { background-color: #d32f2f; } /* 必須の赤色 */
.any { background-color: #757575; }      /* 任意のグレー */

/* 入力エリア（右側） */
.form-row dd input[type="text"],
.form-row dd input[type="email"],
.form-row dd input[type="tel"],
.form-row dd textarea,
.form-row dd select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* 条件分岐エリアの囲みデザイン */
.conditional-area {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}
.group-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

/* 送信ボタン */
.submit-btn input {
    background-color: #388E3C;
    color: #fff;
    padding: 15px 50px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: 0.3s;
}
.submit-btn input:hover {
    opacity: 0.8;
}

/* PC表示の調整（横並びにする場合） */
@media (min-width: 768px) {
    .form-row {
        display: flex;
        align-items: flex-start;
    }
    .form-row dt {
        width: 30%;
        margin-bottom: 0;
        padding-top: 5px;
        min-width: 300px;
    }
    .form-row dd {
        width: 70%;
        margin-left: 0;
    }
    .submit-btn input {
        width: auto;
        min-width: 300px;
        display: block;
        margin: 0 auto;
    }
}

/* 1. 枠・サイズ・文字の基本設定（テキスト入力欄と合わせる） */
.form-row dd input[type="date"],
.form-row dd select {
    width: 100%;
    padding: 12px 10px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 16px;
    color: #333;
    height: auto;
    min-height: 50px;
    line-height: 1.5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-row dd select {
    background-image: 
        linear-gradient(45deg, transparent 50%, #666 50%),
        linear-gradient(135deg, #666 50%, transparent 50%);
    background-position: 
        calc(100% - 20px) 50%,
        calc(100% - 15px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
    padding-right: 40px;
    cursor: pointer;
}

/* 3. 日付入力(date)のカレンダーアイコン調整 */
.form-row dd input[type="date"] {
    position: relative;
    padding-right: 40px; 
}

.form-row dd input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%); 

    width: 20px;
    height: 20px;
    cursor: pointer;
    
    /* アイコンを少し薄くして馴染ませる */
    opacity: 0.6;
    
    /* 背景色をつけてクリック範囲を明確にする（お好みで削除可） */
    background-color: transparent; 
}

/* ホバー時にアイコンを濃くする */
.form-row dd input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* サイトマップのデザイン */
.sitemap-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}
.sitemap-title {
    font-size: 20px;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
    margin-top: 30px; /* セクション間の余白 */
    color: #333;
}
/* 最初のタイトルだけ上余白を消す */
.sitemap-title:first-child {
    margin-top: 0;
}
.sitemap-list {
    list-style: none; /* 点を消す */
    padding: 0;
    margin: 0;
}
.sitemap-list li {
    margin-bottom: 10px;
    padding-left: 0;
}
.sitemap-list li a {
    text-decoration: none;
    color: #0066cc;
    display: block;
    padding: 5px 0;
    border-bottom: 1px dotted #eee; /* 薄い下線 */
    transition: 0.3s;
}
.sitemap-list li a:hover {
    color: #004499;
    padding-left: 5px; /* ホバー時に少し右へ動く */
}

/* =========================================
   サイドバー（sidebar.php）のデザイン
   ========================================= */

/* ウィジェット全体 */
.sidebar-widget {
    margin-bottom: 40px;
    background-color: #fff; /* 必要なら背景色 */
}

/* 「最新の投稿」見出し */
.widget-title {
    font-size: 18px;
    font-weight: bold;
    background-color: #5DB260; 
    color: #fff;
    padding: 10px 15px;
    margin-bottom: 20px;
}

/* 記事リスト（ul） */
.side-latest-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 各記事アイテム（li） */
.side-latest-item {
    margin-bottom: 20px;
}

/* リンク全体を横並び（フレックス）にする */
.side-latest-link {
    display: flex;
    text-decoration: none;
    color: #333;
    gap: 15px; /* 画像と文字の間隔 */
    align-items: flex-start;
    transition: opacity 0.3s;
}

.side-latest-link:hover {
    opacity: 0.7;
}

/* 画像エリア */
.side-latest-img {
    width: 80px;  /* 画像の幅 */
    height: 80px; /* 画像の高さ（正方形） */
    flex-shrink: 0; /* 縮まないように固定 */
    background-color: #eee; /* 画像読み込み前の色 */
}

.side-latest-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 枠いっぱいにトリミング */
}

/* テキストエリア */
.side-latest-body {
    flex-grow: 1;
}

/* 日付 */
.side-latest-date {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 4px;
}

/* 記事タイトル */
.side-latest-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   シングルページ（記事詳細）のデザイン
   ========================================= */

/* 記事本文の下に少し余白 */
.post-body {
    margin-bottom: 60px;
    line-height: 1.8;
}
/* -------------------------------------------
   記事ナビゲーション（クラス名変更版）
   ------------------------------------------- */
/* 全体を囲むコンテナ */
.sp-nav-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 40px;
}

/* 個別の箱（左右それぞれ） */
.sp-nav-box {
    width: 40%;
}

/* リンク全体 */
.sp-nav-link {
    display: block;
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s;
}
.sp-nav-link:hover {
    opacity: 0.7;
}

/* --- グレーの帯（ラベル部分）設定 --- */
.sp-nav-label {
    position: relative;
    background-color: #5DB260;
    color: #fff;
    font-weight: bold;
    padding: 8px 15px;
    font-size: 14px;
    margin-bottom: 15px;
}


/* --- コンテンツエリア（画像とテキスト） --- */
.sp-nav-content {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

/* サムネイル画像 */
.sp-nav-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background-color: #f0f0f0;
}
.sp-nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* テキスト情報エリア */
.sp-nav-info {
    flex-grow: 1;
}
.sp-nav-info time {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}
.sp-nav-title {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .sp-nav-container {
        flex-direction: column;
        gap: 40px;
    }
    .sp-nav-box {
        width: 100%;
    }
}

.contact-btn-tel-text{
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
    font-weight: 500;
}
.contact-btn-tel{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.contact-btn-tel img{
    width: 40px;
    margin-top: 5px;
}
.contact-btn-tel a {
  pointer-events: none;
    cursor: default;
    text-decoration: none;
    font-size: 2.6rem;
    line-height: 1;
    font-weight: 600;
}

@media screen and (max-width: 767px) {
    .contact-btn-tel-text{
        font-size: 1.4rem;
    }
  .contact-btn-tel a  {
    pointer-events: auto;
    cursor: pointer;
  }
}