@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 Kaku Gothic New', sans-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 */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

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;
    width: 100%;
    margin: 0;
    -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: 1100px) {
    .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 {
        margin-top: 65px !important;
    }
}

/* ==========================================
   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-color: var(--white);
    padding: 0;
}

.about-new__wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    background-color: var(--white);
}

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

.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: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), 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__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;
    }
}

/* ==========================================
   Menu Section (コースメニュー)
   ========================================== */
.menu-section {
    background: url('../img/menubg.png') center/cover no-repeat;
    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);
}

.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-thumbs-swiper .swiper-slide {
        width: 25%;
    }
}
