@charset "utf-8";

/* ==========================================================================
   Design System & Tokens
   ========================================================================== */
:root {
    --text-main: #3a2b20;
    /* ダークブラウン */
    --text-light: #666666;
    --white: #ffffff;
    --bg-cream: #fcfaf5;
    /* クリーム背景 */
    --bg-beige: #fbf9f4;
    /* 少し濃いベージュ */
    --primary: #4f6336;
    /* オリーブグリーン */
    --primary-light: #7f9366;
    --accent-orange: #d18a54;
    --border-color: #eedecc;
    --font-main: 'Zen Old Mincho', serif;
    --font-heading: 'Zen Old Mincho', serif;
    --radius-l: 16px;
    --radius-m: 12px;
    --header-height: 80px;
}

/* Utilities */
@media screen and (max-width: 768px) {
    .pc-only {
        display: none !important;
    }
}

@media screen and (min-width: 769px) {
    .sp-only {
        display: none !important;
    }
}

/* Base Styles */
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    background-color: var(--bg-cream);
    line-height: 1.8;
    letter-spacing: 0.05em;
    overflow-x: hidden;
    margin: 0;
    font-size: 16px;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.section-title-jp,
.menu-title-en,
.worries__title,
.about-new__title,
.features-new-card__title,
.flow__step-title,
.cta-title {
    font-family: var(--font-heading);
    color: var(--primary);
}

img {
    max-width: 100%;
    height: auto;
    pointer-events: none !important;
    -webkit-touch-callout: none !important;
    -webkit-user-drag: none !important;
}

a {
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.8;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Layout */
.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

@media screen and (min-width: 769px) {
    .container {
        padding: 0;
    }
}

.section {
    padding: 90px 0;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border-radius: 5px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn--sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn--round {
    border-radius: 50px !important;
    min-width: 120px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(252, 250, 245, 0.95);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    backdrop-filter: blur(5px);
}

.header__inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header__logo img {
    height: 45px;
    width: auto;
    display: block;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header__list a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 500;
    font-size: 14px;
    font-family: var(--font-heading);
    white-space: nowrap;
    transition: color 0.3s;
}

.header__list a:hover {
    color: var(--primary);
}

.header__cta {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.header__hamburger {
    display: none;
}

@media screen and (max-width: 960px) {
    .header__nav {
        display: none !important;
    }

    .header {
        height: 65px !important;
        z-index: 2500 !important;
    }

    .header__inner {
        padding: 0 20px !important;
    }

    .header__logo img {
        height: 35px !important;
    }

    .header__hamburger {
        display: block !important;
        width: 28px !important;
        height: 20px !important;
        position: relative !important;
        cursor: pointer;
        z-index: 2600 !important;
        margin-left: auto;
    }

    .header__hamburger span {
        position: absolute;
        width: 100%;
        height: 2px !important;
        background: var(--primary) !important;
        left: 0;
        transition: all 0.3s;
        border-radius: 2px;
    }

    .header__hamburger span:nth-child(1) {
        top: 0 !important;
    }

    .header__hamburger span:nth-child(2) {
        top: 9px !important;
    }

    .header__hamburger span:nth-child(3) {
        top: 18px !important;
    }

    .header__hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg) !important;
    }

    .header__hamburger.active span:nth-child(2) {
        opacity: 0 !important;
    }

    .header__hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg) !important;
    }
}

/* SP Menu */
.sp-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--accent-orange);
    z-index: 2000;
    padding: 100px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sp-menu.active {
    transform: translateX(0);
}

.sp-menu__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.sp-menu__list li {
    text-align: center;
}

.sp-menu__list a {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--white);
    font-family: var(--font-heading);
}

/* ==========================================
   FV Styles
   ========================================== */
.fv-new {
    position: relative;
    width: 100%;
    display: block;
    overflow: hidden;
    z-index: 1;
    background: var(--bg-cream);
    padding: 0;
    margin-top: var(--header-height);
}

.fv-new__picture,
.fv-new__image {
    display: block;
    width: 100%;
}

.fv-new__image {
    height: auto;
}

@media (max-width: 992px) {
    .fv-new__image {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ==========================================
   Custom FV Section
   ========================================== */
.banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    margin-top: 60px;
    /* Offset for header */
    container-type: inline-size;
    container-name: banner;
    overflow: hidden;
    background: linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), url('../img/fvbg.png') center/cover no-repeat;
    display: flex;
    align-items: stretch;
}

.content {
    flex: 1 1 56%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(20px, 5cqi, 50px) clamp(16px, 3cqi, 40px) clamp(20px, 5cqi, 50px) clamp(40px, 10cqi, 120px);
}

.headline {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    color: #5c5654;
    font-size: clamp(20px, 4.1cqi, 57px);
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-bottom: clamp(10px, 2.5cqi, 24px);
    white-space: nowrap;
}

.headline .accent {
    color: #e0507a;
}

.ribbon-wrap {
    margin-bottom: clamp(14px, 3.3cqi, 30px);
    max-width: 100%;
    --rh: clamp(36px, 4.9cqi, 50px);
    --rp: clamp(11px, 1.6cqi, 16px);
}

.ribbon1 {
    display: inline-block;
    position: relative;
    height: var(--rh);
    line-height: var(--rh);
    text-align: center;
    padding: 0 clamp(20px, 4cqi, 40px);
    font-size: clamp(13px, 1.5cqi, 18px);
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(180deg, #f083a3 0%, #e0507a 45%, #d13a65 100%);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
    color: #fff;
    box-sizing: border-box;
    max-width: 100%;
    white-space: nowrap;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--rp)) 50%, 100% 100%, 0 100%, var(--rp) 50%);
}

.subtext {
    font-size: clamp(13px, 1.7cqi, 23px);
    color: #3d3532;
    font-weight: 500;
    margin-bottom: clamp(14px, 3.3cqi, 30px);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.price-row {
    display: flex;
    align-items: center;
    gap: clamp(12px, 2cqi, 24px);
    flex-wrap: wrap;
}

.badge {
    width: clamp(64px, 8.6cqi, 118px);
    height: clamp(64px, 8.6cqi, 118px);
    border-radius: 50%;
    background: linear-gradient(160deg, #e97b98, #dd5678);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(11px, 1.4cqi, 19px);
    line-height: 1.45;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.price {
    display: flex;
    align-items: flex-end;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    color: #e0507a;
    flex-wrap: wrap;
    min-width: 0;
}

.price .amount {
    font-size: clamp(34px, 6cqi, 82px);
    line-height: 1;
    letter-spacing: 0.01em;
}

.price .suffix {
    display: flex;
    flex-direction: column;
    margin-left: clamp(3px, 0.5cqi, 6px);
    margin-bottom: 2px;
}

.price .tax {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(10px, 1.2cqi, 16px);
    font-weight: 500;
    color: #8a6b70;
    margin-bottom: clamp(3px, 0.8cqi, 8px);
    white-space: nowrap;
}

.price .yen {
    font-size: clamp(20px, 3.2cqi, 44px);
    line-height: 1;
}

.photo-area {
    flex: 0 0 44%;
    min-width: 0;
    position: relative;
}

.photo-area img {
    mask-image: linear-gradient(to right, transparent 0%, black 15%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%);
}

@media screen and (max-width: 768px) {
    .banner {
        flex-direction: column;
        margin-top: 65px;
        /* Offset for SP header */
    }

    .content {
        flex: 1 1 auto;
        width: 100%;
        padding: clamp(20px, 5vw, 30px) clamp(16px, 4vw, 24px);
        align-items: center;
        text-align: center;
    }

    .photo-area {
        flex: 0 0 auto;
        width: 100%;
        height: 60vw;
        min-height: 180px;
        max-height: 280px;
        order: -1;
        /* Image on top */
    }

    .photo-area img {
        mask-image: linear-gradient(to top, transparent 0%, black 20%);
        -webkit-mask-image: linear-gradient(to top, transparent 0%, black 20%);
        object-position: center 25%;
    }

    .headline {
        white-space: nowrap;
        font-size: 24px !important;
    }

    .price-row {
        justify-content: center;
        gap: 14px;
    }
}

@keyframes fadeInFV {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner .headline {
    animation: fadeInFV 0.8s ease forwards;
    opacity: 0;
}

.banner .ribbon-wrap {
    animation: fadeInFV 0.8s ease 0.2s forwards;
    opacity: 0;
}

.banner .subtext {
    animation: fadeInFV 0.8s ease 0.4s forwards;
    opacity: 0;
}

.banner .price-row {
    animation: fadeInFV 0.8s ease 0.6s forwards;
    opacity: 0;
}

.banner .photo-area {
    animation: fadeInFV 1s ease 0.3s forwards;
    opacity: 0;
}

/* ==========================================
   Animations
   ========================================== */
.animate-ready {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-ready.is-animated {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   Common Title Style (統一見出し)
   ========================================== */
.menu-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
}

.menu-title-en {
    font-size: 36px;
    font-weight: 400;
    color: var(--text-main);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-family: var(--font-heading);
}

/* 左右の線と葉っぱアイコンの組み合わせ */
.menu-title-en::before,
.menu-title-en::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background-color: #c9bda5;
}

.menu-title-jp {
    font-size: 15px;
    color: var(--primary);
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: var(--font-main);
}

@media screen and (max-width: 768px) {
    .menu-title-en {
        font-size: 26px;
        gap: 10px;
    }

    .menu-title-en::before,
    .menu-title-en::after {
        width: 30px;
    }

    .menu-title-jp {
        font-size: 13px;
    }

    .menu-title-wrapper {
        margin-bottom: 35px;
    }
}

/* ==========================================
   Worries Section (お悩み)
   ========================================== */
.section.worries {
    background: url('../img/worrie.png') left center / cover no-repeat;
    background-attachment: fixed;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

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

.worries-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 50px 30px 40px;
    position: relative;
    text-align: center;
}

.worries-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-size: 32px;
}

.worries-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.worries-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 25px;
    position: relative;
}

.worries-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.worries-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;
}

.worries-card__list i {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 4px;
}

.worries-card__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #4f6336;
}

.worries-card__text {
    font-size: 15px;
    line-height: 1.8;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
    margin: 0;
}

.worries-card__text i {
    color: #4f6336;
    font-size: 20px;
    margin-top: 3px;
    flex-shrink: 0;
}

.worries__footer {
    text-align: center;
    font-size: 28px;
    font-weight: 500;
    color: var(--text-main);
    font-family: var(--font-heading);
    margin-top: 30px;
    line-height: 1.6;
}

.worries__footer strong {
    color: #f05f01;
    font-size: 1.15em;
    font-weight: 700;
    background: linear-gradient(transparent 70%, #a4b38d 70%);
    display: inline-block;
    padding: 0 5px;
}

@media screen and (max-width: 900px) {
    .worries__cards {
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .section.worries {
        padding: 60px 0;
        background-attachment: scroll;
        background-position: left center;
        background-size: cover;
    }

    .worries__cards {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 0 10px;
        margin-top: 55px;
    }

    .worries-card {
        padding: 50px 20px 30px;
    }

    .worries__footer {
        font-size: 20px;
        line-height: 1.6;
        text-align: center;
        padding: 0 10px;
    }
}

/* ==========================================
   About Section (みみくる京都店)
   ========================================== */
.about-new {
    background: url('../img/aboutbg.png') center/cover no-repeat;
    padding: 0;
}

.about-new__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background: transparent;
    max-width: 1080px;
    margin: 0 auto;
}

.about-new__image {
    flex: 1 1 50%;
    min-height: 550px;
    position: relative;
}

.elegant-frame-wrapper {
    position: relative;
    display: inline-block;
    padding: 12px;
    background: transparent;
    max-width: 400px;
    width: 100%;
}

.elegant-frame-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary);
    border-radius: 24px;
}

.elegant-frame-wrapper::after {
    content: '';
    position: absolute;
    inset: 6px;
    border: 2px solid var(--primary);
    border-radius: 18px;
    opacity: 0.8;
}

.elegant-frame-wrapper img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-new__content {
    flex: 1 1 50%;
    padding: 80px 8%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: url('../img/aboutbg.png') center/cover no-repeat;
}

.about-new__label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--accent-orange);
    margin-bottom: 8px;
    opacity: 0.85;
}

.about-new__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.about-new__text {
    font-size: 16px;
    line-height: 2.2;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    font-family: var(--font-heading);
}

.about-new__deco-leaf {
    position: absolute;
    bottom: 0px;
    right: -20px;
    font-size: 250px;
    color: var(--primary);
    opacity: 0.04;
    pointer-events: none;
    transform: rotate(-15deg);
    z-index: 1;
}

@media screen and (max-width: 768px) {
    .about-new__wrapper {
        flex-direction: column;
    }

    .about-new__image {
        min-height: 300px;
    }

    .about-new__content {
        padding: 60px 20px;
    }

    .about-new__title {
        font-size: 26px;
        text-align: center;
        margin-bottom: 20px;
    }
}

/* ==========================================
   Service Section (当店のこだわり)
   ========================================== */
.features-new {
    position: relative;
    background-color: var(--bg-cream);
    padding: 90px 0;
    z-index: 1;
    overflow: hidden;
}

.features-new::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: url('../img/aboutbg.png') right center / auto 100% no-repeat;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    .features-new::before {
        background-size: auto 70%;
        background-position: right bottom;
    }
}

.features-new__lead {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.features-new__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.features-new-card {
    background: var(--white);
    border-radius: var(--radius-m);
    overflow: hidden;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.features-new-card__img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.features-new-card__content {
    padding: 30px;
    position: relative;
    flex-grow: 1;
}

.features-new-card__num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: rgba(79, 99, 54, 0.08);
    position: absolute;
    top: 15px;
    right: 25px;
    line-height: 1;
    z-index: 1;
}

.features-new-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-orange);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.features-new-card__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main);
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .features-new {
        padding: 60px 0;
    }

    .features-new-card {
        padding: 30px 20px;
    }

    .features-new-card__content>div:first-child {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .features-new-card__content>div:first-child>h3 {
        text-align: center !important;
    }

    .features-new__lead {
        text-align: left;
        padding: 0 10px;
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 15px;
    }

    .features-new__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-new-card__content {
        padding: 25px 20px;
    }

    .features-new-card__num {
        font-size: 40px;
        top: 10px;
        right: 20px;
    }

    .features-new-card__title {
        font-size: 18px;
        margin-bottom: 12px;
    }
}

.number-01 {
    position: relative;
    font-family: var(--font-heading);
    font-size: 64px;
    color: #333;
    font-weight: 400;
    line-height: 1.5;
    display: block;
    box-sizing: border-box;
    text-align: center;
    margin-inline: auto;
    width: fit-content;
    margin-bottom: 15px;
}

.number-01::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -24px;
    width: 40px;
    height: 80px;
    border-left: 1px solid #333;
    transform: rotate(45deg);
    background-color: var(--white);
}

/* ==========================================
   Menu Section (コースメニュー)
   ========================================== */
.menu-section {
    background: url('../img/bg.png') center/cover fixed no-repeat !important;
    padding: 90px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.menu-recommend {
    display: flex;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    overflow: hidden;
    margin-bottom: 30px;
}

.menu-recommend__img {
    flex: 0 0 40%;
}

.menu-recommend__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-recommend__content {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.menu-recommend__badge {
    background-color: var(--primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    width: fit-content;
    margin-bottom: 15px;
    gap: 6px;
}

.menu-recommend__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.menu-recommend__sub {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 20px;
}

.menu-recommend__deco-line {
    width: 100%;
    height: 1px;
    background-color: var(--border-color);
    margin-bottom: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-recommend__deco-line::before {
    content: "\f846";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #d1c5a9;
    font-size: 14px;
    background: var(--bg-cream);
    padding: 0 10px;
    z-index: 1;
}

.menu-recommend__desc {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 20px;
    line-height: 1.6;
}

.menu-recommend__price-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.menu-recommend__price-label {
    border: 1px solid var(--primary);
    color: var(--primary);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
}

.menu-recommend__price-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 500;
    color: var(--primary);
    line-height: 1;
}

.menu-recommend__price-num span {
    font-size: 0.4em;
    font-weight: 500;
    margin-left: 4px;
    color: var(--text-main);
    font-family: var(--font-main);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.menu-item {
    display: flex;
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 25px 30px;
    align-items: center;
}

.menu-item__time {
    flex: 0 0 160px;
    font-size: 20px;
    font-weight: 500;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
}

.menu-item__time i {
    color: #a4b38d;
    font-size: 20px;
}

.menu-item__price {
    flex: 0 0 150px;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 500;
    color: var(--primary);
    border-right: 1px dashed #d0c8b6;
    margin-right: 25px;
    padding-right: 25px;
    text-align: left;
    letter-spacing: 1px;
}

.menu-item__desc {
    flex: 1;
    font-size: 15px;
    color: var(--text-main);
    line-height: 1.6;
}

.menu-item__desc p {
    margin: 0;
}

.menu-item__note {
    font-size: 14px;
    margin-bottom: 6px !important;
    color: var(--text-light);
}

.menu-item__options {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-item__options li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 4px;
}

.menu-item__options li i {
    color: #c9bda5;
    margin-top: 5px;
    font-size: 10px;
    flex-shrink: 0;
}

.menu-item__options span {
    display: inline-block;
}

.menu-item__options strong {
    font-family: var(--font-main);
    font-size: 15px;
    margin-right: 5px;
    color: var(--primary);
}

.menu-tax-note {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

@media screen and (max-width: 900px) {
    .menu-recommend {
        flex-direction: column;
    }

    .menu-recommend__img {
        height: 220px;
        flex: none;
    }

    .menu-recommend__content {
        padding: 25px 20px;
    }

    .menu-item {
        flex-wrap: wrap;
        padding: 20px;
    }

    .menu-item__time {
        flex: 0 0 50%;
        font-size: 18px;
    }

    .menu-item__price {
        flex: 0 0 50%;
        border-right: none;
        margin-right: 0;
        padding-right: 0;
        text-align: right;
        font-size: 24px;
    }

    .menu-item__desc {
        flex: 0 0 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed #d0c8b6;
    }
}

@media screen and (max-width: 768px) {
    .menu-section {
        padding: 60px 0;
    }

    .menu-recommend__title {
        font-size: 24px;
    }

    .menu-recommend__sub {
        font-size: 16px;
    }

    .menu-recommend__price-num {
        font-size: 40px;
    }

    .menu-item__time {
        font-size: 16px;
    }
}

/* ==========================================
   Voice Section (お客様の声)
   ========================================== */
.voice-new {
    background: url('../img/worrie.png') center/cover no-repeat;
    padding: 90px 0;
}

.voice-new__catchphrase {
    font-family: var(--font-heading);
    font-size: 26px;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 40px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.voice-new__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.voice-card-new {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 35px 25px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.voice-card-new__attr {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    padding-bottom: 15px;
    border-bottom: 1px dashed #d1c5a9;
}

.voice-card-new__stars {
    color: #f2b01e;
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.voice-card-new__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 15px;
    line-height: 1.5;
    position: relative;
    z-index: 2;
    text-align: justify;
}

.voice-card-new__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
    position: relative;
    z-index: 2;
    flex-grow: 1;
    text-align: justify;
    display: flex;
    flex-direction: column;
}

.voice-card-new__more {
    display: none;
    margin-top: 10px;
}

.voice-card-new__more.is-open {
    display: block;
    animation: fadeIn 0.4s ease;
}

.voice-card-new__readmore-btn {
    background: none;
    border: none;
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
    padding-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s;
    margin-left: auto;
    margin-right: auto;
}

.voice-card-new__readmore-btn:hover {
    opacity: 0.7;
}

.voice-card-new__readmore-btn::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    transition: transform 0.3s;
}

.voice-card-new__readmore-btn.is-open::after {
    transform: rotate(180deg);
}

@media screen and (max-width: 900px) {
    .voice-new__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .voice-new {
        padding: 60px 0;
    }

    .voice-new__catchphrase {
        font-size: 20px !important;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.5;
    }
}

/* ==========================================
   Flow Section (施術の流れ)
   ========================================== */
.flow {
    background-color: #e6ebd9;
    padding: 90px 0;
}

.flow__container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.flow__nav {
    position: sticky;
    top: 100px;
    width: 220px;
    flex-shrink: 0;
}

.flow__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.flow__nav-list::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 1px;
    background-color: #d0c8b6;
    z-index: 1;
}

.flow__nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

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

.flow__nav-item.is-active {
    opacity: 1;
}

.flow__nav-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eedecc;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-main);
    flex-shrink: 0;
}

.flow__nav-item.is-active .flow__nav-num {
    background-color: var(--primary);
    color: #fff;
}

.flow__nav-text {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.flow__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.flow__step-card {
    background: var(--bg-cream);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 30px;
}

.flow__step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px dashed #eedecc;
    padding-bottom: 15px;
}

.flow__step-num {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #a4b38d;
    font-weight: bold;
    line-height: 1;
}

.flow__step-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
}

.flow__step-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-main);
}

@media screen and (max-width: 900px) {
    .flow__container {
        flex-direction: column;
        gap: 30px;
    }

    .flow__nav {
        display: none;
    }

    .flow__step-card {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .flow {
        padding: 60px 0;
    }

    .flow__step-card {
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 25px 20px !important;
        gap: 12px !important;
    }

    .flow__step-img {
        flex: 1 1 100% !important;
        display: flex !important;
        justify-content: center !important;
        margin-top: 0 !important;
        width: 100% !important;
    }

    .flow__step-img img {
        max-width: 240px !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
}

/* ==========================================
   CTA Banner (画像デザイン風)
   ========================================== */
.cta-banner {
    background-color: transparent;
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.cta-banner__card {
    background: linear-gradient(135deg, rgba(242, 140, 40, 0.9) 0%, rgba(225, 95, 13, 0.9) 100%), url('../img/cta.png') center/cover no-repeat;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.cta-banner__card::before {
    content: '\f185';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -30px;
    left: -30px;
    font-size: 150px;
    color: rgba(0, 0, 0, 0.02);
    pointer-events: none;
    transform: rotate(30deg);
}

.cta-banner__left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px dashed var(--border-color);
    padding-right: 30px;
    position: relative;
    z-index: 2;
}

.cta-banner__tel-title {
    font-family: var(--font-heading);
    font-size: 15px;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-banner__tel-title i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.cta-banner__tel-number {
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: clamp(24px, 4vw, 36px);
    color: #fff;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 2px;
    white-space: nowrap;
}

.cta-banner__tel-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.cta-banner__right {
    flex: 1;
    display: flex;
    justify-content: center;
    padding-left: 30px;
    position: relative;
    z-index: 2;
}

.cta-banner__btn-hotpepper {
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #3a7d44, #2d6b38);
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    width: 100%;
    max-width: 380px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 10px rgba(45, 107, 56, 0.3);
}

@media screen and (max-width: 768px) {
    .faq-item__question {
        font-size: 16px;
    }
}

.cta-banner__btn-hotpepper[href]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(45, 107, 56, 0.4);
    color: #fff;
}

.is-pending-link {
    cursor: default;
}

.cta-banner__btn-hotpepper i.fa-calendar-days {
    font-size: 22px;
}

.cta-banner__btn-hotpepper i.fa-chevron-right {
    margin-left: auto;
    font-size: 14px;
}

@media screen and (max-width: 900px) {
    .cta-banner__card {
        flex-direction: column;
        padding: 30px 20px;
    }

    .cta-banner__left {
        border-right: none;
        border-bottom: 1px dashed var(--border-color);
        padding-right: 0;
        padding-bottom: 30px;
        margin-bottom: 30px;
        width: 100%;
    }

    .cta-banner__right {
        padding-left: 0;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .cta-banner {
        padding: 40px 15px;
    }

    .cta-banner__tel-number {
        font-size: 8vw;
    }

    .cta-banner__btn-hotpepper {
        font-size: 15px;
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }

    .cta-banner__btn-hotpepper i.fa-calendar-days {
        font-size: 20px;
    }

    .cta-banner__btn-hotpepper i.fa-chevron-right {
        display: none;
    }
}

/* ==========================================
   Message Section
   ========================================== */
#message {}

.message__fade-overlay {
    background: linear-gradient(to right, rgba(252, 250, 245, 0), rgba(252, 250, 245, 1)) !important;
}

@media screen and (max-width: 768px) {
    .message__fade-overlay {
        background: linear-gradient(to bottom, rgba(252, 250, 245, 0) 50%, rgba(252, 250, 245, 1) 100%) !important;
        width: 100% !important;
        height: 50% !important;
        top: auto !important;
        bottom: 0 !important;
    }

    #message h2 {
        font-size: 24px !important;
        line-height: 1.6 !important;
    }
}

/* ==========================================
   Access Section (アクセス)
   ========================================== */
.access-new {
    background-color: var(--bg-cream);
    padding: 90px 0;
    position: relative;
}

.access-new__card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 50px;
    display: flex;
    gap: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.access-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.access-table th,
.access-table td {
    padding: 15px 0;
    border-bottom: 1px dashed var(--border-color);
    font-size: 15px;
    text-align: left;
    vertical-align: top;
    color: var(--text-main);
}

.access-table th {
    width: 100px;
    font-weight: 500;
    color: var(--primary);
    font-family: var(--font-heading);
}

.access-table td a {
    color: var(--text-main);
    text-decoration: none;
    transition: opacity 0.3s;
}

.access-table td a:hover {
    opacity: 0.7;
}

.access-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.access-links a,
.access-links__item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid var(--primary);
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s;
    background: #fff;
    width: fit-content;
}

.access-links a[href]:hover {
    background: var(--primary);
    color: #fff;
}

@media screen and (max-width: 900px) {
    .access-new__card {
        flex-direction: column-reverse;
        gap: 30px;
        padding: 40px 30px;
    }
}

@media screen and (max-width: 768px) {
    .access-new {
        padding: 60px 0;
    }

    .access-new__card {
        padding: 30px 20px;
        border-radius: 12px;
    }
}

/* ==========================================
   Fixed CTA (SP)
   ========================================== */
@media screen and (max-width: 768px) {
    .fixed-cta {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100% !important;
        display: flex !important;
        z-index: 2001 !important;
        background: #fff !important;
        box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.05) !important;
        box-sizing: border-box !important;
        padding: 10px !important;
        gap: 10px !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(100%) !important;
        transition: opacity 0.4s ease, transform 0.4s ease !important;
    }

    .fixed-cta.is-active {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .fixed-cta__btn {
        font-family: var(--font-heading) !important;
        color: #fff !important;
        flex: 1 1 50% !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 46px !important;
        border-radius: 5px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
        gap: 6px !important;
    }
}

/* ==========================================
   Misc
   ========================================== */
.totop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    border-radius: 50%;
    z-index: 1800;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.totop::before {
    content: '';
    position: absolute;
    top: 55%;
    left: 50%;
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: translate(-50%, -50%) rotate(45deg);
}

.totop:hover {
    opacity: 0.8;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.totop.is-visible {
    opacity: 1;
    pointer-events: auto;
}

@media screen and (max-width: 768px) {
    .totop {
        bottom: 80px !important;
        right: 15px !important;
        width: 44px !important;
        height: 44px !important;
    }

    .totop::before {
        width: 10px !important;
        height: 10px !important;
    }
}

.footer {
    padding: 50px 0;
    background: var(--text-main);
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer {
        padding-bottom: calc(120px + env(safe-area-inset-bottom));
    }
}

.footer__copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* ==========================================
   Media Gallery Section
   ========================================== */
.media-gallery {
    background-color: #593114;
    padding: 60px 0;
}

.media-gallery__title {
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.5;
    font-family: var(--font-heading);
}

.media-gallery__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--white);
}

.media-gallery__container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.media-gallery__left {
    flex: 0 0 38%;
}

.media-gallery__right {
    flex: 0 0 62%;
    max-width: 62%;
    min-width: 0;
}

.media-gallery__title-wrapper {
    margin-bottom: 20px;
}

.media-gallery__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.15em;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.media-gallery__title {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    font-family: var(--font-heading);
}

.media-gallery__desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

/* Swiper Thumbs Layout */
.media-main-swiper {
    width: 100%;
    border-radius: var(--radius-m);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border-color);
}

.media-main-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-main-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    aspect-ratio: 16/10;
}

.media-thumbs-swiper {
    margin-top: 15px;
    box-sizing: border-box;
    padding: 2px 0;
}

.media-thumbs-swiper .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid transparent;
}

.media-thumbs-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary);
}

.media-thumbs-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/10;
}

.media-main-next,
.media-main-prev {
    color: var(--primary) !important;
    width: 40px !important;
    height: 40px !important;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.media-main-next::after,
.media-main-prev::after {
    font-size: 16px !important;
    font-weight: bold;
}

@media screen and (max-width: 900px) {
    .media-gallery__container {
        flex-direction: column;
        gap: 30px;
    }

    .media-gallery__left {
        flex: 0 0 100%;
        text-align: left;
    }

    .media-gallery__left .media-gallery__subtitle {
        justify-content: flex-start;
    }

    .media-gallery__right {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .media-gallery {
        padding: 60px 0;
    }

    .media-gallery__title {
        font-size: 20px !important;
    }

    .media-thumbs-swiper .swiper-slide {
        width: 25%;
    }
}

/* Cosmos content updates */
.media-gallery__link,
.menu-recommend__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    margin-top: 20px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 6px;
}

.menu-recommend__link {
    color: var(--primary);
    border-color: var(--primary);
    align-self: flex-start;
}

.cta-banner__right {
    flex-wrap: wrap;
    gap: 14px;
}

.cta-banner__btn-line {
    background: linear-gradient(135deg, #06c755, #04a946) !important;
}

.before-after-card {
    padding: 0;
    overflow: hidden;
}

.before-after-card .voice-card-new__attr,
.before-after-card .voice-card-new__title,
.before-after-card .before-after-card__lead,
.before-after-card .before-after-card__data,
.before-after-card .voice-card-new__text {
    padding-left: 24px;
    padding-right: 24px;
}

.before-after-card__image {
    width: 100%;
    aspect-ratio: auto;
    background: var(--bg-cream);
    overflow: hidden;
    margin-bottom: 24px;
    display: flex;
    gap: 4px;
}

.before-after-card__image img {
    width: calc(50% - 2px);
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    background-color: #fff;
}

.voice-card-new__title {
    text-align: center;
}

.voice-card-new__title span {
    display: block;
    color: var(--accent-orange);
    font-size: 1.8em;
    font-weight: 900;
    margin-top: 5px;
}

.before-after-card__lead {
    font-weight: 700;
    color: var(--primary);
    line-height: 1.6;
    margin-bottom: 16px;
    text-align: center;
}

.before-after-card__data {
    display: grid;
    gap: 8px;
    margin: 0 0 18px;
}

.before-after-card__data div {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 15px;
    padding: 10px 0;
    border-bottom: 1px dashed var(--border-color);
    align-items: center;
}

.before-after-card__data dt {
    color: var(--primary) !important;
    background-color: #ffeef3;
    border-radius: 20px;
    padding: 4px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
}

.before-after-card__data dd {
    margin: 0;
    font-weight: 500;
    font-size: 15px;
}

.before-after-card .voice-card-new__text {
    padding-bottom: 28px;
}

.faq-section {
    background-color: #e6ebd9;
    padding: 90px 0;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 18px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-m);
    padding: 26px 30px;
    cursor: pointer;
}

.faq-item__question {
    font-family: var(--font-heading);
    font-size: 16px;
    color: var(--text-main);
    line-height: 1.6;
    list-style: none;
    position: relative;
    padding-right: 30px;
}

.faq-item__question::-webkit-details-marker {
    display: none;
}

.faq-item__question::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 16px;
    transition: transform 0.3s;
}

details[open] .faq-item__question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item__question::before {
    content: "Q.";
    color: var(--primary);
    margin-right: 8px;
    font-size: 16px;
}

.faq-item__answer {
    line-height: 1.9;
    margin: 0;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
}

@media screen and (max-width: 768px) {

    .before-after-card .voice-card-new__attr,
    .before-after-card .voice-card-new__title,
    .before-after-card .before-after-card__lead,
    .before-after-card .before-after-card__data,
    .before-after-card .voice-card-new__text {
        padding-left: 18px;
        padding-right: 18px;
    }

    .before-after-card__data div {
        grid-template-columns: 1fr;
        gap: 2px;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-item {
        padding: 22px 18px;
    }

    .fixed-cta__btn {
        flex-basis: 33.333% !important;
        font-size: 12px !important;
    }
}

/* Pink, cream, and white theme updates */
:root {
    --text-main: #4a3339;
    --text-light: #7b6870;
    --white: #ffffff;
    --bg-cream: #fff7f5;
    --bg-beige: #fff1ed;
    --primary: #d7658b;
    --primary-light: #f3a6be;
    --accent-orange: #c84f7c;
    --border-color: #f4d6df;
}

body {
    background-color: var(--bg-cream);
}

.header {
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid var(--border-color);
}

.header__shop-name {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.08;
    letter-spacing: 0.04em;
}

.header__shop-kicker {
    display: block;
    font-family: var(--font-main);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.header__shop-main {
    display: block;
    font-size: clamp(20px, 2.4vw, 28px);
    letter-spacing: 0.12em;
}

.header__logo img {
    display: none !important;
}

.sp-menu {
    background: linear-gradient(135deg, #d7658b, #f0a6b8);
}

#message,
.footer {
    background-color: var(--white) !important;
}

.about-new__content,
.features-new,
.access-new {
    background-color: transparent !important;
}

.menu-section,
.faq-section {
    background: url('../img/bg.png') center/cover fixed no-repeat !important;
}

@media screen and (max-width: 768px) {

    .menu-section,
    .faq-section {
        background: url('../img/spbg.png') center/cover fixed no-repeat !important;
    }
}

.media-gallery {
    background: linear-gradient(rgb(255 154 188 / 27%), rgb(255 218 230 / 54%)), url('../img/menubg.png') center/cover no-repeat !important;
    padding: 90px 0;
}

.media-gallery__container--single {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 34px;
    max-width: 980px;
}

.media-gallery__container--single .media-gallery__left {
    flex: none;
    text-align: center;
}

.media-gallery__container--single .media-gallery__subtitle {
    color: var(--primary);
    justify-content: center;
}

.media-gallery__container--single .media-gallery__title {
    color: var(--text-main);
}

.media-gallery__container--single .media-gallery__desc {
    color: var(--text-light);
}

.media-gallery__video {
    width: 100%;
}

.media-gallery__video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: var(--radius-m);
    border: 1px solid var(--border-color);
    background: var(--white);
    box-shadow: 0 18px 38px rgba(215, 101, 139, 0.16);
}

.media-gallery__video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.media-gallery__link {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
    background: var(--white);
}

.features-new::before {
    opacity: 0.18;
}

.features-new__grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
    max-width: 1040px;
    margin: 0 auto;
}

.features-new-card {
    display: grid !important;
    grid-template-columns: minmax(260px, 42%) 1fr;
    align-items: stretch;
    background: var(--white);
    border-color: var(--border-color);
    box-shadow: 0 14px 32px rgba(215, 101, 139, 0.12);
}

.features-new-card__img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    aspect-ratio: auto;
    object-fit: cover;
}

.features-new-card__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(28px, 4vw, 46px);
}

.features-new-card__title {
    color: var(--primary) !important;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.menu-title-en i,
.cta-banner__tel-title i {
    color: var(--primary-light) !important;
}

.features-new-card__num-inline {
    flex: 0 0 auto;
    font-family: var(--font-heading);
    font-size: 0.9em;
    line-height: 1;
    color: var(--accent-orange);
    letter-spacing: 0.08em;
}

.menu-title-jp,
.about-new__label,
.access-table th,
.access-links a,
.access-links__item,
.menu-recommend__price-label,
.menu-recommend__price-num,
.before-after-card__lead,
.before-after-card__data dt,
.faq-item__question::before {
    color: var(--primary) !important;
}

.worries-card,
.features-new-card,
.menu-recommend,
.menu-item,
.voice-card-new,
.faq-item,
.access-new__card {
    border-color: var(--border-color) !important;
}

.menu-recommend,
.menu-item,
.flow__step-card {
    background: var(--white) !important;
}

.menu-recommend__badge {
    background-color: var(--primary) !important;
}

.cta-banner__card {
    background: linear-gradient(135deg, rgba(215, 101, 139, 1), rgba(243, 166, 190, 1)) !important;
    border-color: #f8dce4 !important;
    box-shadow: 0 16px 34px rgba(215, 101, 139, 0.18);
}

.cta-banner__btn-hotpepper {
    background: linear-gradient(135deg, #c84f7c, #d7658b) !important;
}

.cta-banner__btn-line {
    background: linear-gradient(135deg, #06c755, #35d879) !important;
}

.access-links a,
.access-links__item {
    border-color: var(--primary) !important;
}

.access-links a[href]:hover {
    background: var(--primary) !important;
}

.totop,
.fixed-cta__btn.btn--tel-pink {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.voice-new {
    background: linear-gradient(rgba(255, 247, 245, 0.88), rgba(255, 247, 245, 0.88)), url('../img/worrie.png') center/cover no-repeat !important;
}

@media screen and (max-width: 900px) {
    .features-new-card {
        grid-template-columns: 1fr !important;
    }

    .features-new-card__img {
        min-height: 220px;
        aspect-ratio: 16 / 9;
    }

    .media-gallery__container--single .media-gallery__left {
        text-align: left;
    }

    .media-gallery__container--single .media-gallery__subtitle {
        justify-content: flex-start;
    }
}

@media screen and (max-width: 768px) {
    .header__shop-name {
        max-width: 70vw;
    }

    .header__shop-kicker {
        font-size: 9px;
    }

    .header__shop-main {
        font-size: 20px;
    }

    .media-gallery {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .access-new__card h3 {
        font-size: 20px !important;
    }
}

/* iOS/Android Fixed Background Fix */
@media (max-width: 768px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {

    .section.worries,
    .menu-section,
    .faq-section {
        position: relative;
        background: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .section.worries::before,
    .menu-section::before,
    .faq-section::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
    }

    .section.worries>*,
    .menu-section>*,
    .faq-section>* {
        position: relative;
        z-index: 1;
    }

    .section.worries::before {
        background: url('../img/worrie.png') left center / cover no-repeat;
    }

    .menu-section::before,
    .faq-section::before {
        background: url('../img/bg.png') center/cover no-repeat;
    }
}

@media screen and (max-width: 768px) {

    .menu-section::before,
    .faq-section::before {
        background: url('../img/spbg.png') center/cover no-repeat !important;
    }
}

/* ==========================================
   Pickup Section (Pick up 商品紹介)
   ========================================== */
.product-pickup {
    background-color: var(--bg-cream);
}

.pickup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.pickup-card {
    background: transparent;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
    transition: opacity 0.3s;
}

.pickup-grid>.pickup-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.pickup-card:hover {
    opacity: 0.8;
}

.pickup-card__img {
    width: 200px;
    min-width: 120px;
    aspect-ratio: 1;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    background-color: #f9f9f9;
    flex-shrink: 0;
}

.pickup-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.pickup-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 2px;
}

.pickup-card__body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
    line-height: 1.4;
}

.pickup-card__desc {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 10px;
}

.pickup-card__spec {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 10px;
    flex-grow: 1;
}

.pickup-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: var(--primary);
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.3s;
    align-self: flex-start;
}

.pickup-card__btn:hover {
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .pickup-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .pickup-card {
        padding: 16px 0;
    }

    .pickup-grid>.pickup-card:nth-last-child(-n+2) {
        border-bottom: 1px solid var(--border-color);
    }

    .pickup-grid>.pickup-card:last-child {
        border-bottom: none;
    }

    .pickup-card__img {
        width: 140px;
        min-width: 140px;
    }
}

/* ==========================================================================
   Product Introduction LP
   ========================================================================== */
.product-page {
    --text-main: #2f3432;
    --text-light: #68706d;
    --white: #ffffff;
    --bg-cream: #ffffff;
    --bg-beige: #f9fbf8;
    --primary: #eb7f9f;
    --primary-light: #f5b7c8;
    --accent-orange: #eb7f9f;
    --accent-pink: #eb7f9f;
    --accent-pink-light: #fff0f5;
    --border-color: #f3dce3;
    --font-main: 'Zen Kaku Gothic New', sans-serif;
    --font-heading: 'Zen Old Mincho', serif;
    background:
        radial-gradient(circle at 8% 14%, rgba(235, 127, 159, 0.08), transparent 18rem),
        radial-gradient(circle at 94% 8%, rgba(235, 127, 159, 0.08), transparent 16rem),
        #ffffff;
    color: var(--text-main);
    letter-spacing: 0.03em;
}

.product-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    opacity: 0.5;
    background-image:
        linear-gradient(30deg, transparent 0 48%, rgba(235, 127, 159, 0.1) 49% 51%, transparent 52%),
        radial-gradient(circle, rgba(235, 127, 159, 0.18) 0 1px, transparent 1.5px);
    background-size: 120px 120px, 34px 34px;
    background-position: left top, right 20px top 20px;
}

.product-page .container,
.product-container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 24px;
}

.product-page .header {
    height: 74px;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(223, 233, 223, 0.85);
    box-shadow: 0 10px 34px rgba(74, 88, 82, 0.06);
}

.product-header__inner {
    max-width: 1180px;
}

.product-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.product-logo__mark {
    width: 36px;
    height: 36px;
    position: relative;
    display: inline-block;
    flex: 0 0 auto;
}

.product-logo__mark::before,
.product-logo__mark::after {
    content: '';
    position: absolute;
    inset: 7px;
    border: 2px solid var(--accent-pink);
    border-radius: 50% 50% 50% 0;
    transform: rotate(45deg);
}

.product-logo__mark::after {
    transform: rotate(135deg);
    border-color: #f2a8bc;
}

.product-page .header__shop-kicker {
    display: block;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 10px;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.product-page .header__shop-main {
    display: block;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.product-page .header__list a {
    color: #3e4642;
    font-family: var(--font-main);
    font-size: 13px;
    font-weight: 700;
    position: relative;
}

.product-page .header__list a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%);
    transition: width 0.25s ease;
}

.product-page .header__list a:hover::after,
.product-page .header__list a.is-current::after {
    width: 100%;
}

.product-page .header__cta {
    gap: 10px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 12px 24px;
    border: 1px solid var(--primary);
    border-radius: 0;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.product-btn--solid {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(235, 127, 159, 0.22);
}

.product-btn--outline {
    background: #fff;
    color: var(--primary);
}

.product-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(235, 127, 159, 0.24);
}

.product-page .sp-menu {
    background: linear-gradient(135deg, #f7a9bd, #6ba16b);
}

.product-page .header__hamburger span {
    background: var(--primary) !important;
}

.product-hero {
    min-height: 690px;
    margin-top: 74px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0 42%, rgba(255, 255, 255, 0.42) 64%, rgba(249, 251, 248, 0.12)),
        url('../img/fvbg.png') center right / cover no-repeat;
}

.product-consult::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.5;
    background-image:
        radial-gradient(circle at 14px 14px, rgba(235, 127, 159, 0.16) 0 2px, transparent 2.5px),
        linear-gradient(60deg, transparent 0 48%, rgba(235, 127, 159, 0.12) 49% 51%, transparent 52%);
    background-size: 120px 120px;
}

.product-hero::before {
    content: none;
}

.product-hero__inner {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 44%);
    align-items: center;
    gap: clamp(32px, 5vw, 80px);
    position: relative;
    z-index: 1;
}

.product-kicker {
    margin: 0 0 18px;
    color: var(--accent-pink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
}

.product-hero h1,
.product-split__body h2,
.product-title h2,
.product-consult h2 {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.55;
}

.product-hero h1 {
    font-size: clamp(34px, 4.4vw, 58px);
}

.product-hero h1 span {
    color: var(--primary);
}

.product-hero__lead,
.product-hero__text,
.product-split__body p,
.product-title p,
.product-consult p {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    line-height: 2.15;
}

.product-hero__lead {
    max-width: 560px;
    margin: 28px 0 12px;
}

.product-hero__text {
    max-width: 560px;
    margin: 0 0 34px;
}

.product-hero__recommend {
    border-top: 1px solid var(--border-color);
    padding-top: 26px;
    color: var(--accent-pink);
    font-family: var(--font-heading);
}

.product-hero__recommend span {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.product-hero__recommend strong {
    display: block;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 700;
    line-height: 1.4;
}

.product-hero__visual {
    position: relative;
    aspect-ratio: 1.15 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero__photos {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: calc(56.17% + 15px) 1fr;
    grid-template-rows: repeat(2, 1fr);
    gap: 14px;
}

.product-hero__visual img,
.product-split__image img,
.quality-card img {
    width: 100%;
    display: block;
    object-fit: cover;
    /* 背景パターンを完全に削除 */
}

.product-hero__visual img {
    height: 100%;
    min-height: 0;
    border-radius: 0;
    box-shadow: 0 24px 60px rgba(74, 88, 82, 0.14);
    background: transparent;
}

.product-hero__visual img:first-child {
    grid-row: 1 / 3;
    object-position: 55% center;
}

.product-hero__badge {
    position: absolute;
    top: 0;
    right: 0;
    width: 132px;
    height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.85);
    background: var(--accent-pink);
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.55;
    box-shadow: 0 18px 32px rgba(235, 127, 159, 0.28);
}

.product-mini-banner {
    padding: 28px 0;
    background: #fff;
}

.product-mini-banner__link {
    display: block;
    max-width: 500px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    background: #fff;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(235, 127, 159, 0.12);
    overflow: hidden;
}

.product-mini-banner__link img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

.product-inline-actions {
    margin-top: 28px;
    display: flex;
    justify-content: flex-start;
}

.product-section {
    padding: 86px 0;
    position: relative;
}

.product-anchor {
    display: block;
    height: 0;
    scroll-margin-top: 86px;
}

.product-section:nth-of-type(even) {
    background: #fbfdfb;
}

.product-about {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 247, 250, 0.62)),
        url('../img/message1.jpg') center / cover no-repeat;
}

.product-about__inner {
    max-width: 820px;
    text-align: center;
}

.product-about h2 {
    margin: 0;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.4vw, 42px);
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.product-about h2::after {
    content: '';
    display: block;
    width: 72px;
    height: 1px;
    margin: 24px auto 0;
    background: var(--border-color);
}

.product-about p:last-child {
    margin: 28px 0 0;
    color: var(--text-main);
    font-size: 16px;
    font-weight: 500;
    line-height: 2.2;
}

.product-split {
    display: grid;
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
    gap: clamp(36px, 6vw, 78px);
    align-items: center;
}

.product-split__image img {
    aspect-ratio: auto;
    max-height: 540px;
    object-fit: contain;
    border: 1px solid var(--border-color);
    background: #fff;
}

.product-split__body h2,
.product-title h2,
.product-consult h2 {
    font-size: clamp(28px, 3vw, 38px);
}

.product-split__body p {
    margin: 22px 0 0;
}

.product-spec {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border-color);
    background: #fff;
}

.product-spec div {
    min-height: 116px;
    padding: 20px 18px;
    display: grid;
    place-items: center;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.product-spec div:last-child {
    border-right: none;
}

.product-spec i {
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 8px;
}

.product-spec span {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
}

.product-spec strong {
    color: var(--text-main);
    font-size: 13px;
}

.product-title {
    margin-bottom: 42px;
    text-align: center;
}

.product-title h2 span {
    color: var(--accent-pink);
    font-size: 1.24em;
}

.product-title p {
    margin: 14px auto 0;
    max-width: 720px;
}

.reason-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid var(--border-color);
    background: #fff;
}

.reason-card {
    min-height: 208px;
    padding: 36px 42px;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 8px 26px;
    align-items: center;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reason-card:nth-child(2n) {
    border-right: none;
}

.reason-card:nth-last-child(-n + 2) {
    border-bottom: none;
}

.reason-card i,
.reason-card__icon {
    grid-row: 1 / 3;
}

.reason-card i {
    color: var(--primary-light);
    font-size: 46px;
}

.reason-card__icon {
    width: 62px;
    height: 62px;
    object-fit: contain;
    justify-self: center;
    align-self: center;
}

.reason-card h3,
.quality-card h3,
.purchase-card h3 {
    margin: 0;
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
}

.reason-card p,
.quality-card p {
    margin: 0;
    color: var(--text-main);
    font-size: 14px;
    line-height: 1.9;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    padding: 34px;
    border: 1px solid var(--border-color);
    background: #fff;
}

.quality-card span {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.quality-card img {
    aspect-ratio: 16 / 10;
    margin-bottom: 18px;
}

.quality-card h3 {
    font-size: 17px;
    margin-bottom: 12px;
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.purchase-card {
    border: 1px solid var(--border-color);
    background: #fff;
    text-align: center;
}

.purchase-card h3 {
    padding: 16px 12px;
    background: #f4f9f2;
    font-size: 18px;
}

.purchase-card--pink h3 {
    background: var(--accent-pink-light);
    color: var(--accent-pink);
}

.purchase-card>i {
    margin: 34px 0 26px;
    color: var(--primary-light);
    font-size: 64px;
}

.purchase-card--pink>i {
    color: var(--accent-pink);
}

.purchase-card dl {
    margin: 0;
    padding: 0 24px 30px;
}

.purchase-card dl div {
    display: grid;
    grid-template-columns: 86px 1fr;
    align-items: center;
    border-top: 1px solid var(--border-color);
    text-align: left;
}

.purchase-card dt {
    padding: 14px 10px;
    background: #f8faf7;
    color: var(--text-main);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
}

.purchase-card dd {
    margin: 0;
    padding: 14px 0 14px 16px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.6;
}

.purchase-link {
    margin: 34px 0 0;
    color: var(--text-main);
    font-weight: 700;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.product-link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-width: min(100%, 300px);
    min-height: 54px;
    padding: 14px 34px;
    background: var(--primary);
    color: #fff;
    border: 1px solid var(--primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(235, 127, 159, 0.2);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-link-btn--light {
    background: #fff;
    color: var(--primary);
}

.product-link-btn:hover {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(235, 127, 159, 0.26);
}

.product-consult {
    position: relative;
    overflow: hidden;
    padding: 72px 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 250, 0.88)),
        url('../img/ctabg.webp') center / cover no-repeat,
        #f8fbf8;
}

.product-consult__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-items: center;
    text-align: center;
}

.product-consult__inner>div:first-child {
    max-width: 760px;
}

.product-consult__buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.product-page .access-new {
    background: #fff;
}

.product-page .menu-title-en {
    color: var(--text-main);
}

.product-page .menu-title-en::before,
.product-page .menu-title-en::after {
    background: var(--border-color);
}

.product-page .menu-title-jp,
.product-page .access-table th,
.product-page .access-links a,
.product-page .access-links__item {
    color: var(--primary) !important;
}

.product-page .access-new__card {
    background: #fff;
    border: 1px solid var(--border-color) !important;
    box-shadow: 0 20px 46px rgba(74, 88, 82, 0.08);
}

.product-page .access-links a,
.product-page .access-links__item {
    border-color: var(--primary) !important;
}

.product-page .access-links a:hover {
    background: var(--primary) !important;
    color: #fff !important;
}

.product-page .fixed-cta {
    display: flex !important;
    grid-template-columns: 1fr 1fr;
}

.product-page .fixed-cta__btn {
    flex: 1 1 50% !important;
    border: none !important;
    border-radius: 0;
    font-weight: 700;
}

.product-page .fixed-cta__btn--line {
    background: #fff !important;
    color: var(--primary) !important;
    border-top: 1px solid var(--primary) !important;
}

.product-page .fixed-cta__btn--web,
.product-page .totop {
    background: var(--primary) !important;
    color: #fff !important;
}

.product-footer {
    padding: 46px 0 32px;
    background: #fff;
    border-top: 1px solid var(--border-color);
}

.product-footer__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-footer__logo small {
    display: block;
    color: var(--text-light);
    font-family: var(--font-main);
    font-size: 10px;
    line-height: 1.4;
}

.product-footer__nav {
    margin: 28px 0 18px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 28px;
}

.product-footer__nav a {
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.product-page .footer__copy {
    margin: 0;
    color: #a9b3ad;
    font-size: 11px;
}

@media screen and (max-width: 960px) {
    .product-page .header {
        height: 65px !important;
    }

    .product-hero {
        margin-top: 65px;
    }
}

@media screen and (max-width: 768px) {
    .product-hero {
        min-height: auto;
        padding: 64px 0 72px;
    }

    .product-hero__inner,
    .product-split,
    .product-consult__inner {
        grid-template-columns: 1fr;
    }

    .product-inline-actions {
        justify-content: center;
    }

    .product-hero__visual {
        order: -1;
    }

    .product-hero__photos {}

    .quality-grid,
    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .product-page .header__cta {
        display: none;
    }

    .product-consult__buttons {
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 768px) {

    .product-page .container,
    .product-container {
        padding: 0 20px;
    }

    .product-page .header__shop-kicker {
        font-size: 9px;
    }

    .product-page .header__shop-main {
        font-size: 19px;
    }




    .product-hero {
        padding: 42px 0 58px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.7)),
            url('../img/spfvbg.png') center top / cover no-repeat;
    }

    .product-mini-banner {
        padding: 18px 0;
    }

    .product-mini-banner__link {
        max-width: 100%;
    }

    .product-mini-banner__link img {
        height: auto;
    }

    .product-hero__inner {
        width: 100%;
        padding: 0 20px;
        gap: 30px;
    }

    .product-hero h1 {
        font-size: 31px;
    }

    .product-hero__lead,
    .product-hero__text,
    .product-split__body p,
    .product-title p,
    .product-consult p {
        font-size: 14px;
        line-height: 2;
    }

    .product-hero__visual {}

    .product-hero__photos {
        grid-template-columns: 1fr 0.78fr;
    }

    .product-hero__badge {
        width: 92px;
        height: 92px;
        right: 0;
        top: 0;
        font-size: 11px;
    }

    .product-section {
        padding: 62px 0;
    }

    .product-spec,
    .reason-grid {
        grid-template-columns: 1fr;
    }

    .product-spec div,
    .reason-card,
    .reason-card:nth-child(2n),
    .reason-card:nth-last-child(-n + 2) {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }

    .product-spec div:last-child,
    .reason-card:last-child {
        border-bottom: none;
    }

    .reason-card {
        min-height: auto;
        grid-template-columns: 52px 1fr;
        padding: 28px 22px;
        gap: 8px 18px;
    }

    .reason-card i {
        font-size: 34px;
    }

    .reason-card__icon {
        width: 46px;
        height: 46px;
    }

    .reason-card h3 {
        font-size: 18px;
    }

    .quality-grid {
        padding: 22px;
    }

    .purchase-card dl {
        padding: 0 16px 24px;
    }

    .purchase-card dl div {
        grid-template-columns: 74px 1fr;
    }

    .purchase-link .product-link-btn {
        display: inline-flex;
        width: 100%;
        margin: 0;
    }

    .product-consult {
        padding: 58px 0 76px;
    }

    .product-consult__buttons,
    .product-btn {
        width: 100%;
    }

    .product-btn {
        padding-inline: 16px;
    }

    .product-page .access-new__card h3 {
        font-size: 20px !important;
    }

    .product-page .footer {
        padding-bottom: 86px;
    }
}

/* SP Fixed CTA */
.sp-fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 2100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
    background-color: #fff;
}

.sp-fixed-cta__btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 0;
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    font-family: var(--font-heading);
    transition: opacity 0.3s;
}

.sp-fixed-cta__btn:active {
    opacity: 0.7;
}

.sp-fixed-cta__btn i {
    font-size: 22px;
    margin-bottom: 3px;
}

.sp-fixed-cta__btn--tel {
    background-color: #999;
}

.sp-fixed-cta__btn--line {
    background-color: #06C755;
}

.sp-fixed-cta__btn--web {
    background-color: #e0507a;
}

@media screen and (max-width: 768px) {
    body {
        padding-bottom: 60px;
        /* CTAの高さ分余白を追加 */
    }

    .sp-fixed-cta {
        display: flex !important;
    }
}

/* ==========================================
   SP Fixed Background (iOS/Android Safari/Chrome etc.)
   ========================================== */
@media (max-width: 767px),
(max-width: 1024px) and (hover: none) and (pointer: coarse) {

    .section.worries,
    .menu-section,
    .faq-section {
        position: relative;
        background: none !important;
        isolation: isolate;
        -webkit-clip-path: inset(0);
        clip-path: inset(0);
    }

    .section.worries>*,
    .menu-section>*,
    .faq-section>* {
        position: relative;
        z-index: 1;
    }

    .section.worries::before,
    .menu-section::before,
    .faq-section::before {
        content: '';
        position: fixed;
        inset: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        z-index: 0;
        pointer-events: none;
    }

    .section.worries::before {
        background: url('../img/worrie.png') left center / cover no-repeat;
    }

    .menu-section::before,
    .faq-section::before {
        background: url('../img/spbg.png') center/cover no-repeat !important;
    }
}