@charset "UTF-8";

/* =============
common
============== */
html {
    font-size: 62.5%;
}

body {
    color: #383431;
    font-family:
        "Noto Sans JP",
        Montserrat;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.1em;
}

.container {
    background: #F5F2ED;
    overflow-x: clip;
}

img {
    max-width: 100%;
    height: auto;
}

.menu__btn,
.salonInfo__btn,
.reserve__btn,
.design__btn {
    display: flex;
    width: 100%;
    max-width: 310px;
    padding: 14px 24px;
    justify-content: flex-end;
    align-items: center;
    margin: 0 auto;
    gap: 24px;
    flex-shrink: 0;
    border-radius: 60px;
    border-radius: 60px;
    background-color: #D18063;
    color: #FFF;
    text-align: center;
    font-weight: 500;
    line-height: 1.3;
    position: relative;
    transition: 0.4s;
}

.menu__btn:hover,
.salonInfo__btn:hover,
.reserve__btn:hover,
.design__btn:hover {
    background-color: #D06038;
}

.section__title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.section__topic {
    font-family: Montserrat;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.section__subtopic {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.topic--white {
    color: #FFF;
    font-family: Montserrat;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1;
}

.subtopic--white {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.3;
}

.pcBr {
    display: none;
}

/* common pc */
@media screen and (min-width: 769px) {
    body {
        font-size: 1.6rem;
    }

    .menu__btn,
    .salonInfo__btn,
    .reserve__btn,
    .design__btn {
        padding: 24px;
        font-size: clamp(1.4rem, 1.5vw, 1.6rem);
        max-width: 350px;
    }

    .section__title {
        margin-right: 48px;
        gap: 8px;
    }

    .section__topic {
        font-size: 6.4rem;
    }

    .section__subtopic {
        font-size: 1.8rem;
    }

    .topic--white {
        font-size: 6.4rem;
    }

    .subtopic--white {
        font-size: 1.8rem;
    }

    .spBr {
        display: none;
    }

    .pcBr {
        display: block;
    }
}
/* pc 769px */

/* =============
header
============== */
.header,
.main,
.footer {
    position: relative;
    z-index: 10;
    background-color: #F5F2ED;
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    background-image: url(../images/nav.jpg);
    background-position: 50% 40%;
    padding: 4px 4.3%;
    margin-top: 300px;
}

.logo {
    width: 40px;
    height: 40px;
}

/* .nav初期表示 */
.nav {
    display: flex;
    flex-direction: column;
    justify-content: start;
    padding-top: 150px;
    align-items: center;
    background: rgba(144, 167, 142, 0.97);
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.nav__header {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 0 0 8.6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic img {
    width: 50px;
    height: 50px;
}

.nav__list {
    list-style: none;
    justify-content: center;
    align-items: center;
}

.nav__item {
    color: #FFF;
    font-family: Montserrat;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 32px;
}

.nav__item:first-of-type {
    margin-top: 0;
}

.nav__item a {
    display: flex;
    align-items: center;
}

.nav__item img {
    display: inline-block;
    vertical-align: -2px;
    margin-right: 24px;
}

.nav__item div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.nav__item p {
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn2 {
    display: block;
    width: 25px;
    height: 16px;
    cursor: pointer;
    position: absolute;
    top: 16px;
    right: 6.4%;
}

/* header pc */
@media screen and (min-width: 769px) {
    .header {
        padding: 16px 6.4%;
        margin-top: 710px;
        display: flex;
        justify-content: space-between;
    }

    .logo {
        width: 100px;
        height: 100px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        justify-content: center;
    }

    .nav__header {
        display: none;
    }

    .nav__closeBtn {
        margin-left: 240px;
    }

    .nav__list {
        display: flex;
        margin-top: 0;
        align-items: center;
        justify-content: flex-end;
        gap: 32px;
    }

    .nav__item {
        color: #383431;
        font-family: Montserrat;
        font-size: 1.8rem;
        font-weight: 600;
        margin-top: 0;
    }

    .nav__item:first-of-type {
        margin-top: 0;
    }

    .nav__item a {
        display: flex;
        align-items: center;
    }

    .nav__item img {
        display: none;
    }

    .nav__item div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* .nav.active表示 */
    .nav.active {
        transform: translateX(0);
    }

    .header__btn2 {
        display: none;
    }
}
/* pc 769px */

/* =============
footer
============== */
.footer__group {
    padding: 56px 4.3% 64px;
    display: flex;
    flex-direction: column;
    background-color: #FFF;
    align-items: center;
}

.footer__topic img {
    width: 100px;
    height: 100px;
}

.footer__nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footerNav__listSp {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}

.footerNav__listPc {
    display: none;
}

.footerNav__item {
    border-radius: 80px;
    border: 1px solid #383431;
    background: #FFF;
    padding: 8px 16px;
    width: 132px;
    height: 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 5px;
}

.footerNav__item a {
    font-family: Montserrat;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.3;
}

.footerNav__item p {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1;
}

.footerNav__icon {
    display: block;
    justify-content: center;
}

.copy {
    background: #90A78E;
    display: flex;
    padding: 32px 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

/* footer pc */
@media screen and (min-width: 769px) {
    .footer__group {
        padding: 32px 9.7%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .footer__topic img {
        width: 150px;
        height: 150px;
    }

    .footerNav__listPc {
        display: flex;
        gap: 48px;
        align-items: center;
    }

    .footerNav__listSp {
        display: none;
    }

    .footerNav__icon {
        display: none;
    }

    .footerNav__item {
        width: 160px;
        height: 70px;
    }

    .footerNav__item a {
        font-size: 1.8rem;
    }

    .copy {
        padding: 64px 0;
    }
}

/* pc 769px */

/* =============
reserve btn
============== */
.btn-reserve {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
    width: 100px;
    height: 100px;
    background-color: #D18063;
    border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 4px 0 rgba(138, 84, 65, 0.25);
    animation: 
        rotate-outer 10s linear infinite, 
        floating 3s ease-in-out infinite;
}

.btn-reserve:hover {
    background-color: #D06038;
}

.btn-reserve__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #fff;
    transform-origin: center;
    animation: rotate-inner 10s linear infinite;
}

@keyframes rotate-outer {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes rotate-inner {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

@keyframes floating {
    0%, 100% { margin-bottom: 0; }
    50% { margin-bottom: 10px; }
}
 
.btn-reserve__en {
    font-family: Montserrat;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 130%;
}

.btn-reserve__jp {
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
    margin-top: 5px;
}
