:root {
    /* 金色のカラー変数 */
    --color-gold-rose: #D4AF37;
    --color-gold-bright: #FBBF24;
    --color-gold-pale: #FDE68A;
    --color-gold-gradient: linear-gradient(
        135deg,
        var(--color-gold-bright) 0%,
        var(--color-gold-pale) 50%,
        var(--color-gold-rose) 100%
    );

    /* 金属っぽい帯のグラデーション */
    --gold-metal-gradient: linear-gradient(
        90deg,
        #3a2f00 0%,
        #c5a32a 10%,
        #fff9d0 23%,
        #8a6b00 36%,
        #f8e68a 48%,
        #fffdf4 58%,
        #b08600 72%,
        #3a2f00 100%
    );

    /* 光源のにじみ（左上から当たる光） */
    --gold-light-gradient: radial-gradient(
        circle at 30% 20%,
        rgba(255,255,255,0.75) 0%,
        rgba(255,255,255,0.15) 30%,
        rgba(255,255,255,0) 60%
    );

    /* テキストが発光してるように見せる影セット */
    --gold-text-shadow:
        0 0 6px rgba(255, 230, 120, 0.6),
        0 0 18px rgba(255, 215, 64, 0.4),
        0 2px 2px rgba(0, 0, 0, 0.8);
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Shippori Mincho', serif;
    background-color: #000;
}

/* ゴールド文字用の共通クラス */
.gold-text {
    background-image:
        var(--gold-metal-gradient),
        var(--gold-light-gradient);
    background-blend-mode: screen;
    background-size: 100% 100%;
    background-repeat: no-repeat;

    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    text-shadow: var(--gold-text-shadow);

    font-weight: 700;
}

/* ゴールド背景用の共通クラス */
.gold-bg {
    background-image:
        var(--gold-metal-gradient),
        var(--gold-light-gradient);
    background-blend-mode: screen;
    background-size: cover;
    background-position: center;
    color: #1a1400;
    box-shadow:
        0 0 20px rgba(255, 215, 64, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.hero-section {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    padding: 60px 0;
    box-sizing: border-box;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.main-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 4rem;
    font-weight: bold;
    margin: 0;
}

.main-title .line {
    display: inline-block;
}

.main-title .highlight {
    font-size: 1.5rem;
    vertical-align: middle;

    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.main-title .smaller-text {
    font-size: 2rem;
    vertical-align: middle;
}

.risk-zero-underline {
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 4px;
    text-underline-offset: 8px;
}

.salon-title {
    font-family: 'Shippori Mincho', serif;
    font-size: 6rem;
    font-weight: 700;
    margin: 20px 0;
    letter-spacing: -0.03em;

    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .salon-title {
        font-size: 4.5rem;
    }
}

.subtitle {
    font-family: 'Shippori Mincho', serif;
    font-size: 3rem;
    font-weight: 700;
    margin: 0 0 40px;

    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.laurel-icon {
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}

.feature-list-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-list-wrapper .gold-feather {
    width: auto;
    height: 180px;
    margin-top: -20px;
}

@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 2.5rem;
    }

    .recommend-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 0;
    }
    .recommend-items-grid {
        padding: 0 20px;
        box-sizing: border-box;
    }
    .tokuten-container {
        flex-direction: column;
        align-items: center;
    }
    .tokuten-container img {
        width: 100% !important; /* スマホでは1列表示 */
    }
    .mobile-break {
        display: block;
    }
    .hero-content {
        padding: 0 20px;
    }

    .feature-list-wrapper .gold-feather {
        height: 120px;
        width: auto;
        margin-top: -40px;
    }

    .risk-zero-underline {
        text-decoration-thickness: 3px;
        text-underline-offset: 5px;
    }

    .promo-content {
        width: 95vw;
        max-width: 95vw;
        margin-left: calc(-47.5vw + 50%);
        margin-right: calc(-47.5vw + 50%);
    }

    .achievements-section .promo-content,
    .recommend-section .promo-content,
    .woman-preparation-section .promo-content {
        width: 95vw;
        max-width: 95vw;
        margin-left: calc(-47.5vw + 50%);
        margin-right: calc(-47.5vw + 50%);
    }
}

.feature-list-wrapper .gold-feather.left {
    margin-right: 10px;
}

.feature-list-wrapper .gold-feather.right {
    margin-left: 10px;
    transform: scaleX(-1);
}

    .features ul {
        list-style: none;
        padding: 0;
        margin: 0;
        white-space: nowrap;
    }
.features li {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.promo-section {
    background-image: url('images/hero-bg.png'); 
    background-size: cover;
    background-position: center;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 500px;
}

.promo-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.promo-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 40px;
}

h2.promo-title span.highlight,
.promo-content .promo-title .highlight,
.promo-title .highlight,
span.highlight {
    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 700 !important;
}

.promo-button {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 900px;
}

.promo-button:hover {
    transform: scale(1.05);
}

.promo-button img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 255, 150, 0.4);
    transform: scale(1.1);
}

@media (min-width: 769px) {
  .desktop-hide {
    display: none;
  }
  .feature-title {
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .salon-title {
        font-size: 3.5rem;
        white-space: nowrap;
    }

    .subtitle {
        font-size: 2rem;
    }

    .feature-title {
        white-space: nowrap;
        text-align: center !important;
    }

    .recommend-section .feature-title {
        transform: translateX(0px);
    }

    .recommend-section .feature-header-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 auto 30px auto;
        clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%) !important;
    }

    .recommend-section .feature-header {
        padding: 15px 25px;
        clip-path: polygon(2% 0, 98% 0, 100% 50%, 98% 100%, 2% 100%, 0% 50%) !important;
    }

    .recommend-section .feature-header::before {
        left: 5px !important;
    }

    .recommend-section .feature-header::after {
        right: 5px !important;
    }

    .achievements-section .feature-header-wrapper {
        max-width: 500px !important;
        width: 90% !important;
        clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
    }

    .achievements-section .feature-header {
        padding: 20px 60px;
        clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%) !important;
    }

    .achievements-section .feature-header::before {
        left: 25px !important;
    }

    .achievements-section .feature-header::after {
        right: 25px !important;
    }

    .features li {
        font-size: 0.9rem;
    }

    .promo-title {
        font-size: 2rem;
    }
    .promo-section {
        padding: 40px 15px;
    }
    .promo-button {
        width: 95%;
        max-width: none;
    }
    .promo-button img {
        width: 100%;
    }

    .features {
        padding-left: 0;
        text-align: center;
        flex-direction: column;
    }
    .laurel-icon {
        position: static;
        transform: none;
        display: block;
        margin: 20px auto 0;
        width: 60px;
    }
    .recommend-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 40px 5px;
    }
    .tokuten-container {
        flex-direction: column;
        align-items: center;
    }
    .tokuten-container img {
        width: 100% !important; /* スマホでは1列表示 */
    }
    .mobile-break {
        display: block;
    }
    .hero-content {
        padding: 0 20px;
    }
}

.lp-container {
    position: relative;
    width: 100%;
    max-width: 800px; /* PCでの最大幅 */
    height: auto; /* 高さを自動に */
    padding-bottom: 5%; /* コンテンツ量に応じた余白 */
    background: url('images/inngotto.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto; /* 上下のマージンを追加 */
}

/* メインコンテンツ（リボンとテキスト） */
.main-content {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around; /* 要素間のスペースを均等に */
    align-items: center;
    padding: 5% 0;
    box-sizing: border-box;
}


/* --- リボン --- */
.ribbon-wrapper {
    position: relative;
    width: 80%;
    max-width: 500px;
    height: 18%; /* 高さを調整 */
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 5%;
}

.ribbon-main {
    position: absolute;
    width: 100%;
    height: 60%;
    background: linear-gradient(to bottom, #fef8e3, #e5c56c);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* リボンの両端の折り返し部分 */
.ribbon-main::before, .ribbon-main::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 170%; /* 高さを親要素より大きくする */
    background: linear-gradient(to bottom, #d9b65b, #b99543);
    z-index: -1;
    bottom: -35%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}

.ribbon-main::before {
    left: -5%;
    transform: rotate(-35deg);
    border-right: 2px solid #9c7828;
}

.ribbon-main::after {
    right: -5%;
    transform: rotate(35deg);
    border-left: 2px solid #9c7828;
}

.ribbon-inner-red {
    width: 95%;
    height: 75%;
    background-color: #c90000;
    border: 2px solid #e50000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    font-size: clamp(1rem, 6vw, 2.2rem); /* レスポンシブなフォントサイズ */
    font-weight: 900;
    text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
    white-space: nowrap;
}

/* キラキラのエフェクト */
.sparkle {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle::before, .sparkle::after {
    content: '✦';
    position: absolute;
    color: white;
    text-shadow: 0 0 10px #fff, 0 0 20px #fff;
    animation: sparkle-animation 2s infinite ease-in-out;
}

.sparkle::before {
    font-size: 2rem;
    top: -20%;
    left: 5%;
    animation-delay: 0s;
}

.sparkle::after {
    font-size: 1.5rem;
    top: 0%;
    right: 2%;
    animation-delay: 1s;
}

 @keyframes sparkle-animation {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}


/* --- 下部のテキスト --- */
.promo-text {
    text-align: center;
    margin-top: 5%;
    margin-bottom: 5%;
}

.promo-text p {
    margin: 0;
    line-height: 1.2;
}

.price {
    font-size: clamp(2rem, 12vw, 4.5rem);
    font-weight: 900;

    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.price .subtext {
    font-size: clamp(1rem, 6vw, 2.2rem);
    font-weight: 700;
    color: #fff !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: initial !important;
    text-shadow:
        /* 黒い縁取り */
        2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000,
        1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
        /* 黒いドロップシャドウ */
        3px 3px 5px rgba(0,0,0,0.7);
    margin-left: 0; /* 文字間を詰めるのをやめる */
}

.description {
    font-size: clamp(1.5rem, 8vw, 3rem);
    font-weight: 900;
    color: #fff;
    text-shadow:
        /* 黒い縁取り */
        2px 0 0 #000, -2px 0 0 #000, 0 2px 0 #000, 0 -2px 0 #000,
        1px 1px 0 #000, -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000,
        /* 黒いドロップシャドウ */
        4px 4px 6px rgba(0,0,0,0.7);
    margin-top: 2rem; /* 上にマージンを追加 */
}

/* --- 特典ギャラリー --- */
.tokuten-gallery {
    width: 100%;
    margin-top: 20px;
    padding: 0 20px; /* 左右に余白を追加 */
    box-sizing: border-box;
}

.tokuten-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* 画像間の隙間 */
}

.tokuten-container img {
    width: calc(50% - 10px); /* PCでは2列表示 */
    max-width: 350px; /* 最大幅を指定 */
    height: auto;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
}

/* 最後の画像（5枚目）を中央に配置 */
.tokuten-container img:last-child:nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
}

/* --- 実績紹介セクション --- */
.achievements-section {
    width: 100%;
    padding: 50px 0;
    position: relative;
    background-color: #000;
    overflow: hidden; 
}



.achievement-header {
    width: 90%;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.header-border {
    position: relative;
    background: linear-gradient(to right, #e0b45d, #fdd88d, #e0b45d); /* 金色の枠 */
    padding: 2px; /* 枠の太さ */
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5); /* 光沢感 */
}

.header-inner {
    background-color: #1a1a1a; /* 中央の黒い背景 */
    padding: 15px 30px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden; /* 装飾がはみ出さないように */
}

.achievement-title {
    margin: 0;
    color: #fff;
    font-size: clamp(1.2rem, 4.5vw, 2.2rem); /* レスポンシブなフォントサイズ */
    font-weight: 900;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(255,255,255,0.8);
    position: relative;
    z-index: 2; /* 装飾の上に表示 */
}

.decoration {
    content: '';
    position: absolute;
    width: 60px; /* 装飾の幅 */
    height: 60px; /* 装飾の高さ */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23ffd700" d="M50 0L50 0C50 0 35 15 25 30C15 45 0 50 0 50C0 50 15 55 25 70C35 85 50 100 50 100C50 100 65 85 75 70C85 55 100 50 100 50C100 50 85 45 75 30C65 15 50 0 50 0Z" transform="translate(0,25) rotate(45 50 50)"/><circle cx="70" cy="30" r="5" fill="%23ffd700"/><circle cx="30" cy="30" r="5" fill="%23ffd700"/><circle cx="80" cy="50" r="5" fill="%23ffd700"/><circle cx="20" cy="50" r="5" fill="%23ffd700"/><circle cx="50" cy="70" r="5" fill="%23ffd700"/></svg>'); /* ここを植物のような装飾のSVGに置き換えるか、画像を配置 */
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.7;
    z-index: 1;
}

.decoration.left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotateY(180deg); /* 左右反転 */
}

.decoration.right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.achievement-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.achievement-image {
    width: 100%;
    max-width: 600px; /* 画像の最大幅 */
    height: auto;
    display: block;
    margin: 0 auto; /* 中央揃え */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 2px solid #e0b45d;
}



/* --- 「こんな方にオススメ」セクションの新しいスタイル --- */
.recommend-section {
    width: 90%;
    max-width: 700px;
    margin: 50px auto;
    z-index: 10;
    background: #000;
    padding: 40px;
    border-radius: 10px;
    box-sizing: border-box; /* 追加 */
}

.recommend-header {
    position: relative;
    padding: 12px 60px; /* 左右の余白は飾り鋲の分を確保 */
    background: linear-gradient(to bottom, #4a3e35, #2a1e15); /* 高級感のある濃い茶色の背景 */
    border: 4px solid #b38b3a; /* 金色の外枠 */
    border-radius: 8px;
    text-align: center;
    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.8), /* 内側の影 */
        0 8px 20px rgba(0,0,0,0.6); /* 外側の影 */
}

/* 左右の飾り鋲 */
.recommend-header::before,
.recommend-header::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3d48b, #c8a24d); /* 金色のグラデーション */
    box-shadow: 
        inset 1px 1px 3px rgba(0,0,0,0.6), /* 鋲の立体感を出す内側の影 */
        1px 1px 2px rgba(255,255,255,0.5); /* 鋲のハイライト */
}

.recommend-header::before {
    left: 20px;
}

.recommend-header::after {
    right: 20px;
}

.recommend-title {
    margin: 0;
    color: #fff;
    /* 画像のフォントに近い明朝体フォントを指定 */
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.recommend-items-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr; /* 縦一列 */
    gap: 30px; /* 各画像の間のスペース */
}

.recommend-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* --- 「安心の環境で〜」セクションのスタイル --- */
.feature-section {
    width: 100%;
    max-width: 700px;
    z-index: 10;
    text-align: center;
    margin: 50px auto;
}

/* 見出し部分 */
.feature-header-wrapper {
    /* 金色のボーダーを表現するための外枠 */
    background: linear-gradient(to right, #e0b45d, #fdd88d, #e0b45d);
    padding: 4px; /* ボーダーの太さ */
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%); /* 六角形の形に切り抜き */
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    max-width: 650px;
    margin: 0 auto 30px auto;
}

.feature-header {
    position: relative;
    background: #1a1a1a; /* 内側の濃い背景色 */
    padding: 20px 60px; /* 飾り鋲のスペースを確保 */
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%); /* 内側も同じ形で切り抜き */
}

/* 左右の飾り鋲 */
.feature-header::before,
.feature-header::after {
    content: '×'; /* 十字の表現 */
    color: #4f422a;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    display: flex;
    justify-content: center;
    align-items: center;

    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3d48b, #c8a24d); /* 金色のグラデーション */
    box-shadow: 
        inset 1px 1px 3px rgba(0,0,0,0.6), /* 鋲の立体感を出す内側の影 */
        1px 1px 2px rgba(255,255,255,0.5); /* 鋲のハイライト */
}

.feature-header::before {
    left: 25px;
}

.feature-header::after {
    right: 25px;
}

.feature-title {
    margin: 0;
    color: #fff;
    /* 画像のフォントに近い明朝体を指定 */
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    text-align: center;
}

.feature-image-container {
    margin-top: 40px;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* --- テキストブロックのスタイル --- */
.free-of-charge-text, .learn-from-zero-section, .beginner-support-section {
    max-width: 800px; 
    margin: 50px auto;
    padding: 60px 20px 0 20px; /* 下のパディングを0に */
    text-align: center;
    border-radius: 10px;
}

/* 「・サロンへの参加費用や教材代は」の部分 */
.intro-text {
    margin: 0;
    color: #ffffff; /* 文字色: 白 */
    /*
      推奨フォント: ダイナフォント「DFP極太毛筆体」、白舟書体「白舟極太楷書」など。
      Webフォントとして利用可能な「Shippori Mincho」を代替として指定しています。
    */
    font-family: 'Shippori Mincho', serif;
    font-weight: 700; /* 太さ: Bold */
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    line-height: 1.7;
}

/* 「一切不要。」の部分 */
.emphasis-text {
    margin: 10px 0 0 0;
    color: #ffffff; /* 文字色: 白 */
    /*
      推奨フォント: ダイナフォント「DFP極太毛筆体」、白舟書体「白舟極太楷書」など。
      Webフォントとして利用可能な「Shippori Mincho」を代替として指定しています。
    */
    font-family: 'Shippori Mincho', serif;
    font-weight: 900; /* 太さ: Black（最も太い） */
    font-size: clamp(4rem, 12vw, 7rem);
    line-height: 1.2;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.5);
}

.manpannel-image-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.manpannel-image {
    width: 90%;
    max-width: 600px;
    height: auto;
    display: block;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 2px solid #e0b45d;
    margin: 0 auto;
}

.woman-preparation-section {
    width: 100%;
    max-width: 700px;
    z-index: 10;
    text-align: center;
    margin: 50px auto;
}

.woman-preparation-image-container {
    margin-top: 40px;
}

.woman-preparation-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.7);
}

/* --- サポート機能セクション --- */
.support-features-section {
    position: relative;
    width: 100%;
    max-width: 800px; /* PCでの最大幅 */
    height: auto; /* 高さを自動に */
    padding-bottom: 5%; /* コンテンツ量に応じた余白 */
    background: url('images/inngotto.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px auto; /* 上下のマージンを追加 */
}

.support-features-section p {
    margin: 10px 0;
}

.feature-highlight.yellow {
    color: #ffd700; /* 鮮やかな黄色 */
    font-family: 'Shippori Mincho', serif;
    font-weight: 900; /* 最も太いウェイト */
    font-size: clamp(2rem, 6vw, 3rem);
    line-height: 1.4;
    margin-bottom: 20px;
    white-space: nowrap;
}

.feature-item.bold {
    color: #ffffff;
    font-family: 'Shippori Mincho', serif;
    font-weight: 700; /* 太めのウェイト */
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    line-height: 1.5;
}

.bonus-block {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 20px;
    background-color: #2c2c2c;
    border-radius: 8px;
}

.bonus-block .feature-item.bold {
    margin-bottom: 5px;
}

.feature-subtext {
    color: #cccccc; /* 少し控えめな白 */
    font-family: 'Shippori Mincho', serif;
    font-weight: 400; /* 標準のウェイト */
    font-size: clamp(1rem, 3vw, 1.2rem); /* 一回り小さく */
}

.closing-statement {
    margin-top: 40px;
}

/* --- 最終毛筆CTAセクション --- */
.final-brush-cta {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 40px 20px 60px 20px;
    margin: 0;
    position: relative;
}

.final-brush-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.final-brush-cta .promo-content {
    position: relative;
    z-index: 1;
}

.final-brush-cta p {
    font-family: 'Shippori Mincho', serif;
    font-weight: 700;
    margin: 0;
}

.final-brush-cta .top-lines {
    margin-bottom: 40px;
}

.final-brush-cta .top-lines p {
    font-size: clamp(1.7rem, 5vw, 2.2rem);
    line-height: 1.8;
}

.final-brush-cta .bottom-line {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 40px; /* 下にマージンを追加 */
}

.promo-text-final {
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 20px; /* タイトルとの間に余白を設定 */
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

/* 「環境を整えました。」のフォントサイズ調整 */
.learn-from-zero-section .emphasis-text {
    font-size: clamp(2.5rem, 10vw, 5rem);
}

/* 「裁量初心者の方でも〜」のフォントスタイル調整 */
.beginner-support-section p {
    font-family: 'Shippori Mincho', serif; /* フォントを元に戻す */
    font-weight: 700;
    font-size: clamp(1.5rem, 5vw, 2.2rem);
    line-height: 1.5;
    margin: 0; /* 余白をなくす */
}

.no-wrap {
    white-space: nowrap;
}
.no-wrap-title {
    white-space: nowrap;
}

.support-features-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
    color: #ffffff;
}

.support-features-title span {
    color: #ffffff;
}

.support-features-title .gold-highlight {
    /* 新しい金色のグラデーション */
    background: var(--color-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* --- New Support Features Section --- */
.features-grid-paired {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
    padding: 20px;
    width: 100%;
}

@media (min-width: 769px) {
    .features-grid-paired {
        grid-template-columns: 1fr;
    }

    .features-grid-paired .feature-item img {
        max-width: 760px; /* 800px (section max-width) - 40px (grid padding) */
    }
}

.feature-item {
    text-align: center;
}

.feature-item img {
    width: 100%;
    height: auto;
    border: 3px solid #fff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    box-sizing: border-box;
}

.feature-item p {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.gold-feather {
    width: 70px;
    height: auto;
}

.gold-feather.left {
    margin-right: 10px;
}

.gold-feather.right {
    margin-left: 10px;
    transform: scaleX(-1);
}

.mobile-break {
    display: block;
}

/* スマホ専用改行 */
.sp-break {
    display: none;
}

/* PC専用改行 */
.pc-break {
    display: block;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none;
    }

    .mobile-break-text {
        display: block;
    }

    .mobile-break {
        display: block;
    }

    .sp-break {
        display: block;
    }

    .pc-break {
        display: none;
    }

    .support-features-title {
        font-size: 1.7rem;
    }
}

/* 『100名様』を確実に金色にする最優先ルール */
.highlight,
*.highlight,
span.highlight,
.promo-title span.highlight {
    background: var(--color-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-weight: 900 !important;
    text-shadow: none !important;
}

/* --- 詳細メッセージセクション --- */
.detailed-message-section {
    background-image: url('images/hero-bg.png');
    background-size: cover;
    background-position: center;
    padding: 20px 20px 60px 20px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.detailed-message-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.detailed-message-content {
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    position: relative;
    z-index: 1;
}

.detailed-message-content .feature-header-wrapper:first-child {
    margin-top: 0;
    margin-bottom: 80px;
}

.message-top-subtitle {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 400;
    text-align: center;
    margin-bottom: 40px;
    color: #fff;
}

.message-main-title {
    font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 8px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media (min-width: 769px) {
    .message-main-title {
        white-space: nowrap;
    }
}

.concerns-list {
    background-color: transparent;
    padding: 0;
    margin-bottom: 40px;
    text-align: center;
}

.concerns-list .concern-red {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.8;
    color: #ff3333;
}

.concerns-image-container {
    text-align: center;
    margin: 40px auto;
    max-width: 600px;
}

.concerns-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.7);
    border-radius: 5px;
    border: 2px solid #e0b45d;
}

.message-text-block {
    margin-bottom: 30px;
    padding: 0;
    background-color: transparent;
    text-align: center;
}

.message-text-block p {
    font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    font-weight: 400;
    line-height: 2;
    margin: 0;
    color: #fff;
}

.message-section-title {
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    font-weight: 700;
    text-align: center;
    margin: 60px 0 40px 0;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 8px;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.benefits-box {
    max-width: 600px;
    margin: 40px auto;
    padding: 0;
    background-color: transparent;
    border: none;
}

.benefits-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.zero-yen {
    color: #FFD700;
    font-weight: 900;
}

.red-emphasis {
    color: #ff3333;
    font-weight: 900;
}

.limited-100 {
    text-align: center;
    margin: 40px 0;
}

.limited-100 p {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.5;
}

.highlight-100 {
    background: var(--color-gold-gradient) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
    font-size: clamp(2.5rem, 6vw, 4rem) !important;
    font-weight: 900 !important;
}

.limited-100-text {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #ff0000;
    text-decoration-thickness: 3px;
    text-underline-offset: 8px;
}

/* パソコン版：全体に金色と赤線 */
@media (min-width: 769px) {
    .limited-100 p {
        background: var(--color-gold-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 900;
        text-decoration: underline;
        text-decoration-color: #ff0000;
        text-decoration-thickness: 3px;
        text-underline-offset: 8px;
    }

    .limited-100-gold {
        text-decoration: none;
    }

    .nomi-white {
        background: none;
        -webkit-background-clip: initial;
        -webkit-text-fill-color: #fff;
        background-clip: initial;
        color: #fff;
        text-decoration: none;
    }
}

.final-text {
    margin-top: 40px !important;
    margin-bottom: 60px !important;
}

.final-cta-content {
    text-align: center;
    margin-top: 40px;
}

.final-cta-content .promo-text-final {
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.5rem, 4vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
}

.final-cta-content .promo-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 40px;
}

.final-cta-content .promo-button {
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease-in-out;
    width: 100%;
    max-width: 900px;
}

.final-cta-content .promo-button:hover {
    transform: scale(1.05);
}

.final-cta-content .promo-button img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 255, 150, 0.4);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .final-cta-content .promo-title {
        font-size: 2rem;
    }

    .final-cta-content .promo-button {
        width: 95%;
        max-width: none;
    }
}

.saigo-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .detailed-message-section {
        padding: 40px 10px;
    }

    .message-top-subtitle {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .detailed-message-content .feature-title .title-line-1 {
        display: inline-block;
        transform: translateX(-15px);
    }

    .detailed-message-content .feature-header::before,
    .detailed-message-content .feature-header::after {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }

    .detailed-message-content .feature-header::before {
        left: 10px;
    }

    .detailed-message-content .feature-header::after {
        right: 10px;
    }

    .subtitle-nowrap {
        white-space: nowrap;
        font-size: clamp(1rem, 3.5vw, 1.5rem);
    }

    .message-main-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        line-height: 1.8;
    }

    .main-title-nowrap {
        font-size: clamp(0.85rem, 3.1vw, 1.35rem);
    }

    .concerns-list .concern-red {
        font-size: clamp(1.1rem, 3.8vw, 1.6rem);
        line-height: 1.7;
    }

    .message-text-block p {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }

    .sp-gap {
        display: inline-block;
        margin-top: 15px;
    }

    .message-section-title {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        line-height: 1.8;
    }

    .section-title-nowrap {
        font-size: clamp(0.95rem, 3.3vw, 1.4rem);
    }

    .benefits-box {
        padding: 0;
        max-width: 95%;
    }

    .benefits-image {
        max-width: 100%;
        width: 100%;
    }

    .limited-100 p {
        font-size: clamp(2rem, 5.5vw, 3.2rem);
    }

    .highlight-100 {
        font-size: clamp(2.5rem, 6.5vw, 3.8rem) !important;
    }

    .limited-100-text {
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
    }

    .limited-100-text-white {
        color: #fff;
        font-weight: 900;
    }

    .limited-100-gold {
        background: var(--color-gold-gradient);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
        font-weight: 900;
        text-decoration: underline;
        text-decoration-color: #ff0000;
        text-decoration-thickness: 2px;
        text-underline-offset: 5px;
    }

    .final-cta-content .promo-text-final {
        font-size: clamp(1.5rem, 4.5vw, 1.9rem);
    }
}

/* --- FX特徴セクション --- */
.fx-features-section {
    width: 100%;
    max-width: 700px;
    margin: 50px auto;
    padding: 40px 20px;
    background-color: #000;
    text-align: center;
    z-index: 10;
}

.fx-features-header-wrapper {
    background: linear-gradient(to right, #e0b45d, #fdd88d, #e0b45d);
    padding: 4px;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    margin-bottom: 40px;
}

.fx-features-header {
    position: relative;
    background: #1a1a1a;
    padding: 20px 60px;
    clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
}

.fx-features-header::before,
.fx-features-header::after {
    content: '×';
    color: #4f422a;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Shippori Mincho', serif;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f3d48b, #c8a24d);
    box-shadow:
        inset 1px 1px 3px rgba(0,0,0,0.6),
        1px 1px 2px rgba(255,255,255,0.5);
}

.fx-features-header::before {
    left: 25px;
}

.fx-features-header::after {
    right: 25px;
}

.fx-features-title {
    margin: 0;
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.4rem, 5vw, 2.4rem);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.fx-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fx-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* 上段の3つの画像 */
.fx-feature-item:nth-child(1) {
    grid-column: 1 / 3;
}

.fx-feature-item:nth-child(2) {
    grid-column: 3 / 5;
}

.fx-feature-item:nth-child(3) {
    grid-column: 5 / 7;
}

/* 下段の2つの画像を隙間に配置 */
.fx-feature-item:nth-child(4) {
    grid-column: 2 / 4;
}

.fx-feature-item:nth-child(5) {
    grid-column: 4 / 6;
}

.fx-feature-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
}

.fx-feature-label {
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-underline-offset: 5px;
}

.fx-features-footer {
    margin: 30px 0;
}

.fx-zero-message {
    color: #fff;
    font-family: 'Shippori Mincho', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 900;
    margin: 0;
    line-height: 1.5;
}

.zero-highlight {
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-color: #FFD700;
    text-underline-offset: 8px;
    text-decoration-thickness: 3px;
    font-size: clamp(2.2rem, 6vw, 3.8rem);
}

@media (max-width: 768px) {
    .fx-features-section {
        padding: 40px 10px;
        width: 100%;
        box-sizing: border-box;
    }

    .fx-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
    }

    /* モバイルでは通常の2列レイアウトに戻す */
    .fx-feature-item:nth-child(1),
    .fx-feature-item:nth-child(2),
    .fx-feature-item:nth-child(3),
    .fx-feature-item:nth-child(4),
    .fx-feature-item:nth-child(5) {
        grid-column: auto;
    }

    .fx-feature-item:nth-child(5) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .fx-features-section .promo-content {
        width: 100%;
        max-width: 100%;
        padding: 0 10px;
        box-sizing: border-box;
        margin-left: 0;
        margin-right: 0;
    }

    .fx-features-section .promo-button {
        width: 100%;
        max-width: 100%;
    }
}