@charset "utf-8";

/* ================ 
common
================= */

:root {
    --primary-white: #fafafa;
    --primary-palePink: #f8dee6;
    --primary-dustyPink: #c08996;
    --primary-pink: #ebb4d0;
    --primary-darkGreen: #3c4e46;
    --contentWidth: 91.4%;
    --contentPadding: 4.2%;
    --fz-16: clamp(12px, calc(16 / 1440 * 100vw), 20px);
    --fz-24: clamp(16px, calc(24 / 1440 * 100vw), 32px);
    --fz-lead: clamp(24px, 3.005vw + 12.73px, 80px);
    --fz-about-name: clamp(32px, 1.502vw + 26.37px, 48px);
    --fz-32: clamp(24px, calc(32 / 1440 * 100vw), 48px);
    --fz-12sp: clamp(12px, calc(12 / 375 * 100vw), 16px);
    --fz-13sp: clamp(13px, calc(13 / 375 * 100vw), 16px);
    --fz-14sp: clamp(12px, calc(14 / 375 * 100vw), 14px);
    --fz-16sp: clamp(18px, calc(1.6vw + 12px), 24px);
    --fz-20sp: clamp(20px, calc(20 / 375 * 100vw), 28px);
    --fz-24sp: clamp(24px, calc(24 / 375 * 100vw), 32px);
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

@supports not (scrollbar-gutter: stable) {
    html {
        overflow-y: scroll;
    }
}

body {
    font-family: "Zen Kaku Gothic New", "Arial", "sans-serif";
    font-style: normal;
    color: var(--primary-darkGreen, #3c4e46);
    background-color: var(--primary-palePink, #f8dee6);
    line-height: 2;
    overflow-x: hidden;
}

.pc-only {
    @media screen and (max-width: 768px) {
        display: none;
    }
}

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

#top {
    position: absolute;
    top: 0;
}

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

.p {
    font-feature-settings: "palt";
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: calc(128 / 1440 * 100vw);
    height: calc(128 / 1440 * 100vw);
    border-radius: 50%;
    border: 1px solid var(--primary-darkGreen);
    background: rgba(250, 250, 250, 0.4);
    transition: 0.3s;
}

.btn img {
    width: calc(32 / 1440 * 100vw);
    height: auto;
    transition: transform 0.3s ease;
}

.btn:hover {
    transform: scale(1.05);
    background: rgba(250, 250, 250, 0.4);
}

.btn:hover img {
    transform: translateX(20%);
}


/* fadein */

.js-fade {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(.25, .1, .25, 1), transform 1.2s cubic-bezier(.25, .1, .25, 1);
}

.js-fade.is-active {
    opacity: 1;
    transform: translateY(0);
}

.keep-opacity.is-active {
    opacity: 0.64;
}

@media screen and (max-width: 768px) {
    .btn {
        width: calc(64 / 375 * 100vw);
        height: calc(64 /375 * 100vw);
    }
    .btn img {
        width: calc(16 / 375 * 100vw);
        height: auto;
    }
}


/* =========================
header
========================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 3%;
    margin-right: 80px;
    z-index: 1000;
}

.header__btn {
    position: fixed;
    top: clamp(24px, 6vw, 64px);
    right: clamp(24px, 8vw, 86px);
    z-index: 2000;
}

.menu-trigger {
    display: grid;
    place-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--primary-dustyPink, #c08996);
}

.menu-trigger__icon {
    position: relative;
    width: clamp(40px, 5vw, 66px);
    height: clamp(40px, 3vw, 24px);
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
}

.menu-trigger__icon::before,
.menu-trigger__icon::after {
    content: '';
    top: 50%;
    width: 100%;
    height: 3px;
    display: inline-block;
    background: currentColor;
    background-color: var(--primary-dustyPink);
    border-radius: 500px;
    transition: all .4s ease;
    box-sizing: border-box;
}

.menu-trigger__icon::before {
    top: 0;
}

.menu-trigger__icon::after {
    bottom: 0;
}

.main {
    padding-top: 64px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}


/* nav */

.nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 1000;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    width: 44vw;
    background: var(--primary-palePink, #f8dee6);
    border-left: 0.8px solid #c08996;
    z-index: 1000;
    padding: 42px 6.4% 42px;
    background-repeat: no-repeat;
    background-position: right calc(-0.202 * 44vw) bottom 188px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}


/* スクロール非表示 */

.nav::-webkit-scrollbar {
    display: none;
}

body.is-nav-open .nav {
    transform: translateX(0);
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(159, 128, 135, 0.48);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.64s ease;
    z-index: 900;
}

body.is-nav-open .overlay {
    opacity: 1;
    pointer-events: auto;
}

body.is-nav-open {
    overflow: hidden;
}

body.is-nav-open .menu-trigger__icon {
    gap: 0;
}

body.is-nav-open .menu-trigger__icon::before {
    transform: rotate(45deg);
    transform-origin: bottom;
}

body.is-nav-open .menu-trigger__icon::after {
    transform: rotate(-45deg);
    transform-origin: top;
}

.nav__header {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav__logo img {
    width: calc(100vw * 148 /1440);
    height: auto;
    display: block;
}

.nav__body {
    margin: 0 auto;
    position: relative;
}


/* TO/FROM */

.nav__tofrom {
    display: flex;
    justify-content: space-around;
    margin-top: 48px;
    padding-top: 8px;
    border-top: 1px solid var(--primary-dustyPink, #C08996);
    border-bottom: 1px solid var(--primary-dustyPink, #C08996);
}

.nav__label {
    color: rgba(60, 78, 70, 0.64);
    text-align: center;
    font-family: "Bodoni Moda SC";
    font-size: clamp(11px, 1vw + 2px, 13px);
    line-height: 1.2;
    letter-spacing: 0.08em;
}

.nav__value {
    color: rgba(60, 78, 70, 0.64);
    text-align: center;
    font-family: Ballet;
    font-size: clamp(24px, 1.1vw + 10px, 40px);
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.nav__list-wrapper {
    display: grid;
    grid-template-columns: max-content 1fr;
}


/* WHERE TO GO */

.nav__headline {
    color: var(--primary-darkGreen, #3C4E46);
    font-family: "Bodoni Moda SC";
    font-size: clamp(13px, 0.95vw, 15px);
    line-height: 1.5;
    letter-spacing: 0.08em;
    margin: 24px 0 0 32px;
}


/* menu */

.nav__list {
    margin: 32px 0 24px 32px;
    padding: 0;
    list-style: none;
    grid-column: 1;
}

.nav__item {
    display: block;
    align-items: center;
    font-size: clamp(24px, 1.1vw + 10px, 40px);
    font-family: Italiana;
    line-height: 1.5%;
    letter-spacing: 0.02em;
    gap: 10px;
    margin-top: 24px;
    padding: 10px 0;
    text-decoration: none;
    transition: color 0.25s ease, transform 0.6s cubic-bezier(.22, 1, .36, 1);
}

.nav__item:hover {
    color: var(--primary-dustyPink, #C08996);
    transform: translateX(4%);
}

.nav__item a {
    display: inline-block;
    color: var(--primary-darkGreen), #3C4E46;
    will-change: transform;
    transition: color 0.25s ease, transform 0.4s cubic-besizer(.22, 1, .36, 1);
}

.nav__item:hover a {
    transform: translateX(4px);
}

.nav__item::before {
    content: '';
    width: 20px;
    height: 2px;
    background-color: currentColor;
    display: inline-block;
    margin-right: 12px;
    transform: translateY(-8px);
}

.nav_background {
    grid-column: 2;
    grid-row: 1 / 3;
    position: relative;
    width: 100%;
    pointer-events: none;
}

.nav_background img {
    height: 130%;
    object-fit: cover;
    position: absolute;
    right: -250px;
    top: 60px;
    max-width: initial;
}

.nav__note {
    color: var(--primary-dustyPink, #C08996);
    text-align: right;
    font-family: Ballet;
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.28;
    letter-spacing: 0.12em;
    position: relative;
    margin-top: 40px;
    padding-top: 24px;
    padding-bottom: 28px;
}

.nav__note::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-dustyPink, #C08996);
}

.nav__note-text {
    text-align: center;
    transform: rotate(-3.767deg);
    display: inline-block;
    transform-origin: left center;
}


/* SNS icon */

.nav__sns {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    margin: 16px 0 0 32px;
    list-style: none;
    padding: 0;
}

.nav__sns li {
    display: block;
}

.nav__sns img {
    width: 24px;
    height: auto;
    display: block;
}

@media screen and (max-width: 970px) {
    .nav__sns {
        display: grid;
        grid-template-columns: repeat(3, auto);
        gap: 0;
        column-gap: 24px;
        row-gap: 16px;
    }
}


/* SP版切り替え */

@media screen and (max-width: 768px) {
    .menu-trigger__icon::before,
    .menu-trigger__icon::after {
        height: 2px;
    }
    .nav {
        width: 100vw;
        padding: 56px 8.5% 24px;
        border-left: none;
    }
    .nav__logo img {
        width: calc(128 / 375 * 100vw);
    }
    .nav__tofrom {
        margin-top: 56px;
        padding-top: 8px;
    }
    .nav__value {
        font-size: clamp(16px, 4vw, 24px);
        line-height: 1.2;
        letter-spacing: 0.04em;
    }
    .nav__headline {
        font-size: clamp(12px, 2.2vw, 15px);
        margin: 24px 0 0 24px;
    }
    /* menu */
    .nav__list {
        margin: 20px 0 0 24px;
    }
    .nav__item {
        font-size: clamp(20px, 4vw, 28px);
        gap: 10px;
        margin-top: 20px;
        padding: 10px 0;
    }
    .nav__item::before {
        width: 20px;
        height: 2px;
        margin-right: 14px;
        transform: translateY(-5px);
    }
    .nav_background img {
        height: 112%;
        right: -176px;
        top: 72px;
    }
    /* SNS icon */
    .nav__sns {
        display: flex;
        gap: 16px;
        margin: 16px 0 0 24px;
    }
    .nav__sns img {
        width: 16px;
    }
}


/*=========== footer ============= */

.footer {
    background-color: var(--primary-dustyPink, #C08996);
    border-radius: 0 294.5px 0 0;
    position: relative;
    z-index: 10;
    overflow: hidden;
}


/* footer__visual */

.footer__visual {
    position: absolute;
    left: 2%;
    bottom: 32px;
    z-index: 2;
    pointer-events: none;
}

.footer__visual-img {
    width: clamp(220px, 26vw, 560px);
    height: auto;
    display: block;
}

.footer__inner {
    position: relative;
    padding: 64px 12% 0 4%;
    display: grid;
    grid-template-columns: 2fr 1fr max-content;
    z-index: 1;
}


/* 右側 */

.footer__nav,
.footer__links,
.footer__sns {
    grid-column: 2;
}


/* 左側 */

.footer__brand {
    grid-column: 1;
}


/* logo & navi */

.footer__brand {
    text-align: left;
    z-index: 1;
    margin-top: 32px;
}

.footer__logo {
    width: clamp(180px, 20vw, 280px);
    height: auto;
}

.footer__sub {
    color: var(--primary-white, #fafafa);
    font-family: Italiana;
    font-size: 1.4rem;
    margin-top: 2px;
    line-height: 1.2;
    letter-spacing: 0.02em;
}

.footer__nav {
    z-index: 1;
}

.footer__nav-list {
    list-style: none;
    margin-top: 32px;
    padding: 0;
}

.footer__nav-item {
    margin-top: 32px;
}

.footer__nav-item a {
    position: relative;
    display: flex;
    color: var(--primary-white, #fafafa);
    font-family: Italiana;
    font-size: var(--fz-24);
    line-height: 1.0;
    letter-spacing: 0.02em;
    transition: color 0.4s cubic-bezier(.22, 1, .36, 1);
}

.footer__nav-item a:hover {
    color: var(--primary-palePink);
}


/* footer link */

.footer__links {
    display: flex;
    min-width: 328px;
    grid-column: 3;
    flex-direction: column;
    align-items: flex-start;
    padding-block-start: 32px;
    gap: 18px;
}

.footer__link-box {
    display: block;
    width: min(420px, 100%);
    max-width: 328px;
    background-color: var(--primary-palePink, #f8dee6);
    background-image: url(../images/common/footer_link_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 16px 20px 20px;
    border-radius: 8px;
    color: var(--primary-white, #fafafa);
    text-decoration: none;
    position: relative;
    transition: filter 0.3s ease;
}

.footer__link-box:hover {
    filter: brightness(1.04);
}

.footer__link-bottom {
    display: flex;
    align-items: center;
    margin-top: clamp(8px, 4vw, 24px);
    justify-content: space-between;
}

.footer__link-label {
    display: inline-block;
    padding: 8px 24px;
    border: 1px solid var(--primary-darkGreen, #3C4E46);
    border-radius: 999px;
    color: var(--primary-darkGreen, #3C4E46);
    font-family: "Libre Caslon Display";
    font-size: 1.2rem;
    letter-spacing: 0.04em;
}

.footer__link-name {
    color: var(--primary-darkGreen, #3C4E46);
    font-family: "Libre Caslon Display";
    font-size: 2.0rem;
    line-height: 1;
    letter-spacing: 0.04em;
}

.footer__link-arrow {
    display: inline-block;
    width: 14px;
    height: auto;
}


/* SNS */

.footer__sns {
    margin-top: 32px;
    display: flex;
    grid-column: 3;
    gap: 20px;
    align-items: center;
}

.footer__sns img {
    width: 24px;
}

.footer__sns a[aria-label="Youtube"] img {
    transform: translateY(-2px);
}

.footer__ribbon {
    margin-top: 20px;
    width: 100%;
    height: clamp(80px, 11.67vw, 312px);
    bottom: clamp(60px, 9.58vw, 200px);
    background-image: url(../images/common/frilly_Footer.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1;
}


/* Back to top */

.footer__top {
    display: flex;
    justify-content: flex-end;
    margin-right: 5.56%;
    margin-top: 24px;
    margin-bottom: -12px;
    right: 6%;
    bottom: 24px;
    font-size: var(--fz-16);
    font-family: Italiana;
    line-height: 1;
    letter-spacing: 0.02em;
}

.footer__top a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--primary-white);
}

.footer__top img {
    width: 8px;
}


/*  copy light */

.footer__copy {
    margin-bottom: 24px;
    text-align: center;
    color: var(--primary-white, #fafafa);
    font-family: Italiana;
    font-size: clamp(12px, 0.83vw, 14px);
    line-height: 1;
    letter-spacing: 0.02em;
}


/* SP切り替え */

@media screen and (max-width: 768px) {
    .footer {
        border-radius: 0 187.5px 0 0;
    }
    .footer__inner {
        padding: 40px 6.4% 64px;
        grid-template-columns: 1fr;
        row-gap: 24px;
        position: relative;
        z-index: 2;
    }
    /* footer__visual */
    .footer__visual {
        left: 0;
        bottom: 0;
        position: relative;
    }
    .footer__visual-img {
        width: calc(337 / 375 * 100vw);
    }
    .footer__brand,
    .footer__nav,
    .footer__links,
    .footer__sns {
        grid-column: 1;
    }
    .footer__brand {
        text-align: left;
        margin-top: 0;
    }
    .footer__logo {
        width: clamp(149px, 40vw, 280px);
        margin-inline: auto;
    }
    .footer__nav-list {
        margin-top: 32px;
        display: grid;
        grid-template-columns: repeat(2, auto);
        justify-content: start;
        column-gap: 32px;
        row-gap: 16px;
    }
    .footer__nav-item a {
        font-size: clamp(20px, 6.4vw, 24px);
    }
    /* footer link */
    .footer__links {
        min-width: auto;
        grid-column: 1;
        align-items: start;
        gap: 16px;
    }
    .footer__link-box {
        width: min(420px, 100%);
        max-width: 100%;
    }
    .footer__link-bottom {
        margin-top: 32px;
    }
    /* SNS */
    .footer__sns {
        margin-top: 0;
    }
    .footer__sns img {
        width: 20px;
    }
    .footer__ribbon {
        margin: 32px 0 64px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    .footer__ribbon-wrapper {
        position: relative;
        z-index: 1;
        margin-block-start: -31px;
    }
    /*  copy light */
    .footer__copy {
        margin: 40px 0 32px 6.4%;
        text-align: start;
        font-size: clamp(9px, 2.67vw, 14px);
    }
    /* Back to top */
    .footer__top {
        margin-right: 5.56%;
        margin-top: 24px;
        margin-bottom: -49px;
        font-size: var(--fz-16sp);
    }
}
