@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-white: #fffffc;
    --primary-beige: #F8f8ed;
    --primary-darkGray: #666666;
    --primary-blueGreen: #7cc7ce;
    --primary-brown: #A59772;
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        'Noto Sans JP',
        Lato,
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-darkGray, #414141);
    background-color: var(--primary-white, #fffffc);
    line-height: 1.5;
    letter-spacing: 0.1rem;
}

.container {
    max-width: 390px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--primary-white);
}

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

/*==========================
header
==========================*/
.site_header {
    display: block;
    background-color: var(--primary-white);

}

.header_topic {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    padding: 20px 5.12%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    background-color: transparent;
    /* 初期は透過 */
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 1000;
}

.header_topic.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    /* 半透明の白 */
    backdrop-filter: blur(8px);
    /* ぼかし */
}

.salon_logo {
    width: 130px;
    height: 42px;
}

.close_btn {
    width: 32px;
    height: 32px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

.nav_btn {
    width: 32px;
    height: 32px;
    cursor: pointer;
    display: block;
}

/* .nav初期表示 */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1000;
}

/* 表示状態：opacity を 1 にしてふわっと表示 */
.nav.nav_active {
    opacity: 1;
    visibility: visible;
}

.nav_header {
    padding: 20px 5.12%;
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic {
    color: var(--primary-beige)
}

.nav_list {
    margin-top: 150px;
    display: flex;
    flex-direction: column;
    padding-left: 30px;
}

.nav_item a {
    display: flex;
    align-items: center;
    font-size: 2.4rem;
    color: var(--primary-darkGray);
    text-decoration: none;
    margin-bottom: 30px;
    gap: 15px;
}

.icon {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

/*==========================
Article header
==========================*/
.mv {
    position: relative;
    width: 100%;
    height: 40vh;
    overflow: hidden;
}

.mv-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: scale(1.05);
    animation: fadeZoom 12s ease-in-out infinite;
    opacity: 0;
}


.mv-slide1 {
    background-image: url("../images/mainvisual_salon.png");
    animation-delay: 0s;
}

.mv-slide2 {
    background-image: url("../images/mainvisual_chair.png");
    animation-delay: 4s;
}

.mv-slide3 {
    background-image: url("../images/mainvisual_plants.png");
    animation-delay: 8s;
}

@keyframes fadeZoom {
    0% {
        opacity: 0;
        transform: scale(1.1);
    }

    5% {
        opacity: 1;
    }

    35% {
        transform: scale(1.3);
    }

    45% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 0;
        transform: scale(1.3);
    }
}

/*==========================
About
==========================*/

.about_section {
    background-color: var(--primary-white);
    padding: 50px 0;

}

.scissor_comb {
    width: 60px;
    height: 50px;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
}

.sec_ttl_about_en {
    margin: 0;
    color: var(--primary-blueGreen);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;

}

.sec_ttl_about_jp {
    margin-top: 20px;
    color: var(--primary-darkGray);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
}

.slider-container {
    margin-top: 60px;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    width: 1200px;
    animation: scrollRightToLeft 40s linear infinite;
}

.slider-track img {
    display: block;
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    border: none;
}

/* アニメーション：右→左 */
@keyframes scrollRightToLeft {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.image-with-caption {
    text-align: center;
    margin: 35px 0;
    padding: 0 40px 0;
    position: relative;
}

.image-with-caption img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.caption-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.caption-line {
    width: 1px;
    height: 24px;
    background-color: #7CC7CE;
    margin-bottom: 8px;
    margin-top: -21px;
}

.caption-text {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.5;
    max-width: 90%;
}

.about_subtitle {
    margin: 80px 30px 0;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;

}

.about_txt {
    margin: 50px 40px;
    font-size: 1.6rem;
    font-weight: 400;

}

.about_description__txt:first-of-type {
    margin-top: 0;
}

.about_description__txt {
    margin-top: 20px;
}

/*==========================
resarvation
==========================*/

.reservations_section {
    background-image: url(../images/reserve_background.png);
    background-size: cover;
    background-repeat: no-repeat;
    width: 390px;
    height: 400px;
}


.reserve_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    padding-top: 30px;
    align-items: center;
}

.sec_ttl_reservations_en {
    margin: 35px 0 0;
    color: var(--primary-blueGreen);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;

}

.sec_ttl_reservations_jp {
    color: var(--primary-darkGray);
    text-align: center;
    margin-top: 20px;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
}

.reservations_txt {
    padding: 30px 40px 40px;
    font-size: 1.6rem;
    font-weight: 400;
}

/*==========================
concept
==========================*/
.concept_section {
    padding-top: 40px;
}

.heart {
    width: 75px;
    height: 45px;
    margin: 0 auto;
    align-items: center;
}

.sec_ttl_concept_en {
    color: var(--primary-blueGreen);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;

}

.sec_ttl_concept_jp {
    color: var(--primary-darkGray);
    margin-top: 20px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
}

.copy_of_concept {
    margin: 40px 30px 40px;
    font-size: 1.8rem;
    font-weight: 400;
    text-align: center;
}

.concept_txt {
    margin: 50px 40px 40px;
    font-size: 1.6rem;
    font-weight: 400;

}

.concept_description__txt:first-of-type {
    margin-top: 0;
}

.concept_description__txt {
    margin-top: 20px;
}

.concept_photo {
    position: relative;
    height: 250px;
    margin-top: 70px;
}


.green_earth_photo {
    position: absolute;
    top: 0;
    right: 70px;
    width: 105px;
}

.shampoo_photo {
    position: absolute;
    top: 40px;
    left: 30px;
    width: 150px;
}

.hair_coloring_photo {
    position: absolute;
    top: 120px;
    right: 30px;
    width: 130px;
}

.viewmorebtn_blank {
    padding: 50px 60px;
}

.viewmorebtn {

    width: 245px;
    height: 50px;
    margin: 0 auto;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary-darkGray, #414141);
    background: var(--primary-white, #FFFFFC);
}

.viewmorebtn_txt {
    padding: 15px 0 17.5px;
    font-size: 1.2rem;
}

.blue_arrow {
    width: 20px;
    height: 20px;
    margin-left: 10px;
}

@keyframes slideFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.concept_photo>div {
    opacity: 0;
}

.green_earth_photo.animated {
    animation: slideFadeUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

.shampoo_photo.animated {
    animation: slideFadeUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

.hair_coloring_photo.animated {
    animation: slideFadeUp 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

/*==========================
menu
==========================*/
.menu_container {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
}

.menu_section {
    margin-top: 40px;
    padding: 60px 0 40px;
    background-color: var(--primary-beige);
}

.menu_icon {
    width: 60px;
    height: 50px;
    margin: 0 auto;
    margin-top: 30px;
    padding-right: 5px;
    align-items: center;
}

.sec_ttl_menu {
    text-align: center;
}

.sec_ttl_menu_en {
    margin: 20px 0 0 0;
    color: var(--primary-brown);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;

}

.sec_ttl_menu_jp {
    color: var(--primary-darkGray);
    margin-top: 20px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
}

.menu_area {
    background-color: var(--primary-beige);
    margin: 20px 0 0 0;
    padding: 30px 20px 30px;

}

.menu_area_white {
    background-color: var(--primary-white);
}

.menu_row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 30px;
    font-size: 1.3rem;
}

.menu_title {
    flex-shrink: 0;
    margin-right: 8px;
}

.menu_price {
    flex-shrink: 0;
    margin-left: 8px;
}

.ladies {
    padding: 30px 30px 30px;
    color: var(--primary-brown, #A59772);
    font-size: 2.4rem;

}

.ladies::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #cccccb;
    margin: 0 auto;
}


.mens {
    padding: 30px 30px 30px;
    color: var(--primary-brown, #A59772);
    font-size: 2.4rem;

}

.mens::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #cccccb;
    margin: 0 auto;
}


.other {
    padding: 30px 30px 30px;
    color: var(--primary-brown, #A59772);
    font-size: 2.4rem;

}

.other::after {
    content: '';
    display: block;
    height: 1px;
    background-color: #cccccb;
    margin: 0 auto;
}

.menu_row--last {
    padding-bottom: 40px;
}

/*==========================
access
==========================*/
.access_section {
    padding: 40px 0 30px 0px;
}

.access_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    padding-top: 30px;
    align-items: center;
}

.sec_ttl_access_en {
    margin: 32px 0 0;
    color: var(--primary-blueGreen);
    text-align: center;
    font-family: Lato;
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 700;

}

.sec_ttl_access_jp {
    color: var(--primary-darkGray);
    margin-top: 20px;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 500;
}

.access_txt {
    margin: 50px 40px 50px;
    display: block;
    text-align: center;
    font-size: 1.4rem;
}

.from_station {
    margin-top: 10px;
}

.googlemap {
    width: 100%;
    max-width: 600px;
    margin-top: 40px;
    aspect-ratio: 1 / 1;
}

.googlemap iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

.salon_information {
    margin-top: 60px;
    display: block;
    text-align: center;
    font-size: 1.4rem;
}

.regular_holiday {
    margin-top: 10px;
}

/*==========================
resavations
==========================*/
.reserve_section {
    background-image: url(../images/reserve_background2.png);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: 40px;
    padding-top: 30px;
    width: 100%;
    max-width: 390px;
    height: 558px;
}

.notes_on_reservations {
    display: block;
    text-align: center;
}

.accepted_by_phone_only {
    font-size: 14px;
    font-weight: 400;
    margin-top: 20px;
}

.tel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone_icon_photo {
    width: 36px;
    height: 36px;
    position: relative;
    top: 5px;

}

.phone_number {
    text-align: center;
    font-size: 33px;
    font-weight: 400;
    padding-left: 5px;

}

.phone_hours {
    font-size: 1.2rem;
}

/*==========================
footer
==========================*/

.footer_area {
    margin-top: 100px;
    padding: 80px 0;
    background-color: var(--primary-beige);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.container_footer {
    background-color: var(--primary-beige);
}

.salon_logo_footer {
    width: 290px;
    margin: 0 auto;
}

.notes_on_reservations {
    margin-top: 20px;
    line-height: 1.6;
}

.phone_icon_photo {
    width: 24px;
    height: 24px;
}

.footer_area>p:last-child {
    margin-top: 2rem;
    font-size: 0.875rem;
    color: #555;
}

/*==========================
Responsive Styles
==========================*/
@media screen and (max-width: 390px) {
    .right_column {
        display: none;
    }

    .left_column_copyright {
        display: none;
    }

}

@media screen and (max-width: 414px) {
    .site_header {
        margin-top: 66px;
    }
}

@media screen and (min-width: 415px) {
    .site_header {
        display: none;
    }

}

@media screen and (max-width: 767px) {
    .left_column {
        display: none;
    }

    .right_column {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    body {
        background-attachment: fixed;
        background-repeat: no-repeat;
        background-image:
            radial-gradient(at 20% 30%, hsla(187, 76%, 70%, 0.5) 0%, transparent 80%),
            radial-gradient(at 80% 40%, hsla(65, 35%, 90%, 0.4) 0%, transparent 70%),
            radial-gradient(at 50% 80%, hsla(172, 70%, 85%, 0.3) 0%, transparent 80%),
            radial-gradient(at 70% 70%, hsla(73, 77%, 82%, 0.25) 0%, transparent 100%),
            radial-gradient(at 10% 90%, hsla(60, 100%, 99%, 0.25) 0%, transparent 100%);
    }

    .right_column {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        align-items: center;

    }

    .right_column_logo {
        width: 240px;
        height: 100px;
        position: fixed;
        top: 7%;
        right: 1%;
        align-items: center;
        z-index: 999;
        min-height: 100vh;
    }

    .site_wrapper {
        display: flex;

    }

    .wrapper_with_shadow {
        max-width: 100%;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
        background: white;
        border-radius: 12px;
        overflow: hidden;
    }


    .nav_list {
        position: fixed;
        top: 35%;
        right: 6%;
        transform: translateY(-50%);
        z-index: 999;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav_jp {
        font-size: 2rem;
        font-weight: 500;
        text-align: right;
    }

    .nav_item a {
        display: block;
        text-align: center;
        color: var(--primary-darkGray);
        text-decoration: none;
    }

    .pagetop_item {
        position: fixed;
        bottom: -190px;
        list-style: none;
        z-index: 1000;
    }

    .pagetop_btn {
        width: 140px;
        height: 140px;
        border-radius: 50%;
        overflow: hidden;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        position: relative;
    }

    /* 背景画像 */
    .pagetop_btn .bg-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }

    /* 矢印 */
    .pagetop_btn .arrow {
        margin-top: 28px;
        position: relative;
        z-index: 1;
        animation: floatArrow 1.5s ease-in-out infinite;
    }

    .pagetop_btn .arrow img {
        width: 24px;
        height: auto;
    }

    /* ラベル */
    .pagetop_btn .label {
        position: relative;
        z-index: 1;
        font-size: 1.2rem;
        margin-top: 10px;
        color: var(--primary-darkGray);
        font-family: 'Lato', sans-serif;
        text-align: center;
    }

    @keyframes floatArrow {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-6px);
        }

        100% {
            transform: translateY(0);
        }
    }

    .since1902 {
        margin-top: 15px;
        text-align: center;
        color: black;
        font-size: 1.6rem;
        font-family: Lato;
        font-weight: 500;
        letter-spacing: 0.1rem;
    }

    .left_column {
        display: none;
    }
}

@media screen and (min-width: 950px) {

    .left_column {
        display: flex;
        justify-content: center;
        margin: 0 auto;
        align-items: center;

    }

    .left_column_logo {
        width: 240px;
        height: 100px;
        position: fixed;
        top: 45%;
        align-items: center;
        z-index: 999;
        min-height: 100vh;
    }

    .since1902 {
        margin-top: 15px;
        text-align: center;
        font-size: 1.6rem;
        font-family: Lato;
        font-weight: 500;
        letter-spacing: 0.1rem;
    }

    .left_column_copyright {
        width: 300px;
        height: 100px;
        position: fixed;
        bottom: -8%;
        left: 2%;
        z-index: 999;
    }

    .right_column_logo {
        display: none;
    }
}

