/* =========================================================
   FAQ PAGE
   Leonardo
   ========================================================= */


/* =========================================================
   BASE
========================================================= */

.faq {
    width: 100%;
    background: #fff;
    color: #222;
}

.faq__inner {
    width: min(1160px, calc(100% - 80px));
    margin: 0 auto;
    padding: 0 0 120px;
}


/* =========================================================
   FAQ HERO
========================================================= */

.faq__heading {
    position: relative;

    width: 100vw;
    margin-left: calc(50% - 50vw);

    padding: 85px 20px 72px;

    text-align: center;

    background:
        linear-gradient(
            rgba(250, 249, 246, 0.94),
            rgba(250, 249, 246, 0.94)
        );

    overflow: hidden;
}


/* 薄い背景装飾 */

.faq__heading::after {
    content: "L";

    position: absolute;
    right: 7%;
    bottom: -55px;

    font-family: serif;
    font-size: 270px;
    font-weight: 400;
    line-height: 1;

    color: rgba(190, 183, 168, 0.10);

    pointer-events: none;
}


.faq__label {
    position: relative;
    z-index: 1;

    display: block;

    margin-bottom: 22px;

    font-family: serif;
    font-size: 17px;
    font-weight: 400;

    letter-spacing: 0.16em;

    color: #b09255;
}


.faq__title {
    position: relative;
    z-index: 1;

    margin: 0;

    font-family: serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 400;

    line-height: 1.35;
    letter-spacing: 0.12em;

    color: #171717;
}


.faq__heading::before {
    content: "";

    position: absolute;
    z-index: 1;

    left: 50%;
    bottom: 45px;

    width: 62px;
    height: 1px;

    background: #b09255;

    transform: translateX(-50%);
}


.faq__subtitle {
    position: relative;
    z-index: 1;

    margin: 38px 0 0;

    font-family: serif;
    font-size: 15px;
    font-weight: 400;

    line-height: 2.1;
    letter-spacing: 0.08em;

    color: #555;
}


.faq__intro {
    position: relative;
    z-index: 1;

    margin: 28px 0 0;

    font-family: serif;
    font-size: 14px;

    line-height: 2;
    letter-spacing: 0.06em;

    color: #666;
}


/* =========================================================
   CATEGORY
========================================================= */

.faq__category {
    margin-top: 72px;
}


.faq__category:first-of-type {
    margin-top: 58px;
}


.faq__category-heading {
    display: flex;
    align-items: center;

    gap: 18px;

    margin-bottom: 22px;
}


.faq__category-number {
    display: none;
}


.faq__category-heading::before {
    content: "";

    display: block;

    width: 3px;
    height: 30px;

    background: #b09255;

    flex-shrink: 0;
}


.faq__category-en {
    display: none;
}


.faq__category-title {
    margin: 0;

    font-family: serif;
    font-size: 25px;
    font-weight: 400;

    line-height: 1.5;
    letter-spacing: 0.08em;

    color: #222;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq__list {
    width: 100%;

    border-top: 1px solid #d7d7d7;
}


.faq__item {
    width: 100%;

    border-bottom: 1px solid #d7d7d7;

    background: #fff;
}


/* =========================================================
   QUESTION
========================================================= */

.faq__question {
    position: relative;

    display: grid;
    grid-template-columns: 70px 1fr 35px;

    align-items: center;

    width: 100%;
    min-height: 70px;

    padding: 18px 20px;

    border: 0;

    background: #fff;

    font-family: serif;

    text-align: left;

    cursor: pointer;

    appearance: none;

    transition:
        background-color 0.25s ease,
        color 0.25s ease;
}


.faq__question:hover {
    background: #faf9f6;
}


.faq__q-number {
    font-family: Georgia, serif;

    font-size: 17px;
    font-weight: 400;

    letter-spacing: 0.02em;

    color: #b09255;
}


.faq__q-text {
    padding-right: 20px;

    font-family: serif;

    font-size: 16px;
    font-weight: 400;

    line-height: 1.7;
    letter-spacing: 0.04em;

    color: #222;
}


.faq__icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 25px;
    height: 25px;

    font-family: Arial, sans-serif;

    font-size: 22px;
    font-weight: 300;

    line-height: 1;

    color: #222;

    transition:
        transform 0.3s ease,
        color 0.3s ease;
}


/* =========================================================
   ANSWER
   ※ JS実装前は閉じた状態
========================================================= */

.faq__answer {
    display: grid;

    grid-template-rows: 0fr;

    opacity: 0;

    overflow: hidden;

    transition:
        grid-template-rows 0.35s ease,
        opacity 0.3s ease;
}


.faq__answer-inner {
    min-height: 0;

    overflow: hidden;

    padding: 0 105px;

    font-family: serif;

    font-size: 14px;
    font-weight: 400;

    line-height: 2.1;
    letter-spacing: 0.04em;

    color: #555;

    transition:
        padding 0.35s ease;
}


.faq__answer-inner p {
    margin: 0 0 18px;
}


.faq__answer-inner p:last-child {
    margin-bottom: 0;
}


.faq__answer-inner h3 {
    margin: 28px 0 10px;

    font-family: serif;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.6;

    color: #8f753d;
}


.faq__note {
    font-size: 12px;

    color: #888;
}


/* =========================================================
   ACTIVE
   JSで .is-open を付ける
========================================================= */

.faq__item.is-open .faq__answer {
    grid-template-rows: 1fr;

    opacity: 1;
}


.faq__item.is-open .faq__answer-inner {
    padding-top: 25px;
    padding-bottom: 30px;
}


.faq__item.is-open .faq__icon {
    transform: rotate(45deg);

    color: #b09255;
}


/* =========================================================
   CTA
========================================================= */

.faq__cta {
    position: relative;

    width: 100vw;

    margin-top: 95px;
    margin-left: calc(50% - 50vw);

    padding: 72px 30px 75px;

    text-align: center;

    background:
        linear-gradient(
            rgba(10, 10, 10, 0.70),
            rgba(10, 10, 10, 0.70)
        ),
        url("../new-img/shop/shop.jpg")
        center / cover no-repeat;

    color: #fff;

    overflow: hidden;
}


/*
   shop.jpg が存在しない場合でも
   黒背景で崩れないようにする
*/

.faq__cta-label {
    position: relative;
    z-index: 1;

    margin: 0 0 20px;

    font-family: serif;

    font-size: 12px;

    letter-spacing: 0.2em;

    color: #d0b16a;
}


.faq__cta-title {
    position: relative;
    z-index: 1;

    margin: 0;

    font-family: serif;

    font-size: 31px;
    font-weight: 400;

    line-height: 1.7;
    letter-spacing: 0.08em;

    color: #fff;
}


.faq__cta-text {
    position: relative;
    z-index: 1;

    margin: 18px 0 0;

    font-family: serif;

    font-size: 14px;

    line-height: 2;

    letter-spacing: 0.05em;

    color: rgba(255, 255, 255, 0.85);
}


/* =========================================================
   CTA BUTTONS
========================================================= */

.faq__cta-buttons {
    position: relative;
    z-index: 1;

    display: flex;

    justify-content: center;

    gap: 24px;

    margin-top: 40px;
}


.faq__cta-button {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    width: 315px;
    min-height: 82px;

    border: 1px solid rgba(255, 255, 255, 0.7);

    text-decoration: none;

    background: rgba(0, 0, 0, 0.25);

    transition:
        background-color 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


.faq__cta-button--reserve {
    background: #b09255;

    border-color: #b09255;
}


.faq__cta-button:hover {
    transform: translateY(-2px);
}


.faq__cta-button--reserve:hover {
    background: #c2a76d;
}


.faq__cta-button--contact:hover {
    background: rgba(255, 255, 255, 0.08);
}


.faq__cta-button-en {
    font-family: Georgia, serif;

    font-size: 16px;

    letter-spacing: 0.14em;

    color: #fff;
}


.faq__cta-button-ja {
    margin-top: 5px;

    font-family: serif;

    font-size: 11px;

    letter-spacing: 0.08em;

    color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    width: 100%;

    background: #fff;

    color: #222;

    border-top: 1px solid #e3e3e3;
}


.footer__inner {
    width: min(1160px, calc(100% - 80px));

    margin: 0 auto;

    padding: 60px 0 35px;
}


.footer__logo img {
    display: block;

    width: 190px;
    height: auto;
}


.footer__nav {
    display: flex;

    flex-wrap: wrap;

    gap: 28px;

    margin-top: 40px;
}


.footer__nav a,
.footer__contact a {
    font-family: Georgia, serif;

    font-size: 11px;

    letter-spacing: 0.12em;

    text-decoration: none;

    color: #555;

    transition: color 0.25s ease;
}


.footer__nav a:hover,
.footer__contact a:hover {
    color: #b09255;
}


.footer__contact {
    display: flex;

    gap: 25px;

    margin-top: 25px;
}


.footer__copyright {
    margin: 55px 0 0;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 0.08em;

    color: #999;
}


/* =========================================================
   REVEAL
========================================================= */

.faq .reveal {
    opacity: 0;

    transform: translateY(20px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.faq .reveal.is-visible {
    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   SP
   今回は最低限だけ
========================================================= */

.sp-only {
    display: none;
}