@charset "utf-8";

/* about */
.subPageSp {
    display: block;
    width: 100vw;
    margin: 0px auto;
}

.subPagePc {
    display: none;
}

.title--about {
    color: #4D3F35;
    text-align: center;
    font-family: "Marcellus";
    font-size: clamp(25px, 8vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.45rem;
    margin-top: 45px;
}

.about__img {
    display: block;
    margin: 45px auto 0px;
    width: 89.6vw;
    max-width: 400px;
}

.title--aboutPc {
    display: none;
}

.about_detail {
    color: #242424;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 4.266666666666667vw, 16px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    margin: 15px auto 0px;
    width: fit-content;
}

.point {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.point01 {
    margin: 60px 5.2% 0px;
    padding: 20px 2.1%;
    max-width: 480px;
    background-color: #FCF7F0;
    border-radius: 10px;
}

.point__number {
    color: #242424;
    font-family: "Marcellus";
    font-size: clamp(11px, 4.266666666666667vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24rem;
}

.number {
    color: #242424;
    font-family: "Noto Serif JP";
    display: inline-block;
    margin-left: 10px;
}

.point__title {
    text-align: center;
}

.point__title h3 {
    color: #242424;
    font-family: "Noto Serif JP";
    font-size: clamp(13px, 5.333333333333333vw, 18px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-align: center;
    display: inline-block;
    border-bottom: 1px solid rgba(180, 160, 147, 0.80);
    margin-top: 25px;
}

.point__text {
    color: #242424;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 4.266666666666667vw, 16px);
    font-size: 16px;
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    margin: 25px auto 0px;
    max-width: 320px;
}

.point__img01 {
    width: 72px;
    height: 69px;
    display: block;
    margin: 25px auto 0px;
}

.point02 {
    margin: 25px 5.2% 0px;
    padding: 20px 2.1%;
    max-width: 480px;
    background-color: #FCF7F0;
    border-radius: 10px;
}

.point__img02 {
    width: 129px;
    height: 83px;
    display: block;
    margin: 20px auto 0px;
}

.section__title--SalonGallery {
    margin-top: 80px;
    color: #4D3F35;
    text-align: center;
    font-family: "Marcellus";
    font-size: clamp(25px, 8vw, 30px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.45rem;
}

.swiper {
    width: 94.1vw;
    height: auto;
    margin: 35px auto 0px;
}

.swiper-button-prev {
    width: 10px;
    height: 18px;
    color: #4D3F35;
}

.swiper-button-next {
    width: 10px;
    height: 18px;
    color: #4D3F35;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0px 0px 0px 10px;
    background: #333;
}

.swiper_img1 {
    display: block;
    margin: 0px auto;
    width: 80.3vw;
    height: auto;
    cursor: pointer;
}

.swiper_img2 {
    display: block;
    margin: 0px auto;
    width: 80.3vw;
    height: auto;
    cursor: pointer;
}

.swiper_img3 {
    display: block;
    margin: 0px auto;
    width: 80.3vw;
    height: auto;
    cursor: pointer;
}

.swiper_img4 {
    display: block;
    margin: 0px auto;
    width: 80.3vw;
    height: auto;
    cursor: pointer;
}

/* scroll */
.about_contents {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.about_contents.visible {
    opacity: 1;
    transform: translateY(0px);
}

.point01 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.point01.visible {
    opacity: 1;
    transform: translateY(0px);
}

.point02 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.point02.visible {
    opacity: 1;
    transform: translateY(0px);
}

.salonGallery {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s, transform 1s;
}

.salonGallery.visible {
    opacity: 1;
    transform: translateY(0px);
}

/* modal window */
/* modal1 */
.img_modal-1 {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 63, 53, 0.90);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.img_modal-1 p {
    color: #FCF7F0;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 3.733333333333333vw, 14px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    padding: 10px 2.67%;
    max-width: 500px;
}

.img_modal-1.open {
    display: flex;
}

@keyframes imgFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.img_modal-1.open .modal_photo {
    animation: imgFadeIn 0.6s ease;
}

/* modal2 */
.img_modal-2 {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 63, 53, 0.90);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.img_modal-2 p {
    color: #FCF7F0;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 3.733333333333333vw, 14px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    padding: 10px 2.67%;
    max-width: 500px;
}

.img_modal-2.open {
    display: flex;
}

@keyframes imgFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.img_modal-2.open .modal_photo {
    animation: imgFadeIn 0.6s ease;
}

/* modal3 */
.img_modal-3 {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 63, 53, 0.90);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.img_modal-3 p {
    color: #FCF7F0;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 3.733333333333333vw, 14px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    padding: 10px 2.67%;
    max-width: 500px;
}

.img_modal-3.open {
    display: flex;
}

@keyframes imgFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.img_modal-3.open .modal_photo {
    animation: imgFadeIn 0.6s ease;
}

/* modal4 */
.img_modal-4 {
    display: none;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(77, 63, 53, 0.90);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.img_modal-4 p {
    color: #FCF7F0;
    font-family: "Noto Sans JP";
    font-size: clamp(11px, 3.733333333333333vw, 14px);
    font-style: normal;
    font-weight: 350;
    line-height: normal;
    padding: 10px 2.666666666666667%;
    max-width: 500px;
}

.img_modal-4.open {
    display: flex;
}

@keyframes imgFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.img_modal-4.open .modal_photo {
    animation: imgFadeIn 0.6s ease;
}

/* tab 769px */
@media screen and (min-width:769px) {
    .subPageSp {
        display: none;
    }

    .subPagePc {
        display: block;
        width: 100vw;
        max-width: 100%;
        margin: 0px auto;
    }

}