@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap');

/* NOTE
--------------------------------------
 画面幅900px以下は全体を縮小
 スマホは575px以下で別途定義
-------------------------------------- */

/* Device
-------------------------------------- */
/* PC */
@media (min-width:901px) {
    .tb:not(.pc) {
        display: none;
    }

    .sp:not(.pc) {
        display: none;
    }
}

/* TB */
@media (min-width:576px) and (max-width:900px) {
    .pc:not(.tb) {
        display: none;
    }

    .sp:not(.tb) {
        display: none;
    }
}

/* SP */
@media (max-width:575px) {
    .pc:not(.sp) {
        display: none;
    }

    .tb:not(.sp) {
        display: none;
    }
}


/* Variable
-------------------------------------- */
:root {
    --keyColorA: #BF8E53;
    --keyColorB: #374031;
    --lsWideA: 0.08em;
    --lsWideB: 0.1em;
    --lineHeightA: 1.8;
    --lineHeightB: 2.2;
    --weightR: 400;
    --weightM: 500;

}


/* Animation
-------------------------------------- */
/* Fade in */
body {
    animation: fade-in 3s;
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}


/* Setting
-------------------------------------- */
html {
    overflow: auto;
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    color: #374031;
    font-family: "Zen Kaku Gothic New", serif;
    font-size: 1.6rem;
    font-weight: var(--weightR);
}

body {
    background-color: #fff;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

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

a,
input {
    transition: all 0.3s;
}

.wrap {
    position: relative;
}

@media (max-width: 768px) {
    .wrap {
        min-width: 320px;
    }
}


/* Common
-------------------------------------- */


/* Contents
-------------------------------------- */
.contents {
    position: relative;
    width: calc(100% - min(9.64vw, 128px));
    max-width: 800px;
    margin: auto;
}

@media (max-width: 575px) {
    .contents {
        width: calc(100% - 48px);
    }
}

/* MV
-------------------------------------- */
.mv {
    width: 100%;
}


/* CONCEPT
-------------------------------------- */
.concept {
    padding: min(11.11vw, 100px) 0 min(13.33vw, 120px);
    background-color: var(--keyColorB);
}

.concept__heading {
    width: min(53.33vw, 480px);
    margin: 0 auto;
    text-align: center;
}

.concept__status {
    margin: min(7.11vw, 64px) auto;
    width: min(44.44vw, 400px);
    color: var(--keyColorA);
    font-size: min(3.11vw, 2.8rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(7.11vw, 64px);
    background-color: #fff;
    border-radius: 100vh;
}

.concept__link {
    display: block;
    margin: min(7.11vw, 64px) auto;
    width: min(44.44vw, 400px);
    color: var(--keyColorA);
    font-size: min(3.11vw, 2.8rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(7.11vw, 64px);
    background-color: #fff;
    border-radius: 100vh;
}

.concept__description {
    color: #fff;
    font-size: min(2.44vw, 2.2rem);
    font-weight: var(--weightM);
    text-align: center;
    line-height: var(--lineHeightB);
    letter-spacing: var(--lsWideA);
}

@media (hover: hover) and (pointer: fine) {
    .concept__link:hover {
        color: #fff;
        background-color: var(--keyColorA);
    }
}

@media (max-width: 575px) {
    .concept {
        padding: 64px 0;
    }

    .concept__heading {
        width: 250px;
    }

    .concept__status {
        margin: 40px auto;
        width: 240px;
        font-size: 1.8rem;
        line-height: 48px;
    }

    .concept__link {
        margin: 40px auto;
        width: 240px;
        font-size: 1.8rem;
        line-height: 48px;
    }

    .concept__description {
        font-size: 1.6rem;
    }
}

/* MENU
-------------------------------------- */
.menu {
    padding: min(11.11vw, 100px) 0 min(13.33vw, 120px);
}

.menu__title {
    font-family: "Lato", serif;
    font-size: min(6.67vw, 6rem);
    font-weight: var(--weightR);
    text-align: center;
    letter-spacing: var(--lsWideB);
}

.menu__table {
    margin-top: min(5.33vw, 48px);
    width: 100%;
    border-collapse: collapse;
    font-size: min(2.22vw, 2rem);
    letter-spacing: var(--lsWideA);
    text-align: left;
}

.menu__table-header,
.menu__table-cell {
    padding: min(1.78vw, 16px) 0;
    border-bottom: 1px solid var(--keyColorB);
}

.menu__table-header:first-child,
.menu__table-cell:first-child {
    padding-left: min(3.56vw, 32px);
}

.menu__table-header:last-child,
.menu__table-cell:last-child {
    padding-right: min(3.56vw, 32px);
}

.menu__table-header {
    font-weight: var(--weightM);
}

.menu__table-cell {
    font-weight: var(--weightR);
}

@media (max-width: 575px) {
    .menu {
        padding: 64px 0;
    }

    .menu__title {
        font-size: 3rem;
    }

    .menu__table {
        margin-top: 30px;
        font-size: 1.3rem;
        line-height: 1.5;
    }

    .menu__table-header,
    .menu__table-cell {
        padding: 12px 0;
        vertical-align: middle;
    }

    .menu__table-header:first-child,
    .menu__table-cell:first-child {
        padding-left: 0;
    }

    .menu__table-header:last-child,
    .menu__table-cell:last-child {
        padding-right: 0;
    }
}


/* INFO
-------------------------------------- */
.information {
    padding: min(11.11vw, 100px) 0 min(8.89vw, 80px);
    background-color: var(--keyColorB);
}

.information__title {
    color: var(--keyColorA);
    font-family: "Lato", serif;
    font-size: min(6.67vw, 6rem);
    font-weight: var(--weightR);
    text-align: center;
    letter-spacing: var(--lsWideB);
}

.information__salon-name {
    margin-top: min(5.33vw, 48px);
    color: #fff;
    font-size: min(2.44vw, 2.2rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
}

.information__details {
    margin-top: min(3.56vw, 32px);
    color: #fff;
    font-size: min(2vw, 1.8rem);
    font-weight: var(--weightR);
    text-align: center;
    line-height: var(--lineHeightA);
    letter-spacing: var(--lsWideA);
}

.information__details span {
    display: inline-block;
    margin-right: 1em;
}


.information__map-wrapper {
    margin: min(7.11vw, 64px) auto 0;
    max-width: 1200px;
}

.information__status {
    margin: min(7.11vw, 64px) auto;
    width: min(44.44vw, 400px);
    color: var(--keyColorA);
    font-size: min(3.11vw, 2.8rem);
    font-weight: var(--weightM);
    text-align: center;
    letter-spacing: var(--lsWideA);
    line-height: min(7.11vw, 64px);
    background-color: #fff;
    border-radius: 100vh;
}

.information__social-list {
    display: flex;
    justify-content: center;
    gap: min(5.56vw, 50px);
    margin-top: min(8.89vw, 80px);
}

.information__social-item {
    width: min(5.56vw, 50px);
}

@media (max-width: 575px) {
    .information {
        padding: 64px 0 50px;
    }

    .information__title {
        font-size: 3rem;
    }

    .information__salon-name {
        margin-top: 32px;
        font-size: 1.8rem;
        line-height: var(--lineHeightA);
    }

    .information__details {
        margin-top: 24px;
        font-size: 1.4rem;
    }

    .information__details span {
        display: block;
        margin-right: 0;
    }

    .information__details span:not(:first-of-type) {
        margin-top: 8px;
    }

    .information__map-wrapper {
        margin: 40px auto 0;
    }

    .information__map {
        height: 300px;
    }

    .information__status {
        margin: 40px auto;
        width: 240px;
        font-size: 1.8rem;
        line-height: 48px;
    }

    .information__social-list {
        gap: 30px;
        margin-top: 50px;
    }

    .information__social-item {
        width: 40px;
    }
}


/* FOOTER
-------------------------------------- */
.footer {
    padding-bottom: min(8.89vw, 80px);
    text-align: center;
    background-color: var(--keyColorB);
}

.footer__logo-wrapper {
    margin: auto;
    width: min(20vw, 180px);
}

.footer__copyright {
    margin-top: min(4.44vw, 40px);
    color: #fff;
    font-family: var(--enText);
    font-size: min(1.44vw, 1.3rem);
    font-weight: var(--weightR);
    letter-spacing: var(--lsWideB);
}

@media (max-width: 575px) {
    .footer {
        padding-bottom: 64px;
    }

    .footer__logo-wrapper {
        width: 160px;
    }

    .footer__copyright {
        margin-top: 24px;
        font-size: 1.2rem;
    }
}