@charset "UTF-8";

/* ==========================================================================
   カラーパレット
   ========================================================================== */
:root {
    --color-text:          #726348; /* ベース文字色 */
    --color-bg:            #FFFFFE; /* ベース背景（白） */
    --color-bg-green:       #E2F1DF; /* 淡いグリーンベース */
    --color-bg-warm:       #ebe9e8; /* 淡いウォームベース */
    --color-bg-2:       #fef5f1; /* 淡いウォームベース */
    --color-beige-2:     #f3f7f4;  /* セクション背景（やや薄いグリーン） */
    --color-accent-red:    #FF3131; /* 赤アクセント */
    --color-accent-orange: #FF751F; /* オレンジアクセント（強調） */
    --color-accent-red-lt: #feeaea; /* 薄赤 */
    --color-accent-brown:  #bd8e73; /* ブラウン（ボーダー・アクセント） */
    --color-reason-bg:     #E2F1DF; /* 理由セクション背景（薄緑） */
    --color-reason-green:  #3C6930; /* 理由セクション文字（緑） */
    --color-accent-blue:   #004AAD; /* 青アクセント */
    --color-line:          #08C654; /* LINE グリーン */
    --color-line-hover:    #06AD49; /* LINE グリーン（ホバー） */
    --color-line-text:     #FFFCF7; /* LINE ボタン文字色 */
}

/* ==========================================================================
   1. 基本設定（Reset & Base）
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/*
body{font-family:"Noto Sans JP",sans-serif;line-height:1.9;color:var(--color-text);background-color:var(--color-beige-1);  font-family:"Yu Gothic", serif;
}
*/


body{
    line-height: 1.9;
    font-family: "M PLUS Rounded 1c", "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    color: var(--color-text);
    background-color: var(--color-beige-1);
}

/* コンテナ（LP全体の最大幅制限） */
main, header, footer {
    margin: 0 auto;
    width: 100%;
}

section {
    padding: 60px 20px 0 20px;
}

/* タイトル共通共通 */
h2 {
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 10px;
    font-weight: bold;
}

.mobile-break {
    display: inline;
}

/*セッションタイトル*/
.section-title-wrap {
    width: 55%;
}

.section-title-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-title {
    flex: 1;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 0;
    font-weight: bold;
    color: var(--color-text);
}

.section-title-line {
    height: 1px;
    background: var(--color-accent-brown);
    width: 100%;
    margin: 0 0 12px;
}

.section-title-illust {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: #d2d2d2;
    border-radius: 4px;
}

.section-title-row .section-title-illust:first-child {
    background: url("img/leaf-left.png") center/contain no-repeat;
    border-radius: 0;
}

.section-title-row .section-title-illust:last-child {
    background: url("img/leaf-right.png") center/contain no-repeat;
    border-radius: 0;
}

.section-title-illust-left {
    background: url("img/leaf-left.png") center/contain no-repeat;
    border-radius: 0;
}

.section-title-illust-right {
    background: url("img/leaf-right.png") center/contain no-repeat;
    border-radius: 0;
}



/* ==========================================================================
   2. ヘッダー
   ========================================================================== */

.site-header{position:fixed;top:0;width:100%;background:var(--color-bg);box-shadow:0 2px 10px rgba(0,0,0,0.05);border-bottom:var(--border-gold);z-index:1000;}
.header-inner{max-width:1100px;margin:0 auto;padding:2px 20px 4px;display:flex;flex-direction:column;align-items:stretch;}
.header-top{display:flex;align-items:center;justify-content:space-between;gap:16px;width:100%;}
.site-logo{font-size:20px;font-weight:700;color:var(--color-green);line-height:1;}
.logo-set{display:flex;align-items:center;gap:8px;}
.header-subtitle{font-size:0.8rem;line-height:1;white-space:nowrap;}
.ico-logo{height:40px;width:auto;object-fit:contain;}
.ico-name{height:28px;width:auto;object-fit:contain;}
.global-nav{width:100%;}
.global-nav .nav-list{display:flex;flex-wrap:wrap;justify-content:center;align-items:center;gap:8px 0;list-style:none;}
.global-nav .nav-list li{display:flex;align-items:center;}
.global-nav .nav-list li + li{border-left:1px solid rgba(114,99,72,0.35);padding-left:12px;margin-left:12px;}
.global-nav .nav-list li a{font-size:12px;line-height:1.4;transition:0.3s;white-space:nowrap;}
.global-nav .nav-list li a:hover{color:var(--color-accent-orange);}
.global-nav .nav-list li a:focus-visible{color:var(--color-accent-orange);}
.menu-toggle{
  display:none;
  width:44px;
  height:44px;
  border:none;
  background:transparent;
  cursor:pointer;
  padding:8px;
}
.menu-toggle-bar{
  display:block;
  width:100%;
  height:3px;
  background:var(--color-green);
  border-radius:99px;
  margin:4px 0;
  transition:transform 0.25s ease, opacity 0.25s ease;
}

.nav-list a {
    color: inherit;        /* 親のベース文字色を継承 */
    text-decoration: none; /* 下線を消す */
}


@media screen and (max-width: 1024px) {
    .mobile-break {
        display: block;
    }

    .header-inner{
        gap: 0;
    }

    .header-subtitle{
        display:none;
    }

    .menu-toggle{
        display:block;
        flex-shrink:0;
    }

    .global-nav{
        display:none;
        margin-top:10px;
    }

    .site-header.is-nav-open .global-nav{
        display:block;
    }

    .menu-toggle-bar{
        background:var(--color-text);
    }

    .global-nav .nav-list{
        flex-direction:column;
        align-items:stretch;
        gap:0;
    }

    .global-nav .nav-list li{
        width:100%;
        justify-content:center;
        text-align:center;
    }

    .global-nav .nav-list li + li{
        border-left:none;
        padding-left:0;
        margin-left:0;
        border-top:1px solid rgba(114,99,72,0.18);
    }

    .global-nav .nav-list li a{
        display:block;
        width:100%;
        padding:10px 0;
        text-align:center;
        font-size:13px;
    }
}


/* ==========================================================================
   3. メインビジュアル / 特典セクション
   ========================================================================== */
#hero {
    padding: 0;
    background: none;
    width: 100%;
}

.hero-image {
    position: relative;
    width: 100%;             /* ★ auto から 100% に変更 */
    height: calc(100vh - 60px); /* fallback */
    height: calc(100svh - 60px); /* モバイルのアドレスバー伸縮でのガタつきを抑える */
    min-height: 50px;       /* スマホで縦が潰れすぎないための保険 */
    overflow: hidden;
}

.hero-image > img {
    width: 100%;             /* ★ auto から 100% に変更 */
    height: 100%;            /* ★ 60% から 100% に変更 */
    object-fit: cover;       /* ★ 追加：画像を歪ませずにトリミングして全面に敷き詰める */
    object-position: center;  /* 画像の中心を基準に表示 */
    display: block;
}

.hero-img-mobile {
    display: none;
}

.hero-img-pc {
    display: block;
}

.hero-logo {
    display: none;
}

@media screen and (max-width: 1024px) {
    .hero-img-pc {
        display: none !important;
    }

    .hero-img-mobile {
        display: block !important;
    }
}

/* ==========================================================================
   ヒーローオーバーレイ（文字を中央の高さ・ボタンを右下に配置）
   ========================================================================== */
.hero-overlay {
    position: absolute;
    top: 150px; /* ヘッダーの高さ分だけ下げる */
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px;

    
    /* flexを使用し、上下に空間を均等に分ける設定に変更 */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* ★ 上・中・下に要素をきれいに分散させる */
    align-items: flex-end;         /* すべて右寄せ */
    
}

/* 上部のダミー（文字を中央に押し下げるための不可視のスペーサー） */
.hero-overlay::before {
    content: "";
    display: block;
}

/* 3. キャッチコピー（完全に中央の高さに配置されます） */
.hero-overlay h1 {
    color: var(--color-text);
    font-size: 3rem;
    line-height: 1.6;
    text-align: right;
    width: 100%;
    padding-right: 100px;
}

/* 4. ボタン（画面の一番右下に配置されます） */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    width: 100%;
    margin-top: auto; /* ★ ボタンを確実に最下部へ押し下げる */
    margin-right: 100px; /* ★ ボタンを右に寄せる */
}

.btn-line,
.btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--color-bg);
    border: none;
    padding: 10px 10px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: bold;
    cursor: pointer;
    width: 85%;
    max-width: 220px; 
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-line:link,
.btn-line:visited,
.btn-line:hover,
.btn-line:active,
.btn-line:focus,
.btn-line:focus-visible,
.btn-tel:link,
.btn-tel:visited,
.btn-tel:hover,
.btn-tel:active,
.btn-tel:focus,
.btn-tel:focus-visible {
    text-decoration: none;
}

.btn-line span,
.btn-line i,
.btn-tel span,
.btn-tel i {
    text-decoration: none;
}

.btn-line i,
.btn-tel i {
    color: #ffffff;
}

.btn-line i.fa-line,
.line-cta-main i.fa-line {
    font-size: 1.2em;
}

.btn-line:hover,
.btn-tel:hover {
    opacity: 0.9;
    text-decoration: none;
}

.btn-line:focus,
.btn-line:focus-visible,
.btn-tel:focus,
.btn-tel:focus-visible {
    text-decoration: none;
}

.btn-line:active,
.btn-tel:active {
    transform: scale(0.98);
}

.btn-line {
    background-color: var(--color-line);
}

.btn-tel {
    background-color: var(--color-accent-brown);
}



/* 料金セクション */
#salce {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 料金ボックス */
.price-box {
    background-color: var(--color-accent-red-lt);
    color: var(--color-text);
    width: 55%;
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 0;
    align-items: center;
    font-size: 1.05rem;
    font-weight: bold;
    text-align: left;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.price-box h2 {
    color: var(--color-text);
    border: none;
    background: none;
    display: block;
    font-size: 1.8rem;
    padding-left: 20px;
    text-align: left;
    margin-bottom: 0px;
}
.price-box p {
    font-size: 1.6rem;
}

.price-box .badge {
    color: var(--color-accent-red);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 1.4rem;
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.price-row span {
    font-size: 1.2rem;
}

.price-box .original-price {
    font-size: 0.95rem;
    opacity: 0.7;
    text-align: right;
    margin-top: 4px;
}

.price-box del {
    font-size: 1rem;
    opacity: 0.6;
}

.price-box .discount-price {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-accent-red);
}

#hero .access-brief {
    font-size: 0.9rem;
    opacity: 0.9;
}


/* ==========================================================================
   4. お悩みセクション
   ========================================================================== */
#problems {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#problems ul {
    width: 55%;
    list-style: none;
    padding: 20px;
    background-color: var(--color-bg-warm);
    border-radius: 8px;
}

#problems ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 2px;
    font-size: 1.2rem;
}

#problems ul li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: 0.1em;
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-reason-green);
}

.lead-message {
    width: 65%;
    text-align: center;
    padding: 15px 10px;
    border-radius: 8px;
}

.lead-text-sub {
    margin-bottom: 0px;
    font-size: 1.4rem;
    line-height: 1.4; /* ★ 行間を少し詰める（文字サイズの1.2倍） */
}

.lead-text-main {
    padding: 10px 0;
    margin-bottom: 0px;
    font-size: 1.8rem;
    line-height: 1.4; /* ★ 行間を少し詰める */
}

/* 料金ボックス */
.price-box-small {
    background-color: var(--color-accent-red-lt);
    color: var(--color-text);
    width: 25%;
    padding: 10px 5px;
    border-radius: 8px;
    margin-bottom: 0;
    align-items: center;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: left;
}

.price-box-small h2 {
    color: var(--color-text);
    border: none;
    background: none;
    display: block;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 4px;
}
.price-box-small p {
    font-size: 1.2rem;
}
.price-box-small span {
    font-size: 1rem;
}

.price-box-small .badge {
    color: var(--color-accent-red);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 1rem;
}



.price-box-small .original-price {
    font-size: 0.95rem;
    opacity: 0.7;
    text-align: center;
    margin-top: 4px;
}

.price-box-small del {
    font-size: 1rem;
    opacity: 0.6;
}

.price-box-small .discount-price {
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.2;
    color: var(--color-accent-red);
}

.lead-message-buttons {
    width: 65%;
    display: flex;
    align-items: flex-end; /* ボタンの下揃え */
    justify-content: center; /* ボタン同士を中央に寄せる */
    margin: 20px auto 0; /* ★ここを修正（上マージン20px、左右をautoで中央寄せ、下0） */
    gap: 10px;
}


/* ==========================================================================
   5. お客様の声（仮テキスト）
   ========================================================================== */
#testimonials {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#testimonials ul {
    width: 100%;
    list-style: none;
}

#testimonials ul li {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 16px;
    background: var(--color-bg-2);
    min-height: 350px;
    width: 55%;
    margin: 0 auto;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    min-height: 110px;

}

.testimonial-title {
    width: 100%;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
}

.testimonial-text {
    flex: 1;
    align-self: flex-start;
    line-height: 1.7;
}

.testimonial-photo {
    flex-shrink: 0;
    width: 200px;
    height: 250px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-photo span {
    color: #fff;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}


/* ==========================================================================
   6. 選ばれる3つの理由
   ========================================================================== */
#reasons {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reason-item {
    width: 55%;
    background-color: var(--color-beige-2);
    padding: 25px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.reason-item h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.4;
    padding-bottom: 10px;
    border-bottom: 1.5px solid var(--color-reason-green);
}

.reason-item p {
    font-size: 1.2rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.reason-item p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   7. プロフィール（ごあいさつ）
   ========================================================================== */
#profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-pc {
    width: 55%;
    background-color: var(--color-bg);
    padding: 25px 20px;
}
.profile-content {
    border-radius: 8px;
}

.profile-content .job-title {
    margin-bottom: 2px;
}

.profile-content h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-accent-orange);
    border-bottom: 1px solid var(--color-bg-warm);
    padding-bottom: 10px;
    text-align: center;
}

.profile-main-title {
    color: var(--color-accent-orange);
}

.profile-sub {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 10px;
}


.profile-text {
    font-size: 1rem;
    line-height: 1.8;
    flex: 1;
}
.highlight-org {
    color: var(--color-accent-orange);
    font-weight: bold;
}
.highlight-blu {
    color: var(--color-accent-blue);
    font-weight: bold;
}

/* ==========================================================================
   プロフィール写真と文字の重ね合わせ（背景に緑円をずらして配置）
   ========================================================================== */
.profile-photo-wrap {
    position: relative;
    width: 260px;          /* 全体のサイズ（写真の大きさに合わせて調整してください） */
    height: 260px;
    margin: 0 auto 20px;   /* 中央寄せ、下に余白 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景の緑円（疑似要素 ::before を使って写真の裏に配置） */
.profile-photo-wrap::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg-green); /* 改善タイトル下の区切り線と同じ緑色 */
    border-radius: 50%;        /* 正円にする */
    
    /* 位置の調整：左半分が少し見えるように左（と少し上）にずらす */
    top: -5px;
    left: -15px;
    z-index: 1;                /* 写真より下に配置 */
}

/* 先生の写真（丸型に切り抜き） */
.profile-photo-wrap img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;         /* 縦横比を保ったまま丸の中に収める */
    border-radius: 50%;        /* 写真を正円に切り抜き */
    z-index: 2;                /* 緑円の上に重ねる */
    display: block;
    transform: scale(1.06);
    transform-origin: center;
}

/* 写真の上に重ねる文字（お名前・趣味） */
.profile-name {
    position: absolute;
    bottom: 15px;              /* 写真内の下側に配置 */
    left: 5%;
    right: 5%;
    z-index: 3;                /* 写真のさらに上に重ねる */
    
    color: #000000;            /* 写真の上で見えやすいように黒文字に */
    text-shadow:
        -1px -1px 0 #ffffff,
         1px -1px 0 #ffffff,
        -1px  1px 0 #ffffff,
         1px  1px 0 #ffffff,
         0 0 6px rgba(255, 255, 255, 0.9);
    font-size: 1.2em;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    padding: 8px 10px;
}

/* ==========================================================================
   8. メニュー・料金
   ========================================================================== */
#menu {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#menu p {
    text-align: center;
}

.menu-detail {
    font-size: 1.4rem;
    margin-bottom: 20px;
    margin-top: 20px;
    line-height: 1.4;
}

.menu-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-text);
    margin-bottom: 20px;
}

.campaign-price {
    color: var(--color-accent-red);
    font-size: 2rem;
    margin-top: 5px;
}



/* ==========================================================================
   9. 体験セッションの流れ
   ========================================================================== */
#flow {
    display: flex;
    flex-direction: column;
    align-items: center;
}



.flow-steps {
    display: flex;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.flow-step {
    flex: 1;
    min-width: 100px;
    max-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 3px 2px;
    border: 1px solid var(--color-accent-brown);
    border-radius: 12px;
    background-color: #fff;
}

.flow-step img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    transform: scale(1.08);
    transform-origin: center;
}

.flow-photo {
    width: 100%;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
}

.flow-step p {
    font-size: 0.82rem;
    font-weight: bold;
    text-align: center;
    color: var(--color-text);
    margin: 0;
}

.flow-description {
    width: 100%;
    padding: 5px 0px 5px 15px;
    list-style: none;
    counter-reset: flow-counter;
}

.flow-description ol li {
    position: relative;
    padding: 2px 15px 2px 5px;
    border-radius: 6px;
    font-size: 1rem;
    counter-increment: flow-counter;
}

/* ==========================================================================
   10. よくある質問（FAQ）
   ========================================================================== */
#faq {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#faq dl {
    width: 55%;
}

#faq dl dt {
    font-weight: bold;
    color: var(--color-accent-orange);
    font-size: 1.05rem;
    margin-bottom: 5px;
}

#faq dl dd {
    margin-bottom: 25px;
    padding-left: 20px;
    font-size: 0.95rem;
    border-bottom: 1px dashed var(--color-bg-warm);
    padding-bottom: 15px;
}

#faq dl dd:last-child {
    border-bottom: none;
    margin-bottom: 0;
}


/* ==========================================================================
   11. ご予約・お問い合わせ
   ========================================================================== */
#contact {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-method {
    width: 55%;
    background-color: var(--color-bg);
    padding: 0px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.contact-method h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.line-method h4 {
    font-size: 1rem;
    margin: 15px 0 5px;
}

.line-method ul {
    list-style: none;
    padding-left: 15px;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reservation-time-list {
    background-color: var(--color-bg-warm);
    width: 70%;
    padding: 10px;
    margin-top: 10px;
}

.line-method a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--color-line);
    color: var(--color-line-text);
    text-align: left;
    padding: 15px;
    max-width: 290px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 20px;
    transition: background-color 0.2s;
}

.line-method a .line-cta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.line-method a .line-cta-main {
    display: block;
    line-height: 1.2;
}

.line-method a .line-cta-icon {
    color: #ffffff;
    font-size: 1.2em;
    line-height: 1;
    flex-shrink: 0;
}

.line-method a .line-cta-sub {
    display: block;
    margin-top: 2px;
    font-size: 0.9rem;
    line-height: 1.25;
}

.line-method a:hover {
    background-color: var(--color-line-hover);
}

.tel-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-accent-brown);
    margin-bottom: 10px;
}

.tel-note {
    font-size: 0.85rem;
    text-align: left;
}


/* ==========================================================================
   12. 店舗情報・アクセス & フッター
   ========================================================================== */
#access {
    background-color: var(--color-bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
}

/* ==========================================================================
   店舗情報・アクセス（情報左・地図右の横並び & 線繋ぎ）
   ========================================================================== */

/* 全体レイアウト：基本は縦並び（スマホ用） */
#access .shop-hours {
    display: flex;
    flex-direction: column; /* スマホでは上が情報、下が地図 */
    gap: 30px;
    width: 100%;
    max-width: 780px; /* コンテナの最大幅に合わせる */
}

/* 地図のプレースホルダー */
.access-map {
    width: 100%;
    min-height: 250px;
    background-color: #e5e5e5;
    border-radius: 6px;
    overflow: hidden;
}
.access-map iframe {
    width: 100%;
    height: 250px;
    border: 0;
    display: block;
}

/* 定義リスト（店舗情報）の調整 */
#access dl {
    width: 100%;
}

/* dtとddの横並び・線繋ぎのコア設定 */
#access dl dt {
    font-weight: bold;
    color: #726348;
    font-size: 0.95rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid var(--color-accent-brown);
}

/* 最初のdtの上マージンをリセット */
#access dl dt:first-of-type {
    margin-top: 0;
}

#access dl dd {
    color: #726348;
    padding-left: 15px;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

/* スパン要素の微調整 */
#access .time {
    font-weight: bold;
    display: inline-block;
}

#access .note {
    font-size: 0.85rem;
    opacity: 0.85;
    display: block;
    margin-top: 2px;
}
/*=========================
フッター画像
=========================*/

footer{
    background-color: var(--color-reason-bg);
    color: var(--color-text);
    text-align: left;
    padding: 0;
    font-size: 0.85rem;
}

.footer-image{
    position:relative;
}

.footer-image::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.45);
}

.footer-img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
}

/*=========================
下部
=========================*/


.footer-main{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    max-width:1100px;
    margin:auto;
    padding:60px 20px 60px 80px;
    gap:80px;
}

/*=========================
リンク
=========================*/

.footer-links{
    flex:1;
}

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:14px;
}

.footer-links a{
    color: var(--color-text);
    text-decoration:none;
    transition:.3s;
}

.footer-links a::before{
    content:"▶ ";
    color: var(--color-text);
}

.footer-links a:hover{
    opacity:.7;
}

/*=========================
右側
=========================*/

.footer-right{
    flex:1;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.footer-logo{
    width:220px;
    margin-bottom:25px;
}

.footer-logo-wrap{
    display:flex;
    justify-content:center;
}

.footer-info{
    line-height:2;
    margin-bottom:35px;
    text-align:left;
}

/*=========================
ボタン
=========================*/

.footer-right .hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:15px;
}



/*=========================
コピーライト
=========================*/

.copyright{
    text-align:center;
    border-top:1px solid rgba(255,255,255,.2);
    padding:20px;
}

/*=========================
スマホ
=========================*/

@media(max-width:768px){
}
/* ==========================================================================
   画面幅が広いとき（PC・タブレットなど向け）のレイアウト切り替え
   ========================================================================== */
@media (min-width: 600px) {
    #access .shop-hours {
        flex-direction: row-reverse; /* 右側に地図、左側に店舗情報を配置 */
        align-items: stretch;
        gap: 25px; /* 左右の間の余白を少し調整 */
    }

    /* 左側の店舗情報エリア（残り45%の幅から、gap分を考慮） */
    #access dl {
        width: 45%;
    }

    /* 右側の地図エリアを55%の幅に */
    .access-map {
        width: 55%;
        min-height: auto; /* 高さを左側の文字量に自動で合わせる */
    }

    .access-map iframe {
        height: 100%;
    }
}



/* ==========================================
   スマホ対応
========================================== */
@media screen and (max-width: 768px) {

    #access {
        padding: 0px 20px; /* 必要に応じて余白を調整してください */
    }

    section{
        padding:30px 16px;
    }

    header{
        padding:12px 16px 0;
    }

    /* セクションタイトル */
    .section-title-wrap{
        width:100%;
    }

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

    /* Hero */
    .hero-image{
        top: 60px;
        height: auto;
        min-height: 0;
    }

    #salce {
        margin-top: 35px;
        padding-bottom: 0;
        position: relative;
        z-index: 2;
    }

    .hero-img-pc{
        display:none;
    }

    .hero-img-mobile{
        width:100%;
        max-width:100%;
        height:auto;
        -webkit-clip-path: polygon(
            0 0,
            100% 0,
            100% 92%,
            96% 92.5%,
            82% 94.5%,
            50% 100%,
            18% 94.5%,
            4% 92.5%,
            0 92%
        );
        clip-path: polygon(
            0 0,
            100% 0,
            100% 92%,
            96% 92.5%,
            82% 94.5%,
            50% 100%,
            18% 94.5%,
            4% 92.5%,
            0 92%
        );
    }

    .hero-overlay{
        position: static;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        padding:20px 16px 20px;
        justify-content:flex-start;
        align-items:center;
        text-align:center;
    }

    .hero-overlay::before{
        display:none;
    }

    .hero-overlay h1{
        font-size:1.3rem;
        line-height:1.5;
        text-align:center;
        padding-right:0;
        margin:0 auto;
    }

    .hero-logo{
        display:block;
        width:85%;
        max-width:320px;
        margin:0 auto;
    }

    .hero-buttons,
    .lead-message-buttons{
        margin-top:10px;
        align-items:center;
        width:100%;
        margin-right:0;
    }

    .btn-line,
    .btn-tel{
        width:82%;
        max-width:300px;
    }

    .footer-right .btn-line,
    .footer-right .btn-tel{
        width:88%;
        max-width:320px;
    }


    /* 共通幅 */
    .price-box,
    #problems ul,
    .lead-message,
    .lead-message-buttons,
    #testimonials ul li,
    .reason-item,
    .profile-content,
    .menu-card,
    .flow-description,
    #faq dl,
    .contact-method{
        width:100%;
    }
    /*料金ボックス*/
    .price-row {
    line-height: 1;
    gap: 0px;
    margin-top: 15px;
    margin-bottom: 8px;
    }
    .price-box p{
        font-size:1.2rem;
    }
    .price-box h2{
        font-size:1.35rem;
        padding-left: 0;
        text-align: center;
    }
    #problems h2{
        font-size:1.35rem;
    }
    #problems ul li{
        font-size:1.1rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }
    .lead-text-sub{
        font-size:1rem;
    }
    .lead-text-main{
        font-size:1.02rem;
    }
    /* 小さい料金ボックス */
    .price-box-small{
        width:100%;
        margin-bottom:15px;
    }

    .lead-message-buttons{
        flex-direction:column;
    }

    .reservation-time-list{
        width:100%;
    }

    /* お客様の声 */
    #testimonials ul li{
        flex-direction:column;
        height:auto;
    }

    .testimonial-photo{
        width:100%;
        height:200px;
    }

    .testimonial-photo img{
        object-position:center 30%;
    }

    /* プロフィール */
    .profile-sub{
        flex-direction:column;
        align-items:center;
        gap:20px;
    }

    .profile-photo-wrap img{
        width:220px;
        height:220px;
    }

    .profile-text{
        font-size:1rem;
        line-height:1.8;
    }
    .profile-content-wp p{
        font-size:1rem;
        line-height:1.8;
        margin: 15px 0 0 0;
    }
    .menu-detail{
        font-size:0.8rem;
    }
    .menu-price{
        font-size:1rem;
    }
    .campaign-price{
        font-size:1.2rem;
    }
    /* 施術の流れ */
    .flow-steps{
        flex-direction:column;
        gap:16px;
    }

    .flow-step{
        margin-top: 0;
        max-width:none;
        width:100%;
        border: none;
        border-bottom: 1px solid rgba(80, 60, 40, 0.18);
        background-color: transparent;
        border-radius: 0;
        padding: 0 0 16px;
    }

    .flow-steps-wp .flow-step:last-child{
        border-bottom: none;
        padding-bottom: 0;
    }

    .flow-photo{
        width:100%;
        height: 240px;
    }

    .flow-steps-wp .flow-step img{
        transform: none;
    }

    /*選ばれる理由*/
    .reason-item p{
        font-size:1rem;
    }


    /* 電話番号 */
    .tel-number{
        font-size:1.6rem;
    }

    /* ナビ */
    .global-nav .nav-list{
        justify-content:center;
        gap:8px 0;
    }

    .global-nav .nav-list li + li{
        padding-left:10px;
        margin-left:10px;
    }

    .footer-main{
        display: flex;
        flex-direction: column;
        align-items: center;   /* 横方向の中央寄せ */
        justify-content: center; /* 縦方向の中央寄せ（必要なら） */
        padding: 20px 0;       /* auto は使えないので修正 */
        gap:20px;

    }
    .footer-links{
        display:none;
    }
    .footer-logo{
        margin-top: 25px;
        margin-bottom: 25px;
    }
    .footer-img{
        height:220px;
    }
    .footer-right .hero-buttons{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

}


/* ==========================================================================
   画面幅が広いとき（PC・タブレットなど向け）のレイアウト切り替え
   ========================================================================== */
/* PC表示（1025px以上） */
@media screen and (min-width: 1025px) {
    .profile-pc { display: block; }
    .profile-wp { display: none; }
}
@media screen and (max-width: 1024px) {
    .profile-pc { display: none; }
    .profile-wp { display: block; }
}

/* PC表示（1025px以上） */
@media screen and (min-width: 1025px) {
    .flow-steps-pc { display: block; }
    .flow-steps-wp { display: none; }
}

/* モバイル表示（1024px以下） */
@media screen and (max-width: 1024px) {
    .flow-steps-pc { display: none; }
    .flow-steps-wp { display: block; }
}

