@charset "UTF-8";

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,400;500;600;700&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@300;400;500&display=swap');

/* Base Styles */
:root {
    --color-primary: #0ABAB5;
    --color-secondary: #81D8D0;
    --color-text: #1a1a1a;
    --color-gray: #f2f2f2;
    --font-sans: 'Noto Sans JP', sans-serif;
    --font-serif: 'Noto Serif JP', serif;
    --font-display: 'Bodoni Moda', serif;
    /* Eksell Display代替 */
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    line-height: 2.0;
    /* ゆとりを持たせる */
    letter-spacing: 0.08em;
    -webkit-font-smoothing: antialiased;
    background-color: #fff;
    overflow-x: hidden;
}

/* 禁止右クリック */
body.no-click {
    user-select: none;
    -webkit-user-select: none;
}

/* Typography (Becolourful Style) */
.font-display {
    font-family: var(--font-display);
}

.font-display-italic {
    font-family: var(--font-display);
    font-style: italic;
}

/* 巨大な背景文字 */
.big-typography {
    font-family: var(--font-display);
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 1;
    opacity: 0.05;
    position: absolute;
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
    font-style: italic;
    font-weight: 700;
}

/* FV Section */
.fv-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

.swiper-fv {
    width: 100%;
    height: 100%;
}

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

/* Circular Text (Becolourful Style Refined) */
.circular-text-container {
    position: absolute;
    bottom: 50px;
    right: 50px;
    /* 右下に配置 */
    width: 140px;
    height: 140px;
    z-index: 20;
    pointer-events: none;
    animation: rotateText 15s linear infinite;
    mix-blend-mode: difference;
    /* 背景となじませつつ視認性確保 */
    color: #fff;
}

@media (max-width: 768px) {
    .circular-text-container {
        width: 100px;
        height: 100px;
        bottom: 20px;
        right: 20px;
    }
}

.circular-text-container svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@keyframes rotateText {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Marquee Animation (Perenoel Online Store Style) */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
    background: transparent;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: italic;
    color: #e0e0e0;
    /* 薄いグレーで上品に */
}

@media (max-width: 768px) {
    .marquee-content {
        font-size: 2rem;
    }
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Amrta Style (Precautions List) */
.precautions-list {
    border-top: 1px solid #ccc;
}

.precautions-item {
    border-bottom: 1px solid #ccc;
    padding: 2rem 0;
    display: md:flex;
    justify-content: space-between;
    align-items: flex-start;
}

.precautions-title {
    font-family: var(--font-serif);
    font-weight: 500;
    margin-bottom: 1rem;
    min-width: 200px;
}

/* Broken Grid & Layout Utilities */
.broken-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

.broken-grid-image {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.broken-grid-image img {
    transition: transform 1s ease;
}

.broken-grid-image:hover img {
    transform: scale(1.05);
}

.broken-grid-content {
    width: 100%;
    padding: 2rem;
    background: #fff;
}

@media (min-width: 768px) {
    .broken-grid {
        /* Becolourful風の大胆なレイアウトのためグリッドを使用せずFlexとPositionで調整 */
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 8rem;
    }

    .broken-grid.reverse {
        flex-direction: row-reverse;
    }

    .broken-grid-image {
        width: 55%;
    }

    .broken-grid-content {
        width: 40%;
        padding: 0;
        background: transparent;
    }

    /* 重ね合わせなどの調整 */
    .overlap-content {
        margin-left: -10%;
        background: #fff;
        padding: 4rem;
        z-index: 10;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    }

    .reverse .overlap-content {
        margin-left: 0;
        margin-right: -10%;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content img {
    max-width: 90vw;
    max-height: 90vh;
}

/* Hamburger */
.hamburger-menu {
    position: fixed;
    inset: 0;
    background: var(--color-primary);
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.7, 0, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hamburger-menu.active {
    transform: translateY(0);
}

/* Scroll Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile CTA */
.mobile-cta {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.mobile-cta.visible {
    transform: translateY(0);
}