@charset "UTF-8";

body {
    font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #333;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: black;
}

.container {
    max-width: calc(100% - 32px);
    width: 1120px;
    margin: 0 auto;
}

.section {
    padding: 64px 0;
}

.section-title {
    margin-bottom: 18px;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

.header-title,
.section-title {
    font-family: "Zen Maru Gothic", Roboto, sans-serif;
    letter-spacing: .08em;
    color: #2f5f73;
}

/* =========================
ハンバーガーメニュー
========================= */
.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
}

.hamburger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #666;
    transition: .2s;
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

body.menu-open .hamburger span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
}

body.menu-open .hamburger span:nth-child(2) {
    opacity: 0;
}

body.menu-open .hamburger span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
}

/* スマホメニュー */
.sp-menu {
    display: flex;
    position: fixed;
    top: 0;
    right: -320px;
    width: 250px;
    height: 100vh;
    padding: 90px 20px;
    z-index: 200;
    background-color: #fff;
    border-left: 1px solid rgba(0, 0, 0, .06);
    box-shadow: -18px 0 40px rgba(0, 0, 0, .12);
    flex-direction: column;
    gap: 22px;
    transition: right .25s;
}

.sp-menu a {
    letter-spacing: 0.08em;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 500;
}

.sp-menu .line-btn {
    margin-top: 15px;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.sp-overlay {
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(120, 170, 255, .18), rgba(0, 0, 0, .35));
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 150;
}

.sp-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 44px;
    height: 44px;
    border: none;
    background: rgba(255, 255, 255, .85);
    border-radius: 999px;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

body.menu-open .sp-menu {
    right: 0;
}

body.menu-open .sp-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* TOPへ戻る */
.to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: #e6a23c;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    line-height: 1.1;
    opacity: 0;
    pointer-events: none;
    transition: .2s;
    z-index: 120;
}

.to-top span {
    font-size: 16px;
}

.to-top.show {
    opacity: 1;
    pointer-events: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
}

.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}


/* main */
header {
    display: flex;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 8px 5%;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
    border-bottom: 1px solid rgba(0, 0, 0, .06);
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu-sp {
    display: flex;
    align-items: center;

}

.logo {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    text-decoration: none;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;

    /* 拡大しすぎない */
    transform: scale(1.38);
}

/* ナビ：間隔を詰めてスッキリ */
.nav-links {
    margin-left: auto;
    margin-right: 24px;
    font-size: 13px;
}

.nav-links a {
    text-decoration: none;
    font-weight: 700;
    color: #333;
    letter-spacing: .06em;
    opacity: .85;
    padding: 8px 0;
    margin-right: 30px;
    position: relative;
}

.nav-links a:hover {
    opacity: 1;
}

/* ホバーは下線だけ（主張しすぎない） */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 3px;
    height: 2px;
    background: #f2a11f;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

/* LINEボタン：サイズを揃えて上品に */
.line-btn {
    padding: 10px 18px;
    background: #27c34a;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    color: white;
    border-radius: 999px;
    transition: transform .2s ease, box-shadow .2s ease;
}

.line-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(39, 195, 74, .28);
}

.sp-menu .insta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(45deg,
            #f09433,
            #e6683c,
            #dc2743,
            #cc2366,
            #bc1888);
    transition: transform .2s ease, box-shadow .2s ease;

}

.insta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(188, 24, 136, 0.35);
}

.sp-menu-logo {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.sp-menu-logo img {
    width: 180px;
    opacity: 0.7;
    pointer-events: none;
}

.section-title {
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
    font-size: 32px;
    color: #1a5cae;
}

.btn {
    display: inline-block;
    padding: 10px 60px;
    border-radius: 999px;
    border: 2px solid transparent;
    transition: opacity .2s ease;
    z-index: 10;
}

.btn-solid {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 999px;
    background: #f2a11f;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(242, 161, 31, .3);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(242, 161, 31, .35);
}

.btn-solid:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(242, 161, 31, .3);
}

.nd-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* =========================
    HOME専用：トップヒーロー
========================= */
.top-hero {
    margin-top: 75px;
}

.top-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 左：テキスト / 右：画像 */
    gap: 28px;
    align-items: stretch;
    min-height: calc(100vh - 80px);
}

/* 左：真ん中寄せ（縦中央） */
.top-hero__left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 50px;
}

.top-hero__logo {
    width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 18px auto;
}


.top-hero__catch {
    margin: 0;
    text-align: center;
    font-size: 18px;
    line-height: 2.0;
    font-weight: 700;
    color: #1a5cae;
    letter-spacing: 0.6px;
    font-family: "Kiwi Maru", serif;

}

.top-hero__catch-space {
    margin-left: 15px;
}

.top-hero__catch-strong {
    display: inline-block;
    font-size: 26px;
    line-height: 1.9;
}

/* キャッチ下：イラスト3つ横並び */
.top-hero__icons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.top-hero__icons img {
    width: 150px;
    height: auto;
    display: block;
}

.top-hero__cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* 右：背景画像（全面） */
.top-hero__right {
    min-height: calc(100vh - 80px);
    background-size: cover;
    background-position: 50% 25%;
    border-radius: 24px 0 0 24px;
    transition: opacity 1.0s ease;
}

.concept {
    padding: 120px 20px;
    position: relative;
}

.concept__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.concept__lead {
    font-size: 20px;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 24px;
}

.concept__text {
    font-size: 17px;
    line-height: 2.2;
    color: #555;
    margin-bottom: 40px;
}

/* セクション全体 */
.guide-zigzag {
    padding: 0 20px;
}

.guide-zigzag__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.home-item {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 100px;
}

.home-item__illust {
    width: 50%;
    max-width: 300px;
    height: auto;
    display: block;
}

.home-item.is-reverse {
    flex-direction: row-reverse;
}

.home-box {
    width: 50%;
    max-width: 400px;
    position: relative;
    padding: 15px 20px 20px;
    text-align: center;
    border: 3px solid #b7b7b7;
    border-radius: 18px;
    background: #fff;
}

.home-box__title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    color: #333;
    padding: 0 14px;
    font-weight: 700;
    margin: 0;
}

.home-box__text {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.7;
}

/* ===== 足跡デコレーション ===== */
.route {
    position: relative;
    overflow-x: hidden;
}

/* 足跡レイヤー（クリック邪魔しない＆背景扱い） */
.tracks {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

/* route 内の本体は足跡より上 */
.route>section {
    position: relative;
    z-index: 2;
}

/* 1歩（左右2枚セット） */
.step {
    position: absolute;
    width: 130px;
    /* ← 70→110（1歩の幅を大きく） */
    height: 130px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.98);
    transition: opacity .25s ease, transform .25s ease;
    /* 少し速く */
    will-change: transform, opacity;
}

.step.is-show {
    opacity: .35;
    transform: translate(-50%, -50%) scale(1);
}

.paw {
    position: absolute;
    width: 50px;
    /* ← 26→42（肉球を大きく） */
    height: 50px;
}

.paw.l {
    left: 10px;
    top: 12px;
}

.paw.r {
    right: 10px;
    bottom: 12px;
}

/* ===== GALLERY ===== */
/* =========================
   GALLERY セクション
========================= */
.gallery {
    padding: 110px 20px;
}

.gallery__inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

/* スライダー全体 */
.gallery_slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* =========================
Smash Balloon 本体
========================= */

/* 外枠 */
#sb_instagram {
    padding: 0 10px !important;
    margin: 0 auto;
    height: auto !important;
}

/* ★ ここが本体（横並びにする本命） */
#sb_instagram #sbi_images {
    display: flex;
    flex-wrap: nowrap;
    gap: 13px;
    padding: 10px;
    justify-content: center;
    overflow: hidden;
    scroll-snap-type: none !important;
}

/* スクロールバー非表示（任意） */
#sbi_images::-webkit-scrollbar {
    display: none;
}

/* 1枚のカード幅（＝はみ出しを作る） */
#sbi_images .sbi_item {
    flex: 0 0 171px !important;
    scroll-snap-align: unset !important;
}

/* 画像ラップ */
.sbi_photo_wrap {
    border-radius: 14px;
    overflow: hidden;
}

/* 画像そのもの */
.sbi_photo {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

/* 縦スクロールバーを絶対に出さない（Smash Balloon横スライダー用） */
#sb_instagram,
#sb_instagram #sbi_images,
#sb_instagram .sbi_items {
    overflow-y: hidden !important;
}

/* =========================
   矢印ボタン
========================= */
.gallery_arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    z-index: 5;
    opacity: 0.9;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.gallery_arrow.is-prev {
    left: -14px;
}

.gallery_arrow.is-next {
    right: -14px;
}

.gallery_arrow::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 3px solid #333;
    border-right: 3px solid #333;
    margin: auto;
}

.gallery_arrow.is-prev::before {
    transform: rotate(-135deg);
}

.gallery_arrow.is-next::before {
    transform: rotate(45deg);
}

.gallery_slider #sb_instagram button {
    display: none !important;
}

/* CTA */
.gallery__cta {
    margin-top: 26px;
}

/* ===== ACCESS ===== */
.access {
    padding: 0 20px;
}

.access-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

/* Google Map */
.access-map {
    width: 50%;
}

.access-map iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 16px;
}

/* 店舗情報 */
.access-info {
    width: 50%;
    font-size: 16px;
}

.access-info dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    row-gap: 30px;
    column-gap: 15px;
    margin-bottom: 25px;
}

.access-info dt {
    font-weight: 600;
}

.access-info dd {
    margin: 0;
}

/* =========================
    FOOTER（全ページ共通）
========================= */
.footer {
    padding: 24px 20px 30px;
    text-align: center;
}

.footer__copy {
    font-size: 11px;
    color: #777;
    letter-spacing: .06em;
}


/* =========================
    CONCEPTページ（concept.html専用）
   ========================= */
.header-title {
    margin-top: 80px;
    padding: 14px 0;
    text-align: center;
    background-image: url("../mirim img/bg.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.concept-detail {
    max-width: 900px;
    margin: 40px auto 90px;
    padding: 0 20px;
}

/* 見出し */
.concept-large-title {
    text-align: center;
    margin: 10px 0 50px;
}

.concept-large-title p {
    margin: 0;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: .04em;
}

/* ブロック共通 */
.detail-list {
    margin-top: 40px;
}


.detail-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 60px;
}

/* 偶数だけ交互にする（wrapper内で正しく数える） */
.detail-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    /* ← ここ重要 */
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

/* 偶数行だけ左右反転（PC） */
.detail-block:nth-of-type(even) {
    flex-direction: row-reverse;
}

.detail-text {
    flex: 1;
    max-width: 520px;
    font-size: 15px;
    line-height: 2;
}

.detail-img {
    width: 360px;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 18px;
}

.detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 下のボタン */
.concept-btns-bottom {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* option */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.menu-tab-btn {
    width: 150px;
    padding: 10px 24px;
    border-radius: 999px;
    border: 2px solid #f2a11f;
    color: #f2a11f;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    background: #fff;
    transition: background .2s ease, color .2s ease;
}

.menu-tab-btn:hover {
    background: #fff6e5;
}

.menu-tab-btn.is-active {
    background: #f2a11f;
    color: #fff;
}

.menu-tab-btn:active {
    background: inherit;
}


.menu-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
    text-align: center;
}

.menu-section h3 {
    font-size: 20px;
    color: #2f5f73;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: .08em;
}

.option-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.option-left,
.option-right {
    width: 48%;
}

.option-right h3 {
    margin-bottom: 15px;
}

.price-table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: collapse;
}

.price-table th {
    background: #a7dcf7;
    color: #fff;
    padding: 10px;
    border: 1px solid #ccc;
}

.price-table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
    vertical-align: middle;
    font-size: 15px;
}

.note {
    font-size: 13px;
}

.note span {
    color: #c00;
    line-height: 1.8;
}

/* =========================
    ACCESSページ（access.html専用）
   ========================= */

.access-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px 80px;
    text-align: center;
}

/* 見出し（サロン概要 / MAP） */
.access-page h3 {
    font-size: 20px;
    color: #2f5f73;
    font-weight: bold;
    margin-bottom: 20px;
    letter-spacing: .08em;
}

/* メイン画像 */
.access-page .access-image {
    width: 100%;
    height: 70vh;
    min-height: 260px;
    max-height: 520px;
    overflow: hidden;
    border-radius: 16px;
}

.access-page .access-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 下の写真ギャラリー */
.access-page .access-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 18px;
}

.access-page .access-gallery img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* サロン概要テーブル */
.access-page .access-table {
    width: min(900px, 100%);
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 15px;
    color: #333;
    text-align: left;
}

.access-page .access-table th,
.access-page .access-table td {
    border-bottom: 1px solid #ddd;
    padding: 14px;
    vertical-align: top;
}

.access-page .access-table th {
    width: 32%;
    font-weight: 700;
    background: #f7f7f7;
}

/* MAP */
.access-page .access-map {
    width: min(900px, 100%);
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
}

.access-page .access-map iframe {
    width: 100%;
    height: 420px;
    display: block;
    border: 0;
}

/* option */
.option-list {
    max-width: 900px;
    margin: 40px auto 60px;
    padding: 0 20px;
}

.option-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;

    align-items: stretch;
}

.option-item.reverse {
    flex-direction: row-reverse;
    flex-wrap: wrap;
}

/* テキスト側 */
.option-text {
    flex: 1;
    min-width: 320px;
    max-width: 550px;

    font-size: 15px;
    line-height: 1.8;

    display: flex;
    flex-direction: column;
}



/* 見出し */
.option-text h3 {
    font-size: 20px;
    margin-bottom: 4px;
}

/* 価格 */
.price {
    margin-bottom: 16px;
    font-weight: bold;
}

.option-img {
    flex: 0 0 auto;
    width: clamp(260px, 30vw, 360px);
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: #ddd;
}

.option-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.option-img figure {
    margin: 0;
    height: 100%;
}

.recommend {
    background: #dff1ff;
    padding: 12px 16px;
    margin-top: auto;
    border-radius: 10px;
}

.rec-title {
    margin: 0 0 6px;
    color: #e53935;
    font-size: 14px;
    font-weight: bold;
}

.recommend ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 24px;
    margin: 0;
    padding-left: 18px;
}

.recommend li {
    width: calc(50% - 12px);
    font-size: 14px;
    line-height: 1.7;
}

.menu-btn-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.menu-btn-wrapper a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 54px;
    min-width: 220px;
    padding: 0 34px;
    border-radius: 999px;
    text-decoration: none;
    box-sizing: border-box;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
}

/* --- メニュー・料金（オレンジ）--- */
.menu-btn-wrapper .btn-solid {
    background: #f2a11f;
    color: #fff;
    box-shadow: 0 8px 18px rgba(242, 161, 31, .30);
    transition: transform .2s ease, box-shadow .2s ease;
}

.menu-btn-wrapper .btn-solid:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(242, 161, 31, .35);
}

.menu-btn-wrapper .btn-solid:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(242, 161, 31, .30);
}

/* --- LINEで予約（緑）--- */
.btn-line {
    background: #27c34a;
    color: #fff;
    border: none;
    box-shadow: 0 6px 14px rgba(39, 195, 74, .30);
    transition: transform .2s ease, box-shadow .2s ease;
}

.btn-line:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(39, 195, 74, .35);
}

.btn-line:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(39, 195, 74, .30);
}

/* first */

.first-section {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.first-main-title {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.first-block {
    padding: 24px 24px 20px;
    margin-bottom: 32px;
    background: #fafafa;
    border-radius: 16px;
}

.first-label {
    font-weight: bold;
    color: #c94a4a;
    margin-bottom: 12px;
    font-size: 15px;
}

.first-block ul {
    padding-left: 1.2em;
}

.first-block li {
    font-size: 14px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.first-btn-area {
    display: flex;
    justify-content: center;
    gap: 34px;
    margin-top: 50px;
}

.first-btn-area .btn-solid {
    width: 150px;
    text-align: center;
}

/* =========================
    Responsive（スマホ）
    ========================= */

/* =========================
    Responsive（スマホ）
    ========================= */

/* PCは非表示 */
@media (min-width: 769px) {
    .sp-fixed-cta {
        display: none;
    }

    .sp-only {
        display: none;
    }
}

@media (max-width: 768px) {

    /* ---- 共通 ---- */
    .pc-nav {
        display: none;
    }

    .pc-only {
        display: none;
    }

    .hamburger {
        display: block;
        position: fixed;
        top: 5%;
        right: 3%;
        z-index: 100;
        background-color: #fff;
    }

    .section-title {
        font-size: 26px;
    }

    .container {
        width: 100%;
    }

    .tracks {
        display: none;
    }

    .btn.btn-solid {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: min(92vw, 420px);
        max-width: 100%;
        box-sizing: border-box;

        padding: 14px 18px;
        border-radius: 999px;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* ---- ヘッダー（ハンバーガー導入済み前提） ---- */
    header {
        padding: 30px 8em 30px 30px;
        box-shadow: none;
        border-bottom: none;
        backdrop-filter: none;
    }

    .nav-menu {
        justify-content: space-between;
    }

    .logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: auto;
        height: auto;
    }

    .logo img {
        width: 65px;
        height: auto;
        transition: width .35s ease;
    }

    .logo img.is-large {
        width: 140px;
    }

    .sp-fixed-cta {
        position: fixed;
        top: 5%;
        right: 18%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity .2s ease, visibility .2s ease;
    }

    .sp-fixed-cta.is-show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .sp-fixed-cta .btn {
        max-width: calc(100% - 40px);
        width: 100%;
        height: 25px;
        border-radius: 999px;
        font-size: 15px;
        font-weight: 700;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

    /* 1) メインビジュアル */

    /* --- Hero全体 --- */

    .top-hero__inner {
        display: flex;
        flex-direction: column-reverse;
        gap: 14px;
        min-height: auto;
    }

    .top-hero__right {
        border-radius: 24px 0 0 500px;
        background-size: cover;
        background-position: center 30%;
        overflow: hidden;
    }

    .top-hero__left {
        padding: 0 16px 10px;
    }

    /* 初期（大きめ・薄く背景的） */
    .top-hero__logo {
        display: none;
    }

    /* キャッチを左下・3行想定（折り返しOK） */
    .top-hero__catch {
        position: absolute;
        left: 30px;
        bottom: 20%;
        z-index: 30;
        font-size: 22px;
        text-align: left;
        text-shadow: 2px 2px rgba(255, 255, 255, 0.7);

    }

    .top-hero__catch-space {
        margin-left: 0;
    }

    .top-hero__catch-strong {
        font-size: 23px;
    }


    /* アイコンは今のまま（中央寄せ） */
    .top-hero__icons {
        gap: 20px;
    }

    .top-hero__icons img {
        width: 92px;
    }

    /* ヘッダー背景なしに寄せる（必要なら） */
    header,
    .nav-menu {
        background: transparent;
    }

    /* 2) CONCEPT：余白をSP向けに */
    .concept {
        padding: 30px 16px;
    }

    .concept__lead {
        font-size: 16px;
        line-height: 1.9;
        margin-bottom: 16px;
    }

    .concept__text {
        font-size: 14px;
        line-height: 2.0;
        margin-bottom: 22px;
    }

    /* 3) GUIDE：横並び→縦並び。gapを小さく */
    .guide-zigzag {
        padding: 30px 16px;
    }

    /* あなたのHTMLは guide-inner（guide-zigzag__inner ではない）なのでここが効きます */
    .guide-inner {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .home-item {
        flex-direction: column;
        gap: 14px;
        width: 100%;
        max-width: 450px;
    }

    .home-item.is-reverse {
        flex-direction: column;
        /* SPは逆転させない（読みやすさ優先） */
    }

    .home-item__illust {
        width: min(250px, 60%);
        max-width: none;
    }

    .home-box {
        width: 92%;
        max-width: none;
        padding: 16px 16px 18px;
    }

    .home-box__title {
        font-size: 14px;
    }

    .home-box__text {
        font-size: 13px;
        line-height: 1.7;
    }

    /* 4) GALLERY：*/
    #sbi_images .sbi_item {
        flex: 0 0 140px !important;
    }

    .gallery_arrow {
        display: none;
    }

    /* 5) ACCESS：横→縦 */
    .access-inner {
        flex-direction: column;
        /* 縦並び */
        align-items: center;
        /* 全体を中央 */
        gap: 24px;
    }

    /* Google Map */
    .access-map {
        width: 100%;
        max-width: 320px;
    }

    .access-map iframe {
        height: 240px;
    }

    /* 店舗情報 */
    .access-info {
        width: 100%;
        max-width: 320px;
    }

    .access-info dl {
        grid-template-columns: 1fr;
        /* 1カラム化 */
        row-gap: 14px;
    }

    .access-info dt {
        font-weight: 600;
    }

    /* ACCESS内ボタン中央 */
    .access .btn {
        margin: 16px auto 0;
        display: inline-flex;
        justify-content: center;
    }

    /* 6) 足跡：スマホでは非表示（要望どおり） */
    .tracks {
        display: none !important;
    }

    /* ---- CONCEPT ---- */
    .concept-section {
        padding: 60px 0;
    }

    .concept-lead {
        font-size: 18px;
        padding: 0 14px;
    }

    .concept-text {
        font-size: 16px;
        padding: 0 14px;
        margin-bottom: 40px;
    }

    .paw-prints {
        width: 340px;
        top: 260px;
        right: -40px;
        opacity: 0.45;
    }

    .concept-cta {
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .btn {
        width: 240px;
        padding: 10px 24px;
        text-align: center;
    }

    .btn-solid {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* ===== MENU responsive ===== */

    .menu-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0;
    }

    .menu-tab-btn {
        max-width: 280px;
        width: 100%;
        margin: 0 auto;
    }

    .menu-section {
        padding: 0 16px;
    }

    .price-table {
        width: min(520px, 100%);
        margin: 0 auto 25px;
    }

    .price-table td {
        font-size: 14px;
    }

    .option-layout {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .option-left,
    .option-right {
        width: 100%;
    }

    .menu-btn-center {
        text-align: center;
    }

    .recommend li {
        width: 100%;
    }


    /* ---- GALLERY（横スクロール） ---- */
    .gallery {
        padding: 20px 0;
    }

    .gallery-list {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 14px;
        gap: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .gallery-list img {
        width: 140px;
        height: 140px;
        flex: 0 0 auto;
    }


    /* ---- ACCESS（縦並び） ---- */

    .access-page {
        padding: 12px 14px 60px;
    }

    .access-page h3 {
        margin: 28px 0 14px;
        font-size: 18px;
    }

    .access-page .access-image {
        height: auto;
        min-height: 200px;
        max-height: 360px;
    }

    .access-page .access-image img {
        border-radius: 14px;
    }

    .access-page .access-gallery img {
        border-radius: 12px;
        aspect-ratio: 4 / 3;
    }

    .access-page .access-table {
        font-size: 14px;
    }

    .access-page .access-table tr {
        display: grid;
        grid-template-columns: 1fr;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
    }

    .access-page .access-table th,
    .access-page .access-table td {
        border: none;
        padding: 6px 10px;
    }

    .access-page .access-table th {
        width: auto;
        background: transparent;
        color: #333;
        font-weight: 700;
        padding-bottom: 2px;
    }

    .access-page .access-table td {
        padding-top: 0;
    }

    .access-page .access-map iframe {
        height: 300px;
    }


    /* ---- CONCEPT詳細（concept.html等） ---- */
    .detail-block {
        flex-direction: column;
        margin-bottom: 55px;
        padding-bottom: 25px;
        gap: 24px;
    }

    /* reverse 無効化 */
    .detail-block:nth-of-type(even) {
        flex-direction: column;
    }

    .detail-img {
        width: 100%;
    }

    .detail-text {
        max-width: none;
    }

    /* ---- OPTION（option.html） ---- */
    .option-item,
    .option-item.reverse {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .option-img {
        order: 1;
        width: 100%;
        overflow: hidden;
        aspect-ratio: 4 / 3;
    }

    .option-text {
        order: 2;
        max-width: 100%;
        min-width: 0;
    }

    .recommend li {
        width: 100%;
    }

    .recommend li {
        width: 100%;
    }

    .menu-btn-wrapper {
        flex-direction: column;
        gap: 14px;
    }

    .menu-btn-wrapper a {
        width: min(320px, 100%);
        min-width: 0;
        margin: 0 auto;
    }

    /* ---- はじめての方へ（first.html） ---- */
    .first-label {
        font-size: 20px;
    }

    .first-btn-area {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }


}