@charset "UTF-8";


body {
    margin: 0;
    padding: 0;
    font-family:
        "Noto Sans JP",
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Meiryo",
        sans-serif;

    color: #333;
    -webkit-font-smoothing: antialiased;
    /* 文字の縁を滑らかにする（Mac/iOS用） */

    /* ▼ 背景画像を1枚で固定にする設定 ▼ */

    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}


@media screen and (min-width: 1000px) {
    body {
        background-color: #222;
    }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* 固定ヘッダーの高さ分 */
}

/* ============================================
   コンテンツエリア（スマホファースト）
   ============================================ */
.article {
    width: 100%;
    max-width: 430px;
    margin: 0px 20%;
    position: relative;
    z-index: 2;
    background-color: #fff;
}

.section {
    padding: 40px 20px;
    /* min-height: 80vh;  */
    margin-bottom: 0;
    background-color: #fff;
}


#sec01 {
    background-color: #000;
    color: #fff;
}

/* #sec02 { background-color: #3cb371; color: #fff; } */
#sec03 {
    color: #333;

}

#sec04 {
    color: #fff;
    /* margin-bottom: 40px; */
}



/* ============================================
   ナビゲーション（PC用サイドメニュー）
   ============================================ */
.nav_wrapper {
    display: none;
}

@media screen and (min-width: 1000px) {
    .nav_wrapper {
        display: block;
        position: fixed;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        pointer-events: none;
    }

    .nav_list {
        position: absolute;
        top: 50%;
        transform: translateY(-43%);
        right: calc(52% - 225px - 80px);
        list-style: none;
        padding: 0;
        margin: 0;
        letter-spacing: 0.1em;
        pointer-events: auto;
    }

    .nav_list li {
        margin-bottom: 15px;
        background: none;
        border: none;
        transition: transform 0.3s;
    }

    .nav_list li {
        margin-bottom: 4px;
        border-radius: 10px;
        transition: transform 0.3s;
    }

    .nav_list li:hover {
        transform: translateX(-5px);
    }

    .nav_list a {
        display: block;
        padding: 15px 30px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
    }
}


/* ============================================
   ▼▼▼ ハンバーガーメニュー追加スタイル ▼▼▼
   ============================================ */

.hamburger-btn {
    position: fixed;
    top: 15px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    z-index: 1001;
    cursor: pointer;
    padding: 0;
    opacity: 0;
    pointer-events: none;
    animation: fv-fade-in 1s forwards 8.5s;
}

/* 3本線の共通設定 */
.hamburger-btn .bar {
    display: block;
    position: absolute;
    left: 10px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.4s;
}

/* 開いた時（.active）は線を白くする */
.hamburger-btn.active .bar {
    background-color: #fff;
}

/* 線の位置 */
.hamburger-btn .bar-top {
    top: 13px;
}

.hamburger-btn .bar-mid {
    top: 23px;
}

.hamburger-btn .bar-bottom {
    top: 33px;
}

/* --- メニューが開いた時のボタンの変化（×印にする） --- */
.hamburger-btn.active .bar-top {
    transform: translateY(10px) rotate(45deg);
}

.hamburger-btn.active .bar-mid {
    opacity: 0;
    /* 真ん中の線を消す */
}

.hamburger-btn.active .bar-bottom {
    transform: translateY(-10px) rotate(-45deg);
}

/* --- スマホ用メニュー本体のスタイル --- */
.sp-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    height: 100vh;
    background-color: #999999;
    z-index: 99;

    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* クラスがついたら表示 */
.sp-nav.active {
    opacity: 1;
    visibility: visible;
}

.sp-nav_list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: -70px;
    margin-left: -80px;
}

.sp-nav_item {
    margin: 20px 0;
}

.sp-nav_item a {
    display: block;
    font-size: 1rem;
    /* font-weight: bold; */
    color: #fff;
    text-decoration: none;
    padding: 10px;
}



/* #sec01::after {
    content: "";
    position: absolute;
    top: 230px;
    left: 0;
    width: 100%;
    height: 240px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 50%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    pointer-events: none;
} */

@media screen and (max-width: 600px) {
    .article {
        margin: 0px auto;
    }

    /* #sec01::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150px;


        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0.5) 0%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 5;

        pointer-events: none;

    }

    #sec01::after {
        content: "";
        position: absolute;
        top: 182px;
        left: 0;
        width: 100%;
        height: 270px;
        background: linear-gradient(to bottom,
                rgba(0, 0, 0, 0) 0%,
                rgba(0, 0, 0, 0.5) 50%,
                rgba(0, 0, 0, 0) 100%);
        z-index: 5;
        pointer-events: none;
    } */

}




/* --- PCサイズ（1000px以上）では非表示にする --- */
@media screen and (min-width: 1000px) {
    .hamburger-btn {
        display: none;
    }

    .sp-nav {
        display: none !important;
    }
}


/* --- 共通：画像の基本設定 --- */
.logo img,
.pc-logo img {
    display: block;
    width: auto;
    height: auto;
}

/* --- SP用ヘッダー（初期表示・スマホ用） --- */
.sp-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    /* background-color: rgba(255, 255, 255, 0.9);  */
    display: flex;
    align-items: center;
    padding-left: 20px;
    box-sizing: border-box;
    z-index: 90;
    /* box-shadow: 0 2px 5px rgba(0,0,0,0.1);  */
    opacity: 0;
    pointer-events: none;
    animation: fv-fade-in 1s forwards 8.5s;
}

.sp-header .logo img {
    max-height: 46px;
    margin-top: 21px;
}


.article {
    padding-bottom: 95px;
}

/* PC用ロゴはスマホでは隠す */
.pc-logo {
    display: none;
}

.pc-reserve-btn {
    display: block;
    position: absolute;
    right: calc(57% - 225px - 230px);
    top: calc(50% + 255px);
    z-index: 6;
    pointer-events: auto;
}

.pc-reserve-btn.pc-salon-btn {
    top: calc(42% + 286px);
    right: calc(57% - 226px - 200px);
}

.pc-reserve-btn.pc-salon-btn a {
    background-color: #fff;
    color: #baab83;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.pc-reserve-btn a {
    display: inline-block;
    font-size: 0.95rem;
    width: 210px;
    padding: 20px 0;
    background-color: #38af4f;
    color: #fff;
    text-decoration: none;
    text-align: center;
    /* font-weight: bold; */
    border-radius: 65px;
    border: none;
    letter-spacing: 0.1em;
    position: relative;
    padding-right: 47px;

    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ▼▼▼ ホバー時の動き ▼▼▼ */
.pc-reserve-btn a:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* 矢印の「線（軸）」の部分 */
.pc-reserve-btn a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 右端からの位置 */
    width: 30px;
    /* 矢印の線の長さ */
    height: 1px;
    /* 矢印の線の太さ */
    background-color: #fff;
    /* 線の色 */
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

/* 矢印の「先端（くの字）」の部分 */
.pc-reserve-btn a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    /* 線と同じ位置からスタート */
    width: 6px;
    /* 先端のサイズ */
    height: 6px;
    /* 先端のサイズ */
    border-top: 1px solid #fff;
    /* 先端の太さ */
    border-right: 1px solid #fff;
    /* 先端の太さ */
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s ease;
    z-index: 1;
}

.pc-reserve-btn.pc-salon-btn a::after {
    background-color: #baab83;
}

.pc-reserve-btn.pc-salon-btn a::before {
    border-top: 1px solid #baab83;
    /* 先端の太さ */
    border-right: 1px solid #baab83;
}

/* ホバー時に矢印全体を少し右に動かす */
.pc-reserve-btn a:hover::after,
.pc-reserve-btn a:hover::before {
    right: 25px;
}

/* --- PC表示時（1000px以上）のスタイル上書き --- */
@media screen and (min-width: 1000px) {

    /* SPヘッダーを隠す */
    .sp-header {
        display: none;
    }

    /* PC用コンテンツの余白調整（SPの余白をリセット） */
    .article {
        padding-top: 0;
        padding-bottom: 0px;
    }

    .nav_wrapper {
        display: block;
        position: fixed;
        top: 46%;
        transform: translateY(-50%);
        width: 100%;
        z-index: 5;
        pointer-events: none;
    }

    .pc-logo {
        display: block;
        position: absolute;
        right: calc(55% - 225px - 147px);
        bottom: calc(50% + 195px);
        z-index: 6;
        pointer-events: auto;
    }

    .pc-logo img {
        max-width: 209px;
        height: auto;
    }



    /* ホバー時に少し左に動かすアニメーション（不要なら削除OK） */
    .nav_list li:hover {
        transform: translateX(-5px);
    }

    /* --- リンク（文字）のスタイル --- */
    .nav_list a {
        display: block;
        padding: 10px 30px;
        text-decoration: none;
        /* font-weight: 700; */
        color: #fff;
        transition: color 0.3s;
    }

    /* ▼▼▼ 追加：文字色だけを変える設定 ▼▼▼ */
    .nav_list a:hover {
        color: #baab83;
    }

}

/* スマホではPC用の予約ボタンを隠す */
@media screen and (max-width: 999px) {
    .pc-reserve-btn {
        display: none;
    }


}



/* ============================================
   ▼▼▼ 以上はスマホファーストの共通▼▼▼
   ============================================ */

/* ============================================
   ▼▼▼ 以下からコンテンツ▼▼▼
   ============================================ */


.fv-logo {
    text-align: center;
    max-width: 300px;
    margin: 0 24% 0 26%;
}

.fv-logo svg {
    width: 100%;
    height: auto;
    display: block;
}





/* --- Section1(FV)のレイアウト --- */
#sec01 {
    position: relative;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
}

.fv-container {
    position: relative;
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fv-scene {
    position: absolute;
    width: 100%;
    text-align: center;
    color: #fff;
    font-family: "A-OTF ゴシックMB101 Pro L", "Noto Sans JP", sans-serif;
    opacity: 0;
    pointer-events: none;
}

/* Scene 1: Japanese Text */
.scene-1 {
    font-size: 1.4rem;
    line-height: 1.6;
    letter-spacing: 0.15em;
    animation: fv-fade-in 0.8s forwards, fv-fade-out 0.8s forwards 3.5s;
}

.s1-line {
    display: block;
}

.s1-fade-inline {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 3em;
    vertical-align: bottom;
    animation: fv-fade-out 1.2s ease-in-out forwards 1.2s, fv-shrink-width 1.2s ease-in-out forwards 1.2s;
}

.s1-fade {
    overflow: hidden;
    max-height: 2em;
    animation: fv-fade-out 1.2s ease-in-out forwards 1.2s, fv-shrink-height 1.2s ease-in-out forwards 1.2s;
}

@keyframes fv-shrink-height {
    to {
        max-height: 0;
    }
}

@keyframes fv-shrink-width {
    to {
        max-width: 0;
    }
}

/* Scene 2 & 3: English Text transition */
.scene-2 {
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    animation: fv-fade-in 1s forwards 3.8s, fv-fade-out 1s forwards 7.2s;
}

.scene-2 .nymo-wrap {
    display: inline-block;
    animation: nymo-narrow 0.8s forwards 5.3s;
}

.scene-2 .fade-char {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    max-width: 10em;
    vertical-align: bottom;
    animation: fv-fade-out 0.8s forwards 5.3s, fv-shrink 0.8s forwards 5.3s;
}

/* Scene 4: Logo */
.scene-4 {
    animation: fv-fade-in 1.2s forwards 7.5s;
}

.scene-4 img {
    max-width: 120px;
    height: auto;
}

/* Animation Keyframes */
@keyframes fv-fade-in-out {
    0% {
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes fv-fade-in {
    from {
        opacity: 0;
        pointer-events: none;
    }

    to {
        opacity: 1;
        pointer-events: auto;
    }
}

@keyframes fv-fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes nymo-narrow {
    from {
        letter-spacing: 0.15em;
    }

    to {
        letter-spacing: 0.3em;
    }
}

@keyframes fv-shrink {
    to {
        max-width: 0;
    }
}

@keyframes fv-hide {
    to {
        display: none;
        opacity: 0;
        font-size: 0;
        line-height: 0;
    }
}


.fv-sub-copy {
    font-size: 1.2rem;
    margin-bottom: 2px;
    letter-spacing: 0.1em;
}

.fv-main-copy {
    font-size: 2.1rem;
    line-height: 0;
    margin-bottom: 19px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-main-copy02 {
    font-size: 2.2rem;
    line-height: 0;
    margin-bottom: 28px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.fv-description {
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

/* --- スクロールダウン全体の配置 --- */
.scrolldown {
    position: absolute;
    right: 51%;
    bottom: 240px;
    z-index: 10;
    width: 1px;
}

/* 「SCROLL」のテキスト部分 */
.scrolldown span {
    position: absolute;
    left: 4px;
    bottom: 20px;
    writing-mode: vertical-rl;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: #fff;
    font-family: sans-serif;
}

/* 矢印の「線」の部分 */
.scrolldown::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 1px;
    height: 70px;
    background: #fff;
}

/* 矢印の「先端（くの字）」の部分 */
.scrolldown::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: -2.5px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* --- 上下に動くアニメーション --- */
@keyframes scrollMove {
    0% {
        transform: translateY(-10px);
        /* 上に10px */
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateY(10px);
        /* 下に10px */
        opacity: 0;
    }
}

.scrolldown {
    animation: scrollMove 3s infinite 8.5s, fv-fade-in 1s forwards 8.5s;
    opacity: 0;
}


/* SP用予約ボタン（画像のデザインを再現） */
.btn-reserve {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 280px;
    height: 65px;
    background-color: #baab83;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    position: relative;
}

.btn-reserve .arrow {
    margin-left: 20px;
    width: 40px;
    height: 1px;
    background-color: #fff;
    position: relative;
}

.btn-reserve .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}


/* ============================================
   ▼▼▼ スマホ用固定予約ボタン ▼▼▼
   ============================================ */
.sp-fixed-btn {
    position: fixed;
    bottom: 10px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 10px;
    box-sizing: border-box;
    /* display: flex;
    justify-content: space-between;
    pointer-events: none; */
    opacity: 0;
    pointer-events: none;
    animation: fv-fade-in 1s forwards 8.5s;
}

.sp-fixed-btn a {
    pointer-events: auto;
}

.sp-fixed-btn .reserve-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 60px;
    background-color: #38af4f;
    color: #fff;
    text-decoration: none;
    border-radius: 55px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s, transform 0.3s;
}

.sp-fixed-btn .reserve-btn:hover {
    opacity: 0.9;
}

.sp-fixed-btn .slon-btn-outline {
    border-radius: 55px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    background-color: #fff;
}

/* 矢印（既存のデザインを踏襲） */
.sp-fixed-btn .arrow {
    margin-left: 9px;
    width: 28px;
    height: 1px;
    background-color: #fff;
    position: relative;
    display: block;
}

.sp-fixed-btn .arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* 1000px以上では非表示 */
@media screen and (min-width: 1000px) {
    .sp-fixed-btn {
        display: none;
    }
}



/* フッター全体のスタイル */

section#sec10 {
    padding: 40px 30px 90px;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 50px 25px 30px;
    text-align: center;
}

.footer-inner {
    max-width: 393px;
    margin: 0 auto;
}

/* ロゴ */
.footer-logo {
    width: 200px;
    margin: 0 auto 40px;
}

.footer-logo img {
    width: 45%;
    height: auto;
}

/* SNSアイコン */
.footer-sns {
    margin-bottom: 34px;
}

.footer-sns img {
    width: 40px;
    height: auto;
    transition: opacity 0.3s;
}

.footer-sns a:hover img {
    opacity: 0.7;
}

/* 住所情報 */
.footer-info {
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.footer-info .zip {
    font-size: 0.9rem;
    margin-bottom: -18px;
}

.footer-info .address {
    font-size: 0.9rem;
    font-weight: 400;
}

/* コピーライト */
.footer-copy {
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 20px;
}

.footer-copy small {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* PCサイズ時の微調整 */
@media screen and (min-width: 1000px) {
    .footer {
        padding: 80px 0 40px;
    }

    .footer-inner {
        max-width: 800px;
    }
}

/* -------------------------------------------
   Why Choose Us (Section 02)
------------------------------------------- */
.wcu-section {
    background-color: #999999;
    border-radius: 30px 30px 0 0;
    padding: 50px 25px 110px 25px;
    position: relative;
    margin-top: -30px;
    z-index: 20;
    color: #fff;
}

.wcu-inner {
    max-width: 800px;
    margin: 0 auto;
}

.wcu-header {
    text-align: center;
    margin-bottom: 55px;
}

.wcu-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-align: left;
}

.wcu-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-align: left;
}

.wcu-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.wcu-item {
    position: relative;
    padding-left: 5px;
}

.wcu-num {
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: -4px;
    font-family: sans-serif;
}

.wcu-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
    position: relative;
    z-index: 2;
}

.wcu-item-text {
    font-size: 0.9rem;
    line-height: 1.8;
    letter-spacing: 0.05em;
    color: #fff;
    position: relative;
    z-index: 2;
}

.wcu-bg-icon {
    position: absolute;
    right: -60px;
    top: 34%;
    transform: translateY(-40%);
    width: 140px;
    height: auto;
    opacity: 0.6;
    z-index: 1;
    pointer-events: none;
}

/* PCサイズ調整 */
/* @media screen and (min-width: 1000px) {
    .wcu-section {
        padding: 150px 0;
    }

    .wcu-bg-icon {
        width: 180px;
        right: 0px;
    }

    .wcu-en-title {
        font-size: 5rem;
    }

    .wcu-num {
        font-size: 6.5rem;
    }
} */

/* -------------------------------------------
   Price (Section 03)
------------------------------------------- */
.price-section {
    background-color: #fff;
    border-radius: 30px 30px 0 0;
    padding: 10px 16px 20px;
    position: relative;
    margin-top: -30px;
    z-index: 21;
}

.price-inner {
    max-width: 800px;
    margin: 0 auto;
}

.price-header {
    text-align: left;
    margin-bottom: 40px;
}

.price-en-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
    text-align: left;
    margin-left: 20px;
}

.price-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #333;
    text-align: left;
    margin-top: 10px;
    margin-left: 23px;
}

.price-card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
}

.price-card {
    background-color: #fff;
    border: 1px solid #00004d;
    border-radius: 25px;
    overflow: hidden;
    width: 100%;
    max-width: 380px;
}

/* セミオーダー（グリーン）の配色上書き */
.price-card.semi-order {
    border-color: #00d8d2;
}

.price-card.semi-order .card-header {
    background-color: #00d8d2;
}

.price-card.semi-order .card-cta-btn {
    background-color: #00d8d2;
}


.card-header {
    background-color: #00004d;
    padding: 2px 20px;
    text-align: left;
    color: #fff;
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.1em;
    margin-top: 20px;
}

.card-subtitle {
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.05em;
    margin-top: 2px;
    margin-bottom: 20px;
}

.card-body {
    /* padding: 30px 20px 40px; */
}

.item-img {
    width: 100%;
    /* margin-bottom: 30px; */
    text-align: center;
}

.item-img img {
    max-width: 100%;
    height: auto;
}

.price-display {
    margin: 0px 20px 20px 20px;
    padding: 0 10px;
}

.main-price {
    display: block;
    margin-bottom: 15px;
    color: #000;
}

.main-price .label {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.main-price .val {
    font-size: 2.3rem;
    font-weight: 700;
    font-family: 'D-DIN', sans-serif;
    line-height: 1;
    letter-spacing: 1px;
}

.main-price .unit {
    font-size: 1.1rem;
    font-weight: 600;
    margin-left: 5px;
}

.sub-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    /* align-items: center; */
}

.sub-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    color: #333;
}

.sub-price .label {
    font-size: 0.9rem;
    font-weight: 500;
}

.sub-price .val {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'D-DIN', sans-serif;
}

.sub-price .unit {
    font-size: 0.8rem;
}

.check-list {
    margin-bottom: 35px;
    padding-left: 33px;
    padding-top: 10px;
    list-style: none;
    /* リスト記号を消去 */
}

.check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #000;
}


.main-price.item {
    margin-left: 11px;
    margin-bottom: -20px;
}

ul.check-list.item {
    padding-left: 18px;
}


.check-icon {
    width: 18px;
    height: auto;
    margin-right: 12px;
}

.card-btn-wrap {
    margin: 0 auto 28px auto;
    text-align: center;
    width: 90%;
}

.card-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 60px;
    background-color: #00004d;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.card-cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-note {
    font-size: 0.75rem;
    margin-top: 10px;
    text-align: center;
    color: #666;
    line-height: 1.4;
    font-weight: 400;
}

/* 背景が暗いセクションでの色調整 */
.catalog-section .btn-note,
.shop-section .btn-note,
.flow-section .btn-note {
    color: rgba(255, 255, 255, 0.7);
}


.btn-arrow {
    width: 25px;
    height: 1px;
    background-color: #fff;
    margin-left: 15px;
    position: relative;
}

.btn-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

/* PC調整 */
/* @media screen and (min-width: 1000px) {
    .price-section {
        padding: 150px 0;
    }

    .price-card {
        max-width: 420px;
    }

    .card-body {
        padding: 40px 35px 50px;
    }

    .price-en-title {
        font-size: 5rem;
    }
} */

/* 補足事項・オプション */
.price-notes {
    margin-top: 40px;
    margin-bottom: 70px;
    padding-left: 20px;
    padding-right: 20px;
}

.price-notes p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 10px;
}

.price-options {
    margin-top: 0;
    padding-left: 12px;
    padding-bottom: 50px;
    padding-right: 12px;
}

.options-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 35px;
    padding-left: 15px;
    border-left: 8px solid #000;
    line-height: 1.1;
    letter-spacing: 0.1em;
}

.options-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.option-item {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.option-item .label {
    font-size: 0.86rem;
    font-weight: 600;
    color: #333;
}

.option-item .val {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: sans-serif;
    color: #000;
}

.option-item .unit {
    font-size: 0.85rem;
    font-weight: 500;
    color: #333;
}

/* PCサイズ調整が必要な場合用 */
/* @media screen and (min-width: 1000px) {

    .price-notes,
    .price-options {
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 0;
    }
} */

/* -------------------------------------------
   Item (Section 04)
------------------------------------------- */
.item-section {
    background-color: #fff;
    padding: 0px 10px 120px;
}

.item-inner {
    max-width: 800px;
    margin: 0 auto;
}

.item-header-top {
    text-align: left;
    margin-bottom: 45px;
}

.item-en-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    padding-left: 20px;
    line-height: 1.1;
}

.item-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #333;
    padding-left: 23px;
    margin-top: 10px;
}

/* Accordion */
.accordion-container {
    padding: 0 10px;
}

.accordion-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.accordion-btn {
    background-color: #000;
    color: #fff;
    padding: 22px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.btn-icon-tri {
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #fff;
    transition: transform 0.3s ease;
}

.accordion-item.is-open .btn-icon-tri {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item.is-open .accordion-content {
    max-height: 800px;
}

.content-inner {
    padding: 15px 15px 19px;
}

.item-img-wrap {
    text-align: center;
    margin-bottom: 12px;
}

.item-img-wrap img {
    max-width: 100%;
    height: auto;
}

.item-spec {
    padding: 0 10px;
    margin-bottom: 40px;
}

.spec-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}

.spec-row .label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
}

.spec-row .val {
    font-size: 2rem;
    font-weight: 700;
    font-family: sans-serif;
    color: #000;
}

.spec-row .unit {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

.spec-note {
    margin-top: 15px;
    font-size: 1rem;
    font-weight: 300;
    color: #333;
}

/* PCサイズ調整用 */
@media screen and (min-width: 1000px) {
    .item-inner {
        max-width: 440px;
    }
}

/* -------------------------------------------
   Design Catalog (Section 05)
------------------------------------------- */
.catalog-section {
    background-color: #000;
    padding: 35px 30px 100px;
    color: #fff;
    position: relative;
    z-index: 22;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
}

.catalog-inner {
    max-width: 800px;
    margin: 0 auto;
}

.catalog-header {
    margin-bottom: 40px;
}

.catalog-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.catalog-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 10px;
}

.catalog-check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 50px;
}

.catalog-check-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.05em;
}

.catalog-check-list .check-icon {
    width: 16px;
    height: auto;
    margin-right: 12px;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

.catalog-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1.25;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #333;
}

.catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.catalog-btn-wrap {
    text-align: center;
}

.catalog-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 65px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.catalog-more-btn:hover {
    background-color: #fff;
    color: #000;
}

.catalog-more-btn .btn-arrow {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin-left: 20px;
    position: relative;
}

.catalog-more-btn:hover .btn-arrow {
    background-color: #000;
}

.catalog-more-btn .btn-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.catalog-more-btn:hover .btn-arrow::after {
    border-color: #000;
}

/* PCサイズ調整 */
@media screen and (min-width: 1000px) {
    .catalog-inner {
        max-width: 440px;
    }
}

/* -------------------------------------------
   Our Works (Section 06)
------------------------------------------- */
.works-section {
    background-color: #fff;
    padding: 35px 30px 100px;
    position: relative;
    z-index: 22;
    border-top: 1px solid #eee;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
}

.works-inner {
    max-width: 800px;
    margin: 0 auto;
}

.works-header {
    text-align: left;
    margin-bottom: 40px;
}

.works-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.05);
    margin-bottom: 27px;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.works-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #333;
    margin-top: -15px;
    /* 英語タイトルに重ねる */
    padding-left: 5px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
    margin-bottom: 60px;
}

.insta-item {
    background-color: #999;
    /* 仮のグレー */
    aspect-ratio: 1 / 1;
}

.works-message {
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.works-btn-wrap {
    text-align: center;
}

.insta-link-btn {
    display: inline-flex;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    max-width: 320px;
    height: 65px;
    border: 1px solid #000;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 40px;
    padding: 0 63px;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.insta-link-btn:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

.insta-btn-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.insta-btn-icon {
    width: 28px;
    height: auto;
}

.insta-link-btn .btn-text {
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.insta-link-btn .btn-arrow {
    width: 25px;
    height: 1px;
    background-color: #000;
    position: relative;
}

.insta-link-btn .btn-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
}




/* PCサイズ調整 */
@media screen and (min-width: 1000px) {

    .works-inner,
    .catalog-inner {
        max-width: 440px;
    }

    .works-en-title {
        font-size: 4rem;
    }
}

/* -------------------------------------------
   Flow (Section 07)
------------------------------------------- */
.flow-section {
    background-color: #999;
    padding: 25px 30px 100px;
    color: #fff;
    position: relative;
    z-index: 23;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
}

.flow-inner {
    max-width: 800px;
    margin: 0 auto;
}

.flow-header {
    text-align: left;
    margin-bottom: 50px;
}

.flow-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.flow-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: -15px;
    padding-left: 5px;
}

.flow-steps {
    position: relative;
    padding-bottom: 20px;
}

/* 垂直線 */
.flow-steps::before {
    content: "";
    position: absolute;
    left: 35px;
    top: 50px;
    bottom: 80px;
    width: 2px;
    background-color: #fff;
    z-index: 1;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-icon-wrap {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.step-icon-wrap img {
    width: 60%;
    height: auto;
}

.step-content {
    /* padding-top: 10px; */
}

.step-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    margin-top: 5px;
}

.step-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0px;
}

/* PCサイズ調整 */
@media screen and (min-width: 1000px) {
    .flow-inner {
        max-width: 440px;
    }
}

/* -------------------------------------------
   Q&A (Section 08)
------------------------------------------- */
.faq-section {
    background-color: #fff;
    padding: 35px 30px 100px;
    position: relative;
    z-index: 24;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
}

.faq-inner {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: left;
    margin-bottom: 50px;
}

.faq-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.05);
    margin-bottom: 27px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.faq-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    color: #333;
    margin-top: -15px;
    padding-left: 5px;
}

.faq-container {
    border-top: 1px solid #ddd;
}

.faq-section .accordion-item {
    background-color: transparent;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    margin-bottom: 0;
}

.faq-btn {
    background-color: transparent;
    color: #000;
    padding: 25px 5px;
    margin-bottom: 0px;
}

.faq-q-text {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* プラス/マイナスアイコン */
.btn-icon-plusminus {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.btn-icon-plusminus::before,
.btn-icon-plusminus::after {
    content: "";
    position: absolute;
    background-color: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

/* 横棒 */
.btn-icon-plusminus::before {
    width: 100%;
    height: 2px;
}

/* 縦棒 */
.btn-icon-plusminus::after {
    width: 2px;
    height: 100%;
}

/* 展開時（マイナス） */
.faq-section .accordion-item.is-open .btn-icon-plusminus::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-content-inner {
    padding: 0 5px 25px;
}

.faq-a-text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #333;
    font-weight: 400;
}

/* PCサイズ調整 */
@media screen and (min-width: 1000px) {
    .faq-inner {
        max-width: 440px;
    }
}

/* -------------------------------------------
   Online Shop (Section 09)
------------------------------------------- */
.shop-section {
    background-color: #000;
    padding: 35px 30px 100px;
    color: #fff;
    position: relative;
    z-index: 25;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.shop-inner {
    max-width: 800px;
    margin: 0 auto;
}

.shop-header {
    text-align: left;
    margin-bottom: 40px;
}

.shop-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.shop-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 10px;
}

.shop-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 500;
}

.shop-image-wrap {
    margin-bottom: 50px;
}

.shop-image-wrap img {
    max-width: 100%;
    height: auto;
}

.shop-btn-wrap {
    text-align: center;
}

.shop-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 65px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    position: relative;
    transition: all 0.3s ease;
}

.shop-cta-btn:hover {
    background-color: #fff;
    color: #000;
}

.shop-cta-btn .btn-arrow {
    width: 30px;
    height: 1px;
    background-color: #fff;
    margin-left: 20px;
    position: relative;
}

.shop-cta-btn:hover .btn-arrow {
    background-color: #000;
}

.shop-cta-btn .btn-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
}

.shop-cta-btn:hover .btn-arrow::after {
    border-color: #000;
}

/* PCサイズ調整 */
@media screen and (min-width: 1000px) {
    .shop-inner {
        max-width: 440px;
    }
}

/* -------------------------------------------
   Contact (Section 10)
------------------------------------------- */
.contact-section {
    background-color: #00A83A;
    /* もし既存のグリーンがあればそれに合わせてください */
    padding: 35px 30px 100px;
    color: #fff;
    position: relative;
    z-index: 26;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
    text-align: center;
}

.contact-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-en-title {
    font-size: 2.3rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 5px;
    letter-spacing: 0.1em;
    line-height: 1.1;
}

.contact-jp-title {
    font-size: 1rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    margin-top: 10px;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 500;
}

.contact-btn-wrap {
    text-align: center;
}

.contact-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    height: 75px;
    background-color: #fff;
    color: #00A83A;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.94;
}

.contact-cta-btn .btn-arrow {
    width: 30px;
    height: 1px;
    background-color: #00A83A;
    margin-left: 20px;
    position: relative;
}

.contact-cta-btn .btn-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid #00A83A;
    border-right: 1px solid #00A83A;
    transform: rotate(45deg);
}

/* PCサイズ調整 */
@media screen and (min-width: 1000px) {
    .contact-inner {
        max-width: 440px;
    }
}