/*Homeのcss*/
 /* 基本設定 */
  :root {
            --primary-color: #db7093; /* 温かみのあるテラコッタ */
            --bg-color: #fdfaf5;      /* 優しいアイボリー背景 */
            --text-color: #333333;
            --white: #ffffff;
            --accent-color: #e8d5c8;  /* 柔らかなベージュ */
            --pc-header: 80px;
            --sp-header: 70px;
                }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.8;
        }

        h1, h2, h3 {
            font-family: 'Noto Serif JP', serif;
            font-weight: 700;
        }

        /* ヘッダー */
         header {
            display: flex;
            align-items: center;
            padding: 15px 5%;
            background: #ffffff;
            backdrop-filter: blur(5px);
            position: sticky;
            top: 0;
            box-sizing: border-box;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s;
            /* 右側の余白を自動（最大）にする */
            margin-right: auto;
            
        }

        .logo-container:hover {
            opacity: 0.8;
        }

        .logo-image {
            height: 50px; /* ロゴの高さ調整 */
            width: auto;
           
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            letter-spacing: 0.1em;
            font-family: 'Noto Serif JP', serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }
        
        /* ヒーローセクション */
        /* ヒーローセクション全体 */
        .hero {
            height: 80vh;
            position: relative; /* 子要素の基準点にする */
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
            overflow: hidden; /* 画像のはみ出し防止 */
        }

        /* 背景画像の設定 */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover; /* 背景画像(cover)と同じ挙動 */
            z-index: 1; /* 一番下 */
        }

        /* オーバーレイ（画像の上に重ねる暗い色の層） */
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.2); /* 元のlinear-gradientに相当する設定 */
            z-index: 2; /* 画像より上 */
        }

        /* コンテンツ（文字など）の設定 */
        .hero-content {
            position: relative;
            z-index: 3; /* オーバーレイより上 */
            padding: 0 20px;
        }

        .hero-content h2 {
            font-size: clamp(1.8rem, 5vw, 3rem);
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            letter-spacing: 0.15em;
        }

        .hero-content p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            margin-bottom: 30px;
            text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
        }

        .btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-color);
            color: var(--text-color);
            text-decoration: none;
            border-radius: 20px;
            font-weight: bold;
            transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 15px rgba(166, 90, 61, 0.3);

            /* --- 枠線の追加 --- */
            border: 2px solid #e7eee9; /* 本体より少し濃い色で引き締める */
            box-sizing: border-box;
        }
        /* PCなど、マウス操作ができるデバイスのみにhoverを適用 */
            @media (hover: hover) {
            .btn:hover {
                background-color: #007bff;
                color: white;
             }
         }

        .btn:hover {
            background-color: #007bff;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(166, 90, 61, 0.4);
        }

        /* ボタンの並びを制御するコンテナ */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px; /* ボタン同士の間隔 */
            flex-wrap: wrap; /* 幅が狭い時に折り返す */
        }

        /* LINE専用のスタイル */
        .btn.line-btn {
            background-color: #06C755; /* LINEブランドカラー */
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(6, 199, 85, 0.3);
            border: 2px solid #e7eee9; /* 本体より少し濃い色で引き締める */
            box-sizing: border-box;
        }

        .btn.line-btn:hover {
            background-color: #05a346;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4);
        }

        /* スマホ表示の調整 */
        @media (max-width: 480px) {
            .hero-buttons {
                flex-direction: column; /* 縦に並べる */
                align-items: center;
                gap: 15px;
            }
            .btn {
                width: 80%; /* スマホではボタンを少し横長にする */
                padding: 12px 20px;
            }
        }

        /* セクション共通 */
        section {
            padding: 30px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .section-title span {
            display: block;
            color: var(--primary-color);
            font-family: 'Noto Serif JP', serif;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .section-title h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        /* お知らせセクション */
        .news-list {
            max-width: 900px;
            margin: 0 auto;
            background: var(--white);
            border-radius: 20px;
            padding: 0px 40px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
        }

        .news-item {
            display: flex;
            align-items: baseline;
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            text-decoration: none;
            color: inherit;
            transition: opacity 0.3s;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            opacity: 0.7;
        }

        .news-date {
            font-size: 0.9rem;
            color: #888;
            width: 120px;
            flex-shrink: 0;
        }

        .news-category {
            font-size: 0.75rem;
            background-color: var(--accent-color);
            color: var(--primary-color);
            padding: 2px 12px;
            border-radius: 50px;
            margin-right: 20px;
            font-weight: bold;
        }

        .news-title {
            font-size: 1rem;
            flex-grow: 1;
        }

        @media (max-width: 768px) {
            .news-list {
                padding: 10px 20px;
            }
            .news-item {
                flex-direction: column;
                gap: 5px;
            }
            .news-date {
                width: auto;
            }
            .news-category {
                margin-bottom: 5px;
            }
        }

        /* コンセプトセクション */
       /* コンセプトセクション修正版 */
        .concept-section {
            max-width: 1200px; /* 幅を広げて2カラムに対応 */
            margin: 0 auto;
        }

        .concept-container {
            display: flex;
            align-items: center; /* 上下中央揃え */
            gap: 40px; /* テキストと画像の間隔 */
        }

        .concept-content {
            flex: 1; /* テキスト側を広げる */
            text-align: left; /* テキストを左揃えに */
        }

        .concept-text {
            font-size: 1.05rem;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .concept-image {
            flex: 1; /* 画像側も均等に */
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .concept-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }

        /* --- レスポンシブ対応 (スマホ・タブレット用) --- */
        @media (max-width: 900px) {
            .concept-container {
                flex-direction: column; /* 縦並びにする */
                text-align: center;
            }

            .concept-content {
                text-align: center; /* スマホでは中央揃えが綺麗です */
            }

            .concept-image {
                width: 100%;
                order: -1; /* スマホの時だけ画像を上にしたい場合はこれを追加 */
                margin-bottom: 20px;
            }
        }

        /* 施術メニュー */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .menu-item {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s;
        }

        .menu-item:hover {
            transform: translateY(-10px);
        }

        .menu-image {
            height: 200px;
            width: 100%;
            overflow: hidden; /* はみ出し防止 */
        }

        /* 追加：中の画像タグ */
        .menu-image img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* 背景画像(cover)と同じ挙動にする */
            vertical-align: bottom; /* 画像下の隙間を解消 */
        }

        .menu-text {
            padding: 30px;
        }

        .menu-text h3 {
            margin-bottom: 15px;
            color: var(--primary-color);
            font-size: 1.3rem;
        }

        .menu-desc {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 20px;
            min-height: 4em;
        }

        .menu-price {
            font-size: 1.25rem;
            font-weight: bold;
            color: var(--text-color);
            border-top: 1px solid #eee;
            padding-top: 15px;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .menu-price span {
            font-size: 0.8rem;
            font-weight: normal;
            color: #888;
        }

        .menu-note {
            text-align: center;
            margin-top: 40px;
            font-size: 0.85rem;
            color: #888;
        }

        /* 施術までの流れ */
        .flow-section {
            background-color: #f9f6f1;
        }

        .flow-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
        }

        .flow-container::before {
            content: "";
            position: absolute;
            top: 0;
            left: 40px;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary-color) 0%, #ddd 100%);
        }

        .flow-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 50px;
            position: relative;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-family: 'Noto Serif JP', serif;
            font-weight: bold;
            flex-shrink: 0;
            z-index: 1;
            box-shadow: 0 5px 15px rgba(166, 90, 61, 0.2);
        }

        .step-content {
            padding-left: 30px;
            padding-top: 10px;
        }

        .step-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        /* FAQセクション */
        .faq-container {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: 15px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            overflow: hidden;
        }

        .faq-question {
            padding: 20px 30px;
            display: flex;
            align-items: center;
            cursor: pointer;
            position: relative;
            transition: background-color 0.3s;
        }

        .faq-question::before {
            content: "Q";
            font-family: 'Noto Serif JP', serif;
            font-weight: bold;
            color: var(--primary-color);
            font-size: 1.4rem;
            margin-right: 20px;
        }

        .faq-question h3 {
            font-size: 1rem;
            margin: 0;
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 500;
        }

        .faq-answer {
            padding: 0 30px 25px 75px; /* Qの幅に合わせて調整 */
            display: block; /* 最初から表示する設定 */
        }

        .faq-answer p {
            margin: 0;
            font-size: 0.95rem;
            color: #666;
            line-height: 1.7;
        }

        /* スマホ用調整 */
        @media (max-width: 768px) {
            .faq-question {
                padding: 15px 20px;
            }
            .faq-answer {
                padding: 0 20px 20px 60px;
            }
        }

        /* お客様の声セクション */
        .voice-section {
            background-color: var(--white);
        }

        .voice-container {
            max-width: 1000px;
            margin: 0 auto;
            background-color: var(--bg-color); /* サイト全体の背景色と合わせて少し色を付ける */
            padding: 40px;
            border-radius: 30px;
            border: 1px dashed var(--primary-color); /* 柔らかい印象の破線 */
        }

        /* インラインタグ（外部埋め込み）を格納するエリア */
        .external-widget-area {
            width: 100%;
            min-height: 400px; /* 読み込み前の高さを確保 */
            display: flex;
            justify-content: center;
            align-items: center;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .voice-container {
                padding: 20px;
            }
        }

        /* アクセスセクション */
        .access-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1100px;
            margin: 0 auto;
            align-items: start;
        }

        .map-wrapper {
            width: 100%;
            height: 400px;
            background-color: #eee;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .access-info table {
            width: 100%;
            border-collapse: collapse;
        }

        .access-info th, .access-info td {
            padding: 15px 0;
            border-bottom: 1px solid #eee;
            text-align: left;
            vertical-align: top;
        }

        .access-info th {
            width: 100px;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* フッター */
        footer {
            background-color: #1a1a1a; /* 洗練された墨色 */
            color: #ffffff;
            padding: 80px 5% 30px;
            text-align: center;
        }

        .footer-logo {
            font-family: 'Noto Serif JP', serif;
            font-size: 1.0rem;
            color: #ffffff;
            margin-bottom: 30px;
            display: block;
            letter-spacing: 0.15em;
        }

        .footer-links {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--primary-color);
        }

        /* SNSアイコン */
        .footer-sns {
            margin-bottom: 50px;
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .sns-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            text-decoration: none;
            transition: transform 0.3s, background-color 0.3s;
            font-size: 1.2rem;
        }

        .sns-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        /* アイコン画像用（もし画像を使う場合） */
        .sns-icon img {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1); /* 白く変換 */
        }

        .copyright {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            letter-spacing: 0.05em;
        }

        @media (max-width: 768px) {
            footer {
                padding: 60px 5% 20px;
            }
            .footer-links {
                gap: 15px;
            }
        }
        
         /* スムーズスクロールを有効にする（まだ入れていない場合） */
         html {
             scroll-behavior: smooth;
        }

         /* ジャンプ先の位置を調整する設定 
         ヘッダー(約80px) + エリアナビ(約65px) = 145px 程度の余白を確保*/
         .menu-section {
             scroll-margin-top: 70px; 
             margin-bottom: 0px;
        }

        .flow-section {
             scroll-margin-top: 70px;
             margin-bottom: 0px; 
             
        }

        .faq-section {
             scroll-margin-top: 70px; 
             margin-bottom: 0px;
        }

        .voice-section {
             scroll-margin-top: 70px; 
             margin-bottom: 0px;
        }

        .concept-section {
             scroll-margin-top: 70px; 
             margin-bottom: 0px;
        }

        .access-section {
             scroll-margin-top: 70px; 
             margin-bottom: 0px;
        }
         

         /* スマホ用の調整 */
         @media (max-width: 768px) {
         .menu-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }
        
        .flow-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }

        .faq-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }

        .voice-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }

        .concept-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }

        .access-section {
              scroll-margin-top:60px; /* スマホはヘッダーが少し低くなるので調整 */
            }


         .area-nav {
             top: 70px; /* スマホヘッダーの高さ */
            }
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            header {
                padding: 10px 5%;
                flex-direction: column;
            }
            nav ul {
                margin-top: 10px;
            }
            nav ul li {
                margin: 0 10px;
            }
            .hero {
                height: 60vh;
            }
            .access-container {
                grid-template-columns: 1fr;
            }
            .flow-container::before {
                left: 30px;
            }
            .step-number {
                width: 60px;
                height: 60px;
                font-size: 1.2rem;
            }
            .step-content {
                padding-left: 20px;
            }
            section {
                padding: 60px 5%;
            }
        }
 
        /* --- ハンバーガーボタンのスタイル (デフォルトは非表示) --- */
            .hamburger {
                display: none;
                flex-direction: column;
                justify-content: space-between;
                width: 30px;
                height: 22px;
                cursor: pointer;
                z-index: 1100;
            }

            .hamburger span {
                width: 100%;
                height: 2px;
                background-color: var(--primary-color);
                transition: all 0.3s;
            }

        /* レスポンシブ (768px以下) */
            @media (max-width: 768px) {
                header {
                    padding: 15px 5%;
                    flex-direction: row; /* 横並びに戻す */
                }

                .hamburger {
                    display: flex; /* スマホ時のみ表示 */
                }

         /* メニューを画面外に隠す */
                nav {
                    position: fixed;
                    top: 0;
                    right: -100%; /* 右側に隠す */
                    width: 70%;
                    height: 100vh;
                    background: var(--white);
                    padding-top: 80px;
                    transition: 0.4s;
                    z-index: 1050;
                    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                }

                nav.active {
                    right: 0; /* 画面内に表示 */
                }

                nav ul {
                    flex-direction: column;
                    align-items: center;
                }

                nav ul li {
                    margin: 20px 0;
                }

        /* メニュー展開時の背景暗転 */
                .overlay {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,0.5);
                    z-index: 1000;
                }

                .overlay.active {
                    display: block;
                }

        /* ボタンが×印になるアニメーション */
                .hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
                .hamburger.active span:nth-child(2) { opacity: 0; }
                .hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
            }

        /* mapのiframe */
                .map-wrapper iframe {
                width: 100%;
                height: 100%;
                border: none;
                vertical-align: middle;
            }
       /* 選ばれる理由セクション */
                .features-section {
                    background-color: var(--white); /* 背景を白にして区切りを明確に */
                    padding: 50px 5%;
                }

                .features-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 30px;
                    max-width: 1100px;
                    margin: 0 auto;
                }

                .feature-item {
                    background-color: var(--bg-color);
                    padding: 30px 30px;
                    border-radius: 20px;
                    text-align: center;
                    position: relative;
                    transition: transform 0.3s ease;
                }

                .feature-item:hover {
                    transform: translateY(-5px);
                }

                .feature-number {
                    font-family: 'Noto Serif JP', serif;
                    font-size: 3rem;
                    color: var(--accent-color); /* 薄いベージュ */
                    font-weight: 700;
                    line-height: 1;
                    margin-bottom: 15px;
                    opacity: 0.6;
                }

                .feature-item h3 {
                    color: var(--primary-color);
                    font-size: 1.25rem;
                    margin-bottom: 15px;
                    position: relative;
                    padding-bottom: 15px;
                }

                .feature-item h3::after {
                    content: "";
                    position: absolute;
                    bottom: 0;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 30px;
                    height: 1px;
                    background-color: var(--primary-color);
                }

                .feature-item p {
                    font-size: 0.95rem;
                    color: #555;
                    line-height: 1.7;
                }

                /* スマホ用調整 */
                @media (max-width: 768px) {
                    .features-section {
                        padding: 60px 5%;
                    }
                }

                /* 予約アクションボタンのスタイル */
                .reservation-links {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 10px;
                    margin-top: 15px;
                }

                .res-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    padding: 10px 18px;
                    border-radius: 50px;
                    text-decoration: none;
                    font-size: 0.85rem;
                    font-weight: bold;
                    transition: all 0.3s ease;
                    border: 1px solid #ddd;
                }

                /* 電話ボタン：テーマカラー */
                .res-btn.tel {
                    background-color: var(--primary-color);
                    color: var(--white);
                    border-color: var(--primary-color);
                }

                /* Web予約ボタン：落ち着いた色 */
                .res-btn.web {
                    background-color: var(--white);
                    color: var(--text-color);
                }

                /* ホットペッパー：少し華やかな色 */
                .res-btn.hpb {
                    background-color: #f3f3f3;
                    color: #cc3366; /* ホットペッパーに近いピンク系 */
                    border-color: #cc3366;
                }

                .res-btn:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                    opacity: 0.9;
                }

                /* スマホ用：画面が狭いときはボタンを広げる */
                @media (max-width: 480px) {
                    .reservation-links {
                        flex-direction: ;
                    }
                    .res-btn {
                        justify-content: center;
                        width: 100%;
                    }
                }
               /* 「もっと詳しく」ボタンのデザイン */
                    /* 右寄せ用ラッパー */
                    .more-link-wrapper {
                    display: flex !important;
                    justify-content: flex-end !important; /* 右端に寄せる */
                    width: 100% !important;
                    margin-top: 20px;
                }

                .btn-more {
                    /* inline-block にすることで text-align: right が効くようになります */
                    display: inline-block !important; 
                    padding: 8px 24px;
                    border: 1px solid var(--primary-color);
                    color: var(--primary-color);
                    text-decoration: none;
                    border-radius: 50px;
                    font-size: 0.85rem;
                    transition: all 0.3s ease;
                    /* もし右端にピッタリすぎて気になるなら少し余白を */
                    margin-right: 10px; 
                }

                    .btn-more:hover {
                        background-color: var(--primary-color);
                        color: #fff;
                    }

                    /* スマホで横に切れないための保険 */
                    .content-wrapper {
                        box-sizing: border-box;
                        overflow-x: hidden;
                    }   


/*aboutのcss*/
 /* トップページと共通の変数・基本設定 */
        :root {
            --primary-color: #db7093; /* 温かみのあるテラコッタ */
            --bg-color: #fdfaf5;      /* 優しいアイボリー背景 */
            --text-color: #333333;
            --white: #ffffff;
            --accent-color: #e8d5c8;  /* 柔らかなベージュ */
            --pc-header: 80px;
            --sp-header: 70px;
                }

        html {
            scroll-behavior: smooth;
        }

        
        body {
            margin: 0;
            padding: 0;
            font-family: 'Noto Sans JP', sans-serif;
            color: var(--text-color);
            background-color: var(--bg-color);
            line-height: 1.8;
        }

        h1, h2, h3 { font-family: 'Noto Serif JP', serif; }

        

        /* --- 会社概要コンテンツ --- */
        .company-container {
            max-width: 900px;
            margin: 60px auto;
            padding: 0 5%;
        }

        .page-title {
            text-align: center;
            margin-bottom: 60px;/* ヘッダー */
        }
            header { 
                display: flex;
                align-items: center;
                padding: 15px 5%;
                background: #ffffff;
                backdrop-filter: blur(5px);
                position: sticky;
                top: 0;
                box-sizing: border-box;
                z-index: 1000;
                box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            }

        .logo-container {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s;
            /* 右側の余白を自動（最大）にする */
            margin-right: auto;
            
        }

        .logo-container:hover {
            opacity: 0.8;
        }

        .logo-image {
            height: 50px; /* ロゴの高さ調整 */
            width: auto;
           
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-color);
            letter-spacing: 0.1em;
            font-family: 'Noto Serif JP', serif;
        }

        nav ul {
            display: flex;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        nav ul li {
            margin-left: 25px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--text-color);
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--primary-color);
        }
        

                
        section {
            padding: 30px 5%;
        }

        .section-title {
            text-align: center;
            margin-bottom: 30px;
        }

        .page-title span {
            display: block;
            color: var(--primary-color);
            font-family: 'Noto Serif JP', serif;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            margin-bottom: 10px;
            text-transform: uppercase;
        

       
            display: block;
            color: var(--primary-color);
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .page-title h1 {
            font-size: 2.2rem;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .page-title h1::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--primary-color);
        }

        .company-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.03);
            margin-bottom: 50px;
        }

        .company-table th, .company-table td {
            padding: 25px 30px;
            border-bottom: 1px solid #f0f0f0;
        }

        .company-table th {
            width: 30%;
            background-color: #faf7f2;
            text-align: left;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 0.95rem;
        }

        /* --- 代表挨拶 --- */
        .greeting-section {
            background: var(--white);
            padding: 50px;
            border-radius: 30px;
            border: 1px dashed var(--primary-color);
        }

        .greeting-section h2 {
            color: var(--primary-color);
            text-align: center;
            margin-bottom: 30px;
        }

        .greeting-content {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .greeting-image {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            object-fit: cover;
            background-color: #eee;
        }

        /* --- フッター（トップページと共通） --- */
        footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 80px 5% 30px;
            text-align: center;
            margin-top: px;
        }

        .footer-logo {
            font-family: 'Noto Serif JP', serif;
            font-size: 1.0rem;
            color: #ffffff;
            margin-bottom: 30px;
            display: block;
            letter-spacing: 0.15em;
        }

        .footer-links {
            margin-bottom: 40px;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.3s;
        }

        .footer-links a:hover { color: var(--primary-color); }

        .footer-sns {
            margin-bottom: 50px;
            display: flex;
            justify-content: center;
            gap: 25px;
        }

        .sns-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: #ffffff;
            text-decoration: none;
            transition: transform 0.3s, background-color 0.3s;
        }
 
        
        .sns-icon:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }

        .copyright {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.4);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            letter-spacing: 0.05em;
        }

        /* --- ハンバーガーボタンのスタイル (デフォルトは非表示) --- */
            .hamburger {
                display: none;
                flex-direction: column;
                justify-content: space-between;
                width: 30px;
                height: 22px;
                cursor: pointer;
                z-index: 1100;
            }

            .hamburger span {
                width: 100%;
                height: 2px;
                background-color: var(--primary-color);
                transition: all 0.3s;
            }

        /* レスポンシブ (768px以下) */
            @media (max-width: 768px) {
                header {
                    padding: 15px 5%;
                    flex-direction: row; /* 横並びに戻す */
                }

                .hamburger {
                    display: flex; /* スマホ時のみ表示 */
                }

         /* メニューを画面外に隠す */
                nav {
                    position: fixed;
                    top: 0;
                    right: -100%; /* 右側に隠す */
                    width: 70%;
                    height: 100vh;
                    background: var(--white);
                    padding-top: 80px;
                    transition: 0.4s;
                    z-index: 1050;
                    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                }

                nav.active {
                    right: 0; /* 画面内に表示 */
                }

                nav ul {
                    flex-direction: column;
                    align-items: center;
                }

                nav ul li {
                    margin: 20px 0;
                }

        /* メニュー展開時の背景暗転 */
                .overlay {
                    display: none;
                    position: fixed;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(0,0,0,0.5);
                    z-index: 1000;
                }

                .overlay.active {
                    display: block;
                }

        /* ボタンが×印になるアニメーション */
                .hamburger.active span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
                .hamburger.active span:nth-child(2) { opacity: 0; }
                .hamburger.active span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }
        }

/* about_therapy */
 /* 詳細ページ専用の追加スタイル */
        .page-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 5%;
            text-align: center;
        }
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 5%;
        }
        .therapy-intro {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }
        .therapy-intro img {
            flex: 1;
            width: 100%;
            border-radius: 15px;
        }
        .therapy-intro-text {
            flex: 1.2;
        }
        .detail-block {
            margin-bottom: 50px;
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
        }
        .detail-block h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .back-home {
            text-align: center;
            margin-top: 40px;
        }
        /* スマホ対応 */
        @media (max-width: 768px) {
            .therapy-intro {
                flex-direction: column;
            }
        }

        .page-header {
            /* 背景色の指定（メインカラー） */
            background-color: var(--primary-color);
            /* もし雰囲気のある画像があれば、以下を有効にしてください */
            /* background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('画像のURL'); */
            background-size: cover;
            background-position: center;
            
            color: #ffffff; /* 文字は白 */
            padding: 100px 5% 80px; /* 上下にゆとりを持たせる */
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* スマホ用の調整 */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 5% 50px;
            }
            .page-header h1 {
                font-size: 1.5rem;
            }
        }

            .menu-note {
                text-align: center;
                margin-top: 40px;
                font-size: 0.85rem;
                color: #888;
            }

    /* テーブルのスタイル */
        .price-table-section {
            margin: 40px 0 20px;
        }

        .table-container {
            width: 100%;
            overflow-x: auto; /* スマホで横スクロール可能に */
            -webkit-overflow-scrolling: touch;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--white);
            min-width: 600px; /* 折り返しを防ぐための最小幅 */
        }

        .custom-table th {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px;
            font-weight: 600;
            text-align: left;
            font-size: 0.95rem;
        }

        .custom-table td {
            padding: 15px;
            border-bottom: 1px solid var(--accent-color);
            color: var(--text-color);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* 縞模様にして視認性を高める */
        .custom-table tbody tr:nth-child(even) {
            background-color: #fef9f6;
        }

        /* ホバー時に少し色を変える */
        .custom-table tbody tr:hover {
            background-color: #f9ece4;
            transition: background-color 0.3s;
        }

        /* 最初の列（コース名）を強調 */
        .custom-table td:first-child {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* ギャラリーセクション */
        .gallery-section {
            padding: 50px 20px;
            background-color: #fcfaf5;
        }

        .gallery-grid {
            max-width: 1000px; /* 横3枚に合わせて少し幅を絞ると綺麗に見えます */
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* PC時は横3列 */
            gap: 30px; /* 余白を少し広めにしてゆとりを出す */
        }

        .gallery-item {
            text-align: center;
        }

        .gallery-image-container {
            position: relative;
            width: 100%;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.08);
            background-color: #eee;
        }

        .gallery-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        /* キャプションオーバーレイ */
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(139, 105, 50, 0.85); 
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay-text {
            color: #fff;
            font-size: 0.9rem;
            line-height: 1.6;
            margin: 0;
            font-family: 'Noto Sans JP', sans-serif;
            transform: translateY(15px);
            transition: transform 0.3s ease;
        }

        /* ホバーアクション */
        .gallery-image-container:hover img {
            transform: scale(1.1);
        }

        .gallery-image-container:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-image-container:hover .overlay-text {
            transform: translateY(0);
        }

        /* 画像下のラベル */
        .gallery-label {
            margin-top: 15px;
            font-family: 'Noto Serif JP', serif;
            font-weight: bold;
            color: #333;
            font-size: 1rem;
        }

        /* --- レスポンシブ対応 --- */

        /* タブレット・小さめのPC（1024px以下） */
        @media (max-width: 1024px) {
            .gallery-grid {
                gap: 20px;
            }
        }

        /* スマートフォン（768px以下） */
        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr); /* スマホ・タブレットは横2列 */
                gap: 15px;
            }
            .gallery-label {
                font-size: 0.9rem;
            }
        }

        /* 小さなスマートフォン（480px以下） */
        @media (max-width: 480px) {
            /* 1列にしたい場合はここを 1fr に変更してください。
            現状は2列で見やすさを維持しています。 */
            .overlay-text {
                font-size: 0.8rem;
            }
        }


/* about_therapy */
  
        
         /* 基本設定 */
        :root {
            --primary-color: #db7093; /* 温かみのあるテラコッタ */
            --bg-color: #fdfaf5;      /* 優しいアイボリー背景 */
            --text-color: #333333;
            --white: #ffffff;
            --accent-color: #e8d5c8;  /* 柔らかなベージュ */
            --pc-header: 80px;
            --sp-header: 70px;
                }
                
        /* 詳細ページ専用の追加スタイル */
        .page-header {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 5%;
            text-align: center;
        }
        .content-wrapper {
            max-width: 900px;
            margin: 0 auto;
            padding: 60px 5%;
        }
        .therapy-intro {
            display: flex;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }
        .therapy-intro img {
            flex: 1;
            width: 100%;
            border-radius: 15px;
        }
        .therapy-intro-text {
            flex: 1.2;
        }
        .detail-block {
            margin-bottom: 50px;
            border-left: 4px solid var(--primary-color);
            padding-left: 20px;
        }
        .detail-block h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .back-home {
            text-align: center;
            margin-top: 40px;
        }
        /* スマホ対応 */
        @media (max-width: 768px) {
            .therapy-intro {
                flex-direction: column;
            }
        }

        .page-header {
            /* 背景色の指定（メインカラー） */
            background-color: var(--primary-color);
            /* もし雰囲気のある画像があれば、以下を有効にしてください */
            /* background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('画像のURL'); */
            background-size: cover;
            background-position: center;
            
            color: #ffffff; /* 文字は白 */
            padding: 100px 5% 80px; /* 上下にゆとりを持たせる */
            text-align: center;
            width: 100%;
            box-sizing: border-box;
        }

        .page-header h1 {
            font-size: 2rem;
            margin-bottom: 10px;
            font-weight: 700;
            letter-spacing: 0.05em;
        }

        .page-header p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* スマホ用の調整 */
        @media (max-width: 768px) {
            .page-header {
                padding: 60px 5% 50px;
            }
            .page-header h1 {
                font-size: 1.5rem;
            }
        }

            .menu-note {
                text-align: center;
                margin-top: 40px;
                font-size: 0.85rem;
                color: #888;
            }

    /* テーブルのスタイル */
        .price-table-section {
            margin: 40px 0 20px;
        }

        .table-container {
            width: 100%;
            overflow-x: auto; /* スマホで横スクロール可能に */
            -webkit-overflow-scrolling: touch;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .custom-table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--white);
            min-width: 600px; /* 折り返しを防ぐための最小幅 */
        }

        .custom-table th {
            background-color: var(--primary-color);
            color: var(--white);
            padding: 15px;
            font-weight: 600;
            text-align: left;
            font-size: 0.95rem;
        }

        .custom-table td {
            padding: 15px;
            border-bottom: 1px solid var(--accent-color);
            color: var(--text-color);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* 縞模様にして視認性を高める */
        .custom-table tbody tr:nth-child(even) {
            background-color: #fef9f6;
        }

        /* ホバー時に少し色を変える */
        .custom-table tbody tr:hover {
            background-color: #f9ece4;
            transition: background-color 0.3s;
        }

        /* 最初の列（コース名）を強調 */
        .custom-table td:first-child {
            font-weight: bold;
            color: var(--primary-color);
        }

        /* --- News Detail Page --- */
        .news-detail-container {
            max-width: 800px;
            margin: 90px auto 80px; /* ヘッダー分を空ける */
            padding: 0 20px;
            line-height: 1.8;
            color: #333;
        }

        .news-detail-header {
            border-bottom: 1px solid #e0e0e0;
            padding-bottom: 30px;
            margin-bottom: 40px;
        }

        .news-meta {
            display: flex;
            gap: 15px;
            align-items: center;
            margin-bottom: 15px;
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 0.9rem;
        }

        .news-detail-title {
            font-family: 'Noto Serif JP', serif;
            font-size: 1.8rem;
            color: #2c3e50;
            line-height: 1.4;
        }

        .news-detail-content {
            font-family: 'Noto Sans JP', sans-serif;
            font-size: 1.05rem;
        }

        .news-detail-content p {
            margin-bottom: 25px;
        }

        .news-detail-content h3 {
            font-family: 'Noto Serif JP', serif;
            border-left: 4px solid #c0a47b; /* 落ち着いたゴールド/ベージュ系 */
            padding-left: 15px;
            margin: 40px 0 20px;
            font-size: 1.4rem;
        }

        .news-detail-content ul {
            margin-bottom: 30px;
            padding-left: 20px;
        }

        .news-detail-content li {
            margin-bottom: 10px;
        }

        .detail-image {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0 40px;
        }

        .news-detail-footer {
            margin-top: 60px;
            text-align: center;
            border-top: 1px solid #e0e0e0;
            padding-top: 40px;
        }

        .btn-back {
            display: inline-block;
            padding: 12px 40px;
            background-color: #f8f9fa;+
            color: #333;
            text-decoration: none;
            border: 1px solid #ccc;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-back:hover {
            background-color: #333;
            color: #fff;
        }

        /* スマホ対応 */
        @media (max-width: 768px) {
            .news-detail-container {
                margin-top: 50px;
            }
            .news-detail-title {
                font-size: 1.4rem;
            }
        }

        /* --- 下層ページ共通設定 --- */
            .container {
                max-width: 900px;
                margin: 0 auto;
                padding: 0 20px;
            }

            /* ページヘッダー（ヒーローエリア） */
            .page-header {
                background-color: #f9f6f2; /* 薄いベージュ */
                padding: 50px 0 60px;
                text-align: center;
            }

            .page-header-inner span {
                display: block;
                font-family: 'Noto Serif JP', serif;
                color: #c0a47b;
                letter-spacing: 0.2em;
                text-transform: uppercase;
                font-size: 0.9rem;
                margin-bottom: 10px;
            }

            .page-header-inner h1 {
                font-family: 'Noto Serif JP', serif;
                font-size: 2.2rem;
                color: #2c3e50;
                position: relative;
                display: inline-block;
                padding-bottom: 15px;
            }

            .page-header-inner h1::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translateX(-50%);
                width: 40px;
                height: 1px;
                background-color: #c0a47b;
            }

            /* 記事本文レイアウト */
            .concept-detail {
                padding: 20px 0;
            }

            .detail-section {
                margin-bottom: 20px;
            }

            .detail-sub-title {
                font-family: 'Noto Serif JP', serif;
                font-size: 1.6rem;
                color: #333;
                margin-bottom: 30px;
                display: flex;
                align-items: center;
            }

            .detail-sub-title span {
                font-family: 'Noto Sans JP', sans-serif;
                font-size: 1rem;
                color: #c0a47b;
                border: 1px solid #c0a47b;
                width: 35px;
                height: 35px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                margin-right: 15px;
                flex-shrink: 0;
            }

            .detail-content p {
                font-family: 'Noto Sans JP', sans-serif;
                line-height: 2;
                margin-bottom: 25px;
                color: #444;
            }

        
           /* 親要素のFlexboxを解除し、回り込みの崩れを防ぐ設定を追加 */
            .detail-flex {
                display: block; /* flexから変更 */
            }

            /* 回り込みを解除するための擬似要素（おまじない） */
            .detail-flex::after {
                content: "";
                display: block;
                clear: both;
            }

            /* テキスト部分：flex指定を解除 */
            .detail-text {
                /* flex: 1; は不要なので削除または上書き */
                display: block; 
            }

            /* 画像部分：右寄せと回り込みの設定 */
            .detail-img {
                float: right;      /* 画像を右に寄せる */
                width: 40%;        /* 画像の幅をパーセントやpxで指定（重要） */
                margin-left: 30px; /* テキストとの間の余白 */
                margin-bottom: 15px; /* 下に回り込んだテキストとの余白 */
                padding: 0;        /* paddingがあると計算がズレやすいため0を推奨 */
            }

            /* 画像自体の装飾（既存のものを維持） */
            .detail-img img {
                width: 100%;
                height: auto;
                border-radius: 4px;
                box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            }

            /* ページ下部のアクションボタン */
            .page-footer-action {
                text-align: center;
                margin-top: 100px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .btn-outline {
                display: inline-block;
                padding: 12px 30px;
                color: #666;
                text-decoration: none;
                font-size: 0.9rem;
                transition: 0.3s;
            }

            .btn-outline:hover {
                color: #c0a47b;
            }

            /* スマホ対応 */
            @media (max-width: 768px) {
                .page-header {
                    padding: 100px 0 40px;
                }
                .page-header-inner h1 {
                    font-size: 1.6rem;
                }
                .detail-sub-title {
                    font-size: 1.3rem;
                }
                .detail-flex {
                    flex-direction: column;
                }
                .detail-img {
                    order: -1; /* 画像を先に表示 */
                    margin-bottom: 20px;
                }
            }

            /* --- PC・タブレット共通（さきほどの回り込み設定） --- */
                .detail-flex {
                    display: block;
                }
                .detail-flex::after {
                    content: "";
                    display: block;
                    clear: both;
                }
                .detail-img {
                    float: right;
                    width: 40%;         /* PCでの画像の大きさ */
                    margin-left: 30px;
                    margin-bottom: 15px;
                }
                .detail-img img {
                    width: 100%;
                    height: auto;
                    border-radius: 4px;
                    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
                }

                /* --- スマホ用の設定（画面幅767px以下） --- */
                @media screen and (max-width: 767px) {
                    .detail-img {
                        float: none;      /* 回り込みを解除 */
                        width: 100%;      /* 横幅いっぱい（またはお好みで90%など） */
                        margin-left: 0;   /* 横の余白を消す */
                        margin-bottom: 20px; /* 下のテキストとの余白を確保 */
                        padding: 0;
                        text-align: center; /* 中の画像を中央寄せに */
                    }

                    .detail-img img {
                        width: 100%;      /* 画像を大きく表示 */
                        max-width: 400px; /* 大きくなりすぎないよう上限を決める（任意） */
                        display: inline-block;
                    }
                    
                    .detail-text {
                        display: block;
                        width: 100%;
                    }

                    /* アクセスセクションのボタン調整 */
                    .access-more {
                        margin-top: 20px;   /* 地図との間の余白 */
                        text-align: center; /* ボタンを中央寄せ */
                    }

                    /* スマホ閲覧時など、地図と情報の並びを調整する場合の考慮 */
                    @media (max-width: 768px) {
                        .access-more {
                            margin-bottom: 30px; /* スマホ時に下のテーブル情報と重なりすぎないよう調整 */
                        }
                    }

                    
                    
                    /* アクセスセクションのボタン専用設定 */
                    .access-more {
                        display: block !important;
                        text-align: center !important; /* 中央に配置 */
                        margin: 30px 0 !important;    /* 上下にしっかり余白を作る */
                        width: 100% !important;
                    }

                    .access-more .btn-more {
                        /* 既存の枠線デザインに背景色を追加して目立たせる */
                        background-color: var(--primary-color) !important; 
                        color: #ffffff !important; /* 文字を白抜きに */
                        border: 1px solid var(--primary-color);
                        padding: 12px 32px !important; /* 少し大きくする */
                        font-weight: bold;
                        margin-right: 0; /* 右余白をリセット */
                    }

                    .access-more .btn-more:hover {
                        background-color: transparent !important;
                        color: var(--primary-color) !important;
                    }
                    
                }

                  
                    