@charset "utf-8";

*, *::before, *::after {
    box-sizing: border-box;
}

.body{
    width: 100vw;
    font-family: Sen - 400, sen, こぶりなゴシック w3 jis2004, koburina gothic w3 jis2004;
    font-family: var(--font-primary, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", sans-serif);
    width: 100%;
    display: grid;
    grid-template-rows: 120px 1fr 1f;
    min-height: 100vh;
    margin: 0;
    letter-spacing: 0.1rem;
}

img{
    max-width: 100%;
}

li{
    list-style: none;
}

.header{
    position: sticky;
    background-color: #fff;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.header__inner{
    align-items: center; 
    width: 95%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 4fr;
    padding: 10px;
}


/* ヘッダー　ロゴ */
.header__title{
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    padding-top: 0px;
}



/* ヘッダー　全メニュー */
.header__nav{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
}

/* ヘッダー　左側メニュー */
.nav-left{
    display: grid;
    align-items: center; 
    text-align: center;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.nav-left__item_ja-text{
    display: block;
    padding-bottom: 3px;
    font-size: 0.5rem;
}




/* ヘッダー　右側メニュー */
.nav-right{
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; 
}

.nav-right__tel-time{
    padding-right: 10%;
    text-align: right;
}

.nav-right__tel{
    display: block;
    padding-bottom: 3px;
    font-size: 1.2rem;
}

.nav-right__time{
    font-size: 0.9rem;
}

.nav-right__reserve{
    padding-left: 30px;
}


.reserve-btn {
    display: flex; /* フレックスボックスを使用 */
    flex-direction: column; /* フレックスの方向を縦に */
    justify-content: center; /* 垂直方向の中央揃え */
    align-items: center; /* 水平方向の中央揃え */
    background-color: #2c2c2c;
    width: 7rem;
    height: 7rem;
    border-radius: 50%;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1rem;

    transition: background-color 0.3s ease;
}

.reserve-btn:hover {
    background-color: darkblue;
}

.reserve-btn__ja-text, 
.reserve-btn__en-text {
    display: block; /* 各spanをブロック要素にして縦に並べる */
    text-align: center;
    font-size: 0.75rem;
}

.reserve-btn__ja-text {
    margin-bottom: 0.5rem; /* 日本語テキストと英語テキストの間隔を調整 */
}


.main{
    width: 100%;
}


/* トップ */
.top{
    padding: 30px;
    position: relative;
}

.background{
    height: 40vw;
}

.background__img{
    object-fit: cover;
    opacity: 0.2;
    width: 100%;
    height: 100%;
}

.slides{
    position: absolute;
    width: 80%;
    top: 0;
    left: 10%;
}

.slides__pic{
    position: absolute;
    width: 33%;
    height: 100%;
}

.slides__pic img{
    opacity: 0.7;
}

.slides__pictures_first{
    top: -200px;
    left: 0;
}

.slides__pictures_second{
    width: 25%;
    top:80px;
    left: 40%;
}

.slides__pictures_third{
    top: -200px;
    right: 0;
    width: 22%;
}


.top__text{
    position: absolute;
    top: 30vw;
    left: 63vw;
    font-size: 0.8rem;
    letter-spacing: 0;
}

.top__btn{
    position: absolute;
    top: 30vw;
    right: 80vw;

}

.top__btn_info{
    padding: 15px;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    border-radius: 50% 50% 0 0;
    text-align: center;
    background-color: #fff;
    box-shadow: 2px 2px 5px #2c2c2c;
} 

.top__btn_info .reserve-btn{
    width: 10rem;
    height: 10rem;
}


.top__btn_info .reserve-btn__ja-text, 
.top__btn_info .reserve-btn__en-text {
    font-size: 1rem;
}


.top__btn_text {
    background-color: #fff;
    text-align: center;
    width: calc(10rem + 30px); /* 幅の指定を修正 */
    line-height: 1.3rem;
    box-shadow: 
        2px 2px 5px #2c2c2c,   /* 通常のぼかし付きシャドウ（下と左右のみ） */
        0px -3px 0px transparent;  /* 上側にぼかしなしかつ透明 */
}


.top__btn_tel{
    font-size: 1.2rem;
    padding-top: 10px;
    padding-bottom: 10px;
}

.top__btn_text::before{
    background-color: #fff;
}



/* コンセプト */
.concept{
    margin-top: 50px;
    background-color: #f5f7f9;
    padding-top: 200px;
    width: 100%;
}

.section-item{
    position: relative;
    display: flex;

}

.section-item_reverse{
    flex-direction: row-reverse;
}

.section__textbox, .section__imgbox{
    width: 50%;
}

.section__title{
    font-size: 4.5rem;
    font-weight: bold;
}

.section__textbox{
    padding: 0 5%;
}

.section__textbox_tilte p.section__text:first-of-type {
    padding: 20px 0;
    font-size: 2rem;
}


.section__img{
    position: relative;
    object-fit: cover;
    max-width: 100%;
    max-height: 100%;
}


.section-item-1{
    height: 700px;
}

.section__img_img1{
    top: 100px;
    left: 10vw;
    width: 80%;
    height: 40%;
    padding-right: 3%;
}

.section__img_img2{
    top:50px;
    width: 50%;
    height: 50%;
    padding-right: 3%;
}

.section__img_img3{
    top:-220px;
    right: -100px;
    width: 70%;
    height: 100%;
    padding-right: 3%;
}

.section-item_text3{
    position: relative;
    top: 0px;
    left: 20%;
}




.section-item_text4{
    position: relative;
    top: 80px;
    right: 0%;
    width: 40%;
}

.section__text_color{
    position: relative;
    top: 100px;
    left: -7%;
    color: rgb(183, 200, 205);
}

.section__img_img4{
    top:20px;
    left: 25%;
    width: 80%;
    height: 70%;
    padding-right: 3%;
}

.section__img_img5{
    top:-200px;
    left: -20%;
    width: 20%;
    height: 50%;
    padding-right: 3%;
}

.section__img_img6{
    top:-20px;
    width: 90%;
    height: 100%;
    padding-right: 3%;
}

.section-item_text5{
    position: relative;
    top: 120px;
    left: 10%;
}


/* about us */
.about-us{

    height: 720px;
    background-image: url(./img/about-us.png);
    background-color:rgba(255,255,255,0.8);
    background-blend-mode:lighten;
}


.about-us .section__textbox{
    background-color: #fff;
    margin-left: 100px;
    padding-top: 150px;
    height: 100%;
    width: 70%;
}


.about-us__btn{
    padding-top: 100px;
}

.section-btn {
    display: inline-block;
    height: 60px;
    width: 250px;
    line-height: 50px;
    text-align: center;
    background-color: white;        /* 通常時の背景は白色 */
    color: black;                   /* 通常時のテキストは黒色 */
    border: 1px solid black;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s, color 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.section-btn::after {
    position: relative;
    right: -30px;
    content: '→';                  /* 矢印を追加 */
    display: inline-block;
    width: 30px;                    /* 丸の直径 */
    height: 30px;                   /* 丸の直径 */
    line-height: 30px;              /* 丸の中で中央に矢印を配置 */
    text-align: center;             /* 矢印を中央寄せ */
    background-color: white;        /* 通常時の丸の背景は白色 */
    color: black;                   /* 通常時の矢印は黒色 */
    border-radius: 50%;             /* 丸い形にする */
    border: 1px solid black;        /* 矢印部分の枠線 */
    transition: background-color 0.3s, color 0.3s;
}

.section-btn:hover {
    background-color: black;        /* ホバー時の背景は黒色 */
    color: white;                   /* ホバー時のテキストは白色 */
}

.section-btn:hover::after {
    background-color: black;        /* ホバー時の矢印周りの丸は黒色 */
    color: white;                   /* ホバー時の矢印は白色 */
    border: 1px solid white;
    transition: background-color, 0.3s, color 0.3s, border 0.3s;
}



/* メニュー */
.menu{

    position: relative;
    padding: 220px 0;
}

.menu .background{
    position: absolute;
    top: 50%;
    z-index: -10;
    height: 40vh;
}

.menu__inner{
    display: flex;
}

.menu__slide{
    display: flex;
}

.menu__title{
    position: absolute;
    top: 250px;
    left: 10%;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 4.5rem;
}

.menu__slide_img{
    width: 80%;
    position: absolute;
    top: 50px;
    left: 13%;
    z-index: -5;
}

.menu__slide_img-size{
    width: 30%;
}

.section__textbox_position{
    position: absolute;
    top: 140px;
    left: 40%;
    height: 300px;
    background-color: #fff;
    border: 1px solid #2c2c2c;
    opacity: .8;
    padding: 3% 5%;
}

.section__text_menu-text{
    line-height: 1.7rem;
}

.menu__btn{
    position: relative;
    top: 30%;
    right: 0px;
}


/* スタイリスト */
.stylist{
    margin-top: 200px;

}

.stylist_position{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.stylist .section__textbox{
    width: 80%;
}


/* .stylist .section__textbox::after {
    position: relative;
    top: -25px;
    right: -120px;
    content: '→';              
    display: inline-block;
    width: 30px;                   
    height: 30px;              
    line-height: 30px;            
    text-align: center;          
    background-color: white;     
    color: black;                
    border-radius: 50%;           
    border: 1px solid black;       
    transition: background-color 0.3s, color 0.3s;
} */









.slide-itembox{
    padding: 5% 5% 0 15%;
}

.slide-itembox___item{
    align-items: center;
}


.slide-itembox___item_group{
    width: 200px;
}

.slide-itembox__item_img{
    width: 100%;
    border-radius: 50%;
}

.slide-itembox__name{
    text-align: center;
    padding-top: 10px;
    font-size: 1.2rem;
}


.slider {
    width: 100%; /* 100% width of the parent */
    max-width: 98vw; /* Don't exceed the viewport width */
    overflow: hidden; /* Prevent content from overflowing */
    visibility: hidden;
}

.slider.slick-initialized{
    visibility: visible;
}


.slick-prev, .slick-next{
    z-index: 1000;
}

.slick-prev{
    left: 20px;
}

.slick-next{
    right: 20px;
}







/* サロン */
.salon-info{
    margin-top: 50px;
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: #d8dadc;
}


.salon__info_title{
    padding-top: 40px;
    font-weight: bold;
}


.section__img_salon-img1{
    width: 40%;
    position: absolute;
    top: 200px;
    right: 150px;
}

.section__text_line{
    line-height: 1.7rem;
}



/* カレンダー */
.schedule{
    background-color: #d8dadc;
}

.schedule__h2{
    position: relative;
}

.schedule__title{
    position: absolute;
    top: 30px;
    left: 10%;
    transform: rotate(180deg);
    writing-mode: vertical-rl;
    font-size: 4.5rem;
}


.calendar {
    width: 50%;
    margin: 50px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}


.calendar_box {
    background-color: #c9cbd1;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
}


#month {
    font-size: 24px;
    font-weight: bold;
}
  
.week {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
}

.day {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 10px;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.day:hover {
    background-color: #c9cbd1;
    color: #fff;
    cursor: pointer;
}

.disabled {
    color: #bdbdbd;
    pointer-events: none;
}




/* フッター */
.footer {
    padding: 2% 0;
    text-align: center;
    background-color: #444140;
}


.footer .section__textbox{
    color: #fff;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 5%;
}

.footer .section__title{
    padding-top: 60px;
    padding-bottom: 40px;
}

.footer__btn-box{
    display: flex;
    justify-content: center;
}


.footer__reserve{
    padding-bottom: 30px;
}

.reserve__btn{
    margin: 0 2%;
    padding: 10px 50px;
    width: 100%;
    border: 1px solid #fff;
}



.footer__icon{
    font-size: 2rem;
    padding-bottom: 30px;
}


.footer__nav{
    color: #fff;
    text-align: left;
    display: flex;
    justify-content: space-between;
}

.footer__nav_left, .footer__nav_right{
    width: 45%;
    padding-left: 10%;
}

.footer__nav_list li{
    padding-bottom: 15px;
}


@media screen and (max-width: 1250px) {
    html{
        font-size: 10px;
    }

    .responsive1000-display-none{
        display: none;
    }

    .nav-right{
        display: grid;
        grid-template-columns: 1fr 3fr;
        align-items: right; 
    }

    .header__nav{
        grid-template-columns: 3.5fr 1fr;
    }

    .footer{
        min-height: 10vh;
    }
}


@media screen and (max-width: 768px) {
    html{
        font-size: 14px;
    }

    .header__title{
        font-size: 1rem;
    }

    .nav-left__item_en-text{
        font-size: 0.8rem;
    }

    .responsive768-display-none{
        display: none;
    }

    
    .section-item{
        display: inline-block;
    }

    .concept .section__textbox, .concept .section__imgbox{
        width: 100%;
        text-align: center;
    }

    .section__imgbox .section__img{
        width: 30%;
    }

    .section-item_text3{
        position: static;
    }
    
    .concept{
        margin-top: 50px;
        padding-top: 50px;
    }

    .slides__pictures_first{
        top: 0px;
        left: 15%;
    }
    
    .slides__pictures_second{
        width: 35%;
        top:20px;
        left: 55%;
    }

    .slide-itembox__item_img{
        width: 50%;
        margin-left: 50px;
    }

    .concept .section__img_img1{
        top: 50px;
        left: 0%;
        width: 60%;
    }

    .concept .section__img_img2{
        top: 100px;
        left: -50px;
        width: 20%;
    }

    .section-item_text4{
        width: 100%;
        top: -12%;
        padding-left: 40%;
    }

    .concept .section__img_img4{
        top: -50px;
        left: -150px;
        width: 35%;
    }


    .concept .section__img_img5{
        top: -220px;
        left: -250px;
        width: 25%;
    }

    .about-us .section__textbox{
        margin: 0 auto;
        padding-top: 100px;
        text-align: center;
    }

    .about-us__btn{
        margin: 0 auto;
    }

    .section-btn{
        width: auto;
    }

    .menu__btn{
        top: 20%;
    }



    .salon-info .section-item{
        text-align: center;
        width: 100%;
    }

    .salon-info .section__textbox{
        width: 100%;
    }

    .footer{
        min-height: 40vh;
    }



/* ハンバーガーメニュー */
    #drawer_toggle {
        z-index: 200;
        box-sizing: border-box;
        position: absolute;
        top: 0px;
        right: 50px;
        display: inline-block;
        width: 60px;
        height: 60px;
    }
    #drawer_toggle span {
        position: absolute;
        top: 19px;
        left: 17px;
        display: inline-block;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        vertical-align: top;
    }
    #drawer_toggle span:nth-child(2) {
        margin-top: 10px;
    }
    #drawer_toggle span:last-child {
        margin-top: 20px;
    }

    .nav-right__reserve{
        display: none;
    }



    .header .header__nav{
        display: none;
        position: fixed;
        top: 50px;
        width: 100vw;
        height: 100vh;
        background: #fff;
        opacity: 0.9;
    }

    .header .header__nav1{
        display: block;
        position: fixed;
        top: 50px;
        width: 100vw;
        height: 100vh;
        background: #fff;
        opacity: 0.9;
    }

    .header__nav .nav-left{
        position: relative;
        top: 0;
        left: 0;
        transform: unset;
    }

    .header__nav .nav-left__item{
        display: inline-block;
        position: absolute;
    }

    .header__title{
        font-size: 2rem;
    }

    .header__inner{
        grid-template-columns: 1fr 1fr;
    }

    .header__nav .nav-left__item:first-child{
        top: 10vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(2){
        top: 20vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(3){
        top: 30vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(4){
        top: 40vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(5){
        top: 50vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(6){
        top: 60vh;
        left: 30%;
    }

    .header__nav .nav-left__item:nth-child(7){
        top: 70vh;
        left: 30%;
    }


    .nav-left__item_ja-text{
        font-size: 1rem;
    }

    .nav-left__item_en-text{
        font-size: 2rem;
    }
}



#drawer_toggle.open span {
    top: 29px;
    left: 14px;
    width: 35px;
    margin: 0;
}

#drawer_toggle.open span{
    top: 29px;
    left: 14px;
    width: 35px;
    margin: 0;
}

#drawer_toggle.open span:first-child{
    transform: rotate(45deg);
}

#drawer_toggle.open span:nth-child(2){
    display: none;
}

#drawer_toggle.open span:last-child{
    transform: rotate(-45deg);
}




