.button-13 a {
    font-family: "Noto Serif JP", serif;
    font-size: 25px;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: 400;
    display: block;
    position: relative;
    box-sizing: border-box;
    max-width: 180px;
    text-align: center;
    padding: 4px 16px 4px 0;
    margin: 24px;
    margin-inline: auto;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

.button-13 a::before {
    content: "";
    display: block;
    position: absolute;
    width: 180px;
    height: 1px;
    background: #333;
    bottom: 0;
    transition: all 0.3s;
}

.button-13 a::after {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 1px;
    background: #333;
    rotate: 40deg;
    right: -3px;
    bottom: 10px;
    transition: all 0.3s;
}

.button-13 a:hover::after,
.button-13 a:hover::before {
    translate: 20px 0;
    transition: all 0.3s;
}

/* 🩶 イベントバナー全体 */

/* 🩶 イベントバナー全体 */

.event_banner {
    display: flex;
    flex-wrap: nowrap;
    /* ← 折り返さない */
    justify-content: flex-start;
    /* 左から順に並べる */
    align-items: center;
    gap: 1em;
    overflow-x: auto;
    /* ← 横スクロールON */
    scroll-snap-type: x mandatory;
    /* ← スナップでピタッと止まる */
    -webkit-overflow-scrolling: touch;
    /* ← iPhone滑らか対応 */
    padding: 1em 1em;
}

/* 各リンク要素 */

.event_banner a {
    flex: 0 0 auto;
    scroll-snap-align: start;
    /* ← スクロール位置が揃う */
    transition: transform 0.3s ease;
}

.event_banner a:hover {
    transform: scale(1.03);
}

/* 画像設定 */

.event_banner img {
    width: 280px;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    display: block;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.event_bigbanner img {
    width: 600px;
    height: auto;
}

/* 📱 スマホ */

@media screen and (max-width: 785px) {
    .event_banner {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        scroll-snap-type: none;
        padding: 0.5em;
        gap: 0.5em;
    }
    .event_banner a {
        flex: 0 0 calc(50% - 0.5em);
    }
    .event_banner img {
        width: 100%;
        max-width: none;
    }
}

/* 🖥️ PC（1列固定・横スクロールOK） */

@media screen and (min-width: 786px) {
    .event_banner {
        justify-content: center;
        /* 画面中央に並べる */
    }
}

/* ── アイテムヒーロー PC: 3列グリッド ── */

.item-hero-pc {
    margin: 4em auto 0;
    padding: 0 clamp(12px, 2vw, 20px);
    max-width: 1200px;
}

.item-hero-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(8px, 1.5vw, 16px);
}

.item-hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 600 / 400;
    display: block;
}

.item-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.item-hero-card:hover img {
    transform: scale(1.05);
}

.item-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.15) 40%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    padding-bottom: clamp(16px, 3vw, 28px);
    pointer-events: none;
}

/* PC/スマホ 表示切り替え */
.item-hero-sp { display: none; }

@media screen and (max-width: 785px) {
    .item-hero-pc { display: none; }
    .item-hero-sp { display: block; }
}

/* ── アイテムヒーロー スマホ: 1画面3枚グリッド ── */

.item-hero-sp {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

.item-hero-sp-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 0;
}

.item-hero-sp-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.item-hero-sp-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-hero-sp-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.item-hero-sp-card-text {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.item-hero-sp-card-en {
    font-family: "Noto Serif JP", serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.item-hero-sp-card-ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

.item-hero-sp-card-btns {
    display: flex;
    gap: 8px;
    margin-top: 2px;
}

.item-hero-sp-card-btn {
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 6px 16px;
    border-radius: 999px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* PC用テキスト */
.item-hero-overlay .item-hero-en {
    font-family: "Noto Serif JP", serif;
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}

/* PC用ニューボーンフォトのボタン */
.item-hero-btns-pc {
    display: flex;
    gap: 8px;
    margin-top: 4px;
    pointer-events: auto;
}

.item-hero-btn-pc {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 5px 14px;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease;
}

.item-hero-btn-pc:hover {
    background: rgba(255, 255, 255, 0.35);
}

.item-hero-overlay .item-hero-ja {
    font-family: "Noto Sans JP", sans-serif;
    font-size: clamp(12px, 1.4vw, 16px);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.4);
}


/* ==============================
   実績バッジ
   ============================== */

.trust-badge {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    padding: 18px 0 8px;
    flex-wrap: wrap;
}

.trust-badge__number {
    font-family: "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 700;
    color: #62b48a;
    line-height: 1;
    letter-spacing: 0.02em;
}

.trust-badge__unit {
    font-size: 18px;
    font-weight: 600;
    color: #62b48a;
}

.trust-badge__label {
    font-size: 14px;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .trust-badge__number {
        font-size: 36px;
    }
    .trust-badge__label {
        font-size: 12px;
    }
}

/* ==============================
   TOPページ レビュー
   ============================== */

.top-voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 963px;
    margin: 0 auto;
}

.top-voice-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-voice-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.top-voice-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.top-voice-body {
    padding: 10px 12px;
}

.top-voice-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.top-voice-text {
    font-size: 12px;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.top-voice-text.is-expanded {
    -webkit-line-clamp: unset;
    overflow: visible;
}

.top-voice-toggle {
    border: none;
    background: none;
    color: #62b48a;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 0 0;
    transition: color 0.2s ease;
}

.top-voice-toggle:hover {
    color: #4a9e74;
}

@media (max-width: 640px) {
    .top-voice-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .top-voice-body {
        padding: 8px 10px;
    }
    .top-voice-name {
        font-size: 12px;
    }
    .top-voice-text {
        font-size: 11px;
    }
    .top-voice-toggle {
        font-size: 11px;
    }
}

.section-title {
    margin: 4em auto 2em;
}

.section-title h2 {
    font-family: "Noto Serif JP", serif;
    font-size: 60px;
    letter-spacing: 0.2em;
    color: #62b48a;
    /* 柔らかいグリーン */
    font-weight: bold;
    margin-bottom: 0.1em;
}

.section-title p {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 14px;
    color: #777;
    letter-spacing: 0.1em;
    margin: 0;
}

.item_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* PC：3列 */
    gap: 2em;
    justify-items: center;
    margin: 3em auto;
}

/* カード共通 */

.item_card {
    position: relative;
    text-align: center;
    color: #444;
    overflow: hidden;
    /* ← 縦書きが画像の外にはみ出ないように */
}

/* ✨ 縦書きタイトル */

.vertical_title {
    position: absolute;
    top: 0;
    left: 0;
    /* ← 画像の内側にぴったり配置 */
    writing-mode: vertical-rl;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: #9c8f7a;
    background: rgba(255, 255, 255, 0.8);
    /* ← 背景をうっすら白くして視認性UP */
    padding: 8px 2px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    transform: rotate(0deg);
    /* ← 正しい縦書き方向（下→上） */
    box-sizing: border-box;
    border-right: 1px solid #d8d2c4;
    /* ← 上品な仕切り線 */
}

/* 画像 */

.item_card img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.item_card img:hover {
    transform: scale(1.01);
}

/* テキスト */

.item_name {
    font-size: 17px;
    letter-spacing: 0.05em;
}

.item_price {
    font-size: 17px;
    color: #666;
}

.item_price_original {
    text-decoration: line-through;
    color: #aaa;
    font-size: 14px;
    margin-right: 4px;
}

.item_discount {
    font-size: 11px;
    color: #fff;
    background: #e25b5b;
    display: inline-block;
    padding: 2px 8px;
    border-radius: 3px;
    margin-top: 4px;
    font-weight: 600;
}

.item_fer {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

a.no_link {
    color: #666;
    text-decoration: none;
}

/* 📱 スマホ：1列表示 */

@media screen and (max-width: 1100px) {
    .item_name {
        font-size: 15px;
        letter-spacing: 0.05em;
    }
    .item_price {
        font-size: 15px;
        color: #666;
    }
    .item_fer {
        justify-content: flex-end;
    }
    .section-title h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 785px) {
    .item_list {
        grid-template-columns: 1fr;
        /* 1列だけ */
        gap: 2.5em;
    }
    .item_card {
        margin: 0 auto;
    }
}

/* レンタルのながれ */

:root {
    --brand: #5fbf9a;
    /* ミント寄りのCONYトーン */
    --ink: #222;
    --muted: #777;
    --card-bg: #fff;
    --shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    --radius: 20px;
}

.steps {
    margin: clamp(28px, 6vw, 64px) auto;
    padding: 0 clamp(12px, 2vw, 20px);
}

.steps-ctrl {
    display: flex;
    gap: 10px;
}

.steps-btn {
    inline-size: 42px;
    block-size: 42px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    background: #f3f5f6;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, background 0.2s ease;
}

.steps-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    inline-size: 10px;
    block-size: 10px;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    transform: rotate(45deg);
}

.steps-btn.prev::before {
    transform: rotate(-135deg);
}

.steps-btn:hover {
    background: #e8eded;
    transform: translateY(-1px);
}

.steps-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 24px);
}

@media (max-width: 720px) {
    .steps-head {
        margin-bottom: 10px;
    }
    .steps-ctrl {
        order: 2;
    }
    .steps-track {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        padding: 6px 2px 14px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    .step-card {
        scroll-snap-align: center;
        min-inline-size: 80%;
    }
    .steps::-webkit-scrollbar,
    .steps-track::-webkit-scrollbar {
        display: none;
    }
}

.step-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: translateZ(0);
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.35s;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
}

.step-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.step-media img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    transition: transform 0.8s ease;
}

.step-card:hover .step-media img {
    transform: scale(1.08);
}

/* ガラス風バッジ */

.step-badge {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 8px 12px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.55)
    );
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    color: #24bf83;
    font: 600 12px / 1 "Noto Sans JP", system-ui, sans-serif;
    letter-spacing: 0.12em;
    font-size: 16px;
}

/* 情報部分 */

.step-info {
    padding: 14px 16px 18px;
    display: grid;
    gap: 6px;
}

.step-info h3 {
    font: 600 16px/1.5 "Noto Sans JP", system-ui, sans-serif;
    color: var(--ink);
    letter-spacing: 0.04em;
    margin: 0;
}

.step-info p {
    font: 400 13px/1.8 "Noto Sans JP", system-ui, sans-serif;
    color: var(--muted);
    margin: 0;
}

/* ドット */

.steps-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.steps-dot {
    inline-size: 6px;
    block-size: 6px;
    border-radius: 999px;
    background: #d7dbdf;
    transition: all 0.3s ease;
}

.steps-dot.is-active {
    inline-size: 18px;
    background: var(--brand);
}

@media (max-width: 720px) {
    .steps-dots {
        display: flex;
    }
}

.bag_green {
    margin: 0 auto;
    padding: 0 auto;
    background-color: #e7f0e7;
    margin: -21em auto 0em auto;
    padding: 17em 0 1em 0;
}

.intro-inner {
    margin: 47px auto;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.intro-description span {
    color: rgb(24, 128, 111);
    font-weight: bold;
}

.intro-text {
    flex: 1 1 420px;
    color: #333;
}

.intro-number {
    font-size: 64px;
    font-weight: 600;
    color: #47a88a;
    line-height: 1;
}

.intro-title {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: #47a88a;
    margin-bottom: 24px;
}

.intro-description {
    font-size: 18px;
    line-height: 2;
    color: #555;
}

.intro-image {
    flex: 1 1 420px;
    border-radius: 20px;
    overflow: hidden;
}

.intro-image img {
    width: 100%;
    display: block;
    border-radius: 16px;
    object-fit: cover;
}

/* ✅ スマホ対応 */

@media (max-width: 768px) {
    .intro-inner {
        flex-direction: column;
        gap: 40px;
    }
    .intro-number {
        font-size: 48px;
    }
    .intro-description {
        font-size: 16px;
    }
    .intro-text,
    .intro-image {
        width: 100%;
        flex: 1 1;
    }
}

.campaign-image {
    text-align: center;
    margin: 1em auto;
    max-width: 1000px;
    width: 100%;
}

.campaign-image img {
    width: 100%;
    height: auto;
    border-radius: 22px;
}
