@charset "UTF-8";

:root {
    /* Color Palette: Hydrangea & Elegant Purple */
    --clr-base: #f9f8fa;
    /* 薄い紫がかった白（背景） */
    --clr-main: #b2a4c4;
    /* 紫陽花色（薄い紫） */
    --clr-sub: #d9d1e3;
    /* さらに薄い紫 */
    --clr-dark: #4a3e59;
    /* ダークパープルグレー（引き締め色） */
    --clr-accent: #c9b187;
    /* 落ち着いたゴールド（アクセント） */
    --clr-text: #4a4552;
    /* テキスト色 */

    /* Typography */
    --ff-jp-main: 'Zen Old Mincho', serif;
    --ff-jp-sans: 'Zen Kaku Gothic New', sans-serif;
    --ff-en-deco: 'Cormorant Garamond', serif;
    --ff-en-title: 'Italiana', serif;

    --line-height: 2.2;
    --ls: 0.08em;
    --header-height: 80px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--clr-base);
    color: var(--clr-text);
    font-family: var(--ff-jp-main);
    font-size: 16px;
    line-height: var(--line-height);
    letter-spacing: var(--ls);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
}

@media (max-width: 767px) {
    body {
        font-size: 14px;
    }
}

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

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Typography Utilities */
.deco-en {
    font-family: var(--ff-en-deco);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.title-en {
    font-family: var(--ff-en-title);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}



.section-title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title-en {
    font-family: var(--ff-en-title);
    font-size: 2.5rem;
    color: var(--clr-main);
    margin-bottom: 0.5rem;
}

.section-title-ja {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--clr-text);
    opacity: 0.7;
}

.container-custom {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

@media (max-width: 767px) {
    .container-custom {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Animations */
.js-fade {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.js-fade.is-active {
    opacity: 1;
    transform: none;
}

.js-blur-reveal {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
    transition: opacity 2s ease, filter 2s ease, transform 2s ease;
}

.js-blur-reveal.is-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: rgba(249, 248, 250, 0.9);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid rgba(178, 164, 196, 0.2);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.header.is-visible {
    transform: translateY(0);
    opacity: 1;
}

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

@media (max-width: 767px) {
    .header__container {
        padding: 0 1.5rem;
    }
}

.header__logo {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--clr-dark);
    letter-spacing: 0.1em;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header__sns {
    display: flex;
    gap: 1rem;
}

.header__sns a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--clr-main);
    color: var(--clr-main);
    font-size: 0.9rem;
}

.header__sns a:hover {
    background-color: var(--clr-main);
    color: #fff;
}

.header__reserve-btn {
    background-color: var(--clr-dark);
    color: #fff;
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 2px;
}

.header__reserve-btn:hover {
    background-color: var(--clr-main);
}

/* Hamburger Button */
.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
    z-index: 1002;
    background: transparent;
    border: none;
    outline: none;
}

.hamburger span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--clr-dark);
    left: 0;
    transition: all 0.3s ease;
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.is-open {
    opacity: 0;
    visibility: hidden;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(74, 62, 89, 0.95);
    /* var(--clr-dark) with opacity */
    backdrop-filter: blur(10px);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 1003;
    opacity: 0;
    transform: rotate(-90deg);
    transition: all 0.4s ease 0.2s;
}

.mobile-menu.is-open .mobile-menu__close {
    opacity: 1;
    transform: rotate(0);
}

.mobile-menu__nav {
    text-align: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.mobile-menu.is-open .mobile-menu__nav {
    transform: translateY(0);
    opacity: 1;
}

.fv {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background-color: var(--clr-dark);
}

.fv__text-area {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px 20px;
    text-align: center;
    position: relative;
    background:
        radial-gradient(circle at top left, #3b48a7 0%, transparent 60%),
        radial-gradient(circle at top right, #bc96a6 0%, transparent 60%),
        linear-gradient(to bottom, #837cb0 0%, #ebe9f2 100%);
}

@media (max-width: 767px) {
    .fv__text-area {
        padding: 50px 20px 40px;
    }
    .fv__catch, .fv__sub {
        text-align: center;
    }
}

.fv__text-area::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../img/star.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.45;
    mix-blend-mode: screen;
    pointer-events: none;
}

.fv__catch {
    position: relative;
    z-index: 1;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.15em;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.fv__sub {
    position: relative;
    z-index: 1;
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    line-height: 2;
}

.fv__img-area {
    flex: 5;
    position: relative;
    overflow: hidden;
}

.fv__img-area::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #ebe9f2 0%, transparent 30%);
}

.fv__slideshow {
    width: 100%;
    height: 100%;
    position: relative;
}

.fv__slideshow img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.fv__slideshow img.is-active {
    opacity: 1;
}

.fv__scroll {
    position: absolute;
    bottom: 40px;
    right: 3vw;
    /* 右側配置 */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.fv__scroll-text {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: #fff;
    writing-mode: vertical-rl;
    font-family: var(--ff-en-deco);
}

.fv__scroll::after {
    content: '';
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.5);
}

.section-padding {
    padding: 120px 0;
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* 共通ボタン */
.btn-elegant {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 3rem;
    background-color: transparent;
    color: var(--clr-dark);
    border: 1px solid var(--clr-dark);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
}

.btn-elegant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-dark);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-elegant:hover {
    color: #fff;
}

.btn-elegant:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}



.about-wrap {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media(min-width: 768px) {
    .about-wrap {
        flex-direction: row;
        align-items: center;
    }
}

.about-content {
    flex: 1;
}

.about-img {
    flex: 1;
    position: relative;
}

.about-img img {
    box-shadow: 20px 20px 0 var(--clr-sub);
}

.lead-text {
    font-size: 1.5rem;
    color: var(--clr-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.horoscope-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media(min-width: 768px) {
    .horoscope-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

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

.h-card__img {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--clr-sub);
    box-shadow: 0 10px 20px rgba(178, 164, 196, 0.2);
}

.h-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.h-card:hover .h-card__img img {
    transform: scale(1.05);
}

.h-card p {
    text-align: left;
}

@media (max-width: 767px) {
    #horoscope p {
        text-align: left !important;
    }
}

.h-card__title {
    font-size: 1.2rem;
    color: var(--clr-dark);
    margin-bottom: 1rem;
    font-weight: 500;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media(min-width: 768px) {
    .feature-item {
        flex-direction: row;
        gap: 3rem;
    }

    .feature-item:nth-child(even) {
        flex-direction: row-reverse;
    }
}

.feature-item__img {
    flex: 1;
    width: 100%;
    aspect-ratio: 4/3;
    position: relative;
}

.feature-item__img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--clr-accent);
    /* Elegant gold border */
    opacity: 0.7;
    z-index: 0;
    border-radius: 8px;
}

@media(min-width: 768px) {
    .feature-item:nth-child(even) .feature-item__img::before {
        top: 15px;
        left: 15px;
    }
}

@media(max-width: 767px) {
    .feature-item__img {
        height: 220px;
    }

    .feature-item__img::before {
        top: -10px;
        left: -10px;
    }
}

.feature-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-item__content {
    flex: 1;
    padding: 0 5%;
}

.feature-num {
    font-family: var(--ff-en-title);
    font-size: 3rem;
    color: var(--clr-accent);
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.6;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--clr-dark);
}

.menu-bg {
    background: linear-gradient(135deg, var(--clr-base) 0%, var(--clr-sub) 100%);
    color: var(--clr-text);
}

.menu-bg .section-title-en {
    color: var(--clr-main);
}

.menu-bg .section-title-ja {
    color: var(--clr-text);
    opacity: 0.7;
}





.cta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.cta-card {
    background: #fff;
    border: 1px solid var(--clr-sub);
    padding: 3rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.cta-icon {
    font-size: 2rem;
    color: var(--clr-main);
    margin-bottom: 1rem;
}

.btn-line {
    background-color: #06C755;
    color: #fff;
    border: none;
}

.btn-line::before {
    display: none;
}

.btn-line:hover {
    opacity: 0.8;
    color: #fff;
}

.shop-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 3rem;
}

@media(min-width: 768px) {
    .shop-info {
        flex-direction: row;
    }
}

.shop-detail {
    flex: 1;
}

.shop-detail dl {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem 0;
    border-top: 1px solid var(--clr-sub);
    padding-top: 2rem;
}

.shop-detail dt {
    color: var(--clr-main);
    font-weight: 500;
}

.shop-map {
    flex: 1;
    aspect-ratio: 4/3;
}

@media(min-width: 768px) {
    .shop-map {
        aspect-ratio: auto;
    }
}

.shop-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer {
    background-color: var(--clr-base);
    border-top: 1px solid var(--clr-sub);
    padding: 4rem 0 2rem;
    text-align: center;
}

.footer__sns {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer__sns a {
    font-size: 1.2rem;
    color: var(--clr-main);
    transition: 0.3s;
}

.footer__sns a:hover {
    color: var(--clr-dark);
    transform: translateY(-3px);
}

.footer__copy {
    font-family: var(--ff-en-deco);
    font-size: 0.8rem;
    color: var(--clr-text);
    opacity: 0.6;
}

/* Helper Classes */
.text-main {
    color: var(--clr-main);
}

.hidden {
    display: none;
}

/* Hide scrollbar for slider */
.hide-scrollbar {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

@media(max-width: 767px) {
    .loop-slider {
        display: flex;
        width: max-content;
        gap: 0.5rem;
        /* Matches gap-2 */
    }

    .loop-slider__track {
        display: flex;
        gap: 0.5rem;
        animation: loop-marquee 15s linear infinite;
    }

    @keyframes loop-marquee {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-100% - 0.5rem));
        }
    }

    .pc-only {
        display: none;
    }
}

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

/* Struggle Section (Elegant Reference Design) */
.struggle {
    background-color: #f0ebf4;
    /* Soft lilac to differentiate from ABOUT section */
    position: relative;
    overflow: hidden;
}

.struggle__bg-img {
    position: absolute;
    bottom: -40px;
    right: 15px;
    height: 60%;
    max-height: 650px;
    width: auto;
    object-fit: contain;
    z-index: 0;
    opacity: 0.3;
    /* 30% opacity */
    mix-blend-mode: multiply;
    /* Blends nicely with the lilac background */
    pointer-events: none;
}

@media (max-width: 767px) {
    .struggle__bg-img {
        height: 30%;
        bottom: auto;
        /* override default bottom: 0 */
        top: 40px;
        /* Position slightly below the section top */
        right: -10%;
        opacity: 0.3;
        /* 30% opacity */
    }
}

.struggle-box {
    max-width: 960px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

@media(min-width: 768px) {
    .struggle-box {
        padding: 4rem 4rem;
    }
}

.struggle-box__title {
    text-align: center;
    color: var(--clr-dark);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    position: relative;
}

@media(min-width: 768px) {
    .struggle-box__title {
        font-size: 1.4rem;
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
}

.struggle-box__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 500px;
    height: 1px;
    background-color: var(--clr-sub);
}

.struggle-list {
    display: flex;
    flex-direction: column;
}

@media(min-width: 768px) {
    .struggle-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        column-gap: 4rem;
    }
}

.struggle-list li {
    position: relative;
    padding: 1.2rem 0 1.2rem 2.5rem;
    color: #444;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.05em;
    border-bottom: 1px dotted #ccc;
}

@media(min-width: 768px) {
    .struggle-list li {
        font-size: 16px;
    }
}

.struggle-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    /* Solid checkmark */
    position: absolute;
    left: 0.2rem;
    top: 1.3rem;
    color: var(--clr-accent);
    font-size: 1rem;
    opacity: 0.8;
}

/* Page Top Button */
.page-top-btn {
    position: fixed;
    right: 20px;
    bottom: -80px;
    width: 50px;
    height: 50px;
    background-color: var(--clr-accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
}

.page-top-btn.is-active {
    bottom: 30px;
    opacity: 0.9;
    visibility: visible;
}

.page-top-btn:hover {
    background-color: var(--clr-dark);
    transform: translateY(-5px);
    opacity: 1;
}

/* Adjustments for SP when Fixed CTA is active */
@media(max-width: 767px) {
    .page-top-btn.is-active {
        bottom: 80px;
        /* Above the fixed CTA */
    }

    .footer {
        padding-bottom: 5rem;
    }
}

/* Fixed CTA for SP */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 990;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
}

.fixed-cta.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.fixed-cta__btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    color: #fff;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.1);
}

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

.fixed-cta__btn--tel {
    background-color: var(--clr-dark);
}