@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: #FFF;
    --primary-black: #646464;
    --primary-black25: #64646440;
    --primary-mauvepink: #A36D6A;
    --primary-lightpink: #FFE1DD;
    --primary-frostypink: #FFF3F2;
    --primary-silverpink: #CAA6A4;
    --primary-lightgray: #F2F2F2;
    --contentWidth: 84%;
    --contentPadding: 12.5%;
    --contentspPadding: 8%;
    --contentsp2Padding: 3.733%;
}

/* * {
    outline: 1px solid rgba(255, 0, 0, 0.2);
} */

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        sans-serif,
        Arial,
        Helvetica;
    font-style: normal;
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary-black, #646464);
    margin: 0 auto;
    overflow-x: hidden;
}

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

.section {
    padding: 64px var(--contentsp2Padding);
}

.section__topic {
    position: relative;
}

.section__topic--en {
    display: block;
    font-family: 'Poiret One';
    color: var(--primary-mauvepink, #A36D6A);
    font-size: 5.8rem;
    line-height: 1.5;
}

.section__topic::before {
    content: '';
    position: absolute;
    top: 40%;
    /* left: -30px;
    width: 30px; */
    left: -9999px;
    /* 端まで */
    right: 100%;
    height: 1px;
    background-color: var(--primary-mauvepink, #A36D6A);
}

.section__topic--ja {
    display: block;
}

.button__reserve,
.button__viewmore {
    display: flex;
    align-items: center;
    background-color: var(--primary-silverpink, #CAA6A4);
    color: var(--primary-white, #FFF);
    font-size: 1.6rem;
    justify-content: center;
    text-align: center;
    padding: 14px;
    border-radius: 60px;
    margin: 0 auto;
    box-shadow: 0 4px 4px #6464641A;
    max-width: 315px;
    position: relative;
}

.button__viewmore {
    font-family: 'Poiret One';
}

a:hover {
    opacity: 0.7;
}

@media screen and (min-width: 769px) {
    body {
        /* max-width: 1440px; */
        margin: 0 auto;
    }

    .section {
        padding: 64px var(--contentsp2Padding);
    }

    .section__topic--en {
        font-size: 6.4rem;
    }

    .section__topic::before {
        width: 163.5px;
        left: -180px;
    }

    .section__topic--ja {
        display: block;
        font-size: 1.8rem;
    }

    .button__reserve,
    .button__viewmore {
        max-width: 380px;
    }
}


/*==========================
fadein
==========================*/
.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/*==========================
header
==========================*/
.header {
    position: relative;
    /* margin: 0 auto; */
    z-index: 900;
    display: flex;
}

.header__topic {
    padding: 7px 31px 3px;
}


.header__topic a {
    font-family: 'Poiret One';
    line-height: 1;
}

.header__topic .share {
    font-size: 2rem;
    display: block;
}

.header__topic .couleur {
    font-size: 4rem;
}

.header__topic img {
    display: none;
}

.header__fixed {
    /* display: flex; */
    /* height: 67px; */
    width: 100%;
    /* justify-content: flex-end; */
    position: fixed;
}

/* menu */
.menu {
    background-color: var(--primary-white, #FFF);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    transform: translateX(-100%);
    /* opacity: 0; */
    /* transition: transform 0.4s; */
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    padding: 47px 30px;
}

.menu__list {
    text-align: center;
}

.menu__item {
    font-family: 'Poiret One';
    font-size: 2rem;
    margin-top: 20px;

}

.menu__logo {
    width: 126px;
    height: auto;
    padding-top: 20px;
    margin: 0 auto;
}

.contact {
    padding: 12.5px 0 36px;
    text-align: center;
}

.contact__tel {
    font-size: 2.4rem;
    font-weight: bold;
}

.contact__tel span {
    font-size: 2rem;
    padding-right: 30px;
}

.contact__hour {
    line-height: 1.7;
    padding-top: 24px;
}

.contact__insta {
    padding-top: 24px;
    font-weight: 700;
    font-size: 1.6rem;
}

.contact__insta a {
    pointer-events: auto;
}

.contact__insta--a {
    align-items: center;
    display: flex;
    justify-content: center;
    text-align: center;
}

.contact__insta img {
    width: 35px;
    height: auto;
    margin-right: 12px;
}

/* .nav.active表示 */
.menu.active {
    transform: translateX(0);
    /* opacity: 1; */
}

/* ハンバーガーボタン */
.header__btn {
    display: block;
    cursor: pointer;
    width: 40px;
    height: 40px;
    z-index: 999;
    position: absolute;
    right: 35px;
    top: 18px;
}

.header__btn-line {
    position: absolute;
    background-color: var(--primary-black, #646464);
    display: block;
    width: 36.4px;
    height: 3px;
    border-radius: 6px;
    top: 20px;
    right: 0;
    transition: all 0.4s;
}

.header__btn .header__btn-line:first-child {
    top: 8px;
}

.header__btn .header__btn-line:last-child {
    top: 32px;
}

/* ハンバーガーメニューのボタンがXになるアニメーション */
.header__btn.active .header__btn-line:first-child {
    transform: rotate(45deg);
    top: 20px;
}

.header__btn.active .header__btn-line:nth-child(2) {
    opacity: 0;
}

.header__btn.active .header__btn-line:last-child {
    transform: rotate(-45deg);
    top: 20px;
}

.header__insta {
    position: absolute;
    width: 35px;
    height: 35px;
    top: 21px;
    right: 99px;
}

.header__insta img {
    width: 35px;
    height: 35px;
}

.header__insta--a {
    position: fixed;
}

.menu__insta--a {
    display: none;
}

@media screen and (min-width: 1080px) {
    .header__topic {
        padding: 6.5px 17px;
    }

    .header__topic a {
        display: flex;
    }

    .shop {
        padding: 10px 0 10px 39px;
    }

    .header__topic img {
        display: block;
        width: 80px;
        height: 80px;
    }

    .header__btn,
    .menu .menu__logo,
    .menu .contact,
    .header__insta {
        display: none;
    }

    .header .menu {
        background: transparent;
        transform: translate(0);
        width: auto;
        height: auto;
        display: flex;
        padding: 16px 0 16px;
        right: 0;
        left: auto;
        align-items: center;
    }

    .header .menu__list {
        display: flex;
        background-color: var(--primary-white, #FFF);
        padding: 17.5px 49.5px;
        border-radius: 60px;
        box-shadow: 0 4px 4px #6464641A;
    }

    .header .menu__item {
        font-size: 1.6rem;
        margin-top: 0;
        margin-right: 30px;
    }

    .header .menu__item:last-child {
        margin-right: 0;
    }

    .menu__insta--a {
        display: block;
        margin-left: 34px;
    }

    .header .button__reserve {
        border-radius: 60px 0 0 60px;
        width: 380px;
        padding: 17.5px 218px 17.5px 50px;
        margin: 0 0 0 34px;
        position: relative;
        box-shadow: 0 4px 4px #6464641A;
    }

    .header .button__reserve::before {
        position: absolute;
        content: '';
        width: 40px;
        height: 1px;
        top: 35.5px;
        right: 50px;
        background: var(--primary-white, #FFF);
    }

    .header .button__reserve::after {
        position: absolute;
        content: '';
        width: 15px;
        height: 1px;
        background: var(--primary-white, #FFF);
        transform: rotate(38deg);
        top: 31px;
        right: 50px;
    }
}

/* Contact */
.section--contact {
    padding: 41px 0;
}

.section--contact .contact__bg {
    background: url(../images/contact-sp.jpg);
    border-radius: 50px;
    padding: 64px 30px;
    background-size: cover;
    background-repeat: no-repeat;
}

.section--contact .section__topic {
    text-align: center;
}

.section--contact .section__topic::before {
    top: 84px;
    left: 50%;
    margin-left: -32px;
    width: 64px;
    height: 1px;
}

.section--contact .section__topic--ja {
    margin-top: 12px;
}

.section--contact .contact {
    margin-top: 12px;
}

@media screen and (min-width: 769px) {
    .section--contact {
        padding: 47px 35px;
        max-width: 1440px;
        margin: 0 auto;
    }

    .section--contact .contact__bg {
        background: url(../images/contact-pc.jpg);
    }

    .section--contact .section__topic::before {
        width: 100px;
        top: 102px;
        left: 50%;
        margin-left: -50px;
    }

    .section--contact .section__topic--ja {
        margin-top: 24px;
    }

    .section--contact .contact {
        padding: 24px;
        margin-top: 0;
    }

    .contact__tel {
        font-size: 3.6rem;
    }

    .contact__hour,
    .contact__insta {
        font-size: 1.6rem
    }
}

/*==========================
footer
==========================*/
.footer {
    text-align: center;
    padding: 64px 0 30px;
    background-color: var(--primary-lightgray, #F2F2F2);
}

.footer .menu-logo {
    width: 90px;
    height: auto;
}

.footer__address {
    font-size: 1.2rem;
    margin: 24px auto 0;
}

.footer .contact__insta {
    display: block;
    padding-top: 20px;
}

.footer img {
    margin-right: 0;
}

.footer .policy {
    display: block;
    font-weight: 700;
    margin-top: 20px;
    font-size: 1.2rem;
}

.footer .button__reserve {
    margin-top: 20px;
}

.footer__nav--sp {
    display: block;
}

.footer__nav--pc {
    display: none;
}

.copy {
    font-size: 1.3rem;
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .footer {
        padding: 89px var(--contentPadding) 30px;

    }

    .footer__nav--sp {
        display: none;
    }


    .footer__flex {
        display: flex;
        padding-bottom: 68px;
        justify-content: space-between;
    }

    .footer__flex--logo {
        display: flex;
        align-items: center;
    }

    .footer__address {
        text-align: left;
        margin: 0;
    }

    .footer .menu__logo {
        width: 80px;
        height: 80px;
        margin-right: 24px;
        padding: 0;
    }

    .footer__nav--pc {
        display: block;
    }

    .footer__nav--pc .menu__list {
        display: flex;
        justify-content: end;
    }

    .footer__nav--pc .menu__item {
        margin-top: 0;
        margin-right: 30px;
    }

    .footer__nav--pc .menu__item:last-child {
        margin-right: 0;
    }

    .footer__flex--blank {
        display: flex;
        margin-top: 26px;
        align-items: center;
    }

    .footer__flex--blank .policy {
        font-size: 1.4rem;
        margin-top: 0;
        margin-right: 32px;
    }

    .footer__flex--blank .contact__insta {
        padding-top: 0;
        margin-right: 32px;
    }

    .footer__flex--blank .button__reserve {
        margin: 0;
        font-size: 1.4rem;
        padding: 9.5px 35px;
        line-height: 1.5;
    }

    /* =====ページができたら消す===== */
    .footer__flex--blank .button__reserve::after {
        font-size: 1.6rem;
    }
}