@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-color: #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.2rem, 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 */

/* =============
loading
============== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #F5F2ED;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease;
}

.loader__butterfly {
  width: 100px;
  margin-bottom: 20px;
  animation: 
    flap 0.4s infinite alternate ease-in-out,
    float 5s infinite ease-in-out;
}

.loader__text {
  font-family: "Montserrat";
  letter-spacing: 0.1em;
  font-size: 1.6rem;
}

@keyframes flap {
  0% { transform: scaleY(1); }
  100% { transform: scaleY(0.5); }
}

@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -15px; }
}

.is-loaded {
  opacity: 0;
  pointer-events: none;
}

/* =============
MV
============== */
.spMV,
.pcMV {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #F5F2ED;
    transition: filter 0.5s ease;
}

.is-blurred {
    filter: blur(8px); /* ぼかしの強さ */
}

.spMV__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 4.3% 8px;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
}

.MV__logo {
    position: static;
    width: 40px;
    height: auto;
}

.mainImg__txt1,
.mainImg__txt2 {
    text-align: right;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    background-color: #FFF;
    padding: 0 0 0 8px;
    display: inline-block;
}

.mainImg__txt1 {
    position: absolute;
    top: 70px;
    left: 0px;
    z-index: 20;
}

.mainImg__txt2 {
    position: absolute;
    top: 98px;
    left: 20px;
    z-index: 20;
}

.mainImg__txt3.is-vertical {
    writing-mode: vertical-rl;
    position: absolute;
    bottom: 0px;
    right: 12px;
    z-index: 30;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    background-color: #FFF;
    padding: 4px 0;
    white-space: nowrap;
}

.slider {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mainImg {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 250px 0 0 0;
    display: block;
    object-position: bottom;
}

.slider__item {
    object-position: bottom;
}

.item2 img {
    object-position: 50% 20%;
}

.item3 img {
    object-position: 50% 50%;
}

.pcMV {
    display: none;
}

/* MV pc */
@media screen and (min-width: 769px) {
    .pcMV {
        display: block;
        z-index: -1;
    }

    .spMV {
        display: none;
    }

    .MV__logo {
        position: absolute;
        top: 20px;
        left: 20px;
        width: 130px;
        height: 130px;
    }

    .mainImg__txt1,
    .mainImg__txt2 {
        font-size: clamp(2.4rem, 3vw, 4.8rem);
        padding: 0 12px;
    }

    .mainImg__txt1 {
        top: 195px;
        left: 15px;
    }

    .mainImg__txt2 {
        top: 280px;
        left: 76px;
    }

    .mainImg__txt3.is-vertical {
        right: 42px;
        font-size: 2.4rem;
        padding: 16px 0;
    }

    .mainImg {
        height: 710px;
        border-radius: 800px 0 0 0;
    }
}
/* pc 769px */

/*  1740px~2800px*/
@media screen and (min-width: 1740px) and (max-width: 2800px) {
    .mainImg {
        object-position: center;
    }
}

/* =============
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: 350px;
}

.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 */

/* =============
concept
============== */
.section--concept {
    padding: 64px 4.3%;
    position: relative;
}

.concept__txt {
    font-size: 1.6rem;
    word-break: break-all;
    margin-top: 24px;
}

.txt__green {
    display: block;
    color: #286323;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.8;
    margin: 24px 0;
}

.butterfly1 {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 81px;
    height: 57px;
    animation: fuwafuwa 3s infinite ease-in-out;
}

@keyframes fuwafuwa {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    50% {
        transform: translateY(-25px) translateX(10px) rotate(5deg);
    }
}

.line {
    width: 100%;
}

/* concept pc */
@media screen and (min-width: 769px) {
    .section--concept {
        padding: 96px 9.7%;
        display: flex;
    }

    .concept__txt {
        font-size: 2rem;
        margin: 0 auto;
    }

    .txt__green {
        font-size: 3.2rem;
    }

    .butterfly1 {
        bottom: -100px;
        right: 40px;
        width: 250px;
        height: 170px;
    }
}
/* pc 769px */

/* =============
menu
============== */
.section--menu {
    padding: 64px 4.3%;
}

.menu__item {
    margin-top: 24px;
}

.menu__title {
    text-align: center;
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.3;
}

.menu__photo {
    display: block;
    width: 100%;
    max-width: 250px;
    height: 220px;
    object-fit: cover;
    margin: 24px auto 0;
}

.menu__btn {
    margin-top: 24px;
}

.menu__foot {
    margin-top: 24px;
}

/* menu pc */
@media screen and (min-width: 769px) {
    .section--menu {
        padding: 96px 9.7%;
    }

    .menu__item {
        display: flex;
        gap: 64px;
        max-width: 1160px;
        width: 100%;
        margin: 32px auto 0;
        justify-content: center;
    }

    .menu__title {
        font-size: 3.2rem;
    }

    .menu__photo {
        max-width: 371px;
        width: 100%;
        height: 280px;
    }

    .menu__foot {
        margin-top: 0;
    }
}

/* pc 769px */

/* =============
salonInfo
============== */
.section--salonInfo {
    padding: 64px 4.3%;
    background-color: #90A78E;
}

.salonInfo__item {
    margin: 24px auto 0;
}

.salonInfo__owner,
.salonInfo__salon {
    text-align: center;
}

.salonInfo__photo {
    width: 250px;
    height: 300px;
    border-radius: 180px 180px 0 0;
    object-fit: cover;
}

.owner__name,
.salon__address {
    color: #FFF;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 16px;
}

.owner__txt,
.salon__txt {
    color: #FFF;
    width: 100%;
    max-width: 343px;
    display: flex;
    padding: 0 16px;
    text-align: left;
    margin: 16px auto 0;
}

.salonInfo__btn {
    margin-top: 16px;
}

.salonInfo__salon {
    margin-top: 24px;
}

/* salonInfo pc */
@media screen and (min-width: 769px) {
    .section--salonInfo {
        padding: 96px 9.7%;
    }

    .salonInfo__item {
        display: flex;
        gap: 64px;
        max-width: 1160px;
        margin: 32px auto 0;
        justify-content: center;
    }

    .salonInfo__photo {
        width: 300px;
        height: 350px;
    }

    .owner__name,
    .salon__address {
        font-size: 2rem;
    }

    .owner__txt,
    .salon__txt {
        max-width: 371px;
    }

    .salonInfo__btn {
        gap: 32px;
    }

    .salonInfo__salon {
        margin-top: 0;
    }
}

/* pc 769px */

/* =============
reserve
============== */
.section--reserve {
    padding: 64px 4.3%;
}

.reserve {
    display: flex;
    flex-direction: column;
    margin: 24px auto 0;
    align-items: center;
}

.reserve__item {
    max-width: 343px;
    width: 100%;
    padding: 32px 24px;
    text-align: center;
    border-radius: 20px;
    background: #FDF9F2;
    box-shadow: 0 4px 4px 0 rgba(204, 189, 164, 0.10);
}

.reserve__item:last-of-type {
    margin-top: 24px;
}

.reserve__item img {
    width: 100px;
}

.reserve__title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 16px;
}

.reserve__txt {
    margin-top: 8px;
}

.reserve__btn {
    margin-top: 16px;
}

.reserve__btn img {
    width: 35px;
    height: 28px;
}

.reserve__subTxt {
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.3;
    margin-top: 16px;
}

.reserve__download {
    display: inline;
    text-decoration: underline;
}

/* reserve pc */
@media screen and (min-width: 769px) {
    .section--reserve {
        padding: 96px 9.7%;
    }

    .reserve {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 32px;
        margin: 32px auto 0;
        max-width: 1160px;
        align-items: stretch;
    }

    .reserve__item {
        max-width: 560px;
    }

    .reserve__item:last-of-type {
        margin-top: 0;
    }

    .reserve__item img {
        width: 150px;
    }

    .reserve__title {
        font-size: 2.2rem;
    }

    .reserve__txt {
        letter-spacing: 0.06em;
    }
    
    .reserve__btn img {
        width: 45px;
        height: 37px;
    }

    .reserve__subTxt,
    .reserve__download {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }
}

/* pc 769px */

/* =============
accordion
============== */
.accordion__content {
    display: none;
    position: relative;
    padding: 50px 0 20px;
    margin-top: 15px;
    border-top: 1px dotted #D18063;
    width: 100%;
}

.accordion__content .accordion__list {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background-color: #D18063;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.close-btn:hover {
    opacity: 0.7;
}

.accordion__item {
    text-align: center;
}

.accordion__item p {
    font-size: 1.2rem;
}

.accordion__link img {
    width: 100%;
    max-width: 150px;
    margin-top: 8px;
}


/* =============
design
============== */
.section--design {
    padding: 64px 4.3%;
    position: relative;
}

.design {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.design__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 24px;
    justify-content: center;
    max-width: 343px;
}

.design__list img {
    width: calc(50% - 16px);
    aspect-ratio: 160 / 141;
    object-fit: cover;
    cursor: pointer;
}

.design__btn {
    margin-top: 24px;
}

.butterfly2 {
    position: absolute;
    top: 10px;
    right: 25px;
    width: 98px;
    height: 69px;
    animation: fuwafuwa 3s infinite ease-in-out;
}

@keyframes fuwafuwa {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0);
    }

    50% {
        transform: translateY(-25px) translateX(10px) rotate(5deg);
    }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    border-radius: 30px;
}

.modal.is-active {
    display: flex;
}

.modal__content {
    background: #E3DED4;
    padding: 60px 40px 20px;
    border-radius: 40px;
    position: relative;
    max-width: 90%;
    text-align: center;
}

.modal__main-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
}

.modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    width: 30px;
    transition: opacity 0.3s;
}

.modal__close:hover {
    opacity: 0.7;
}

.modal__info {
    text-align: left;
    margin-top: 16px;
    width: 100%;
}

.modal__tag {
    display: inline-block;
    border: 1px solid #383431;
    border-radius: 20px;
    padding: 4px 16px;
    background: #fff;
    margin-bottom: 8px;
}

/* design pc */
@media screen and (min-width: 769px) {
    .section--design {
        padding: 96px 9.7%;
    }

    .design__list {
        gap: 24px;
        margin-top: 32px;
        max-width: 1160px;
    }

    .design__list img {
        width: calc(33.333% - 32px);
    }

    .design__btn {
        margin-top: 24px;
        gap: 38px;
    }

    .butterfly2 {
        top: 0px;
        right: 25px;
        width: 264px;
        height: 186px;
    }
}
/* 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;
}