@charset "UTF-8"; /* 文字コードをUTF-8に指定。全角文字や記号を正しく表示させるために必須 */

/* -----------------------
    基本設定
------------------------ */
html, body {
    overflow-x: hidden;
}

html {
    font-size: 100%;
    /* ブラウザ標準フォントサイズ（通常16px）を基準に設定。
       rem単位を使用する際の基準が1rem=16pxになる */
}

a {
    color: #4B6C5B; /* リンク文字色を全体のテキスト色と揃えて統一感を持たせる */
    text-decoration: none; /* リンクの下線を削除しデザインをすっきり見せる */
}

img {
    max-width: 100%; /* 画像が親要素幅を超えないようにしレスポンシブ対応を実現 */
    vertical-align: bottom; /* インライン要素時に発生する画像下の隙間を解消 */
}

li {
    list-style: none; /* リストのデフォルトマーカーを非表示にしてカスタムデザインをしやすくする */
}

/* wrapper（全体幅調整） */
.wrapper {
    max-width: 56.25rem; /* 900px → 56.25rem */
    padding: 5rem 1.25rem; /* 80px→5rem、20px→1.25rem */
    margin: 0 auto; /* 左右中央寄せ */
    position: relative; /* 子要素の絶対配置用基準に */
    z-index: 1; /* 背景より手前に表示 */
}

/* ロゴ部分 */
.logo {
    width: 12.5rem; /* 200px → 12.5rem */
    line-height: 0.0625rem; /* 1px → 0.0625rem：画像下の余白を最小化 */
    margin-bottom: 1.875rem; /* 30px → 1.875rem */
}

.logo a {
    display: block; /* ロゴ全体がクリック範囲になるようにする */
}

/* -----------------------
    bodyの基本設定
------------------------ */
body {
    margin: 0; /* デフォルト余白を削除しレイアウトのずれを防ぐ */
    font-family: 'Noto Sans JP', 'Quicksand', sans-serif; /* 日本語:Noto Sans JP、英語:Quicksand、なければsans-serif */
    color: #4B6C5B; /* 全体テキストカラーを落ち着いた深緑に */

    /* 背景を斜め(-45deg)方向のグラデーションで設定 */
    background: linear-gradient(
        -45deg,
        #f48585,
        #f7c69e,
        #ffffff,
        #a2e2e9,
        #66c7c9
    );

    background-size: 400% 400%; /* 背景を大きくし滑らかに動かす */
    animation: waveGradient 10s ease infinite; /* 背景を波のように動かすアニメーションを適用 */
}

/* waveGradientアニメーション内容背景を左右に移動させて波のような動きを演出 */
@keyframes waveGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* リップル背景全体設定 */
.ripple-bg {
    position: fixed; /* スクロールしても位置固定 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* 背景としてコンテンツの背面に配置 */
    overflow: hidden; /* リップルが画面外にはみ出さないように */
    pointer-events: none; /* 背景なのでクリックなど操作を無効化 */
}

/* 個々のリップル設定 */
.ripple {
    position: absolute; /* ripple-bgの中で絶対配置 */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中心基準で配置調整 */
    width: 0;
    height: 0;
    border-radius: 50%; /* 円形にする */
    opacity: 1; /* 初期透過度 */
    animation: ripple 6s infinite; /* rippleアニメーション適用 */

    /* conic-gradientで色が円形に回転する波紋を表現 */
    background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.95),
        rgba(210,245,245,0.9),
        rgba(200,240,240,0.85),
        rgba(255,255,255,0.95)
    );

    /* rippleの中心を透過させ波紋らしさを出す */
    -webkit-mask-image: radial-gradient(circle, transparent 60%, black 61%);
    mask-image: radial-gradient(circle, transparent 60%, black 61%);

    background-size: 200% 200%;
    background-position: center;
}

/* リップル開始タイミング＆速度設定 */
.ripple:nth-child(1) { animation-delay: 0s; animation-duration: 6s; }
.ripple:nth-child(2) { animation-delay: 2s; animation-duration: 7s; }
.ripple:nth-child(3) { animation-delay: 4s; animation-duration: 5s; }
.ripple:nth-child(4) { animation-delay: 1s; animation-duration: 8s; }
.ripple:nth-child(5) { animation-delay: 3s; animation-duration: 6.5s; }

/* rippleアニメーション内容小さい円から大きく広がり消える動き */
@keyframes ripple {
    0% { width: 0; height: 0; opacity: 0.6; }
    100% { width: 25rem; height: 25rem; opacity: 0; } /* 400px→25rem */
}

/* -----------------------
    セクション見出し・リード文スタイル
------------------------ */
h3 {
    font-family: 'Quicksand', sans-serif; /* 英文見出しにおしゃれなフォント */
    font-size: 2rem; /* 32px→2rem */
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.75rem; /* 12px→0.75rem */
}

h4 {
    font-size: 0.875rem; /* 14px→0.875rem */
    color: #888; /* 補足・サブタイトルとして優しいグレー */
    text-align: center;
    margin-bottom: 4rem; /* 64px→4rem */
    font-family: 'Noto Sans JP', sans-serif; /* 日本語見出しに読みやすいフォント */
    letter-spacing: 0.05em; /* 文字の間隔を少し空け上品に */
}

.sec-lead {
    font-size: 1.125rem; /* 18px→1.125rem */
    line-height: 1.6; /* 行間を広めにして読みやすく */
    text-align: center;
    margin-bottom: 2.5rem; /* 40px→2.5rem */
}

h5 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4B6C5B;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

/* -----------------------
    loading
------------------------ */
.loading-screen {
    position: fixed; /* 画面全体を覆うように固定配置 */
    top: 0;
    left: 0;
    z-index: 9999; /* ページ最前面に表示するため大きめのz-index */
    width: 100vw; /* 画面幅いっぱい */
    height: 100vh; /* 画面高さいっぱい */
    background: #fff; /* ローディング中は白背景にする */
    display: flex; /* 中の要素を中央寄せするためflex使用 */
    justify-content: center; /* 横方向中央揃え */
    align-items: center; /* 縦方向中央揃え */
    transition: opacity 0.5s ease; /* フェードアウトなどを想定しスムーズな透明度変更を可能にする */
}

/* パール3つを並べるコンテナ */
.pearl-container {
    display: flex; /* パールを横並びにする */
    gap: 1.5rem; /* パール同士の間隔を1.5remに設定 */
}

/* パール風ボール */
.rolling-pearl {
    width: 1.25rem; /* 20px → 1.25rem：パールの大きさ */
    height: 1.25rem; /* 同上 */
    /* 真珠のような光沢感を出すグラデーション */
    background: radial-gradient(circle at 30% 30%, #fff, #f8c5c2);
    border-radius: 50%; /* 完全な円形にする */
    box-shadow: 0 0 0.5rem rgba(255, 255, 255, 0.5); /* やわらかい光を放つ影を追加 */
    animation: roll 2s ease-in-out infinite; /* 左右に転がるアニメーションを繰り返す */
}

/* 2個目・3個目のパールだけアニメーションを少し遅らせることで動きにズレを作り、リズム感を演出 */
.rolling-pearl:nth-child(2) {
    animation-delay: 0.2s; /* 2個目は0.2秒遅れて開始 */
}
.rolling-pearl:nth-child(3) {
    animation-delay: 0.4s; /* 3個目は0.4秒遅れて開始 */
}

/* パールをやさしく左右に転がす動き- 左右に移動しながら360度回転して戻る */
@keyframes roll {
    0% {
        transform: translateX(0) rotate(0deg); /* 元位置・角度0 */
    }
    50% {
        transform: translateX(1.25rem) rotate(180deg); /* 右に20px→1.25rem動きつつ半回転 */
    }
    100% {
        transform: translateX(0) rotate(360deg); /* 元位置に戻り1回転完了 */
    }
}

/* -----------------------
    hero セクション
------------------------ */

.hero {
    display: flex; /* 子要素を並べるflexコンテナに設定。flexはレスポンシブでも便利 */
    height: 100vh; /* ブラウザの高さ100%をヒーロー領域に */
    position: relative; /* 内部要素の絶対配置基準になるようにrelative指定 */
    overflow: hidden; /* 中の要素がはみ出た場合に隠す（余計なスクロールバーを出さないため） */
    width: 100%;       /* 横幅を常に100%に */
    max-width: 100vw;  /* ビューポート幅を超えないよう制限 */
}

/* ヒーロー下部のフェードアウト用擬似要素 */
.hero::after {
    content: ""; /* 擬似要素を生成して装飾に使用 */
    position: absolute;
    bottom: 0; /* 画面下部に固定表示 */
    left: 0;
    width: 100%; /* 横幅いっぱいに広げる */
    height: 7.5rem; /* 120px → 7.5rem */
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0) 0%,
        rgba(202, 242, 236, 0.9) 100%
    ); /* 上は透明、下はミント系で柔らかくフェードするグラデーション */
    z-index: 1; /* hero背景の前面だが、テキストなどより後ろに */
}

/* 背景を構成する共通レイヤー */
.background {
    position: absolute; /* hero内で全体を覆う */
    top: 0;
    left: 0;
    width: 100%; /* 横幅100%で全画面に広げる */
    max-width: 100vw; /* 横に絶対はみ出さないように制限 */
    height: 100%; /* 高さも全画面分 */
    z-index: -1; /* heroの後ろ側に表示するためのレイヤー順序 */
    overflow: hidden; /* 背景内の要素がはみ出した場合は隠す */
}

/* 背景左側：動くグラデーション */
.bg-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        -45deg, /* 斜め方向にグラデーション */
        #f48585,
        #f7c69e,
        #ffffff,
        #a2e2e9,
        #66c7c9
    );
    background-size: 200% 200%; /* 背景を大きくして動きが柔らかく見えるように */
    animation: waveGradient 20s ease infinite; /* ゆっくり波打つように背景を動かすアニメーション */
}

/* 背景右側：三角形の写真マスク */
.bg-right {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/images/hero-img.jpg) center center / cover no-repeat; /* 背景画像を中央で表示＆カバーで全体にフィット */
    clip-path: polygon(70% 0, 100% 0, 100% 100%, 30% 100%); /* 三角形になるように右端を切り抜き、斜め分割を表現 */
}

/* hero 左側ナビゲーション */
.hero-left {
    position: absolute; /* hero内の好きな位置に配置できるように絶対位置 */
    top: 50%; /* 上から50%の位置（中央寄せ基準） */
    left: 1.875rem; /* 30px → 1.875rem */
    transform: translateY(-50%); /* 上の50%指定に対して自身の高さ分を引いて中央揃えに */
    padding: 2rem; /* 内側に余白を確保 */
    display: flex; /* ナビ項目を縦に並べるflexボックス */
    flex-direction: column; /* 子要素を縦方向に整列 */
    justify-content: center; /* 縦方向で中央揃え */
    align-items: flex-start; /* 横方向は左揃え */
    z-index: 2; /* hero背景より前面に表示 */
}

.nav-left ul {
    padding: 0; /* デフォルトの内側余白を削除 */
    margin: 0; /* デフォルトの外側余白を削除 */
}

.nav-left li {
    font-family: 'Quicksand', sans-serif; /* 英語ナビフォントを統一 */
    margin: 1rem 0; /* 項目の上下にスペース */
}

.nav-left a {
    max-width: 11.25rem; /* 180px → 11.25rem */
    position: relative; /* .ja テキストを絶対配置する基準になる */
    display: inline-block; /* hoverアニメーションを設定しやすく */
    transition: color 0.3s ease; /* ホバー時の色変化を滑らかに */
    line-height: 1.6; /* 行間を広めにして読みやすく */
}

.nav-left .en,
.nav-left .ja {
    display: block; /* 縦並びにするためブロック要素化 */
    transition: transform 0.4s ease, opacity 0.4s ease; /* スライド＆フェードをなめらかに */
}

.nav-left .en {
    transform: translateY(0); /* デフォルト位置 */
    opacity: 1; /* 完全表示 */
}

.nav-left .ja {
    position: absolute; /* .enと同じ位置に重ねる */
    top: 0;
    left: 0;
    transform: translate(20%); /* 少し右にずらしてスタート位置 */
    white-space: nowrap; /* 折り返さず1行表示 */
    opacity: 0; /* 初期は透明で非表示 */
    font-size: 0.75rem; /* 12px → 0.75rem */
    color: #888; /* やさしいグレーで目立ちすぎないように */
    pointer-events: none; /* hover対象にならないように無効化 */
    text-align: left; /* 左揃え */
}

/* ホバー時の動き：英語を消して日本語をスライドイン */
.nav-left li:hover .en {
    transform: translateY(-20%); /* 上にスライドしてフェードアウト */
    opacity: 0; /* 完全に消える */
}

.nav-left li:hover .ja {
    transform: translate(0); /* 右から元の位置にスライドイン */
    opacity: 1; /* 表示される */
}

/* hero 中央ロゴの円形テキストと画像 */
.logo {
    position: absolute; /* hero内での絶対配置 */
    top: 10%; /* 上から10%の位置に配置 */
    left: 50%; /* 左から中央に配置 */
    transform: translate(-50%); /* 中央補正 */
    width: 12.5rem; /* 200px → 12.5rem */
    height: 12.5rem;
}

.logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9rem; /* 80px → 5rem */
    height: 9rem;
    transform: translate(-50%, -50%); /* 完全中央に配置 */
    z-index: 1; /* テキストの上に配置 */
}

.circle-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 12.5rem; /* 200px → 12.5rem */
    height: 12.5rem;
    animation: rotateCircle 20s linear infinite; /* 円形テキストを回転させる */
}

.circle-svg {
    width: 100%;
    height: 100%;
    font-size: 0.875rem; /* 14px → 0.875rem */
    fill: #4B6C5B; /* 落ち着いた緑色 */
    letter-spacing: 0.125rem; /* 2px → 0.125rem */
}

/* 円形テキストの回転アニメーション */
@keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); } /* 360度回転 */
}


/* heroテキスト中央配置 */
.hero-text {
    position: absolute; /* hero領域内で自由に配置するため絶対位置指定 */
    top: 70%; /* hero内で上から70%の位置に配置 */
    left: 50%; /* hero内で中央寄せの基準位置を50%に設定 */
    transform: translate(-50%, -50%); /* 自身の大きさ分を引いて中央揃えに */
    text-align: center; /* 中のテキストを中央揃え */
    z-index: 2; /* hero背景より前に出す */
    max-width: 31.25rem; /* 最大幅500px→31.25remにしてテキスト幅を制限 */
    background-color: rgba(255,255,255,0.6); /* 半透明の白背景で視認性をアップ */
    border-radius: 1rem; /* 角を丸くしてやわらかい印象に */
    backdrop-filter: blur(5px); /* 背景をぼかして浮き上がるように見せる */
    padding: 1rem; /* テキスト内側の余白を確保 */
    animation: fadeInUp 1.5s ease forwards; /* フェードインアニメーションで登場 */
    opacity: 0; /* 初期状態は非表示 */
}

/* フェードインアニメーション */
@keyframes fadeInUp {
    0% { opacity: 0; transform: translate(-50%, -40%); } /* 上から浮かび上がる感じで開始 */
    100% { opacity: 1; transform: translate(-50%, -50%); } /* 完全に中央＆表示状態へ */
}

/* heroテキスト内の見出し */
.hero-text h2 {
    font-size: 1.8rem; /* 大きめで目を引く見出し */
    font-weight: 600; /* 太めで強調 */
    margin-bottom: 1rem; /* 下にスペースを空けてバランスを取る */
    line-height: 1.6; /* 行間を広めにして読みやすく */
    color: #3D5A50; /* 落ち着いた深緑で上品さを演出 */
}

/* heroテキスト内の説明文 */
.hero-text p {
    font-size: 1.05rem; /* 見出しより一回り小さい文字サイズ */
    line-height: 1.8; /* 行間をしっかり取って可読性を向上 */
    margin-bottom: 1.5rem; /* CTAボタンまでスペースを確保 */
    color: #4B6C5B; /* ナビゲーションと同系統のカラーで統一感 */
}

/* ボタン */
.cta-btn {
    display: inline-block; /* テキストだけでなくブロックのように扱う */
    padding: 0.8rem 1.8rem; /* 上下左右に余白を入れてボタン感を出す */
    background: transparent; /* 初期状態は透明 */
    border: 0.125rem solid #EDB2B6; /* 2px→0.125remの柔らかいピンクのボーダー */
    color: #EDB2B6; /* テキストも同じ色で統一 */
    border-radius: 1.875rem; /* 30px→1.875rem、丸みを帯びたボタンに */
    transition: all 0.3s ease; /* ホバー時にスムーズに変化 */
    font-weight: bold; /* 太字で目立たせる */
}

/* ボタンホバー時の変化 */
.cta-btn:hover {
    background: #EDB2B6; /* 背景をピンクにしてアクション感を演出 */
    color: white; /* 文字色を反転して強調 */
    transform: scale(1.05); /* 少し大きくしてクリック感を演出 */
}

.hero-tagline {
    font-family: 'Noto Serif JP', serif;
    font-size: 0.9rem;
    color: #6b8c7a;
    margin-top: 1rem; /* 上にスペースを空けてバランスを取る */
    font-style: italic; /* イタリックで柔らかく上品に */
}


/* -----------------------
    who セクション
------------------------ */

/* プロフィール全体コンテナ（テキストと画像を横並び・ラップ対応） */
.who-container {
    display: flex; /* 横並びにするためflex */
    flex-wrap: wrap; /* 狭い画面では自動的に折り返す */
    gap: 2rem; /* テキストと画像の間の間隔 2rem = 32px 相当 */
    justify-content: center; /* 子要素を中央に配置 */
    align-items: center; /* 高さ方向も中央に揃える */
    margin-bottom: 4rem; /* セクション下に余白を確保 4rem = 64px */
}

/* プロフィールのテキスト部分 */
.who-text {
    max-width: 37.5rem; /* 横幅を600pxまでに制限（読みやすくするため） */
    margin: 0 auto; /* 中央寄せ（小さい画面で縦積み時もセンターに） */
    font-size: 1.05rem; /* 標準より少し大きめで読みやすく */
    line-height: 1.8; /* 行間を広めに取って可読性をアップ */
    color: #f4f4f4;
    background: rgba(0, 0, 0, 0.4); /* 黒系ガラスで背景とのコントラスト強化 */
    backdrop-filter: blur(0.625rem) saturate(180%); /* 背後を10pxぼかし、彩度を強調 10px → 0.625rem */
    -webkit-backdrop-filter: blur(0.625rem) saturate(180%); /* Safari用に接頭辞付き */
    padding: 2rem; /* テキスト内に広めの余白を取る 2rem = 32px */
    border-radius: 1.5rem; /* 角をやわらかく丸めて優しい印象に 1.5rem = 24px */
    border: 0.0625rem solid rgba(255, 255, 255, 0.3); /* 白っぽい半透明の枠線を付ける 1px → 0.0625rem */
    box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.2); /* 背景に負けないしっかりめの影に */
    transition: box-shadow 0.3s ease; /* ホバー時に影が変わるのを滑らかにする */
}

/* テキスト部分ホバー時の演出 */
.who-text:hover {
    box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.08); /* ホバーで影をより深くして立体感を強調 12px 36px → 0.75rem 2.25rem */
}

/* プロフィール画像コンテナ */
.who-img {
    flex: 1 1 15.625rem; /* フレックスボックスで幅を調整：基本250pxで可変 250px → 15.625rem */
    text-align: center; /* 中に置く画像を中央揃え */
}

/* プロフィール画像 */
.who-img img {
    width: 100%; /* コンテナ幅に合わせてリサイズ */
    max-width: 15.625rem; /* 幅は最大250pxで表示 250px → 15.625rem */
    border-radius: 999px; /* 丸く表示（円形にするため999pxの大きな半径を指定） */
    box-shadow: 0 0.375rem 1.25rem rgba(0,0,0,0.1); /* やさしいドロップシャドウで浮き感を演出 6px 20px → 0.375rem 1.25rem */
    object-fit: cover; /* 画像比率を崩さずにトリミングしてコンテナにフィット */
}

/* スキルカード全体をグリッドで並べるコンテナ */
.skills-grid {
    display: grid; /* グリッドレイアウトを使用 */
    grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr)); /* 最小13.75rem（220px）、最大は1frで可変にしてレスポンシブ対応 */
    gap: 2rem; /* カード同士の間隔 */
    margin-top: 2rem; /* 上にスペース */
}

/* 個別スキルカードのデザイン */
.skills-card {
    background: rgba(255, 255, 255, 0.65); /* 白系ガラスで背景の動きも少し透けて見せる */
    backdrop-filter: blur(0.625rem) saturate(180%);
    -webkit-backdrop-filter: blur(0.625rem) saturate(180%);
    color: #333;
    border-radius: 1.25rem; /* 1.25rem=20pxの角丸 */
    padding: 2rem; /* 内側余白 */
    text-align: center; /* 中の要素を中央寄せ */
    box-shadow: 0 0.375rem 0.875rem rgba(0, 0, 0, 0.05); /* 6px 14px → 0.375rem 0.875rem */
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
                box-shadow 0.4s ease; /* ホバー時の動きを滑らかに */
    border: 0.0625rem solid rgba(0, 0, 0, 0.03); /* 1px → 0.0625remの薄い枠線 */
}

/* ホバー時のスキルカード */
.skills-card:hover {
    transform: translateY(-0.375rem) scale(1.02); /* 6px → 0.375rem上に浮かせて拡大 */
    box-shadow: 0 0.75rem 1.875rem rgba(0, 0, 0, 0.08); /* 12px 30px → 0.75rem 1.875rem */
}

/* スキルアイコン画像 */
.skills-icon img {
    width: 3rem; /* 48px → 3rem */
    height: 3rem;
    margin-bottom: 1rem; /* 下にスペース */
    filter: drop-shadow(0 0.125rem 0.25rem rgba(0,0,0,0.1)); /* 2px 4px → 0.125rem 0.25rem */
    transition: transform 0.3s ease; /* ホバー時の動きに滑らかさ */
}

/* ホバー時にアイコンを拡大 */
.skills-card:hover .skills-icon img {
    transform: scale(1.1); /* 拡大アニメーション */
}

/* スキル説明テキスト */
.skills-description {
    font-size: 0.95rem; /* 少し小さめの文字 */
    line-height: 1.6; /* 行間を広げて読みやすく */
    color: #444; /* 黒すぎない、背景にも負けない濃いグレー */
}


/* -----------------------
    works セクション
------------------------ */

/* 作品カードを並べるグリッドレイアウト */
.works-grid {
    display: grid; /* グリッドで作品を並べる */
    grid-template-columns: repeat(auto-fit, minmax(16.25rem, 1fr)); /* 最小16.25rem(260px)、最大1frでレスポンシブに */
    gap: 2rem; /* カード同士の間隔 */
}

/* 各作品カード */
.works-card {
    background-color: rgba(255, 255, 255, 0.65); /* 背景波をうっすら透過させる白系ガラス */
    backdrop-filter: blur(0.625rem) saturate(180%); /* 10px → 0.625rem */
    -webkit-backdrop-filter: blur(0.625rem) saturate(180%);
    border-radius: 1.5rem; /* 1.5rem=24pxの角丸 */
    padding: 2rem; /* 内側余白 */
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.15); /* 背景に負けないやや濃い影 */
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* ホバー時の動きを滑らかに */
    display: flex; /* 中身をflexで縦並び */
    flex-direction: column; /* 子要素を縦に並べる */
    align-items: center; /* 中身を中央寄せ */
    text-align: center; /* テキストも中央寄せ */
    color: #333
}

/* ホバー時の作品カード */
.works-card:hover {
    transform: translateY(-0.375rem) scale(1.02); /* 上に浮かせて少し拡大 */
    box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.2); /* 影を強調して立体感を出す */
}

.works-content {
    flex-grow: 1; /* カード内の余白を埋めてボタンを下に押しやる */
    display: flex;
    flex-direction: column;
    justify-content: center; /* テキストを中央寄せに */
}


/* 作品アイコン画像 */
.works-icon img {
    width: 3.75rem; /* 60px → 3.75rem */
    height: 3.75rem;
    margin-bottom: 1.5rem; /* 下にスペース */
}

/* サブタイトルテキスト */
.works-subtitle {
    font-size: 0.875rem; /* 14px → 0.875rem */
    color: #555;
    margin-bottom: 1.5rem; /* 下にスペース */
}

/* カード内ボタン */
.works-btn {
    display: inline-block; /* インラインブロックで幅を持たせる */
    background: rgba(138, 203, 199, 0.85); /* 背景に合わせた半透明ミント */
    color:  #fff;
    padding: 0.6rem 1.4rem; /* 縦横の内側余白 */
    border-radius: 999px; /* 最大丸角で完全な楕円ボタンに */
    font-size: 0.9rem; /* 文字サイズ */
    font-weight: 600; /* 太字にして目立たせる */
    letter-spacing: 0.03em; /* 文字間隔を少し空けて読みやすく */
    transition: background-color 0.3s ease, box-shadow 0.3s ease; /* 背景や影の変化を滑らかに */
    box-shadow: 0 0.25rem 0.75rem rgba(138, 203, 199, 0.3); /* 4px 12px → 0.25rem 0.75rem */
    cursor: pointer; /* カーソルをポインターに */
}

/* ホバー時のボタン */
.works-btn:hover {
    background: rgba(114, 189, 184, 0.9); /* より濃いミントに */
    box-shadow: 0 0.5rem 1.5rem rgba(114, 189, 184, 0.5);
}


/* -----------------------
    menu セクション
------------------------ */

/* メニューカードを並べるグリッドレイアウト */
.menu-grid {
    display: grid; /* グリッドレイアウト */
    grid-template-columns: repeat(auto-fit, minmax(18.75rem, 1fr)); /* 最小18.75rem(300px)、最大1frでレスポンシブ対応 */
    gap: 2.5rem; /* カード間のスペース */
    align-items: stretch; /* 高さを揃える */
    margin-bottom: 3rem; /* セクション下にスペース */
}

/* 各メニューカード */
.menu-card {
    background: rgba(255, 255, 255, 0.65); /* 背景波をうっすら透けさせる白ガラス */
    backdrop-filter: blur(0.625rem) saturate(180%); /* ガラス感を出す */
    -webkit-backdrop-filter: blur(0.625rem) saturate(180%);
    border-radius: 1.8rem; /* 28.8px角丸 */
    padding: 2.5rem; /* 40px内側余白 */
    box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, 0.06); /* 12px 36px影 */
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* ホバー時の変化を滑らかに */
    display: flex; /* 縦並びレイアウト */
    flex-direction: column; /* 子要素を縦に配置 */
    justify-content: space-between; /* 内容を上下に均等配置 */
    text-align: center; /* テキスト中央揃え */
    color: #333;
}

/* メニューカードのホバーアクション */
.menu-card:hover {
    transform: translateY(-0.5rem) scale(1.02); /* 浮き上がって少し拡大 */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.2); /* 影をより深くして立体感を強調 */
}

/* サブタイトルテキスト */
.menu-subtitle {
    font-size: 0.95rem; /* 約15.2px */
    color: #6B8C7A;
    margin-bottom: 1.2rem; /* 下にスペース */
}

/* メニュー説明テキスト */
.menu-description {
    font-size: 0.96rem; /* 約15.4px */
    line-height: 1.75; /* 行間を広めに */
    color: #444; /* 濃いグレーで読みやすく */
    margin-bottom: 1.8rem; /* 下にスペース */
}

/* 価格表示部分 */
.menu-price {
    display: flex; /* 横並び用flex */
    flex-direction: column; /* 縦に並べる */
    gap: 0.4rem; /* 項目間スペース */
    align-items: center; /* 中央寄せ */
}

/* 元の価格 */
.menu-price .original {
    font-size: 1.25rem;
    color: #8ACBC7;
    font-weight: bold;
}

/* メニューボタン */
.menu-btn {
    display: block; /* ブロック表示で中央揃えしやすく */
    width: fit-content; /* 内容に合わせた幅 */
    margin: 2rem auto 0; /* 上2rem、左右中央寄せ */
    background: rgba(138, 203, 199, 0.85); /* 半透明ミントで背景波と自然に馴染む */
    color: #fff;
    padding: 0.8rem 2.4rem; /* 縦0.8rem、横2.4remの内側余白 */
    border-radius: 999px; /* 丸ボタン */
    font-weight: 600; /* 太字で目立たせる */
    text-decoration: none; /* アンダーラインを消す */
    box-shadow: 0 0.5rem 1.5rem rgba(138, 203, 199, 0.4);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer; /* ボタンらしいカーソル */
    text-align: center; /* テキスト中央揃え */
}

/* ボタンのホバー時 */
.menu-btn:hover {
    background: rgba(114, 189, 184, 0.9); /* 濃いめにしてしっかり反応 */
    box-shadow: 0 0.625rem 1.5rem rgba(138, 203, 199, 0.4); /* 10px 24px影に変化 */
}

/* 案内テキスト */
.menu-contact-note {
    margin-top: 4rem; /* 上にスペース */
    padding: 2rem 1rem;
    text-align: center;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 1.5rem;
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.05);
}

/* リンク部分（フォームへの導線） */
.menu-contact-note a {
    color: #8ACBC7;
    font-weight: bold;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.menu-contact-note a:hover {
    color: #6EB3AD; /* ホバーで少し濃く */
}


/* -----------------------
    contact セクション
------------------------ */

/* セクション全体を中央寄せ */
.contact-sec {
    text-align: center; /* テキストを中央に */
}

/* お問い合わせフォームのラッパー */
.contact-form {
    display: flex; /* フォーム内をflexで縦並びに */
    flex-direction: column; /* 子要素を縦方向に */
    gap: 1.5rem; /* 項目間のスペース */
    text-align: left; /* 各入力内容は左揃えに */
}

/* テキストボックス、テキストエリア、セレクトボックス */
.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%; /* 親要素いっぱいに */
    padding: 1rem; /* 内側余白 */
    border-radius: 0.5rem; /* 8px角丸 */
    border: 1px solid rgba(255, 255, 255, 0.4); /* 軽い白枠 */
    background: rgba(255, 255, 255, 0.7); /* 波の背景を活かしながら可読性を確保 */
    backdrop-filter: blur(0.625rem) saturate(180%); /* 10px → 0.625rem */
    -webkit-backdrop-filter: blur(0.625rem) saturate(180%);
    transition: border-color 0.3s, box-shadow 0.3s; /* フォーカス時に滑らかに変化 */
    color: #333;
    box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, 0.08); /* 軽く立体感を演出 */
}

/* フォーカス時のアクティブ感 */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #8ACBC7; /* ミント系カラーで強調 */
    outline: none; /* デフォルトアウトライン非表示 */
    box-shadow: 0 0 0 0.25rem rgba(138, 203, 199, 0.25);
}

/* プライバシーポリシーの同意文 */
.form-privacy {
    font-size: 0.9rem; /* 14.4px相当 */
    color: #444;
    line-height: 1.6; /* 行間 */
    display: flex; /* テキストとチェックボックスを横並びに */
    align-items: center; /* 高さを揃える */
    gap: 0.5rem; /* チェックボックスとテキストの間隔 */
    justify-content: center; /* フォーム全体中央に */
}

/* 同意用チェックボックス */
.form-privacy input[type="checkbox"] {
    appearance: auto; /* デフォルトスタイルを使用 */
    -webkit-appearance: checkbox; /* Safari用補助 */
    width: auto; /* サイズ自動 */
    height: auto;
}

/* プライバシーポリシーリンク */
.form-privacy a {
    color: #8ACBC7; /* リンクカラーをミント系に */
    text-decoration: underline; /* 下線 */
}

/* フォーム送信ボタン & 汎用CTAボタン */
.contact-form button,
.contact-btn {
    align-self: center; /* フォーム内で中央揃え */
    background: rgba(138, 203, 199, 0.85); /* 背景と馴染む半透明ミント */
    color: #fff;
    padding: 1rem 2.5rem; /* 縦1rem・横2.5remの内側余白 */
    border-radius: 999px; /* 丸ボタン */
    font-weight: 600; /* 太字で目立たせる */
    border: none; /* ボーダーなし */
    box-shadow: 0 0.5rem 1.5rem rgba(138, 203, 199, 0.4);
    transition: all 0.3s ease; /* 変化を滑らかに */
    cursor: pointer; /* マウスカーソルをポインターに */
    color: #fff;
}

/* ボタンのホバー時 */
.contact-form button:hover,
.contact-btn:hover {
    background: rgba(114, 189, 184, 0.9); /* 濃いめに変化 */
    box-shadow: 0 0.625rem 1.8rem rgba(114, 189, 184, 0.5);
    transform: translateY(-0.125rem); /* 2px上に浮かせる */
}

/* スクリーンリーダー用：見た目に表示されないが、音声読み上げ対応に必要 */
.sr-only {
    position: absolute; /* 画面外に追い出す */
    width: 0.0625rem; /* 1px相当 */
    height: 0.0625rem; /* 1px相当 */
    overflow: hidden; /* 見えないように */
    clip: rect(0 0 0 0); /* 視覚的に不可視化 */
    white-space: nowrap; /* 折り返し禁止 */
}


/* -----------------------
    footer
------------------------ */

/* サイト全体のフッター */
.site-footer {
    background: linear-gradient(
        to top, /* 下→上方向にグラデーション */
        rgba(138, 203, 199, 0.8), /* 濃いめミントから始まり */
        rgba(202, 242, 236, 0.7), /* 中間のやわらかミント */
        rgba(255, 255, 255, 0.9)  /* 白にフェードアウトしてふんわり */
    );
    color: #4B6C5B; /* 深めのグリーン文字色 */
    text-align: center; /* テキスト中央揃え */
    padding: 3rem 1rem; /* 上下3rem、左右1remの余白 */
    font-size: 0.9rem; /* ベース文字サイズ14.4px */
    border-top: 0.0625rem solid rgba(138, 203, 199, 0.3); /* 上境界線(1px相当)で区切り */
}

/* フッター内ロゴリンク */
.footer-logo a {
    display: inline-block; /* 余白設定が効くように */
    margin-bottom: 1.5rem; /* 下に1.5rem間隔を空ける */
}

/* フッターのナビゲーション（リンク群） */
.footer-nav ul {
    padding: 0; /* デフォルト内側余白をリセット */
    margin: 0 auto 1.5rem; /* 下に1.5remの余白を追加 */
    display: flex; /* 横並びに */
    justify-content: center; /* 中央揃え */
    flex-wrap: wrap; /* 画面幅が狭いとき折り返し */
    gap: 1.5rem; /* 項目同士の間隔を1.5remに */
}

/* フッターの各リンク */
.footer-nav a {
    color: #4B6C5B; /* 深緑カラー */
    font-weight: 500; /* 少し太めで読みやすく */
    transition: color 0.3s; /* 色変化を滑らかに */
}

/* フッターリンクのホバー時 */
.footer-nav a:hover {
    color: #8ACBC7; /* ミント系アクセントに変化 */
}

/* 著作権表示など下部テキスト */
.footer-bottom {
    font-size: 0.8rem; /* 小さめ12.8px相当 */
    color: #6a8078; /* グレイッシュグリーンで控えめに */
}

/* 下部のリンク */
.footer-bottom a {
    color: #6a8078; /* テキストと同色で統一感 */
    text-decoration: underline; /* 下線を付けてリンク感を演出 */
    transition: color 0.3s; /* 色変化をスムーズに */
}

/* 下部リンクのホバー時 */
.footer-bottom a:hover {
    color: #4B6C5B; /* 深緑に変化して強調 */
}


/* -----------------------
    利用規約 / プライバシーポリシー / 特商法ページ共通
------------------------ */

/* ページタイトル */
.page-title {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin: 3rem 0 2rem;
    color: #4B6C5B;
}

/* コンテンツ全体 */
.content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    line-height: 1.9;
    font-size: 1rem;
    color: #333;
}

/* セクションタイトル */
.terms-section h2,
.privacy-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #4B6C5B;
}

/* 通常段落 */
.terms-section p,
.privacy-section p {
    margin-bottom: 1.5rem;
}

/* リスト */
.terms-section ul,
.privacy-section ul {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.terms-section ul li,
.privacy-section ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
}

/* 制定日など補足テキスト */
.terms-note,
.privacy-date {
    text-align: right;
    font-size: 0.9rem;
    color: #666;
    margin-top: 3rem;
}

.return-link {
    display: inline-block;
    margin: 3rem auto;
    text-align: center;
    color: #8ACBC7;
    text-decoration: underline;
    font-weight: 500;
}


/* -----------------------
    特商法ページ共通
------------------------ */

/* 表記リスト */
.legal-section dl {
    border-top: 1px solid #ccc;
}

.legal-section dt {
    font-weight: 600;
    padding: 1rem 0 0.3rem;
    color: #4B6C5B;
    border-bottom: 1px dotted #ddd;
}

.legal-section dd {
    padding: 0.5rem 0 1rem;
    margin: 0 0 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.legal-section a {
    color: #8ACBC7;
    text-decoration: underline;
}


/* スマホ対応 */
@media (max-width: 600px) {
    .page-title {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .content {
        padding: 0 1rem 3rem;
        font-size: 0.95rem;
    }

    .terms-section h2,
    .privacy-section h2 {
        font-size: 1.1rem;
    }

    .legal-section dt {
        font-size: 1rem;
    }

    .legal-section dd {
        font-size: 0.95rem;
    }
}



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

/* ハンバーガーアイコン全体のラッパー */
.hamburger {
    position: fixed; /* 画面に固定表示 */
    top: 1.25rem; /* 上20px → 1.25rem */
    right: 1.25rem; /* 右20px → 1.25rem */
    z-index: 1000; /* 他要素より上に表示 */
    display: none; /* デフォルトは非表示 */
}

/* JSでvisibleクラスが付与された時に表示 */
.hamburger.visible {
    display: block;
}

/* 実際のハンバーガーボタン部分 */
.hamburger-btn {
    display: flex; /* 棒3本を縦に並べる */
    flex-direction: column;
    justify-content: space-between; /* 均等に隙間を作る */
    width: 1.75rem; /* 横28px → 1.75rem */
    height: 1.375rem; /* 縦22px → 1.375rem */
    background: none; /* 背景なし */
    border: none; /* 枠なし */
    cursor: pointer; /* クリックカーソル */
    padding: 0; /* 余白なし */
    z-index: 1001; /* アイコン自体をさらに上に */
}

/* 各バー（ハンバーガーの線） */
.hamburger-btn .bar {
    height: 0.1875rem; /* 高さ3px → 0.1875rem */
    background-color: #4B6C5B; /* 深緑カラー */
    border-radius: 0.1875rem; /* 端を丸くする */
    transition: 0.3s; /* 動きに滑らかさ */
}

/* ハンバーガー開閉時の変形アニメーション */
/* 1本目：斜め45度に回転してXを作る */
.hamburger-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem); /* 5px → 0.3125rem */
}
/* 2本目：透明にして消す */
.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}
/* 3本目：斜め-45度に回転してXを作る */
.hamburger-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem); /* 6px → 0.375rem */
}

/* 開いた時に表示されるメニュー本体 */
.hamburger-nav {
    display: none; /* デフォルトは非表示 */
    position: fixed; /* 画面に固定 */
    top: 4.375rem; /* 上70px → 4.375rem */
    right: 1.25rem; /* 右20px → 1.25rem */
    background: rgba(255, 255, 255, 0.95); /* 白に近い半透明 */
    backdrop-filter: blur(0.5rem); /* 背景をぼかす→8px相当 */
    border-radius: 0.75rem; /* 角を丸く12px → 0.75rem */
    padding: 1.25rem 1.875rem; /* 上下20px→1.25rem 左右30px→1.875rem */
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15); /* 影8px 20px */
    transition: all 0.3s ease; /* スムーズな開閉 */
    z-index: 1002;
}

/* openクラスが付くとメニュー表示 */
.hamburger-nav.open {
    display: block;
}

/* メニュー内のリスト設定 */
.hamburger-nav ul {
    margin: 0;
    padding: 0;
}

/* 各メニュー項目 */
.hamburger-nav li {
    margin: 0.75rem 0; /* 縦に間隔12px → 0.75rem */
}

/* メニュー内のリンク */
.hamburger-nav a {
    color: #4B6C5B; /* 深緑カラー */
    font-weight: bold; /* 太字で目立たせる */
    transition: color 0.3s;            /* 色変化を滑らかに */
}

/* リンクホバー時の色変化 */
.hamburger-nav a:hover {
    color: #7AA693; /* 明るめの緑に */
}





/* -----------------------
    下層ページ共通：ヘッダー
------------------------ */

.subpage-header {
    background: rgba(255, 255, 255, 0.9); /* 白ベースの半透明 */
    backdrop-filter: blur(8px); /* 背景をぼかしてガラス風に */
    -webkit-backdrop-filter: blur(8px);
    position: sticky; /* スクロールしても上部に固定 */
    top: 0;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(138, 203, 199, 0.2); /* ナチュラルな区切り */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04); /* 控えめな影 */
}

/* ヘッダー内コンテナ：左右のロゴとナビを整列 */
.subpage-nav {
    display: flex;
    justify-content: space-between; /* ロゴとメニューを左右に配置 */
    align-items: center;
    max-width: 1200px;
    padding: 1.2rem 2rem; /* 上下左右のパディング */
    margin: 0 auto; /* 中央寄せ */
}

/* ロゴ部分 */
.subpage-logo .logo-link {
    display: inline-flex;
    align-items: center;
}

.subpage-logo .logo-img {
    height: 2.4rem; /* ロゴの高さを統一 */
    width: auto;
}

/* ナビゲーション */
.subpage-menu ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem; /* ナビ項目間の間隔 */
    margin: 0;
    padding: 0;
}

.subpage-menu a {
    text-decoration: none;
    color: #4B6C5B; /* メインの深緑色 */
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s, transform 0.3s; /* ホバー時の動き */
}

.subpage-menu a:hover {
    color: #8ACBC7; /* アクセントカラーに変化 */
    transform: scale(1.05); /* わずかに拡大して動きを出す */
}


/* -----------------------
    下層ページ共通：セクション見出し
------------------------ */

/* セクションタイトル */
.sub-sec-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2rem; /* トップページh3と合わせる */
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.75rem;
    color: #3D5A50; /* トップより少し濃いめのカラーを設定 */
}

/* サブタイトル（補足的な見出し） */
.sub-sec-note {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.875rem;
    color: #6B8C7A; /* トップの#888より少しグリーン系で変化をつける */
    text-align: center;
    margin-bottom: 2rem; /* 下層は少しタイトに */
    letter-spacing: 0.05em;
}

/* セクション冒頭のリード文 */
.sub-sec-lead {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 3rem; /* 下層は余白を広めにしてゆったり感 */
    color: #444; /* 読みやすいダークグレーで統一 */
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}


/* -----------------------
    下層ページ共通：フッター
------------------------ */

.subpage-footer {
    background: rgba(255, 255, 255, 0.95); /* 白に近い半透明 */
    backdrop-filter: blur(6px); /* ほんのりガラス感を演出 */
    -webkit-backdrop-filter: blur(6px);
    padding: 2.4rem 1.6rem; /* 上下左右の余白 */
    text-align: center;
    color: #4B6C5B; /* メインテキストカラー */
    border-top: 1px solid rgba(138, 203, 199, 0.2); /* 上部の区切り線 */
}

/* ロゴ部分 */
.subpage-footer-logo a {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1.6rem;
}

/* ナビゲーション */
.subpage-footer-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 0 1.6rem 0; /* ナビとコピーライトの間に余白 */
    padding: 0;
}

.subpage-footer-nav a {
    text-decoration: none;
    color: #4B6C5B;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
}

.subpage-footer-nav a:hover {
    color: #8ACBC7; /* アクセントカラーに変化 */
}

/* 著作権・下部リンク */
.footer-bottom {
    font-size: 0.9rem;
    color: #6a8078;
}

.footer-bottom a {
    color: #6a8078;
    text-decoration: underline;
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: #4B6C5B;
}


/* -----------------------
    下層ページ共通：ハンバーガーメニュー
------------------------ */
.hamburger {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 1000;
    display: none;
}
.hamburger.visible {
    display: block;
}
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 1.75rem;
    height: 1.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}
.hamburger-btn .bar {
    height: 0.1875rem;
    background-color: #4B6C5B;
    border-radius: 0.1875rem;
    transition: 0.3s;
}
.hamburger-btn.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}
.hamburger-btn.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-btn.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(0.375rem, -0.375rem);
}
.hamburger-nav {
    display: none;
    position: fixed;
    top: 4.375rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(0.5rem);
    border-radius: 0.75rem;
    padding: 1.25rem 1.875rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 1002;
}
.hamburger-nav.open {
    display: block;
}
.hamburger-nav ul {
    margin: 0;
    padding: 0;
}
.hamburger-nav li {
    margin: 0.75rem 0;
}
.hamburger-nav a {
    color: #4B6C5B;
    font-weight: bold;
    transition: color 0.3s;
}
.hamburger-nav a:hover {
    color: #7AA693;
}


/* -----------------------
    下層ページ：works
------------------------ */

/* タブボタンエリア */
.tab-buttons {
    display: flex;
    justify-content: center; /* 中央寄せ */
    gap: 1.25rem; /* ボタン間の隙間 20px→1.25rem */
    margin-bottom: 2.5rem; /* 下の要素との余白 40px→2.5rem */
    flex-wrap: wrap; /* 画面幅が狭いときは折り返し */
}

.works-tab-btn {
    padding: 0.625rem 1.25rem; /* 10px 20px→0.625rem 1.25rem */
    background-color: #fff;
    border: 0.125rem solid #8acbc7; /* 2px→0.125rem */
    color: #8acbc7;
    border-radius: 9999px; /* 丸みを最大にして pill ボタンに */
    cursor: pointer; /* ホバーでポインタ表示 */
    transition: all 0.3s ease; /* ホバー時の滑らかな変化 */
}

.works-tab-btn:hover {
    background-color: #8acbc7;
    color: #fff;
}

.works-tab-btn.active {
    background-color: #8acbc7;
    color: #fff;
    font-weight: bold;
}

/* タブコンテンツ：非表示の基本設定 */
.works-tab-content {
    display: none;
    animation: fadeIn 0.5s ease; /* 表示時にフェードインアニメーション */
}
.works-tab-content.active {
    display: block;
}

/* ギャラリー表示 */
.works-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(11.25rem, 1fr)); /* カード幅180px以上で自動レイアウト 180px→11.25rem */
    gap: 1.25rem; /* 20px→1.25rem */
}

.works-item {
    border-radius: 0.625rem; /* 10px→0.625rem */
    overflow: hidden; /* 子要素のはみ出しを隠す */
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1); /* 4px 12px→0.25rem 0.75rem */
    transition: transform 0.3s ease;
}

.works-item:hover {
    transform: scale(1.03);
}

.works-thumb {
    width: 100%;
    display: block;
}

/* fadeInアニメーション：上からフェードイン */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* モーダル全体 */
.modal[hidden] {
    display: none !important; /* [hidden]属性で強制的に非表示 */
}

.modal {
    position: fixed; /* 全画面に固定 */
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    background-color: rgba(0,0,0,0.6); /* 半透明黒のオーバーレイ */
    z-index: 1000;
    overflow-y: auto; /* 高さが足りないときにスクロール可能 */
    padding: 1.25rem; /* 20px→1.25rem */
    box-sizing: border-box;
}

/* モーダル内容 */
.modal-content {
    max-width: 37.5rem; /* 最大幅600px→37.5rem */
    background-color: #fff;
    padding: 1.5rem 2rem; /* 24px 32px→1.5rem 2rem */
    border-radius: 0.5rem; /* 8px→0.5rem */
    box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.15); /* しっかりめの影 8px 24px→0.5rem 1.5rem */
    overflow-y: auto; /* コンテンツが長いときスクロール */
    max-height: 80vh; /* 画面の8割までに制限 */
    position: relative; /* 閉じるボタン位置調整用 */
}

/* モーダルタイトル */
.modal-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0; /* 16px→1rem */
    color: #333;
}

/* モーダル画像 */
.modal-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem; /* 8px→0.5rem */
    margin-bottom: 0.75rem; /* 12px→0.75rem */
}

/* モーダル画像を複数並べるグループ */
.modal-image-group {
    display: flex;
    flex-direction: column; /* 画像を縦に並べる場合 */
    gap: 1rem; /* 16px→1rem */
    margin-bottom: 1rem;
}

/* モーダル内の各画像 */
.modal-image-group img {
    width: 100%;
    max-width: 31.25rem; /* 500px→31.25rem */
    height: auto;
    border-radius: 0.5rem; /* 8px→0.5rem */
    box-shadow: 0 0.125rem 0.5rem rgba(0,0,0,0.1); /* 2px 8px→0.125rem 0.5rem */
    object-fit: contain;
}

/* 詳細情報部分の定義リスト */
.modal-details dl { margin: 0; padding: 0; }
.modal-details dt { font-weight: bold; margin-top: 1em; }
.modal-details dd { margin: 0 0 1em 0; padding-left: 1em; }

/* 外部リンクや作品ページへの誘導リンク */
.modal-link {
    display: inline-block;
    margin-top: 0.5rem; /* 8px→0.5rem */
    padding: 0.5rem 1rem; /* 8px 16px→0.5rem 1rem */
    background-color: #2a9d8f;
    color: white;
    text-decoration: none;
    border-radius: 0.25rem; /* 4px→0.25rem */
    transition: background-color 0.3s ease;
}
.modal-link:hover,
.modal-link:focus {
    background-color: #23867a;
    outline: none;
}

/* 閉じるボタン */
.modal-close {
    position: absolute;
    top: 0.75rem;   /* 12px→0.75rem */
    right: 0.75rem; /* 12px→0.75rem */
    background: transparent;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: #888;
    transition: color 0.3s ease;
}
.modal-close:hover,
.modal-close:focus {
    color: #333;
    outline: none;
}

/* モーダルのクリック領域（オーバーレイ） */
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    cursor: pointer;
}

/* モーダルスクロールバー */
.modal-content::-webkit-scrollbar { width: 0.5rem; } /* 8px→0.5rem */
.modal-content::-webkit-scrollbar-thumb {
    background-color: rgba(140,203,199,0.6);
    border-radius: 0.25rem; /* 4px→0.25rem */
}
.modal-content::-webkit-scrollbar-track { background-color: transparent; }


/* -----------------------
    下層ページ：menu
------------------------ */

/* セクション全体 */
.menu-detail-sec {
    padding: 4rem 1.5rem;
    background-color: #f9faf9;
}

/* セクションタイトル */
.banner-title {
    font-family: 'Quicksand', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #4B6C5B;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.banner-title::after {
    content: "";
    display: block;
    width: 4rem;
    height: 0.2rem;
    background-color: #8ACBC7;
    margin: 1rem auto 0;
    border-radius: 9999px;
}

/* 各セクションのグリッドレイアウト */
.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* 各カードの共通デザイン */
.menu-card-grid .banner-card-basic,
.menu-card-grid .banner-card-option,
.menu-card-grid .banner-card-design {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    padding-bottom: 5rem; /* 価格が重ならないよう余白を確保 */
}

.menu-card-grid .banner-card-basic:hover,
.menu-card-grid .banner-card-option:hover,
.menu-card-grid .banner-card-design:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.12);
}

/* カード内タイトル */
.menu-card-grid .banner-card-basic h6,
.menu-card-grid .banner-card-option .menu-card-title,
.menu-card-grid .banner-card-design .menu-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #3D5A50;
    margin-bottom: 1rem;
}

.menu-card-note {
    margin-bottom: 1.5rem;
}

/* カード内の説明文 */
.menu-card-note p {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
}

/* カード内のリスト */
.menu-card-note ul {
    padding-left: 1.25rem;
    margin: 0;
}

.menu-card-note ul li {
    list-style: disc;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #555;
}

.menu-card-note .sub-note {
    font-size: 0.875rem;
    color: #777;
    display: block;
    margin-top: 0.25rem;
}

/* 価格表示 */
.price {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    display: flex; /* 横並び */
    align-items: flex-end; /* 下揃え */
    gap: 0.5rem; /* 価格の間隔 */
    text-align: right;
    margin-top: 0;
}

.price-regular {
    font-size: 1.1rem;
    color: #8ACBC7;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* カテゴリ別区切りタイトル */
.option-cat {
    font-size: 1.25rem;
    font-weight: bold;
    color: #4B6C5B;
    margin: 2rem 0 1rem 0;
    border-left: 0.4rem solid #8ACBC7;
    padding-left: 1rem;
}

/* モニター価格注意文 */
.monitor-note {
    background-color: #f4f8f7;
    border-left: 0.4rem solid #8ACBC7;
    padding: 2rem;
    border-radius: 0.5rem;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.6;
}

.monitor-note .monitor-title {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #3D5A50;
}

.monitor-text {
    margin: 0;
}


/* -----------------------
    thanks-page
------------------------ */
/* thanks.html 用 */
.thanks-page {
    background-color: #f9f9f9; /* 背景を薄いグレーで優しい印象に */
    font-family: 'Noto Sans JP', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* 画面いっぱいに中央配置 */
    padding: 20px;
}

.thanks-sec .wrapper {
    text-align: center;
    background-color: #fff; /* 白背景でカード風に */
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 500px;
    width: 100%;
}

.thanks-sec h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.thanks-sec p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.thanks-sec .btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #EDB2B6; /* コーラル系アクセントカラー */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: 0.3s;
}

.thanks-sec .btn:hover {
    transform: scale(1.05); /* 少し大きくしてクリック感を演出 */
}



/* -----------------------
    レスポンシブ対応
------------------------ */
@media (max-width: 768px) {
    .wrapper {
        padding: 4rem 3rem;
    }

    h3 {
        font-size: 1.5rem; /* 見出しを24px相当に縮小 */
        margin-bottom: 0.5rem;
    }

    h4 {
        font-size: 0.75rem; /* サブ見出しを12px相当に */
        margin-bottom: 2.5rem;
    }

    .sec-lead {
        font-size: 1rem; /* リード文を16px相当に */
        margin-bottom: 1.5rem;
    }

    h5 {
        font-size: 1.125rem; /* h5も18px相当に */
    }

    .logo {
        width: 10rem; /* ロゴ幅を160pxに縮小 */
        margin-bottom: 1.25rem; /* ロゴ下の余白を20pxに縮小 */
    }

    .pearl-container {
        gap: 1rem; /* パール間隔を16pxに狭める */
    }

    .rolling-pearl {
        width: 1rem;  /* パールを16pxに小さく */
        height: 1rem;
    }

    /*  hero セクション */
    .hero-left {
        top: 30%; /* ナビをhero中央より上に移動して重ならないように */
        left: 1rem; /* 左余白を少し減らす */
        padding: 1rem; /* ナビ内余白を縮小 */
        max-width: 50%; /* ナビ領域が広がりすぎないように */
        display: none;
    }

    .bg-right {
        clip-path: polygon(80% 0, 100% 0, 100% 100%, 20% 100%);
    }

    .nav-left li {
        margin: 0.5rem 0; /* ナビ項目の縦間隔を半分にして詰める */
    }

    .nav-left a {
        max-width: 8rem; /* ナビ項目の幅を狭めて画面に収まるように */
    }

    .nav-left .ja {
        font-size: 0.625rem; /* ja部分のフォントを10px相当に */
    }

    .logo {
        top: 15%; /* hero中央ロゴをやや上へ */
        width: 8rem; /* ロゴ円を128pxに縮小 */
        height: 8rem;
        max-width: 50vw; /* ロゴの最大幅を画面幅の50%に制限 */
    }

    .logo img {
        width: 5rem;
        height: 5rem;
    }

    .circle-text,
    .circle-svg {
        width: 8rem;
        height: 8rem;
        font-size: 0.75rem; /* 円形テキストの文字も縮小 */
    }

    .hero-text {
        top: 75%; /* テキストボックスを少し上へ */
        max-width: 22rem; /* 最大幅を350pxに縮小 */
        padding: 0.75rem; /* テキスト内余白を縮小 */
    }

    .hero-text h2 {
        font-size: 1.4rem; /* 見出しを22px相当に縮小 */
    }

    .hero-text p {
        font-size: 0.95rem; /* 説明文を15pxに */
    }

    .cta-btn {
        padding: 0.6rem 1.4rem; /* ボタンのパディングを縮小 */
        font-size: 0.9rem; /* ボタン文字を14px相当に */
    }

    .hero-tagline {
        font-size: 0.75rem; /* タグラインを12pxに */
    }

    /*  who セクション */
    .who-container {
        flex-direction: column; /* 横並び→縦並び */
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .who-text {
        max-width: 100%;
        font-size: 1rem;
        padding: 1.5rem;
        margin: 0 auto;
    }

    .who-img {
        flex: none;
        max-width: 220px;
        margin: 0 auto;
    }

    .who-img img {
        max-width: 220px;
        width: 100%;
    }

    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
        margin-top: 2rem;
    }

    /*  works セクション */
    .works-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); /* 最小180pxで複数列 */
        gap: 1.5rem;
    }

    .works-card {
        padding: 1.5rem; /* 内側余白を少し狭く */
    }

    .works-icon img {
        width: 3rem; /* アイコンサイズを少し小さく */
        height: 3rem;
        margin-bottom: 1.2rem;
    }

    .works-subtitle {
        font-size: 0.82rem;
        margin-bottom: 1rem;
    }

    .works-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        box-shadow: 0 0.2rem 0.6rem rgba(138, 203, 199, 0.25);
    }

    /*  menu セクション */
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* カード幅を少し狭めて複数列を保つ */
        gap: 2rem; /* 間隔を少し狭める */
    }

    .menu-card {
        padding: 2rem; /* 内側余白を少し狭く */
    }

    .menu-title {
        font-size: 1.2rem; /* タイトルサイズを少し小さめに */
    }

    .menu-subtitle {
        font-size: 0.9rem;
    }

    .menu-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .menu-price .original {
        font-size: 0.85rem;
    }

    .menu-price .discount {
        font-size: 1.1rem;
    }

    .menu-btn {
        padding: 0.7rem 2rem;
        font-size: 0.9rem;
    }

    /*  contact セクション */
    .contact-form {
        gap: 1.2rem; /* 項目間を少し狭く */
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.9rem; /* 内側余白を少し縮小 */
        font-size: 0.95rem; /* フォントも微調整 */
    }

    .contact-form button,
    .contact-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .form-privacy {
        font-size: 0.85rem;
    }

    /*  footer */
    .site-footer {
        padding: 2.5rem 1rem; /* 上下の余白を少しコンパクトに */
        font-size: 0.85rem; /* テキストをわずかに縮小 */
    }

    .footer-nav ul {
        gap: 1rem; /* ナビ間隔をやや詰める */
    }

    /* 下層ページ共通：ヘッダー */
    .subpage-nav {
        padding: 1rem 1.5rem;
    }
    .subpage-menu ul {
        gap: 1.2rem;
    }

    /* 下層ページ共通：セクション見出し */
    .sub-sec-title {
        font-size: 1.75rem;
    }
    .sub-sec-lead {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    /* 下層ページ共通：フッター */
    .subpage-footer-nav ul {
        gap: 1.5rem;
    }

    /* 下層ページ共通：ハンバーガーメニュー */
    .subpage-menu {
        display: none;
    }
    .hamburger {
        display: block; /* ハンバーガーを表示 */
    }

    /* 下層ページ：works */
    .tab-buttons {
        flex-direction: column; /* タブを縦並びに */
        gap: 0.75rem; /* ボタンの隙間を少し狭めに */
    }

    .works-tab-btn {
        width: 100%; /* ボタンを横幅いっぱいに */
        font-size: 1rem;
        text-align: center;
    }

    .works-gallery {
        grid-template-columns: 1fr; /* 1列にする */
        gap: 1rem;
    }

    .modal-content {
        padding: 1rem; /* モーダル内の余白を少し減らす */
        max-width: 100%;
        max-height: 90vh; /* モーダルが画面内に収まるように */
    }

    .modal-title {
        font-size: 1.4rem;
    }

    .modal-image-group img {
        max-width: 100%;
    }

    /* 下層ページ：menu */
    .banner-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .menu-card-grid {
        gap: 1.5rem;
    }
    .menu-card-grid .banner-card-basic,
    .menu-card-grid .banner-card-option,
    .menu-card-grid .banner-card-design {
        padding: 1.5rem 1rem;
    }
    .menu-card-grid .banner-card-basic h6,
    .menu-card-grid .banner-card-option .menu-card-title,
    .menu-card-grid .banner-card-design .menu-card-title {
        font-size: 1.15rem;
    }
    .menu-card-note p,
    .menu-card-note ul li {
        font-size: 0.95rem;
    }
    .price-regular {
        font-size: 1rem;
    }
    .price-sale {
        font-size: 1.1rem;
    }
    .option-cat {
        font-size: 1.15rem;
    }
    .menu-contact-note {
        padding: 1.5rem 1rem;
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .wrapper {
        padding: 3rem 2rem;
    }

    h3 {
        font-size: 1.25rem; /* 見出しを20px相当に */
    }

    h4 {
        font-size: 0.6875rem; /* サブ見出しを11px相当に */
        margin-bottom: 2rem;
    }

    .sec-lead {
        font-size: 0.9375rem; /* リード文を15px相当に */
    }

    .logo {
        width: 8.75rem; /* ロゴ幅140pxに縮小 */
        margin-bottom: 1rem; /* ロゴ下余白16pxに */
    }

    /*  hero セクション */
    .hero-left {
        top: 25%;
        left: 0.75rem; /* 左余白をさらに減らす */
        padding: 0.5rem;
        max-width: 60%; /* さらにスマホで幅を絞る */
    }

    .nav-left a {
        max-width: 6.5rem; /* ナビ項目幅を104pxに */
    }

    .bg-right {
        clip-path: polygon(80% 0, 100% 0, 100% 100%, 20% 100%);
    }

    .logo {
        width: 6rem; /* ロゴ円96pxに */
        height: 6rem;
        max-width: 60vw; /* スマホでさらに制限 */
        top: 15%;
    }

    .logo img {
        width: 3rem;
        height: 3rem;
    }

    .circle-text,
    .circle-svg {
        width: 6rem;
        height: 6rem;
        font-size: 0.85rem;
    }

    .hero-text {
        top: 60%;
        width: 90%;
        max-width: none;
    }

    .hero-text h2 {
        font-size: 1rem; /* 見出しを16pxに */
        line-height: 1.5; /* 行間を少し詰める */
    }

    .hero-text p {
        font-size: 0.8rem; /* 説明文を12.8pxに */
        line-height: 1.6;
        margin-bottom: 0.8rem; /* ボタンとの間もコンパクトに */
    }

    .cta-btn {
        padding: 0.4rem 1rem; /* ボタンをさらにコンパクトに */
        font-size: 0.8rem; /* ボタン文字も12.8pxに */
    }

    .hero-tagline {
        font-size: 0.65rem; /* タグラインを10.4pxに */
    }

    /*  who セクション */
    .who-text {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .who-img {
        max-width: 160px;
    }

    .who-img img {
        max-width: 160px;
    }

    .skills-grid {
        grid-template-columns: 1fr; /* 1列表示に */
        gap: 1rem;
        margin-top: 1.5rem;
    }

    /*  works セクション */
    .works-grid {
        grid-template-columns: 1fr; /* 1列表示に */
        gap: 1rem;
    }

    .works-card {
        padding: 1rem;
    }

    .works-icon img {
        width: 2.5rem; /* 40px */
        height: 2.5rem;
        margin-bottom: 1rem;
    }

    .works-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .works-btn {
        padding: 0.4rem 1rem;
        font-size: 0.8rem;
        box-shadow: 0 0.15rem 0.45rem rgba(138, 203, 199, 0.2);
    }

    /*  menu セクション */
    .menu-grid {
        grid-template-columns: 1fr; /* 1列に変更 */
        gap: 1.5rem; /* 間隔をさらに狭める */
    }

    .menu-card {
        padding: 1.5rem;
    }

    .menu-title {
        font-size: 1.1rem;
    }

    .menu-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .menu-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }

    .menu-price .original {
        font-size: 0.8rem;
    }

    .menu-price .discount {
        font-size: 1rem;
    }

    .menu-btn {
        padding: 0.6rem 1.6rem;
        font-size: 0.85rem;
    }

    /*  contact セクション */
    .contact-form {
        gap: 1rem;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        padding: 0.8rem; /* スマホではもう少しコンパクトに */
        font-size: 0.9rem;
    }

    .contact-form textarea {
        rows: 4; /* テキストエリアを少し小さめにして表示を安定させる */
    }

    .contact-form button,
    .contact-btn {
        padding: 0.8rem 1.6rem;
        font-size: 0.9rem;
        width: 100%; /* 横幅いっぱいにしてタップしやすく */
        margin: 0 auto; /* 横方向を自動マージンで中央寄せ */
        display: block;
        text-align: center; /* ボタン内のテキストを中央寄せ */
    }

    .form-privacy {
        gap: 0.4rem;
        text-align: center;
    }

    /*  footer */
    .site-footer {
        padding: 2rem 1rem; /* 上下をさらにコンパクトに */
        font-size: 0.8rem; /* テキストサイズもコンパクトに */
    }

    .footer-nav ul {
        flex-direction: column; /* スマホでは縦並びにして窮屈さを解消 */
        gap: 0.8rem; /* 項目間をやや詰める */
        align-items: center; /* ナビ全体を中央寄せ */
    }

    .footer-logo a {
        margin-bottom: 1rem; /* ロゴ下の余白を調整 */
    }

    .footer-bottom {
        font-size: 0.75rem; /* 著作権表示もスマホ用に微調整 */
        line-height: 1.4; /* 2行以上になっても詰まらないように */
    }

    /* 下層ページ共通：ヘッダー */
    .subpage-nav {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 0.8rem 1rem;
    }
    .subpage-logo {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .subpage-menu {
        display: none; /* PC用メニューを非表示 */
    }

    /* 下層ページ共通：セクション見出し */
    .sub-sec-title {
        font-size: 1.5rem;
    }
    .sub-sec-note {
        font-size: 0.8rem;
    }
    .sub-sec-lead {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    /* 下層ページ共通：フッター */
    .subpage-footer-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* 下層ページ共通：ハンバーガーメニュー */
    .hamburger {
        top: 1rem;
        right: 1rem;
        z-index: 3; /* heroの要素より前に出す */
    }
    .hamburger-nav {
        width: 80%;
        right: 10%;
        padding: 1rem 1.5rem;
    }

    /* 下層ページ：works */
    .works-tab-btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }

    .modal-title {
        font-size: 1.2rem;
    }

    .modal-details dt,
    .modal-details dd {
        font-size: 0.9rem;
    }

    /* 下層ページ：menu */
    .banner-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    .menu-card-grid {
        grid-template-columns: 1fr; /* 1カラム表示 */
        gap: 1rem;
    }
    .menu-card-grid .banner-card-basic,
    .menu-card-grid .banner-card-option,
    .menu-card-grid .banner-card-design {
        padding: 1.2rem 0.8rem;
        padding-bottom: 4rem;
        position: relative;
    }
    .menu-card-grid .banner-card-basic h6,
    .menu-card-grid .banner-card-option .menu-card-title,
    .menu-card-grid .banner-card-design .menu-card-title {
        font-size: 1.1rem;
    }
    .menu-card-note {
        margin-bottom: 1.5rem;
    }
    .menu-card-note p,
    .menu-card-note ul li {
        font-size: 0.8rem;
    }
    .price {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        display: flex;
        flex-wrap: wrap;         /* ← 画面幅が狭い時に折り返す */
        gap: 0.3rem;
        font-size: 0.95rem;
        text-align: right;
    }
    .price-regular {
        font-size: 0.95rem;
    }
    .price-sale {
        font-size: 1.05rem;
        font-weight: bold;
    }
    .option-cat {
        font-size: 1rem;
        padding-left: 0.75rem;
        border-left-width: 0.3rem;
    }
    .monitor-note {
        padding: 1.5rem;
        font-size: 0.9rem;
    }
    .monitor-note .monitor-title {
        font-size: 1rem;
    }
}



/* ==== アニメーション共通クラス ==== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* 表示されたときに追加されるクラス */
.inview {
    opacity: 1 !important;
    transform: none !important;
}

/* 遅延（スキルカードの順番アニメ） */
.fade-delay-1 { transition-delay: 0.2s; }
.fade-delay-2 { transition-delay: 0.4s; }
.fade-delay-3 { transition-delay: 0.6s; }
.fade-delay-4 { transition-delay: 0.8s; }
.fade-delay-5 { transition-delay: 1.0s; }
.fade-delay-6 { transition-delay: 1.2s; }
.fade-delay-7 { transition-delay: 1.4s; }
.fade-delay-8 { transition-delay: 1.6s; }
