@charset "UTF-8";
:root {
    /* フォント */
    --font-montserrat: "Montserrat", sans-serif;
    --font-jost: "Jost", sans-serif;
    --font-reem-kufi: "Reem Kufi", sans-serif;

    /* カラー */
    --black: #4E4E4E;
    --gray: #F2F2F2;
    --gray-2: #DEDEDE;
    --white: #fff;
    --blue: #384964;
    --red: #E57F61;
    --green: #84D3D9;
    --green-2: #3FB1BA;
    --green-3: #369BA3;
    --green-4: #308C93;
    --pink: #F0BEB0;
}

/* 共通 */
html {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    letter-spacing: 0;
}

#main {
    display: flex;
    align-items: flex-start;
    padding-top: 0;
}

@media screen and (max-width: 767px) {
    #main {
        padding-top: 0;
    }
}

.section-title {
    display: flex;
    align-items: center;
}

.section-title__en {
    color: var(--blue);
    font-family: var(--font-montserrat);
    font-size: 40px;
    font-weight: 500;
    line-height: 1;
}

.section-title__ja {
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

/* アニメーション */
.fade_up {
    transform: translateY(30px);
    opacity: 0;
    transition: all 2s ease;
}

.fade_up.active {
    transform: translateY(0);
    opacity: 1;
}

/* インスタグラム */
.instagram {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.instagram__link {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: 280px;
    padding: 15px;
    border-radius: 40px;
    background-color: var(--green-3);
    border: 2px solid var(--white);
    transition: background-color 0.3s ease;
}

.instagram__link:hover {
    opacity: 1;
    background-color: var(--green-4);
}

.instagram__link--drawer {
    background-color: var(--green-2);
}

.instagram__link--drawer:hover {
    background-color: var(--green-3);
}

.instagram__icon {
    width: 32px;
    height: 32px;
}

.instagram__text {
    color: var(--white);
    font-family: var(--font-montserrat);
    font-size: 14px;
    font-weight: 600;
    margin-left: 15px;
}

/* ヘッダー */
.header {
    display: block;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 100;
}

@media screen and (min-width: 768px) {
    .header {
        display: contents;
    }
}

.drawer {
    position: relative;
    display: flex;
    align-items: center;
    width: 78px;
    height: 32px;
    z-index: 100;
}

.drawer__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    width: 100%;
    border-radius: 30px;
    background-color: var(--green-2);
    font-family: "Noto Sans", sans-serif;
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.01em;
    padding: 6px 0;
    transition: background-color 0.3s ease;
}

.drawer__btn.on {
    background-color: #707070;
}

.drawer__bars-wrapper {
    margin-left: 4px;
}

.drawer__bars {
    display: block;
    height: 1px;
    margin-left: auto;
    border-radius: 10px;
    background-color: var(--white);
    transition: transform 0.3s ease;
}

.drawer__bars:not(:first-of-type) {
    margin-top: 2px;
}

.drawer__bars:nth-child(1) {
    width: 11px;
}

.drawer__bars:nth-child(2) {
    width: 9px;
}

.drawer__bars:nth-child(3) {
    width: 7px;
}

.drawer__bars.on:nth-child(1) {
    transform: rotate(45deg);
}

.drawer__bars.on:nth-child(2) {
    opacity: 0;
}

.drawer__bars.on:nth-child(3) {
    width: 11px;
    margin-top: -4px;
    transform: rotate(-45deg);
}

.drawer__nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding-top: 64px;
    padding-bottom: 24px;
    z-index: 99;
    scrollbar-width: none;
    -ms-overflow-style: none;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s ease-out;
    overflow: auto;
    background-color: var(--white);
    -webkit-overflow-scrolling: touch;
}

.on .drawer__nav {
    pointer-events: auto;
    opacity:1;
}

.drawer__group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.01em;
    max-width: 315px;
    width: 100%;
    margin-inline: auto;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-2);
}

.drawer__group--pc {
    display: none;
}

.drawer__group--sp {
    display: block;
}

.drawer__group:hover {
    opacity: 1;
}

.drawer__group:hover .drawer__item-text {
    opacity: 0.5;
}

.drawer__item {
    position: relative;
    padding-left: 29px;
    transition: opacity 0.3s ease;
}

.drawer__item--font {
    font-family: var(--font-reem-kufi);
}

.drawer__item::before {
    position: absolute;
    content: "";
    width: 21px;
    height: 21px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url(../img/drawer-arrow.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
}

.drawer__group:hover .drawer__item::before {
    opacity: 0.5;
}

.drawer__item-text {
    transition: opacity 0.3s ease, color 0.3s ease;
}

.drawer__item-text.active {
    color: #E56843;
}

.drawer__menu {
    text-align: center;
}

.drawer__instagram {
    margin-top: 30px;
}

.drawer__copyright {
    margin-top: 35px;
}

.drawer__copyright-text {
    color: #AFAFAF;
    font-family: "Noto Sans", sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-align: center;
}

body.no-scroll {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 768px) {
    .drawer {
        display: contents;
    }

    .drawer__btn {
        display: none;
    }

    .drawer__nav {
        display: flex;
        align-items: center;
        padding-top: 0;
        transform: none;
        background-color: transparent;
        width: calc(50% - 187.5px);
        height: 100vh;
        opacity: 1;
        pointer-events: all;
    }

    .drawer__menu {
        width: 100%;
        max-width: 271px;
        margin-top: -25px;
        margin-left: 100px;
    }

    .drawer__group {
        padding: 25px 0;
    }

    .drawer__group--pc {
        display: block;
    }

    .drawer__group--sp {
        display: none;
    }

    .drawer__item {
        font-size: 15px;
        padding-left: 0;
        width: 100%;
    }

    .drawer__item::before {
        left: auto;
        right: 0;
        transition: transform 0.5s ease;
    }

    .drawer__group:hover .drawer__item::before {
        opacity: 1;
        transform: translateY(-50%) translateX(10px);
    }

    .drawer__instagram {
        display: none;
    }

    .drawer__copyright {
        display: none;
    }
}

/* 左サイド */
.left-side {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    width: calc(50% - 187.5px);
    height: 100vh;
    background-image: url(../img/side_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.left-side__inner {
    width: 100%;
    max-width: 280px;
}

.left-side__img {
    width: 100%;
    max-width: 257px;
    margin: 63px auto 0;
}

.left-side__logo {
    text-align: center;
}

.left-side__instagram {
    margin-top: 18px;
}

@media screen and (min-width: 768px) {
    .left-side {
        display: flex;
        justify-content: end;
        align-items: center;
    }
    .left-side__inner {
        margin-right: 100px;
    }
}

/* 中央 */
.center {
    width: 100%;
    min-height: 100vh;
    background-image: url(../img/main-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: none;
    overflow: hidden;
}

@media screen and (min-width: 768px) {
    .center {
        max-width: 375px;
        margin: 0 auto;
    }
}

/* 右サイド */
.right-side {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: calc(50% - 187.5px);
    height: 100vh;
    background-image: url(../img/side_bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media screen and (min-width: 768px) {
    .right-side {
        display: block;
    }
}

/* メインビジュアル */
#mv {
    padding-top: 110px;
    padding-bottom: 67px;
    background-image: url(../img/mv-bg.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.mv__title {
    position: relative;
    width: 100%;
    max-width: 195px;
    margin: 0 auto;
}

.mv__star {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: 0;
    transform: scale(0);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mv__star.active {
    opacity: 1;
    transform: scale(1);
}

/* きらきら光るアニメーション */
@keyframes starTwinkle {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.1);
        filter: brightness(1.3);
    }
    50% {
        opacity: 1;
        transform: scale(0.9);
        filter: brightness(1.5);
    }
    75% {
        opacity: 0.8;
        transform: scale(1.05);
        filter: brightness(1.2);
    }
}

/* 特別なきらきら効果 */
.mv__star.extra-twinkle {
    animation: extraTwinkle 0.8s ease-in-out forwards;
}

@keyframes extraTwinkle {
    0% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
    25% {
        opacity: 0.9;
        transform: scale(1.3);
        filter: brightness(2) drop-shadow(0 0 8px rgba(255, 255, 255, 1));
    }
    50% {
        opacity: 1;
        transform: scale(1.5);
        filter: brightness(2.5) drop-shadow(0 0 12px rgba(255, 255, 255, 1));
    }
    75% {
        opacity: 0.9;
        transform: scale(1.2);
        filter: brightness(1.8) drop-shadow(0 0 6px rgba(255, 255, 255, 0.9));
    }
    100% {
        opacity: 1;
        transform: scale(1);
        filter: brightness(1);
    }
}

.mv__star01 {
    width: 7px;
    height: 7px;
    background-image: url(../img/mv-star01.webp);
    bottom: 51px;
    right: -33px;
}

.mv__star02 {
    width: 10px;
    height: 10px;
    background-image: url(../img/mv-star02.webp);
    bottom: 37px;
    right: -24px;
}

.mv__star03 {
    width: 21px;
    height: 21px;
    background-image: url(../img/mv-star03.webp);
    bottom: -3px;
    right: -55px;
}

.mv__img {
    position: relative;
    width: 100%;
    max-width: 297px;
    margin: 45px auto 0;
}

.mv__star04 {
    width: 8px;
    height: 8px;
    background-image: url(../img/mv-star04.webp);
    bottom: -7px;
    left: 84px;
}

.mv__star05 {
    width: 12px;
    height: 12px;
    background-image: url(../img/mv-star05.webp);
    bottom: -30px;
    left: 63px;
}

.mv__star06 {
    width: 21px;
    height: 21px;
    background-image: url(../img/mv-star06.webp);
    bottom: -83px;
    left: 115px;
}

.mv__star07 {
    width: 8px;
    height: 8px;
    background-image: url(../img/mv-star07.webp);
    bottom: -102px;
    left: 149px;
}

@media screen and (min-width: 768px) {
    #mv {
        display: none;
    }
}

/* ninareruとは */
#about {
    margin-top: 67px;
}

.about__maint-title {
    display: flex;
    justify-content: center;
}

.about__first-text {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.85;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 32px;
}

.about__pink {
    color: var(--red);
}

.about__second-text {
    font-size: 13px;
    font-weight: 500;
    line-height: 2.23;
    letter-spacing: 0.02em;
    text-align: center;
    margin-top: 32px;
}

.about__container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 53px;
    overflow: hidden;
}

.about__line {
    position: absolute;
    width: 440px;
    height: 440px;
    background-image: url(../img/about-line.gif);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    top: -26%;
    left: -14%;
    opacity: 0;
    transform: translateY(30px);
}

/* about画像の初期状態設定 */
.about__img {
    opacity: 0;
    transform: translateY(30px);
}

.about__img--2 {
    width: 100%;
    max-width: 67%;
    margin-top: 16px;
    margin-left: auto;
}

.about__img--3 {
    margin-top: 85%;
}

.about__right {
    margin-left: 11px;
}

@media screen and (min-width: 768px) {
    #about {
        margin-top: 74px;
    }
}

/* セクションメニュー */
.section-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
    padding: 0 25px;
    margin-top: 49px;
}

.section-menu__wrapper {
    color: var(--white);
    text-align: center;
    background-image: url(../img/section-menu-bg.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 0.3s ease;
}

.section-menu__wrapper:hover {
    opacity: 0.6;
}

.section-menu__item {
    position: relative;
    display: block;
    font-size: 14px;
    font-weight: 700;
    padding: 17px 17px 30px;
}

.section-menu__item::before {
    position: absolute;
    content: "";
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 6px;
    background-image: url(../img/section-menu-arrow.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* サービスについて */
#service {
    padding-top: 63px;
}

.service__section-title {
    padding: 0 25px;
}

.service__area {
    margin: 20px 12px 0;
    background-color: var(--green);
    border-radius: 20px;
    padding: 48px 17px 43px;
}

.service__unit {
    display: flex;
    flex-wrap: wrap;
}

.service__room {
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    padding: 6px 14px;
    background-color: var(--green-2);
    border-radius: 20px;
}

.service__room:hover {
    color: var(--white);
    opacity: 1;
    cursor: pointer;
}

.service__room--white {
    display: none;
    color: var(--green-2);
    margin-left: 4px;
    background-color: var(--white);
}

.service__images {
    margin-top: 22px;
}

.service__detail {
    color: var(--white);
    font-size: 13px;
    line-height: 1.76;
    margin-top: 24px;
}

.service__offer-container {
    margin-top: 48px;
}

.service__offer-title {
    position: relative;
    color: var(--green-2);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    width: 100%;
    max-width: 136px;
    padding: 10px 18px;
    margin: 0 auto;
    text-align: center;
    border-radius: 30px;
    border: 1px solid var(--green-2);
    background-color: var(--white);
    z-index: 1;
}

.service__offer-wrapper {
    padding: 49px 20px 43px;
    margin-top: -21px;
    border-radius: 10px;
    background-color: var(--white);
}

.service__offer-group:not(:first-of-type) {
    margin-top: 22px;
}

.service__offer-item {
    position: relative;
    color: var(--green-2);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    padding-left: 27px;
}

.service__offer-item::before {
    position: absolute;
    content: "";
    background-image: url(../img/service-offer-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 19px;
    height: 19px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.service__offer-detail {
    font-size: 13px;
    line-height: 1.38;
    margin-top: 12px;
}

.service__advice {
    margin-top: 48px;
}

.service__advice-title {
    position: relative;
    color: var(--white);
    font-size: 19px;
    font-weight: 600;
    width: 100%;
    max-width: 177px;
    margin: 0 auto;
    text-align: center;
}

.service__advice-title::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 5px;
    background-image: url(../img/service-advice-title-bg.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    bottom: -10px;
    left: 0;
}

.service__advice-images {
    margin-top: 47px;
}

.service__advice-container {
    display: flex;
    margin-top: 27px;
}

.service__advice-icon {
    width: 100%;
    max-width: 120px;
}

.service__advice-right {
    width: 100%;
    max-width: 165px;
    margin-left: 13px;
    padding-left: 24px;
}

.service__advice-text {
    position: relative;
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
}

.service__advice-text::before {
    position: absolute;
    content: "";
    background-image: url(../img/service-advice-text-icon.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 15px;
    height: 9px;
    top: 50%;
    left: -27px;
    transform: translateY(-50%);
}

.service__advice-text:not(:first-of-type) {
    margin-top: 14px;
}

/* 利用料金 */
#price {
    padding-top: 64px;
    padding-bottom: 64px;
}

.price__section-title {
    padding: 0 25px;
}

.price__container {
    padding: 33px 41px;
    margin: 20px 13px 0;
    border-radius: 20px;
    border: 2.5px solid var(--pink);
    background-color: var(--white);
}

.price__group {
    display: flex;
    align-items: end;
    width: max-content;
    background: linear-gradient(transparent 67%, rgba(229, 127, 97, 0.23) 0);
}

.price__value {
    font-size: 44px;
    font-weight: 500;
    line-height: 1.2;
}

.price__value-unit {
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 3px;
    margin-left: 4px;
}

.price__wrapper {
    font-size: 12px;
    line-height: 1.5;
    margin-top: 19px;
}

/* 利用方法 */
#use {
    padding-top: 98px;
    padding-bottom: 90px;
    background-image: url(../img/use-bg.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.use__inner {
    padding: 0 25px;
}

.use__area {
    margin-top: 32px;
}

.use__container {
    display: flex;
}

.use__container:not(:first-of-type) {
    margin-top: 16px;
}

.use__icon {
    width: 100%;
    max-width: 100px;
}

.use__wrapper {
    width: 100%;
    max-width: 211px;
    margin-left: 15px;
}

.use__step {
    font-family: var(--font-jost);
    color: var(--white);
    font-size: 15px;
    line-height: 1;
    width: 100%;
    max-width: 87px;
    text-align: center;
    padding: 4px 0 2px;
    background-color: var(--green-2);
    border-radius: 20px;
}

.use__text {
    font-size: 13px;
    line-height: 1.54;
    margin-top: 10px;
}

/* アクセス */
#access {
    padding-top: 64px;
}

.access__inner {
    padding: 0 25px;
}

.access__container {
    position: relative;
    margin-top: 35px;
}

.access__map {
    opacity: 0;
    transform: translateY(30px);
}

.access__logo {
    position: absolute;
    bottom: -66px;
    left: 82px;
    width: 176px;
    height: 159px;
    opacity: 0;
    transform: translateY(30px);
}

/* よくある質問 */
#qa {
    padding-top: 130px;
}

.qa__inner {
    padding: 0 12.5px;
}

.qa__wrapper {
    padding: 16px 17px 31px;
    margin-top: 20px;
    border-radius: 20px;
    background-color: var(--white);
}

.qa__menu-item {
    padding: 28px 0 24px;
    border-bottom: 1px solid var(--gray);
}

.qa__group {
    position: relative;
    display: flex;
    align-items: center;
}

.qa__question {
    position: relative;
    color: var(--black);
    font-size: 14px;
    font-weight: 500;
    width: calc(100% - 19px);
    padding-right: 10px;
    padding-left: 27px;
    text-align: left;
    background-color: var(--white);
}

.qa__question::before {
    position: absolute;
    content: "Q";
    color: var(--green-2);
    font-family: var(--font-montserrat);
    font-size: 19px;
    font-weight: 700;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.qa__icon {
    display: flex;
    width: 19px;
    height: 19px;
    background-image: url(../img/qa-plus.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 0.1s ease-in-out;
}

.qa__icon::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    background-image: url(../img/qa-minus.webp);
    opacity: 0;
}

.qa__icon.js-open {
    background-image: url(../img/qa-minus.webp);
}

.qa__answer {
    display: none;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.42;
    padding: 17px 23px 20px 47px;
    margin-top: 20px;
    background-color: var(--gray);
    border-radius: 10px;
}

.qa__answer::before {
    position: absolute;
    content: "A";
    color: var(--green-2);
    font-family: var(--font-montserrat);
    font-size: 19px;
    font-weight: 700;
    top: 15px;
    left: 20px;
}

/* コピーライト */
.copyright {
    margin-top: 58px;
    margin-bottom: 25px;
}

.copyright__text {
    color: var(--white);
    font-family: "Noto Sans", sans-serif;
    font-size: 11px;
    text-align: center;
}