@charset "UTF-8";
/*
Theme Name: No Swit! Theme
Author: HOUSE EN
Version: 1.0.0
*/

/* ==========================================================================
   Variables & Reset
   ========================================================================== */
:root {
    --c-main: #0E5236;
    /* No Swit! Green */
    --c-accent: #E5E0D6;
    /* Beige */
    --c-text: #333333;
    --c-white: #ffffff;
    --c-gray: #f5f5f5;
    --c-black: #111111;

    --f-main: 'Inter', 'Noto Sans JP', sans-serif;

    --easing: cubic-bezier(0.250, 0.460, 0.450, 0.940);
}

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

html {
    font-size: 62.5%;
    /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: var(--f-main);
    color: var(--c-text);
    font-size: 1.6rem;
    line-height: 1.8;
    background-color: var(--c-white);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a:hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

li {
    list-style: none;
}

/* ==========================================================================
   Utilities / Components
   ========================================================================== */
.l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.l-section {
    padding: 100px 0;
}

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

.c-heading-section {
    font-size: 7rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 60px;
    text-align: center;
    color: var(--c-main);
    letter-spacing: -0.02em;
}

.c-heading-section--white {
    color: var(--c-white);
}

.u-d-block {
    display: block;
}

.u-fz-s {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-top: 20px;
    color: var(--c-text);
}

.u-icon-calendar {
    display: inline-block;
    width: 1em;
    height: 1em;
    background: currentColor;
    mask: url('data:image/svg+xml;utf8,<svg ...></svg>') no-repeat center / contain;
    margin-right: 5px;
}

/* Simplification */

.c-btn {
    display: inline-block;
    background: var(--c-main);
    color: var(--c-white);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    transition: transform 0.3s var(--easing), box-shadow 0.3s var(--easing);
}

.c-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 82, 54, 0.3);
    opacity: 1;
}

.c-btn--white {
    background: var(--c-white);
    color: var(--c-main);
}

.c-btn--line {
    background: #06C755;
    /* LINE Green */
    color: #fff;
}

/* ==========================================================================
   Header / Footer
   ========================================================================== */
.l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 15px 0;
}

.l-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.l-header__logo img {
    height: 40px;
    width: auto;
}

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

.l-header__item {
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.l-header__toggle {
    display: none;
}

@media (max-width: 768px) {
    .l-header__inner {
        padding: 0 20px;
    }

    .l-header__nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--c-white);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.4s var(--easing);
    }

    .l-header__nav.is-open {
        right: 0;
    }

    .l-header__list {
        flex-direction: column;
    }

    .l-header__toggle {
        display: block;
        /* Hamburger styling omitted for brevity but standard */
        width: 30px;
        height: 20px;
        position: relative;
        z-index: 1001;
        background: none;
        border: none;
        cursor: pointer;
    }

    .l-header__toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--c-black);
        position: absolute;
        transition: .3s;
    }

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

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

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

.l-footer {
    background: var(--c-black);
    color: var(--c-white);
    padding: 60px 0 20px;
    text-align: center;
}

.l-footer__logo img {
    max-width: 150px;
    margin-bottom: 30px;
    filter: invert(1);
    /* Ensure white logo if image is black */
}

.l-footer__list {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 1.2rem;
}

.l-footer__copyright {
    font-size: 1rem;
    color: #888;
}

/* ==========================================================================
   Sections
   ========================================================================== */

/* FV */
.p-fv {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.p-fv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.p-fv__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-fv__content {
    text-align: center;
    color: var(--c-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.p-fv__logo-mark img {
    max-width: 200px;
    margin-bottom: 20px;
}

.p-fv__copy-main {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
}

.p-fv__copy-sub {
    display: inline-block;
    padding: 5px 20px;
    background: var(--c-main);
    color: var(--c-white);
    font-weight: 700;
    font-size: 1.6rem;
    border-radius: 2px;
    transform: rotate(-3deg);
}

.p-fv__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--c-white);
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
}

.p-fv__scroll-arrow {
    width: 1px;
    height: 60px;
    background: var(--c-white);
    margin: 10px auto 0;
    animation: scrollDown 1.5s infinite;
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    51% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

@media (max-width: 768px) {
    .p-fv__copy-main {
        font-size: 3.2rem;
    }
}

/* CONCEPT */
.p-concept__layout {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.p-concept__item {
    display: flex;
    align-items: center;
    gap: 60px;
}

.p-concept__item--reverse {
    flex-direction: row-reverse;
}

.p-concept__img {
    flex: 1;
    position: relative;
    z-index: 1;
}

.p-concept__img::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--c-accent);
    z-index: -1;
}

.p-concept__item--reverse .p-concept__img::after {
    left: -20px;
}

.p-concept__text {
    flex: 1;
}

.p-concept__title {
    font-size: 3.6rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.4;
    color: var(--c-main);
}

@media (max-width: 768px) {
    .p-concept__layout {
        gap: 60px;
    }

    .p-concept__item {
        flex-direction: column;
        gap: 30px;
    }

    .p-concept__item--reverse {
        flex-direction: column;
    }

    .p-concept__title {
        font-size: 2.8rem;
    }
}

/* LINEUP */
.p-lineup__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.p-lineup__thumb {
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s;
}

.p-lineup__thumb:hover {
    transform: scale(1.02);
}

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

.p-lineup__name {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.p-lineup__price {
    display: inline-block;
    border-bottom: 1px solid var(--c-main);
    cursor: pointer;
    font-size: 1.4rem;
}

/* Modal */
.c-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.c-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.c-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
}

.c-modal__content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    height: 90vh;
    position: relative;
    z-index: 10;
    overflow-y: auto;
    padding: 40px;
}

.c-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 3rem;
    cursor: pointer;
}

/* Modal Grid Layout */
.c-modal__body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
        "title title"
        "main spec"
        "main desc"
        "gallery plan"
        "cta cta";
    gap: 30px;
}

.c-modal__title {
    grid-area: title;
    font-size: 3rem;
    font-weight: 900;
    border-bottom: 2px solid var(--c-main);
    padding-bottom: 15px;
}

.c-modal__main-img {
    grid-area: main;
}

.c-modal__spec {
    grid-area: spec;
    width: 100%;
    border-collapse: collapse;
}

.c-modal__spec th,
.c-modal__spec td {
    border-bottom: 1px solid #ddd;
    padding: 15px;
    text-align: left;
}

.c-modal__spec th {
    width: 30%;
    background: #f9f9f9;
    font-weight: 700;
}

.c-modal__gallery {
    grid-area: gallery;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.c-modal__plan-img {
    grid-area: plan;
    text-align: center;
}

.c-modal__cta {
    grid-area: cta;
    text-align: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .p-lineup__list {
        grid-template-columns: 1fr;
    }

    .c-modal__body {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .c-modal__content {
        padding: 20px;
        height: 95vh;
    }
}

/* STANDARD */
.p-standard {
    background: var(--c-gray);
}

.p-standard__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.p-standard__item {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.p-standard__item:hover {
    transform: translateY(-5px);
}

.p-standard__icon {
    width: 50px;
    height: 50px;
    background: var(--c-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--c-main);
    font-size: 1.8rem;
}

.p-standard__text {
    font-size: 1.3rem;
    font-weight: 700;
}

@media (max-width: 768px) {
    .p-standard__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* EVENT */
.p-event {
    background: var(--c-main);
    /* Fallback */
}

/* Actually design requested clean white base roughly but event "flyer" feeling */
.p-event__card {
    background: #fff;
    padding: 60px;
    border: 5px solid var(--c-accent);
    text-align: center;
}

.p-event__title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--c-main);
}

.p-event__date {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.p-event__img {
    max-width: 600px;
    margin: 30px auto;
}

@media (max-width: 768px) {
    .p-event__card {
        padding: 30px 15px;
    }

    .p-event__title {
        font-size: 2.2rem;
    }
}

/* FAQ */
.p-faq__list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid #ddd;
}

.p-faq__item {
    border-bottom: 1px solid #ddd;
}

.p-faq__q {
    padding: 20px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    list-style: none;
    /* Hide default triangle */
}

.p-faq__q::-webkit-details-marker {
    display: none;
}

.p-faq__icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.p-faq__icon::before,
.p-faq__icon::after {
    content: '';
    position: absolute;
    background: var(--c-main);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.p-faq__icon::before {
    width: 100%;
    height: 2px;
}

.p-faq__icon::after {
    width: 2px;
    height: 100%;
    transition: transform 0.3s;
}

.p-faq__item[open] .p-faq__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.p-faq__a {
    padding: 0 20px 20px;
    color: #666;
    font-size: 1.5rem;
}

/* ANIMATION UTILS */
.fade-up-trigger,
.scale-trigger,
.pop-trigger {
    opacity: 0;
    transition: all 1s var(--easing);
}

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

.fade-up-trigger {
    transform: translateY(30px);
}

.scale-trigger.is-visible {
    opacity: 1;
    transform: scale(1);
}

.scale-trigger {
    transform: scale(0.95);
}

.pop-trigger.is-visible {
    opacity: 1;
    animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Contact Calendar specific tweaks */
.p-contact__calendar-area {
    text-align: center;
    margin-bottom: 40px;
}