/* リセット */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
}

.bg-catchcopy {
    position: fixed;
    top: 5%;
    left: 2%;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: 2.4vw;
    font-weight: bold;
    color: #fff;
    line-height: 1.6;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    pointer-events: none;
    z-index: 0;
}

.bg-right-text {
    position: fixed;
    top: 5%;
    right: 1%;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: 3vw;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
    pointer-events: auto;
    z-index: 10;
    text-align: center;
}

.bg-right-label {
    margin-bottom: 3vw;
    pointer-events: none;
    text-align: left;
}

.bg-cta-btn:hover {
    opacity: 0.85;
}

.bg-cta-btn--sub {
    background: linear-gradient(135deg, #6a6a6a, #444);
}

.bg-cta-img-btn {
    display: block;
    position: relative;
    margin-bottom: 3vw;
    transition: opacity 0.2s;
    overflow: hidden;
}

.bg-cta-order {
    position: absolute;
    bottom: 0.4vw;
    right: 3vw;
    font-size: 0.8vw;
    color: #fff;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    font-family: sans-serif;
}

.bg-cta-img-btn img {
    width: 22vw;
    height: auto;
    display: block;
}

.bg-cta-img-btn:hover {
    opacity: 0.85;
}

.bg-catchcopy-img {
    width: 18vw;
    height: auto;
    display: block;
    margin-top: 1vw;
    margin-left: 2vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 768px;
    margin: 0 auto;
}


/* ヘッダー */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ロゴ */
.logo h1 {
    font-size: 1.5rem;
    color: #7CB342;
    font-weight: bold;
}

/* ハンバーガーメニューボタン */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background: #7CB342;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ハンバーガーメニューがアクティブな時 */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* ナビゲーション */
.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
}

.nav-item a:hover {
    color: #7CB342;
}

.nav-cta {
    background: #E53935;
    color: #fff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: #c62828;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(229, 57, 53, 0.3);
}

/* メインコンテンツのトップマージン（ヘッダー分） */
main {
    margin-top: 0;
    background: #fcede5;

}

/* ファーストビュー */
.hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
}


.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: #E53935;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(229, 57, 53, 0.4);
}

.hero-btn:hover {
    background: #c62828;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.6);
}


/* レスポンシブデザイン：スマートフォン */
@media (max-width: 480px) {
    .logo h1 {
        font-size: 1rem;
    }

    .nav {
        width: 80%;
    }

    .header-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
}

/* スクロール時のヘッダー */
.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

/* メインコンテンツセクション */
#main-content {
    background: #ffffff;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
}

/* 初回限定プロモーションセクション */
.promo-section {
    background: transparent;
    padding: 40px 40px 20px;
}

.promo-inner {
    background: #fff;
    border-radius: 12px;
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

/* 商品画像＋通常価格 */
.promo-top {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 0;
}

.promo-product-img {
    flex-shrink: 0;
    width: clamp(100px, 20%, 180px);
}

.promo-product-img img {
    width: 100%;
    height: auto;
    display: block;
}

.promo-normal-price {
    text-align: center;
}

.promo-spec {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1rem, 3.2vw, 1.6rem);
    font-weight: bold;
    color: #b12222;
    margin-bottom: -4px;
}

.promo-original-price {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.6rem, 5vw, 2.6rem);
    font-weight: bold;
    color: #333;
}

/* なんと今なら 矢印ブロック */
.promo-arrow-block {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 8px auto 4px;
    width: clamp(110px, 30vw, 180px);
    aspect-ratio: 1 / 0.45;
}

.promo-arrow-text {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(0.85rem, 2.2vw, 1.5rem);
    font-weight: 900;
    color: #fff;
    font-style: italic;
    letter-spacing: 0.15em;
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 2px rgba(0, 0, 0, 0.5);
    paint-order: stroke fill;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-top: -15%;
}

.promo-arrow-body {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #c0200d, #9b1a0e);
    clip-path: polygon(25% 0%, 75% 0%, 75% 50%, 100% 50%, 50% 100%, 0% 50%, 25% 50%);
    filter: drop-shadow(2px 3px 4px rgba(0, 0, 0, 0.25));
    z-index: 1;
}

/* 初回限定 特別価格バナー */
.promo-special-banner {
    display: inline-block;
    background: #b12222;
    color: #fff;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1rem, 2.8vw, 1.7rem);
    font-weight: bold;
    padding: 0.4em 3.5em;
    margin: 0;
    letter-spacing: 0.15em;
    border: 3px solid;
    border-image: linear-gradient(135deg, #f0d060, #c9a030, #e8c84a, #a87820, #d4a030) 1;
}

/* オファーブロック（バナー幅に合わせる） */
.promo-offer-block {
    display: inline-block;
    text-align: center;
    margin-top: 20px;
}

.promo-offer-block .promo-special-banner {
    width: 100%;
    box-sizing: border-box;
}

/* 割引率 */
.promo-discount {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: bold;
    color: #b12222;
    margin: 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.promo-discount-prefix {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1;
    padding-top: 12px;
}

.promo-discount-num {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #b12222;
    line-height: 1;
}

.promo-discount-suffix {
    align-self: flex-end;
}

/* 特別価格 */
.promo-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
    margin: 0;
    line-height: 1;
}

.promo-price-main {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(3rem, 9vw, 6.25rem);
    font-weight: 900;
    color: #c0200d;
    text-shadow:
        0 0 0 #c0200d,
        3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff,
        2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
        5px 3px 0 rgba(0, 0, 0, 0.7);
}

.promo-price-yen {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(2.05rem, 4.5vw, 2.75rem);
    font-weight: bold;
    color: #c0200d;
    text-shadow:
        0 0 0 #c0200d,
        2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
        1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
        4px 3px 0 rgba(0, 0, 0, 0.7);
}

.promo-price-yen-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    margin-bottom: 0.15em;
}

.promo-price-tax {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #c0200d;
    font-weight: bold;
    line-height: 1;
}

.promo-delivery {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.3rem, 3.2vw, 1.8rem);
    font-weight: bold;
    color: #333;
    margin: 4px 0 12px;
    text-align: right;
}

/* 特典バッジ */
.promo-badges {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
    width: 100%;
}

.promo-badge {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #b12222;
    color: #fff;
    font-size: clamp(0.7rem, 2.4vw, 1rem);
    font-weight: bold;
    padding: 0.35em 0.5em;
    border-radius: 2px;
    letter-spacing: 0.05em;
    text-align: center;
    white-space: nowrap;
    min-height: 2.2em;
}

.promo-badge--gold {
    background: linear-gradient(135deg, #f5e8c8, #e8d5a8);
    color: #5a3e1b;
    border: 1px solid #c9a030;
}

/* 購入ボタン */
.promo-buy-btn {
    display: block;
    width: 75%;
    margin: 0 auto;
    padding: 0.45em 1em;
    background:
        radial-gradient(circle at 15% 40%, rgba(255,255,255,0.5) 0%, transparent 40%),
        radial-gradient(circle at 75% 25%, rgba(255,255,255,0.4) 0%, transparent 35%),
        radial-gradient(circle at 50% 75%, rgba(255,255,200,0.3) 0%, transparent 45%),
        linear-gradient(180deg, #ffec60, #f5c820, #e0a810, #d09008, #e0a810, #f5c820, #ffec60);
    color: #fff;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.2rem, 3.2vw, 1.8rem);
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    border-radius: 50px;
    border: 3px solid #a07818;
    outline: 3px solid #c8a030;
    outline-offset: -6px;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.25),
        inset 0 2px 6px rgba(255, 255, 255, 0.6),
        inset 0 -2px 4px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.2em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
    transition: opacity 0.2s;
    position: relative;
    overflow: hidden;
}

.promo-buy-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 40%, rgba(255,255,255,0.9) 0.5px, transparent 1.5px),
        radial-gradient(circle at 45% 65%, rgba(255,255,255,0.7) 0.8px, transparent 2px),
        radial-gradient(circle at 70% 30%, rgba(255,255,255,0.8) 0.6px, transparent 1.8px),
        radial-gradient(circle at 30% 75%, rgba(255,255,255,0.6) 0.5px, transparent 1.5px),
        radial-gradient(circle at 60% 50%, rgba(255,255,255,0.9) 0.7px, transparent 2px),
        radial-gradient(circle at 85% 45%, rgba(255,255,255,0.7) 0.4px, transparent 1.2px),
        radial-gradient(circle at 10% 55%, rgba(255,255,255,0.8) 0.6px, transparent 1.6px),
        radial-gradient(circle at 55% 20%, rgba(255,255,255,0.6) 0.5px, transparent 1.5px);
    background-size: 80px 60px, 60px 50px, 70px 55px, 50px 45px, 90px 65px, 55px 40px, 75px 50px, 65px 55px;
    pointer-events: none;
}

.promo-buy-btn:hover {
    opacity: 0.9;
}

/* 定期コースプロモーション */


.promo-teiki-inner {
    text-align: center;
    padding: 16px;
}

.promo-teiki-saranni {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.3rem, 3.5vw, 2rem);
    font-weight: bold;
    color: #b12222;
    font-style: italic;
    text-align: left;
    margin-bottom: 4px;
}

.promo-teiki-lead {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(0.95rem, 2.5vw, 1.3rem);
    font-weight: bold;
    color: #333;
    line-height: 1.8;
    margin-bottom: 16px;
}

.promo-teiki-discount-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.promo-teiki-label {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1rem, 2.8vw, 1.5rem);
    font-weight: bold;
    color: #333;
}

.promo-teiki-off-badge {
    display: inline-flex;
    align-items: baseline;
    background: #b12222;
    color: #fff;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: bold;
    padding: 0em 0.3em;
}

.promo-teiki-off-num {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
}

.promo-teiki-no {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1rem, 2.8vw, 1.5rem);
    font-weight: bold;
    color: #333;
}

.promo-teiki-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.1em;
    line-height: 1;
    margin-bottom: 8px;
}

.promo-teiki-price {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(3rem, 9vw, 6.25rem);
    font-weight: 900;
    color: #c0200d;
    text-shadow:
        0 0 0 #c0200d,
        3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff,
        2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
        5px 3px 0 rgba(0, 0, 0, 0.7);
}

.promo-teiki-yen-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    margin-bottom: 0.15em;
}

.promo-teiki-tax {
    font-size: clamp(0.75rem, 1.6vw, 1rem);
    color: #c0200d;
    font-weight: bold;
    line-height: 1;
}

.promo-teiki-yen {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #c0200d;
    text-shadow:
        0 0 0 #c0200d,
        2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff,
        1.5px 1.5px 0 #fff, -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff,
        4px 3px 0 rgba(0, 0, 0, 0.7);
}

.promo-teiki-note {
    font-size: clamp(0.7rem, 1.8vw, 0.9rem);
    color: #555;
    margin-bottom: 24px;
}

.promo-teiki-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.promo-buy-btn--half {
    width: 45%;
    font-size: clamp(0.8rem, 2.5vw, 1.3rem);
}

/* こだわりセクション */
.commitment-section {
    background: transparent;
    padding: 40px 80px;
}

.commitment-inner {
    width: 85%;
    margin: 0 auto;
}

.commitment-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.campaign-wrap {
    position: relative;
    width: 100%;
}

.campaign-img-link {
    display: block;
}

.campaign-img-link img {
    width: 100%;
    height: auto;
    display: block;
}

.bg-right-text .campaign-btn {
    left: auto;
    right: 10%;
}
.commitment-section .campaign-btn,
.commitment-inner .campaign-btn {
    left: auto;
    right: 5%;
}
#order .campaign-btn {
    left: auto;
    right: 5%;
    font-size: clamp(0.75rem, 1.6vw, 1.1rem);
    padding: 0.5em 1.4em;
}
.campaign-btn {
    position: absolute;
    bottom: 4%;
    left: 8%;
    background: linear-gradient(135deg, #e63312, #c0200d);
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    font-size: clamp(0.55rem, 1.2vw, 0.8rem);
    font-weight: bold;
    padding: 0.35em 1em;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 3px 8px rgba(0,0,0,0.3);
    white-space: nowrap;
    letter-spacing: 0.05em;
    transition: opacity 0.2s;
}

.campaign-btn:hover {
    opacity: 0.85;
}

/* こだわり詳細セクション */
.commitment-detail-section {
    background: transparent;
    padding: 30px 40px;
    border-radius: 0 0 8px 8px;

}

.commitment-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    border: none;
    padding: 36px 24px;
    background:
        repeating-linear-gradient(
            180deg,
            transparent 0px,
            rgba(210, 185, 155, 0.08) 1px,
            transparent 2px,
            rgba(200, 175, 145, 0.05) 4px,
            transparent 6px,
            rgba(215, 190, 160, 0.07) 9px,
            transparent 12px,
            rgba(205, 180, 150, 0.04) 18px,
            transparent 22px,
            rgba(220, 195, 165, 0.06) 28px,
            transparent 34px,
            rgba(210, 185, 155, 0.05) 42px,
            transparent 50px
        ),
        repeating-linear-gradient(
            2deg,
            transparent 0px,
            rgba(200, 175, 145, 0.04) 3px,
            transparent 7px,
            rgba(215, 190, 160, 0.06) 15px,
            transparent 24px,
            rgba(205, 180, 150, 0.03) 38px,
            transparent 55px
        ),
        #fdfaf7;
    background-clip: padding-box;
    border: 8px solid transparent;
    background-origin: padding-box;
    position: relative;

}

.commitment-detail-inner::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    padding: 8px;
    background: linear-gradient(135deg, #f0d060, #c9a030, #e8c84a, #a87820, #d4a030, #f5e070, #b89030);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.commitment-detail-title {
    text-align: center;
    font-size: 1.4rem;
    color: #2b2b2b;
    margin-bottom: 24px;
    font-weight: bold;
    letter-spacing: 0.08em;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
}

.commitment-detail-body {
    display: flex;
    align-items: center;
    gap: 32px;
}

.commitment-detail-text {
    flex: 1;
}

.commitment-detail-item {
    margin-bottom: 20px;
}

.commitment-detail-item:last-child {
    margin-bottom: 0;
}

.commitment-detail-label {
    display: inline-block;
    background: #b12222;
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    padding: 4px 5px;
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.commitment-detail-item p {
    font-size: 0.55rem;
    line-height: 1.8;
    color: #333;
    padding-left: 4px;
}

.commitment-detail-image {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.commitment-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* 北海道の自然セクション */
.nature-section {
    padding: 40px 0;
}

.nature-inner {
    position: relative;
    width: 80%;
    margin: 0 auto;
    overflow: visible;
}

.nature-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.nature-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 18% 20px 20px;
}

.nature-title {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.8rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #2d6a1e;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 104px;
    white-space: nowrap;
}

.nature-subtitle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.nature-label {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.1rem, 4.5vw, 2.2rem);
    font-weight: bold;
    color: #fff;
    padding: 0.2em 0.6em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

.nature-label--green {
    background: #4caf50;
}

.nature-label--blue {
    background: #42a5f5;
}

.nature-to,
.nature-ga {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.2rem, 4vw, 2.2rem);
    font-weight: bold;
    color: #333;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    flex-shrink: 0;
}

/* ゆっくりゆっくり〜発酵・熟成 */
.nature-caption {
    text-align: center;
    padding: 20px 0;
}

.nature-caption-top {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.3rem, 4vw, 2.4rem);
    font-weight: bold;
    color: #42a5f5;
    font-style: italic;
    margin-bottom: 4px;
    text-shadow:
        3px 0 0 #fff, -3px 0 0 #fff, 0 3px 0 #fff, 0 -3px 0 #fff,
        2px 2px 0 #fff, -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff,
        3px 1px 0 #fff, -3px 1px 0 #fff, 1px 3px 0 #fff, 1px -3px 0 #fff,
        0 0 12px rgba(0, 0, 0, 0.3), 2px 3px 8px rgba(0, 0, 0, 0.25);
}

.nature-caption-bottom {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(2rem, 6vw, 3.8rem);
    font-weight: 900;
    color: #2d8a2e;
    text-shadow:
        4px 0 0 #fff, -4px 0 0 #fff, 0 4px 0 #fff, 0 -4px 0 #fff,
        3px 3px 0 #fff, -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff,
        4px 2px 0 #fff, -4px 2px 0 #fff, 2px 4px 0 #fff, 2px -4px 0 #fff,
        0 0 14px rgba(0, 0, 0, 0.3), 3px 4px 10px rgba(0, 0, 0, 0.25);
}

.voice-catchcopy-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.voice-product-img {
    margin-top: -120px;
    width: 22%;
    height: auto;
    flex-shrink: 0;
    margin-left: -23%;
    position: relative;
    z-index: 1;
}

.voice-catchcopy {
    text-align: left;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.5rem, 4.5vw, 2.6rem);
    position: relative;
    z-index: 2;
    flex: 1;
    font-weight: bold;
    color: #333;
    line-height: 1.4;
    padding: 3% 2%;
    border: none;
    -webkit-text-stroke: 2px #ffffff;
    paint-order: stroke fill;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 80種類の良質な原材料 */
.ingredients-section {
    margin-top: 50px;
    padding: 20px 0;
}

.ingredients-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ingredients-fruits {
    width: 60%;
    flex-shrink: 0;
}

.ingredients-fruits img {
    width: 100%;
    height: auto;
    display: block;
}

.ingredients-title {
    flex: 1;
    text-align: left;
    margin-left: -40px;
}

.ingredients-title p {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 900;
    color: #b12222;
    line-height: 1.4;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.ingredients-num {
    font-size: clamp(2rem, 6vw, 3.5rem);
    color: #b12222;
}

.ingredients-bottom {
    display: flex;
    gap: 8px;
    justify-content: center;
    width: 75%;
    margin: 0 0 0 auto;
    margin-top: -48px;
}

.ingredients-item {
    flex: 1;
    position: relative;
    overflow: visible;
}

.ingredients-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 48px;
}

.ingredients-label {
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    font-weight: bold;
    font-size: clamp(0.7rem, 2vw, 1.2rem);
    padding: 0px 12px;
    white-space: nowrap;
}

.ingredients-label--green {
    background: #4caf50;
}

.ingredients-label--blue {
    background: #2196f3;
}

.ingredients-label--yellow {
    background: #ff9800;
}

/* マイルドセクション */
.mild-section {
    position: relative;
    border-radius: 12px;
    padding: 30px 20px;
    margin: 32px auto 0;
    width: 100%;
}

.mild-badge {
    position: absolute;
    top: 54px;
    left: 24px;
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f5e0a0, #e8c860, #d4a830);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: 1rem;
    font-weight: bold;
    color: #5a3e1b;
    text-align: center;
    line-height: 1.4;
    box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.mild-img-wrap {
    width: 80%;
    margin: 0 auto 0;
}

.mild-headline {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: bold;
    color: #3a2a1a;
    text-align: left;
    line-height: 1.4;
    -webkit-text-stroke: 4px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
    margin-top: -40px;
}

.mild-headline-bold {
    font-size: clamp(1.5rem, 4.5vw, 3rem);
    font-weight: 900;
    color: #b12222;
    -webkit-text-stroke: 4px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.2);
}

.mild-sub-headline {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: bold;
    color: #3a2a1a;
    text-align: right;
    margin-top: 4px;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}

.mild-maild-box {
    display: inline-block;
    font-family: "M PLUS Rounded 1c", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    color: #e8734a;
    border: 2px solid #e8a880;
    border-radius: 24px;
    padding: 0em 0.3em;
    margin-left: 4px;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}

/* 食べ方セクション */
.eating-section {
    text-align: center;
}

.eating-title {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(1.5rem, 4.5vw, 2.5rem);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 24px;
}

.eating-title-orange {
    color: #ff914d;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}

.eating-title-green {
    color: #006a21;
    -webkit-text-stroke: 3px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 3px 4px rgba(0, 0, 0, 0.15);
}

.eating-persons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.eating-person {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.eating-balloon {
    position: relative;
    background: #fff;
    border: 2px solid #888;
    border-radius: 8px;
    padding: 6px 12px;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(0.6rem, 1.8vw, 0.9rem);
    font-weight: bold;
    color: #333;
    margin-bottom: 12px;
    white-space: nowrap;
}

.eating-balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 10px solid #888;
}

.eating-balloon::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #fff;
    z-index: 1;
}

.eating-photo {
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ddd;
    margin-bottom: 8px;
}

.eating-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eating-name {
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    font-size: clamp(0.6rem, 1.8vw, 0.95rem);
    font-weight: bold;
    color: #333;
    text-align: center;
}

.eating-name span {
    font-weight: normal;
    font-size: 0.85em;
}

/* 美味しいから続けられる */
.eating-oishii {
    text-align: center;
    margin-top: 24px;
    padding: 30px 0;
    position: relative;
    isolation: isolate;
}

.eating-oishii-svg {
    width: 80%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.eating-oishii-text {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 64px;
    font-weight: 900;
    fill: url(#red-orange-grad);
    letter-spacing: 0.15em;
}

.eating-oishii::before {
    content: '';
    position: absolute;
    inset: -20% 5%;
    pointer-events: none;
    z-index: -1;
}

/* 漫画セクション */
.manga-section {
    width: 90%;
    margin: 0 auto;
    padding: 40px 0;
}

.manga-inner {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.manga-img {
    width: 100%;
    height: auto;
    display: block;
}

/* よくある質問セクション（完全無添加） */
.faq-section {
    width: 90%;
    background: #fcede5;
    padding: 40px 0;
    margin: 0 auto;
}

.faq-inner {
    background: #fff;
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
    /* padding: 40px 32px; */
    text-align: center;
}

.faq-title {
    font-size: 3rem;
    font-weight: bold;
    color: #b12222;
    font-family: "游明朝", "Yu Mincho", "HiraMinProN-W6", serif;
    line-height: 1.4;
    margin-bottom: 32px;
}

.faq-icons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
    margin-bottom: 32px;
}

.faq-icon-item {
    display: flex;
    justify-content: center;
}

.faq-no-icon {
    position: relative;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 14px solid #e63312;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #000;
    box-sizing: border-box;
    z-index: 1;
}

.faq-no-icon::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 14px;
    background: #e63312;
    transform: rotate(-45deg);
    border-radius: 5px;
    z-index: 0;
}

.faq-no-icon span {
    position: relative;
    z-index: 2;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    white-space: nowrap;
}

.faq-pure {
    display: inline-block;
    border: 2px solid #333;
    padding: 2px 60px;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
}

.faq-pure span {
    color: #e63312;
}

.faq-sub {
    margin-top: 50px;
    font-size: clamp(1rem, 3.5vw, 2.1rem);
    font-weight: bold;
    color: #ff914d;
    line-height: 1.6;
    text-align: center;
    -webkit-text-stroke: 2px #fff;
    paint-order: stroke fill;
    text-shadow: 2px 4px 10px rgba(0, 0, 0, 0.15);
}

.faq-gut {
    margin-top: -56px;
    font-size: 3rem;
    font-weight: bold;
    color: #e63312;
    text-align: center;
    -webkit-text-stroke: 5px #fff;
    paint-order: stroke fill;
}

.faq-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 12px auto 0;
    width: fit-content;
    filter: drop-shadow(2px 3px 0px rgba(0,0,0,0.5));
}

.faq-arrow::before {
    content: '';
    width: 12px;
    height: 50px;
    background: #ed4779;
    display: block;
}

.faq-arrow::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 22px solid transparent;
    border-right: 22px solid transparent;
    border-top: 28px solid #ed4779;
    display: block;
}

.faq-gut2 {
    margin-top: 12px;
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #ff66d9, rgba(255, 102, 217, 0.7), #ff66d9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    -webkit-text-stroke: 1.5px #ffee00;
    paint-order: stroke fill;
}

/* お客様の声（レビュー）セクション */
.review-section {
    margin-top: 48px;
    background: #fff;
    border-radius: 16px;
    padding: 40px 24px;
}

.review-ribbon {
    position: relative;
    display: block;
    text-align: center;
    background: linear-gradient(135deg, #ffe87a, #f5c842, #ffef80, #e0b030, #f5d050, #fff0a0, #f0c840);
    color: #3a1a00;
    font-size: 1.4rem;
    font-weight: bold;
    padding: 3px 48px;
    margin: 0 auto 32px auto;
    width: fit-content;
    clip-path: polygon(0% 0%, 100% 0%, 88% 50%, 100% 100%, 0% 100%, 12% 50%);
    overflow: hidden;
    z-index: 0;
}

.review-ribbon span {
    position: relative;
    z-index: 2;
}

.review-ribbon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.95) 0.6px, transparent 0.6px),
        radial-gradient(circle, rgba(255,255,255,0.5) 0.4px, transparent 0.4px),
        radial-gradient(circle, rgba(255,255,255,0.8) 0.7px, transparent 0.7px),
        radial-gradient(circle, rgba(255,255,255,0.4) 0.3px, transparent 0.3px),
        radial-gradient(circle, rgba(255,255,255,0.7) 0.5px, transparent 0.5px),
        radial-gradient(circle, rgba(255,255,255,0.6) 0.4px, transparent 0.4px),
        radial-gradient(circle, rgba(255,255,255,0.9) 0.6px, transparent 0.6px),
        radial-gradient(circle, rgba(255,255,255,0.3) 0.3px, transparent 0.3px);
    background-size: 13px 11px, 7px 9px, 17px 13px, 5px 7px, 11px 17px, 9px 5px, 19px 7px, 6px 13px;
    background-position: 0 0, 3px 5px, 7px 2px, 1px 8px, 5px 11px, 9px 3px, 2px 7px, 11px 1px;
    pointer-events: none;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.review-photo-placeholder {
    width: 70%;
    aspect-ratio: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.review-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.review-comment {
    font-size: clamp(0.65rem, 2vw, 1rem);
    font-weight: bold;
    color: #b12222;
    text-align: center;
    line-height: 1.6;
}

/* よくあるご質問（purchase）セクション */
.purchase-section {
    background: #fcede5;
    padding: 40px 0;
    width: 90%;
    margin: 0 auto;
    border-radius: 16px;
}

.purchase-inner {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 32px;
}

.purchase-title {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 32px;
    color: #333;
}

.faq-qa-item {
    margin-bottom: 32px;
}

/* Q行：テキスト＋右に商品画像 */
.faq-q {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-q-icon, .faq-a-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #b12222;
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-a-icon {
    background: #c8a87a;
    color: #b12222;
}

.faq-q-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #333;
    flex: 1;
}

.faq-q-img {
    width: 100px;
    height: auto;
    flex-shrink: 0;
    margin-left: auto;
}

/* A行 */
.faq-a {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.faq-a-text {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

/* ワンポイントアドバイス */
.faq-advice-wrap {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 16px 0 8px 0;
}

.faq-advice-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    width: 130px;
}

.faq-advice-balloon {
    position: relative;
    display: inline-block;
}

.faq-balloon-svg {
    width: 140px;
    height: auto;
    display: block;
}

.faq-balloon-text {
    position: absolute;
    top: 38%;
    left: 47%;
    transform: translate(-50%, -50%);
    font-size: 0.78rem;
    color: #b12222;
    text-align: center;
    line-height: 1.6;
    white-space: nowrap;
    pointer-events: none;
}

.faq-advice-text {
    font-size: 0.85rem;
    color: #555;
    text-align: left;
    margin-top: 18px;
    line-height: 1.6;
    padding-left: 4px;
}

.faq-advice-photos {
    display: flex;
    gap: 8px;
    flex: 1;
}

.faq-advice-photo {
    flex: 1;
    width: 0;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 0;
}

/* 区切り線 */
.faq-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 24px 0;
}

/* 飲み方ステップ */
.faq-steps {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.faq-step-label {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #b12222;
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 24px;
}

.faq-step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    flex: 1;
}

.faq-step-item {
    display: flex;
    flex-direction: column;
}

.faq-step-mark {
    font-size: 1rem;
    color: #b12222;
    margin-bottom: 2px;
}

.faq-step-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.faq-step-num {
    font-size: 1.1rem;
    font-weight: bold;
    color: #b12222;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.faq-step-photo-placeholder {
    width: 80px;
    height: 80px;
    background: #e8e8e8;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

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

/* ===== スマートフォン小画面 (480px以下) ===== */
@media (max-width: 480px) {



    /* プロモーション */
    .promo-buy-btn {
        width: 75%;
        padding: 0.45em 0.3em;
    }

    .promo-section {
        padding: 16px 8px 8px;
    }

    .promo-inner {
        padding: 16px 10px;
    }

    .promo-top {
        justify-content: center;
    }

    .promo-product-img {
        width: 70px;
    }

    .promo-special-banner {
        padding: 0.3em 1.5em;
    }

    .promo-teiki-lead {
        font-size: clamp(0.8rem, 2.5vw, 1rem);
    }

    /* こだわり詳細 */
    .commitment-detail-inner {
        padding: 14px 10px;
    }

    .commitment-detail-label {
        font-size: 0.85rem;
        padding: 3px 4px;
    }

    /* 自然セクション */
    .nature-inner {
        width: 95%;
    }

    .nature-title {
        margin-bottom: 20px;
        -webkit-text-stroke: 2px #fff;
    }

    .nature-subtitle {
        /* flex-wrap: wrap; */
        justify-content: center;
        margin-top: 64px;
    }

    /* 食べ方 */
    .eating-balloon {
        padding: 3px 6px;
    }

    .eating-oishii {
        padding: 0;
        margin-top: -10px;
        margin-bottom: -30px;
    }

    .eating-oishii-text {
        font-size: 38px;
    }

    .ingredients-bottom {
        width: 75%;
        margin-top: -32px;
    }

    /* FAQアイコン */
    .faq-title {
        font-size: 1.3rem;
    }

    .faq-no-icon {
        width: 60px;
        height: 60px;
        font-size: 0.9rem;
        border-width: 8px;
    }

    .faq-no-icon::after {
        height: 8px;
    }

    .faq-pure {
        font-size: 1rem;
        padding: 2px 20px;
    }

    .faq-gut {
        font-size: 1.5rem;
        -webkit-text-stroke: 2px #fff;
    }

    .faq-gut2 {
        font-size: 1.5rem;
        -webkit-text-stroke: 0.5px #ffee00;
    }

    /* マイルド */
    .mild-badge {
        width: 65px;
        height: 65px;
        font-size: 0.7rem;
        top: 30px;
        left: 8px;
    }
}

/* =============================================
   ecforceフォーム表示修正
   ============================================= */

/* フォームコンテナ: 940px固定 → LP幅に合わせる */
#lp-form.form_container_ec {
    width: 100% !important;
    max-width: 768px !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    background-color: #fcede5 !important;
}

/* フォーム本体 */
#lp-form .form_main_container_ec {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* フォームテーブル: 852px固定 → 100% */
#lp-form table.landing_form_ec {
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    box-sizing: border-box !important;
}

/* テーブルセル: 固定幅を解除 */
#lp-form .landing_form_ec th {
    width: 30% !important;
    padding: 13px 11px !important;
    text-align: left !important;
    vertical-align: top !important;
    box-sizing: border-box !important;
}

#lp-form .landing_form_ec td {
    width: 70% !important;
    padding: 13px 5px !important;
    box-sizing: border-box !important;
    overflow-wrap: break-word !important;
    word-break: break-word !important;
}

/* フォーム行 */
#lp-form .landing_form_ec tr {
    line-height: 18px;
    font-size: 14px;
}

/* グローバルリセット(* {margin:0; padding:0})の影響を解除 */
#lp-form .form_group_ec {
    padding-left: 2%;
    padding-right: 2%;
}

#lp-form .purchase_message_ec,
#lp-form .login_message_ec {
    padding: 20px 0;
    margin-left: 4%;
    margin-right: 4%;
    font-size: 14px;
}

#lp-form .landing_form_label_ec {
    padding: 15px;
    background: #2c3e7a;
    color: #fff;
    font-size: 18px;
    text-align: left;
    border-radius: 0;
    margin-top: 20px;
}

#lp-form .form_required_ec {
    padding: 2px 4px;
    margin-left: 5px;
    display: inline-block;
    background: #c0392b;
    color: #fff;
    font-size: 12px;
    float: right;
}

#lp-form .agreement_view_ec {
    margin-left: 4%;
    padding: 20px 0;
}

#lp-form .submit_ec {
    padding: 2%;
}

#lp-form .login_message_box_ec,
#lp-form .login_message_box_sp_ec {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: 10px 4% !important;
    border: none !important;
}

/* フォーム全体の背景・ボーダー非表示 */
#lp-form {
    background-color: #fcede5 !important;
    border: none !important;
}

/* 入力欄の基本スタイル復元 */
#lp-form .form_main_container_ec input,
#lp-form .form_main_container_ec select {
    padding: 10px !important;
    font-size: 12px !important;
    color: #555 !important;
    border-radius: 3px !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* 入力欄の幅をはみ出さないように制限 */
#lp-form input.input_box_addr1_ec,
#lp-form input.input_box_addr2_ec,
#lp-form input.input_box_email_ec,
#lp-form input.input_box_card_number_ec,
#lp-form input.input_box_card_name_ec,
#lp-form input.input_box_password_ec {
    width: 100% !important;
}

#lp-form input.input_box_name1_ec,
#lp-form input.input_box_name2_ec,
#lp-form input.input_box_kana1_ec,
#lp-form input.input_box_kana2_ec {
    width: 45% !important;
}

#lp-form select.input_box_product_ec,
#lp-form select.input_box_card_method_ec {
    width: 100% !important;
}

#lp-form p.caution_ec {
    padding-top: 10px;
    font-size: 14px;
}

/* フォーム内のp, label, divにデフォルト余白を復元 */
#lp-form .form_group_ec p {
    margin: 4px 0;
}

#lp-form .form_group_ec label {
    margin-right: 4px;
}

#lp-form .form_group_ec .col-12 {
    display: inline-block;
    margin-bottom: 4px;
}

/* スマートフォン対応 */
@media (max-width: 480px) {
    #lp-form table.landing_form_ec {
        display: block;
    }

    #lp-form .landing_form_ec tr {
        display: block;
        margin-bottom: 8px;
    }

    #lp-form .landing_form_ec th,
    #lp-form .landing_form_ec td {
        display: block;
        width: 100% !important;
        padding: 8px 10px;
    }

    #lp-form .landing_form_ec th {
        background: #f5f5f5;
        border-bottom: 1px solid #ddd;
    }

    #lp-form .form_main_container_ec input,
    #lp-form .form_main_container_ec select {
        width: 100% !important;
        max-width: 100%;
    }

    #lp-form input.input_box_name1_ec,
    #lp-form input.input_box_name2_ec,
    #lp-form input.input_box_kana1_ec,
    #lp-form input.input_box_kana2_ec {
        width: 45% !important;
    }

    #lp-form input.input_box_zip1_ec { width: 80px !important; }
    #lp-form input.input_box_zip2_ec { width: 100px !important; }
    #lp-form input.input_box_tel1_ec,
    #lp-form input.input_box_tel2_ec,
    #lp-form input.input_box_tel3_ec { width: 24% !important; }
}
