        /* ベーススタイル */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            font-family: "Yu Gothic", YuGothic, "Helvetica Neue", Arial, sans-serif;
            background-color: #FBF9F5;
            color: #4a4a4a;
            line-height: 1.6;
        }

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

        /* ------------------------
           ヘッダーエリア
        ------------------------ */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 4rem;
            background-color: #FBF9F5;
            width: 100%;
            height: 80px;
            /* メニューが開いたときに前面に来るように設定 */
            position: relative;
            z-index: 100;
        }

        .logo {
            font-size: 28px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.1em;
            color: #4a4a4a;
            position: relative;
            z-index: 100; /* ロゴもメニューより前に */
        }

        /* PC用ナビゲーション（ラッパー） */
        .pc-nav-wrapper {
            display: flex;
            align-items: center;
            gap: 40px;
        }

        .nav-list {
            display: flex;
            list-style: none;
            gap: 30px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
        }

        .nav-item a {
            font-size: 14px;
            color: #555;
            letter-spacing: 0.05em;
            transition: color 0.3s;
        }
        
        .nav-item a:hover {
            color: #FF847C;
        }

        .btn-contact {
            display: inline-block;
            background-color: #FF847C;
            color: #fff;
            padding: 12px 30px;
            font-size: 14px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            transition: opacity 0.3s;
        }
        
        .btn-contact:hover {
            opacity: 0.8;
        }

        /* ------------------------
           ハンバーガーメニューボタン
        ------------------------ */
        .hamburger-btn {
            display: none; /* PCでは非表示 */
            position: relative;
            width: 30px;
            height: 24px;
            cursor: pointer;
            z-index: 101; /* メニューよりさらに前面 */
            background: none;
            border: none;
        }

        .hamburger-btn span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #4a4a4a;
            transition: all 0.3s;
        }

        .hamburger-btn span:nth-of-type(1) { top: 0; }
        .hamburger-btn span:nth-of-type(2) { top: 50%; transform: translateY(-50%); }
        .hamburger-btn span:nth-of-type(3) { bottom: 0; }

        /* ハンバーガーのアクティブ時（×印になる） */
        .hamburger-btn.active span:nth-of-type(1) {
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
        }
        .hamburger-btn.active span:nth-of-type(2) {
            opacity: 0;
        }
        .hamburger-btn.active span:nth-of-type(3) {
            bottom: 50%;
            transform: translateY(50%) rotate(-45deg);
        }

        /* ------------------------
           スマホ用全画面メニュー
        ------------------------ */
        .sp-menu-overlay {
            display: none; /* デフォルト非表示（CSS制御用） */
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #ffffff; /* 白背景 */
            z-index: 99;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
        }

        .sp-menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .sp-nav-list {
            list-style: none;
            text-align: center;
            margin-bottom: 40px;
        }

        .sp-nav-item {
            margin-bottom: 24px;
        }

        .sp-nav-item a {
            font-size: 18px;
            font-weight: bold;
            color: #4a4a4a;
            letter-spacing: 0.05em;
        }

        /* ------------------------
           メインビジュアル
        ------------------------ */
        .mv-section {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px);
            min-height: 500px;
            overflow: hidden;
            padding: 0 4em;
        }

        .mv-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .mv-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            width: 100%;
            padding: 0 20px;
        }

        .mv-title {
            font-size: 42px;
            font-weight: normal;
            letter-spacing: 0.15em;
            line-height: 1.5;
            color: #4a4a4a;
            white-space: nowrap;
        }

        /* ------------------------
           レスポンシブ (768px以下で切り替え)
        ------------------------ */
        @media (max-width: 768px) {
            .header {
                padding: 0 20px;
                height: 60px;
            }

            /* PCメニューを消す */
            .pc-nav-wrapper {
                display: none;
            }

            /* ハンバーガーボタンを表示 */
            .hamburger-btn {
                display: block;
            }

            /* スマホメニューのdisplayを有効化（開閉はopacityで制御） */
            .sp-menu-overlay {
                display: flex; 
            }

            .mv-section {
                height: calc(100vh - 60px);
                padding: 0 20px;
            }

            .mv-title {
                font-size: 20px;
                white-space: normal;
            }
        }
        /* ------------------------
           共通クラス（インナー幅制限）
        ------------------------ */
        .inner {
            max-width: 1024px; /* コンテンツ幅 */
            margin: 0 auto;
            padding: 0 40px;
        }

        /* ------------------------
           Concept セクション
        ------------------------ */
        .concept-section {
            padding: 100px 0;
            background-color: #FBF9F5;
        }

        /* PCレイアウト：左右横並び */
        .concept-flex {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        /* 左側（タイトル）の幅 */
        .concept-left {
            width: 35%;
        }

        /* 右側（コンテンツ）の幅 */
        .concept-right {
            width: 60%;
        }

        /* タイトルデザイン */
        .section-title {
            font-size: 48px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #4a4a4a;
        }

        /* サブタイトル（青い丸付き） */
        .section-subtitle {
            font-size: 16px;
            color: #777;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .section-subtitle::before {
            content: "";
            display: block;
            width: 12px;
            height: 12px;
            background-color: #A3D6EA; /* 画像の水色 */
            border-radius: 50%;
        }

        /* 本文 */
        .concept-text {
            font-size: 15px;
            line-height: 2;
            margin-bottom: 60px;
            text-align: justify;
        }

        /* ------------------------
           図解（2つの円）
        ------------------------ */
        .concept-diagram {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            padding: 20px 0;
        }

        .diagram-circle {
            width: 240px;
            height: 240px;
            border: 1px solid #707070;
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: transparent;
            position: relative;
            /* z-indexの指定は不要になるので削除してもOKですが、念のため残しています */
        }

        /* ★修正ポイント：ネガティブマージンをやめ、間隔を空ける */
        .circle-liverty {
            margin-right: -12px;
        }
        .circle-active {
            margin-left: -12px;
        }

        /* ボックス（Liverty/Active） */
        .diagram-box {
            padding: 8px 30px;
            color: #fff;
            font-size: 24px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.05em;
            margin-bottom: 10px;
            min-width: 160px;
            text-align: center;
        }

        .box-liverty {
            /* 水色〜緑のグラデーション */
            background: linear-gradient(90deg, #c0e8e8 0%, #c0ebd3 100%);
        }

        .box-active {
            /* オレンジのグラデーション */
            background: linear-gradient(90deg, #ffb397 0%, #ffd997 100%);
        }

        /* 日本語ラベル（自由/積極的） */
        .diagram-label {
            font-size: 16px;
            color: #777;
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .inner {
                padding: 0 20px;
            }

            .concept-section {
                padding: 60px 0;
            }

            .concept-flex {
                flex-direction: column; /* 縦積みに変更 */
            }

            .concept-left, .concept-right {
                width: 100%;
            }

            .concept-left {
                margin-bottom: 40px;
            }

            .section-title {
                font-size: 36px;
            }
            
            /* スマホで円がはみ出さないように調整 */
            .diagram-circle {
                width: 160px;
                height: 160px;
            }
            
            /* ★修正ポイント：スマホ用の間隔も調整 */
            .circle-liverty {
                margin-right: -10px; /* スマホは少し狭めに */
            }
            .circle-active {
                margin-left: -10px;
            }

            .diagram-box {
                font-size: 16px;
                padding: 5px 15px;
                min-width: 100px;
            }
            
            .diagram-label {
                font-size: 13px;
            }
        }
        /* ------------------------
           Service セクション
        ------------------------ */
        .service-section {
            padding: 100px 0;
        }

        .service-wrapper {
            position: relative;
            width: 100%;
            max-width: 1024px;
            margin: 0 auto;
        }

        /* 画像エリア（高さ固定） */
        .service-img-area {
            width: 100%;
            height: 600px; /* デザインに合わせて調整してください */
        }

        .service-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            vertical-align: bottom;
        }

        /* コンテンツボックス（白背景） */
        .service-content-box {
            position: absolute;
            
            /* ★位置変更：右下揃え */
            bottom: 0;
            right: 0;
            /* 以前の top/transform 指定は削除（初期値に戻す） */
            top: auto;
            transform: none;

            width: 54%;
            min-width: 400px;
            background-color: #FBF9F5;
            padding: 60px 50px;
            z-index: 2;
        }

        /* タイトルなどのスタイル（変更なし） */
        .service-title {
            font-size: 42px;
            letter-spacing: 0.1em;
            color: #4a4a4a;
            margin-bottom: 15px;
            line-height: 1.2;
            font-family: Poppins, sans-serif;
            font-weight: 300;
        }

        .service-subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .service-subtitle::before {
            content: "★";
            color: #FFB086;
            font-size: 12px;
        }

        .service-desc {
            font-size: 15px;
            line-height: 2;
            margin-bottom: 40px;
            color: #4a4a4a;
        }

        .btn-more {
            display: flex; /* inline-flex から flex に変更して中央寄せしやすく */
            justify-content: center; /* ★中身（文字＋矢印）を中央に寄せる */
            align-items: center;
            gap: 20px; /* ★文字と矢印の間隔 */
            
            width: 240px; /* デザインに合わせて少し幅広に調整 */
            height: 60px; /* 高さも少し余裕を持たせる */
            margin-top: 20px; /* 上の要素との余白 */
            
            border: 1px solid #707070;
            color: #4a4a4a;
            font-size: 14px;
            letter-spacing: 0.1em;
            background-color: #FBF9F5;
            transition: all 0.3s;
            cursor: pointer;
            text-decoration: none;
            
            /* もしボタン自体を右寄せや左寄せしたい場合は margin-left/right auto 等で調整 */
        }

        .btn-more:hover {
            background-color: #4a4a4a;
            border-color: #4a4a4a;
            color: #fff;
        }

        /* 矢印のデザイン調整 */
        .btn-more .arrow {
            font-family: serif; /* 矢印を少し細く見せるためフォント変更（任意） */
            transform: scaleX(1.5); /* 矢印を横に少し引き伸ばしてデザインに近づける */
            display: inline-block;
            transition: transform 0.3s;
        }

        .btn-more:hover .arrow {
            /* ホバー時に少し右に動くアニメーション */
            transform: scaleX(1.5) translateX(5px);
        }

        .service-divider {
            border: none;
            border-top: 1px solid #e0e0e0; /* 薄いグレー */
            margin: 80px auto; /* 上下の余白 */
            width: 100%;
            max-width: 1024px;
        }

        /* サブエリアのラッパー（幅制限あり） */
        .service-sub-wrapper {
            max-width: 1024px; /* コンテンツ幅 */
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* テキストエリア */
        .service-sub-text {
            width: 45%;
        }

        .sub-service-title {
            font-size: 24px;
            font-weight: normal;
            color: #4a4a4a;
            letter-spacing: 0.05em;
            margin-bottom: 24px;
            font-weight: 400;
        }

        .sub-service-desc {
            font-size: 14px;
            line-height: 1.8;
            color: #4a4a4a;
            margin-bottom: 40px;
        }

        /* PCのみ改行を有効にするクラス */
        .pc-only {
            display: inline;
        }

        /* 画像エリア */
        .service-sub-img {
            width: 45%;
        }

        .service-sub-img img {
            width: 100%;
            height: auto;
            vertical-align: bottom;
            /* 角を少し丸める場合（任意） */
            /* border-radius: 4px; */
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .service-section {
                padding: 60px 0;
            }

            .service-content-box {
                position: relative;
                bottom: auto;
                right: auto;
                
                width: 100%;
                min-width: auto;
                margin-top: 0;
                
                /* ★修正：ボックス自体は画面幅いっぱいだが、
                   中の文字には読みやすい余白(左右20px)をつける */
                padding: 40px 20px; 
                
                box-shadow: none;
                /* text-align: center; /* お好みで中央揃え or 左揃え */
            }
            
            /* 画像エリア */
            .service-img-area {
                width: 100%;
                height: 300px; /* スマホでの高さ */
            }

            /* その他ボタン調整など（変更なし） */
            .service-subtitle {
                justify-content: flex-start; /* 左揃えに戻すならflex-start */
            }
            .btn-more {
                width: 100%; /* スマホでは幅いっぱいにするか、固定幅のままか調整 */
                max-width: 300px; /* 幅広すぎないように制限 */
                margin: 20px auto 0; /* 中央配置 */
            }
            .service-title {
                font-size: 32px;
            }
            .service-divider {
                margin: 60px 0;
            }

            .service-sub-wrapper {
                flex-direction: column-reverse; /* 画像を上に、テキストを下に */
                /* もし画像通り「テキストが上」なら column のままでOK */
                flex-direction: column; 
                padding: 0 20px;
                gap: 40px; /* 要素間の余白 */
            }

            .service-sub-text, 
            .service-sub-img {
                width: 100%;
            }

            .sub-service-title {
                font-size: 20px;
                margin-bottom: 16px;
            }

            .pc-only {
                display: none; /* スマホでは改行しない */
            }
        }
        /* ------------------------
           Greeting セクション
        ------------------------ */
        .greeting-section {
            padding: 100px 0;
            /* 背景グラデーション：上部の薄いピンク(#FFEEE4)からベース色(#FBF9F5)へ */
            background: linear-gradient(135deg, #ffe4d7 0%, #fff1d7 100%);
            color: #4a4a4a;
        }

        .greeting-inner {
            max-width: 800px; /* テキストが広がりすぎないように制限 */
            margin: 0 auto;
            padding: 0 20px;
            text-align: center; /* 全体を中央揃え */
        }

        /* タイトル */
        .greeting-title {
            font-size: 48px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
        }

        /* 菱形の装飾アイコン */
        .greeting-divider {
            color: #FF847C; /* ボタンなどと同じサーモンピンク */
            font-size: 14px;
            margin-bottom: 10px;
        }

        /* サブタイトル */
        .greeting-subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 60px; /* 本文との余白 */
        }

        /* 本文エリア */
        .greeting-content p {
            font-size: 15px;
            line-height: 2.2; /* ゆったりした行間 */
            margin-bottom: 40px; /* 段落ごとの余白 */
        }

        .greeting-content p:last-child {
            margin-bottom: 0;
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .greeting-section {
                padding: 60px 0;
            }

            .greeting-title {
                font-size: 32px;
            }

            .greeting-content p {
                font-size: 14px;
                line-height: 2;
                margin-bottom: 30px;
                text-align: justify; /* スマホでは左揃え(均等割付)の方が読みやすい場合あり */
                /* text-align: center; /* 画像通りセンター維持ならこちら */
            }
            
            /* br.pc-only は Serviceセクションで定義済みであれば不要ですが、
               もし未定義なら以下を追加してください */
            /*
            .pc-only {
                display: none;
            }
            */
        }

        /* ------------------------
           Company セクション
        ------------------------ */
        .company-section {
            padding: 100px 0;
            background-color: #FBF9F5; /* ベース背景色 */
        }

        .company-inner {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .company-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }

        /* 左側：タイトル */
        .company-left {
            width: 30%; /* 左側の幅 */
        }

        .company-title {
            font-size: 48px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.1em;
            color: #4a4a4a;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .company-subtitle {
            font-size: 14px;
            color: #777;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* 緑色の三角形アイコン */
        .company-subtitle::before {
            content: "";
            display: inline-block;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 6px 8px 6px 0; /* 左向きの三角形を作成 */
            border-color: transparent #A8D08D transparent transparent; /* 右の色だけ表示＝左向き三角 */
            /* 画像通り「左向き」にするなら上記ですが、
               もし「右向き(▶)」の装飾意図であれば以下にしてください
               border-width: 6px 0 6px 8px;
               border-color: transparent transparent transparent #A8D08D;
            */
        }

        /* 右側：リスト */
        .company-right {
            width: 60%; /* 右側の幅 */
        }

        .company-list {
            width: 100%;
            border-top: 1px solid #ddd; /* 一番上の線 */
        }

        .company-row {
            display: flex;
            padding: 24px 0;
            border-bottom: 1px solid #ddd; /* 各行の下線 */
            font-size: 15px;
            line-height: 1.8;
        }

        .company-row dt {
            width: 150px; /* 項目名の幅固定 */
            font-weight: normal;
            color: #777;
            flex-shrink: 0; /* 幅を縮めさせない */
        }

        .company-row dd {
            width: 100%;
            color: #4a4a4a;
        }

        /* MAPリンク */
        .company-map-link {
            display: inline-block;
            margin-top: 5px;
            font-size: 12px;
            color: #4a4a4a;
            text-decoration: underline;
        }
        .company-map-link:hover {
            color: #A8D08D;
            text-decoration: none;
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .company-inner {
                padding: 0 20px;
            }

            .company-wrapper {
                flex-direction: column; /* 縦積みに変更 */
            }

            .company-left {
                width: 100%;
                margin-bottom: 40px;
            }

            .company-title {
                font-size: 36px;
                margin-bottom: 10px;
            }

            .company-right {
                width: 100%;
            }

            /* スマホでのリスト表示調整 */
            .company-row {
                flex-direction: column; /* 項目と内容を縦並びに */
                padding: 20px 0;
                gap: 8px;
            }

            .company-row dt {
                width: 100%;
                font-weight: bold; /* スマホでは見出しっぽく太字に */
                color: #4a4a4a;
            }
        }

        /* ------------------------
           Works セクション
        ------------------------ */
        .works-section {
            padding: 100px 0;
            /* 背景：淡いミントグリーンのグラデーション */
            /* 画像から抽出した近似色 */
            background: linear-gradient(135deg, #EEFBF6 0%, #D6F5EC 100%);
        }

        .works-inner {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* グリッドレイアウト（PCは3列） */
        .works-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr); /* 1fr 1fr 1fr で3等分 */
            gap: 20px; /* カード間の隙間 */
            list-style: none;
        }

        /* カード本体 */
        .works-card {
            background-color: #fff;
            padding: 50px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            /* ふんわりとした影 */
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            /* 高さを揃えるため */
            height: 100%;
        }

        /* ラベル（掲載/出演） */
        .work-label {
            display: inline-block;
            padding: 6px 16px;
            color: #fff;
            font-size: 13px;
            margin-bottom: 24px;
            min-width: 60px;
        }

        .label-red {
            background-color: #FF847C; /* サーモンピンク */
        }

        .label-blue {
            background-color: #92CDDB; /* 水色 */
        }

        /* 実績名 */
        .work-name {
            font-size: 15px;
            line-height: 1.6;
            color: #4a4a4a;
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .works-grid {
                /* スマホは1列に */
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .works-card {
                padding: 40px 20px;
            }
        }

        /* ------------------------
           Contact セクション
        ------------------------ */
        .contact-section {
            padding: 100px 0;
            background-color: #F9F7EE; /* ベース色 */
        }

        .contact-inner {
            max-width: 800px; /* フォームの幅を制限 */
            margin: 0 auto;
            padding: 0 20px;
        }

        /* タイトル */
        .contact-title {
            font-size: 48px;
            font-family: Poppins, sans-serif;
            font-weight: 300;
            letter-spacing: 0.1em;
            color: #4a4a4a;
            margin-bottom: 10px;
            line-height: 1.2;
        }

        /* サブタイトル（赤い四角アイコン付き） */
        .contact-subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 60px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-subtitle::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            background-color: #FF847C; /* サーモンピンク */
        }

        /* フォーム周り */
        .contact-form {
            width: 100%;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-label {
            display: block;
            font-size: 14px;
            color: #777;
            margin-bottom: 10px;
        }

        /* 必須バッジ */
        .required-badge {
            display: inline-block;
            margin-left: 10px;
            font-size: 12px;
            color: #FF847C;
            border: 1px solid #FF847C;
            padding: 2px 6px;
            vertical-align: middle;
            /* 角丸にする場合 */
            border-radius: 2px;
        }

        /* 入力フィールド */
        .form-input,
        .form-textarea {
            width: 100%;
            background-color: #fff;
            border: none; /* 枠線をなくす */
            padding: 15px;
            font-size: 16px;
            color: #4a4a4a;
            /* 少しだけ角を丸めるかはお好みで */
            /* border-radius: 4px; */
            box-shadow: 0 2px 5px rgba(0,0,0,0.02); /* うっすら影 */
        }

        .form-textarea {
            height: 200px;
            resize: vertical; /* 縦方向のみリサイズ許可 */
        }

        /* 入力時のフォーカススタイル */
        .form-input:focus,
        .form-textarea:focus {
            outline: 2px solid #ddd;
        }

        /* 送信ボタンエリア */
        .form-submit-wrapper {
            margin-top: 60px;
            display: flex;
            justify-content: center;
        }

        /* 送信ボタン（スタイルは .btn-more をベースに作成） */
        .btn-submit {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            
            width: 300px;
            height: 60px;
            
            border: 1px solid #707070;
            background-color: transparent; /* 背景透明 */
            color: #4a4a4a;
            font-size: 14px;
            letter-spacing: 0.1em;
            
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background-color: #4a4a4a;
            color: #fff;
            border-color: #4a4a4a;
        }

        .btn-submit .arrow {
            font-family: serif;
            transform: scaleX(1.5);
            transition: transform 0.3s;
        }

        .btn-submit:hover .arrow {
            transform: scaleX(1.5) translateX(5px);
        }

        /* ------------------------
           フッター
        ------------------------ */
        .footer {
            background-color: #fff; /* 白背景 */
            padding: 30px 0;
        }

        .footer-inner {
            width: 100%;       /* ★幅を100%に */
            max-width: none;   /* ★幅制限を解除 */
            margin: 0;         /* 中央寄せのマージンも不要 */
            padding: 0 40px;   /* 左右の余白は維持 */
            
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .copyright {
            font-size: 12px;
            color: #777;
        }

        .privacy-link {
            font-size: 12px;
            color: #777;
            text-decoration: none;
            font-family: Poppins, sans-serif;
            font-weight: 300;
        }

        .privacy-link:hover {
            text-decoration: underline;
        }

        /* ------------------------
           レスポンシブ (768px以下)
        ------------------------ */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }
            
            .contact-title {
                font-size: 36px;
            }

            .form-input, 
            .form-textarea {
                padding: 12px;
                font-size: 14px;
            }
            
            .btn-submit {
                width: 100%;
                max-width: 300px;
            }

            /* フッターのスマホ対応 */
            .footer-inner {
                flex-direction: column-reverse; /* プライバシーポリシーを上に、コピーライトを下に */
                gap: 20px;
                padding: 0 20px;
            }
        }


        /* 入力欄の見た目を模したテキスト表示エリア */
.form-confirm-text {
    width: 100%;
    padding: 15px;          /* 入力欄と同じ余白 */
    font-size: 16px;
    color: #4a4a4a;
    border-radius: 4px;     /* 少し角丸（お好みで） */
    
    /* 入力欄のような強い影ではなく、フラットに見せる場合 */
    /* border: 1px solid #eee; */
    
    /* 長文の折り返し対応 */
    word-break: break-all; 
    white-space: pre-wrap; /* 改行を反映 */
}

/* ボタンエリアの調整（入力画面と合わせる） */
.confirm-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px; /* 戻るボタンと送信ボタンの間隔 */
}
.confirm-buttons {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* 共通：ボタンのベーススタイル */
.btn-submit,
.btn-back {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    
    width: 300px;  /* 幅を統一 */
    height: 60px;  /* 高さを統一 */
    
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    background-color: transparent; /* 背景透明 */
}

/* -------------------------------------
   送信するボタン（メイン：濃いグレー）
------------------------------------- */
.btn-submit {
    border: 1px solid #4a4a4a;
    color: #4a4a4a;
}

.btn-submit:hover {
    background-color: #4a4a4a;
    color: #fff;
}

/* -------------------------------------
   戻るボタン（サブ：薄いグレー）
------------------------------------- */
.btn-back {
    border: 1px solid #b0b0b0; /* 少し薄い枠線 */
    color: #888;              /* 文字も少し薄く */
}

.btn-back:hover {
    background-color: #b0b0b0; /* ホバー時はグレー背景 */
    color: #fff;
}

/* -------------------------------------
   矢印の制御
------------------------------------- */
.arrow {
    font-family: serif;
    display: inline-block;
    transition: transform 0.3s;
    transform: scaleX(1.5); /* 横に伸ばす */
}

/* 送信ボタンの矢印（右向き →） */
.btn-submit .arrow {
    /* 特になし（デフォルト） */
}
.btn-submit:hover .arrow {
    transform: scaleX(1.5) translateX(5px); /* 右へ動く */
}

/* 戻るボタンの矢印（左向き ←） */
.btn-back .arrow {
    /* 左向きにする必要はない（文字で「←」を入れるため）、
       あるいは transform: scaleX(1.5) rotate(180deg); でも可 */
}
.btn-back:hover .arrow {
    transform: scaleX(1.5) translateX(-5px); /* 左へ動く */
}


/* スマホ対応 */
@media (max-width: 768px) {
    .confirm-buttons {
        flex-direction: column-reverse; /* 戻るを下に、送信を上に */
        align-items: center;
        gap: 20px;
    }
    
    .btn-submit,
    .btn-back {
        width: 100%;
        max-width: 300px;
    }
}

/* =========================================
   Privacy Policy ページ用スタイル
========================================= */

/* メインエリア全体 */
.privacy-section {
    padding: 80px 0 120px;
    background-color: #FBF9F5; /* ベース背景色 */
}

/* タイトルエリア */
.privacy-header {
    text-align: center;
    margin-bottom: 80px;
}

.privacy-title {
    font-size: 42px;
    font-family: Poppins, sans-serif;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: #4a4a4a;
    margin-bottom: 10px;
}

/* 緑のドット装飾 */
.privacy-dot {
    width: 8px;
    height: 8px;
    background-color: #92CDDB; /* コンセプト図などの水色/薄緑系を採用 */
    border-radius: 50%;
    margin: 10px auto;
}

.privacy-subtitle {
    font-size: 14px;
    color: #777;
    letter-spacing: 0.1em;
}

/* コンテンツ幅制限 */
.privacy-inner {
    max-width: 1000px; /* 少し広めに調整されていますね、OKです */
    margin: 0 auto;
    padding: 0 40px;
}

/* 導入文 */
.privacy-intro {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 60px;
    text-align: justify;
}

/* 各条項ブロック */
.privacy-article {
    margin-bottom: 50px;
}

/* 条項タイトル（ピンク色） */
.article-title {
    font-size: 16px;
    color: #FF847C; /* サーモンピンク */
    margin-bottom: 15px;
    font-weight: normal;
}

/* 本文スタイル */
.privacy-article p {
    font-size: 15px;
    line-height: 2;
    color: #4a4a4a;
    text-align: justify;
}

/* ------------------------
   リスト設定（統合版）
------------------------ */

/* 親リスト (1. 2. 3...) - カウンターを使って制御 */
.privacy-list {
    counter-reset: num;
    list-style: none !important;
    padding-left: 0;
    margin-top: 10px;
    font-size: 15px;
    line-height: 2;
    color: #4a4a4a;
    text-align: justify;
}

.privacy-list > li {
    position: relative;
    padding-left: 1.5em; /* 数字分のインデント */
    margin-bottom: 15px;
}

.privacy-list > li::before {
    counter-increment: num;
    content: counter(num) ".";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: normal;
}

/* 子リスト (a. b. c...) */
.list-alpha {
    list-style: lower-alpha;
    list-style-position: outside; /* マーカーを領域の外に出す */
    padding-left: 2.5em;          /* 文字被り防止のため広めに */
    margin-top: 10px;
    margin-bottom: 10px;
}

.list-alpha li {
    margin-bottom: 5px;
    padding-left: 0;
}

/* 孫リスト (i. ii. iii...) */
.list-roman {
    list-style: lower-roman;
    list-style-position: outside;
    padding-left: 2.5em;
    margin-top: 5px;
}

.list-roman li {
    margin-bottom: 5px;
}

/* ------------------------
   第10条 お問い合わせ窓口エリア
------------------------ */
.privacy-contact-info {
    margin-top: 30px;
    padding: 20px;
    background-color: #fff;
}

.privacy-contact-info p {
    margin-bottom: 10px;
    text-align: left;
}

.privacy-contact-link {
    color: #FF847C;
    text-decoration: underline;
}

.privacy-contact-link:hover {
    text-decoration: none;
    opacity: 0.8;
}

/* 末尾の「以上」 */
.privacy-end {
    margin-top: 60px;
    text-align: right;
    font-size: 15px;
    color: #4a4a4a;
}

/* ------------------------
   レスポンシブ (768px以下)
------------------------ */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0 80px;
    }

    .privacy-header {
        margin-bottom: 50px;
    }

    .privacy-title {
        font-size: 32px;
    }

    .privacy-inner {
        padding: 0 20px;
    }

    .privacy-intro,
    .privacy-article p,
    .privacy-list {
        font-size: 14px;
    }
}