@charset "utf-8";

/* =========================
Header
========================= */
.salon-header {
    width: 100%;
    background: #fffaf3;
    border-bottom: 1px solid #eadfce;
}

.salon-header-inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.salon-logo a {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #5b4a3f;
    text-decoration: none;
}

.salon-header-btns {
    display: flex;
    gap: 12px;
}

.salon-header-btn {
    min-width: 140px;
    padding: 12px 18px;
    border-radius: 999px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.salon-header-btn--line {
    background: #6fa86f;
    color: #fff;
}

.salon-header-btn--contact {
    background: #d9a76c;
    color: #fff;
}

.salon-header-btn:hover {
    opacity: 0.8;
}

.logo-sp {
    display: none;
}


@media screen and (max-width: 767px) {

    .salon-header-inner {
        padding: 14px 16px;
    }

    .salon-logo {
        width: 200px;
    }

    .salon-logo img {
        width: 100%;
        display: block;
    }

    .salon-header-btns {
        display: block;
    }

    .salon-header-btn--contact {
        display: none;
    }

    .salon-header-btn--line {

        width: 120px;
        height: 42px;

        padding: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 12px;
        font-weight: 700;

        border-radius: 999px;
    }

    .salon-header-btn--line .pc-text {
        display: none;
    }

    .salon-header-btn--line .sp-text {
        display: inline;
    }

    .logo-pc {
        display: none !important;
    }


}

/* =========================
FV
========================= */
.fv {
    width: 100%;
    background: #fefaf2;
}

.fv-inner {
    max-width: 1680px;
    margin: 0 auto;
}

.fv img {
    width: 100%;
    display: block;
}

@media screen and (max-width:767px) {
    .fv {
        width: 100%;
        background: #fff;
    }
}

/* =========================
Concept
========================= */

.concept {
    background: #fff;
    padding: 100px 0;
}

.concept .inner {
    max-width: 1280px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title-jp {
    display: block;
    font-family: 'Zen Old Mincho', serif;
    font-size: 38px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #4f443c;
    margin-bottom: 10px;
}

.section-title-en {
    display: block;
    font-size: 13px;
    letter-spacing: 0.2em;
    color: #b7a794;
}

.concept-box {
    display: flex;
    align-items: center;
    gap: 60px;
}

.concept-photo {
    width: 55%;
}

.concept-photo img {
    width: 100%;
    border-radius: 30px;
}

.concept-content {
    width: 45%;
}

.concept-content h3 {
    font-size: 38px;
    font-family: 'Zen Old Mincho', serif;
    line-height: 1.6;
    color: #4d433a;
    margin-bottom: 50px;
}

.concept-content>p {
    margin-bottom: 40px;
}

.concept-point-wrap {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.concept-point {
    flex: 1;
    background: #fefaf2;
    border: 1px solid #ede5d8;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
}

.concept-point h4 {
    font-size: 18px;
    color: #7f9270;
    margin-bottom: 10px;
}

.concept-point p {
    font-size: 14px;
    line-height: 1.8;
}

.concept-icon {
    margin-bottom: 15px;
    text-align: center;
}

.concept-icon .material-symbols-outlined {
    font-size: 38px;
    color: #7f9270;
    font-variation-settings:
        'FILL' 0,
        'wght' 300,
        'GRAD' 0,
        'opsz' 48;
}

@media screen and (max-width:767px) {

    .concept {
        padding: 30px 0;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .section-title-jp {
        font-size: 28px;
    }

    .concept-box {
        display: block;
    }

    .concept-photo {
        width: 85%;
        margin: 0 auto 30px;
    }

    .concept-content {
        width: 100%;
    }

    .concept-content h3 {
        font-size: 22px;
        margin-bottom: 20px;
        text-align: center;
    }

    .concept-point-wrap {
        display: block;
        margin-top: 30px;
    }

    .concept-point {
        width: 100%;
        margin-bottom: 15px;
    }

    .concept-point:last-child {
        margin-bottom: 0;
    }

    .concept-point h4 {
        font-size: 20px;
    }

    .concept-point p {
        font-size: 12px;
    }

}


/* =========================
Menu
========================= */

.menu {
    position: relative;
    background: #faf5ee;
    padding: 60px 0;
}

.section-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.menu-list {
    display: flex;
    gap: 30px;
}

.menu-box {
    width: calc(33.333% - 20px);
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.menu-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.menu-box h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    padding: 25px 20px 15px;
    color: #4f443c;
}

.menu-box p {
    padding: 0 20px 25px;
    text-align: center;
    font-size: 14px;
}

.menu-price {
    width: 80%;
    margin: 0 auto 30px;
    background: #f4eadc;
    border-radius: 999px;
    text-align: center;
    padding: 12px;
    font-weight: 700;
    color: #6c5a4f;
}

.wave-top,
.wave-bottom {
    line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
    display: block;
    width: 100%;
    height: 80px;
}

.menu {
    background: #faf5ee;
    padding: 100px 0;
}

@media screen and (max-width:767px) {

    .menu {
        padding: 40px 0;
    }

    .menu-wave svg {
        height: 25px;
    }

    .menu-list {
        display: block;
    }

    .menu-box {
        width: 100%;
        margin-bottom: 25px;
    }

    .menu-box:last-child {
        margin-bottom: 0;
    }

    .menu-box h3 {
        font-size: 22px;
    }

}

/***************************
ギャラリー
***************************/
.gallery {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
}

.gallery-slider .slick-slide {
    margin: 0 5px;
}

.gallery-slider .slick-list {
    margin: 0 -5px;
}

.gallery-slider img {
    width: 100%;
    display: block;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

/* =========================
REASON
========================= */

.reason {
    background: #f8f4ed;
    padding: 100px 0;
}

.reason-list {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 50px;
}

.reason-box {
    flex: 1;
    text-align: center;
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e6ddd0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon .material-symbols-outlined {
    font-size: 38px;
    color: #b89a6c;
}

.reason-box h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 22px;
    font-weight: 500;
    color: #4f443c;
    margin-bottom: 15px;
    line-height: 1.5;
}

.reason-box p {
    font-size: 14px;
    line-height: 1.9;
    color: #6d6158;
}

@media screen and (max-width:767px) {

    .reason {
        padding: 70px 0;
    }

    .reason-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
        margin-top: 40px;
    }

    .reason-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }

    .reason-icon .material-symbols-outlined {
        font-size: 30px;
    }

    .reason-box h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .reason-box p {
        font-size: 12px;
        line-height: 1.7;
        text-align: left;
    }

}

/* =========================
SALON SPACE
========================= */

.salon-space {
    background: #fff;
    padding: 100px 0;
}

.salon-space-wrap {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-top: 50px;
}

.salon-space-left {
    width: 60%;
}

.salon-space-right {
    width: 40%;
}

.salon-space-photo img,
.salon-space-right img {
    width: 100%;
    display: block;
    border-radius: 20px;
}

.salon-space-text {
    margin-top: 25px;
    line-height: 2;
    color: #6b5c52;
}

.salon-space-right img {
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width:767px) {

    .salon-space {
        padding: 70px 0;
    }

    .salon-space-wrap {
        display: block;
        margin-top: 40px;
    }

    .salon-space-left,
    .salon-space-right {
        width: 100%;
    }

    .salon-space-text {
        margin: 20px 0 30px;
        font-size: 14px;
        line-height: 1.9;
    }

}


/* =========================
STAFF
========================= */

.staff {
    background: #f8f4ed;
    padding: 100px 0;
}

.staff-list {
    display: flex;
    gap: 30px;
    margin-top: 50px;
}

.staff-box {
    flex: 1;
    background: #fff;
    border: 1px solid #ede5d8;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
}

.staff-photo {
    width: 180px;
    margin: 0 auto 20px;
}

.staff-photo img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
}

.staff-job {
    font-size: 13px;
    color: #a48c6b;
    margin-bottom: 10px;
}

.staff-box h3 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 26px;
    font-weight: 500;
    color: #4f443c;
    margin-bottom: 15px;
}

.staff-box p {
    font-size: 14px;
    line-height: 1.9;
    color: #6d6158;
}

@media screen and (max-width:767px) {

    .staff {
        padding: 70px 0;
    }

    .staff-list {
        display: block;
        margin-top: 40px;
    }

    .staff-box {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        margin-bottom: 20px;
        padding: 20px;
    }

    .staff-box:last-child {
        margin-bottom: 0;
    }

    .staff-photo {
        width: 90px;
        flex-shrink: 0;
        margin: 0;
    }

    .staff-content {
        flex: 1;
    }

    .staff-job {
        margin-bottom: 5px;
        font-size: 12px;
        text-align: left;
    }

    .staff-box h3 {
        font-size: 20px;
        margin-bottom: 8px;
        text-align: left;
    }

    .staff-box p {
        font-size: 13px;
        line-height: 1.7;
        text-align: left;
    }

}


/* =========================
FAQ
========================= */


/* =========================
CTA
========================= */

.cta {
    background: #fff;
    padding: 100px 0;
}

.cta-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 35px 40px;

    background: #f7f4ec;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-photo {
    width: 180px;
    flex-shrink: 0;
}

.cta-photo img {
    width: 100%;
    display: block;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 32px;
    font-weight: 500;
    color: #4f443c;
    margin-bottom: 15px;
}

.cta-content p {
    line-height: 2;
    color: #6b5c52;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 260px;
    height: 65px;

    background: #8d9873;
    color: #fff;

    border-radius: 999px;

    font-size: 18px;
    font-weight: 700;

    transition: .3s;
}

.cta-btn:hover {
    opacity: .8;
}

@media screen and (max-width:767px) {

    .cta {
        padding: 70px 0;
    }

    .cta-inner {
        display: block;
        padding: 30px 20px;
        text-align: center;
        margin: 0 15px;
    }

    .cta-photo {
        width: 100%;
        margin: 0 auto 20px;
    }

    .cta-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .cta-content p {
        font-size: 14px;
        line-height: 1.9;
        margin-bottom: 25px;
    }

    .cta-btn {
        width: 100%;
        min-width: auto;
        height: 60px;
        font-size: 16px;
    }

}


/* =========================
ACCESS
========================= */

.access {
    background: #f8f4ed;
    padding: 100px 0;
}

.access-inner {
    max-width: 1280px;
}

.access-wrap {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.access-map {
    width: 45%;
}

.access-map iframe {
    width: 100%;
    height: 100%;
    min-height: 500px;
    border: none;
    border-radius: 20px;
}

.access-info {
    width: 55%;
}

.access-row {
    display: flex;
    border-bottom: 1px solid #e7dfd3;
    padding: 18px 0;
}

.access-label {
    width: 120px;
    font-weight: 700;
    color: #7d6d5f;
}

.access-text {
    flex: 1;
}

.access-text.tel {
    font-size: 28px;
    font-weight: 700;
    color: #4f443c;
}

.access-photo {
    margin-top: 30px;
}

.access-photo img {
    width: 100%;
    border-radius: 20px;
    display: block;
}

.access-car {
    margin-top: 20px;
    padding: 20px;
    background: #faf5ee;
    border: 1px solid #e8dece;
    border-radius: 15px;
}

.access-car strong {
    display: block;
    margin-bottom: 10px;
    color: #4f443c;
}

.access-car p {
    line-height: 1.8;
    font-size: 14px;
}

@media screen and (max-width:767px) {

    .access {
        padding: 70px 0;
    }

    .access-wrap {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }

    .access-info {
        width: 100%;
        order: 1;
    }

    .access-map {
        width: 100%;
        order: 2;
    }

    .access-map iframe {
        min-height: 320px;
    }

    .access-row {
        display: block;
        padding: 12px 0;
    }

    .access-label {
        width: auto;
        margin-bottom: 5px;
    }

    .access-text.tel {
        font-size: 22px;
    }

}


/* =========================
FOOTER
========================= */

.footer {
    background: #fff;
    border-top: 1px solid #ece5da;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 40px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-logo img {
    max-width: 380px;
    display: block;
}

.footer-info {
    text-align: right;
}

.footer-tel {
    font-size: 28px;
    font-weight: 700;
    color: #4f443c;
    margin-bottom: 5px;
}

.footer-time {
    font-size: 13px;
    color: #777;
}

.copyright {
    background: #8d9873;
    color: #fff;
    text-align: center;
    padding: 12px 15px;
    font-size: 12px;
}

@media screen and (max-width:767px) {

    .footer-inner {
        display: block;
        text-align: center;
        padding: 35px 20px;
    }

    .footer-logo img {
        margin: 0 auto 20px;
        max-width: 90%;
    }

    .footer-info {
        text-align: center;
    }

    .footer-tel {
        font-size: 24px;
    }

}

/* =========================
SP Fixed Button
========================= */

.sp-fixed-btn {
    display: none;
}

@media screen and (max-width:767px) {

    .sp-fixed-btn {
        display: flex;
        position: fixed;
        left: 0;
        bottom: 0;
        width: 100%;
        z-index: 9999;
    }

    .sp-fixed-btn a {
        width: 50%;
        height: 60px;

        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        color: #fff;
        text-decoration: none;

        font-size: 12px;
        font-weight: 700;
    }

    .sp-fixed-btn i {
        font-size: 18px;
        margin-bottom: 3px;
    }

    .sp-fixed-line {
        background: #8d9873;
    }

    .sp-fixed-contact {
        background: #b89a6c;
    }

}