@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&family=Noto+Serif+JP:wght@200..900&family=Shippori+Mincho&display=swap");
:root {
    --font-color_ff: #fff; /* フォントカラーを白に設定 */
    --font-color_4d: #4d4d4d; /* フォントカラーをグレーに設定 */
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--font-color_4d);
    font-size: clamp(12px, 1vw, 16px);
    font-family:"Shippori Mincho", serif;
    scroll-behavior: smooth;
  }

::marker {
    font-size: 0;
}

/* 共通 */

.no_link{
    pointer-events: none;
}

.m_5{
    margin-bottom: 5rem;
}
.m_2{
    margin-bottom: 2rem;
}
.m_1{
    margin-bottom: 1rem;
}
.w80{
  width: 80%;
}
.w60{
    width: 60%;
}
.w20{
    width: 20%;
}

@media (900px <= width) {
    .w80_pc{
        width: 80%;
      }
}
.w50 {
  width: 50%;
}
.w40{
    width: 40%;
}
.w34{
    width: 34%;
}

ul,p {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
  display: block;
}
.f_24 {
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  margin-top: 20px;
  margin-bottom: 30px;
}
.f_18{
    font-size: 18px;
}
.f_16{
    font-size: 16px;
}
.f_14{
    font-size: 14px;
}


picture,
img {
  display: block;
  max-width: 100%;
  width: 100%;
  margin: 0;
}

.d_f{
    display: flex;
}

.pc_none{
    display: none;
}

/* ヘッダー */
header-wrapper {
    position: fixed;
    box-shadow: 1px 0 5px #ececec;
    z-index: 100;
    background-color: #fff;
    top: 0;
    left: 0;
}

.icon_phone a {
    display: flex;
    align-items: center;
    justify-content: center;
}
.st0{fill:#4B4B4B;}

@media (width < 1000px) {
.sp_barg_Nav .icon_phone .st0 {
    fill: #fff;
}
.top_salon .icon_phone a{
    justify-content: center;
}
}

/* TB SP */
@media (min-width: 601px) and (max-width: 900px) {
    header-wrapper{
        height: 100px;
        width: 100%;
    }
    main {
        margin-top: 100px;
    }
}
/* sp */
@media (width < 600px) {
    .pc_none{
        display: block;
    }
    header-wrapper{
        height: 56px;
    }
main {
    padding-top: 40px;
}
.w80{
    width: 90%;
  }
}

header h1{
    width: calc(100% / 2);
    margin: 0 auto;
}

header nav{
    padding: 1rem 2rem 2rem;
}
header nav li {
    margin: .5rem 0 1rem;
}
#menu-drawer {
    position: relative;
    height: 800px;
}

.time_open {
    border-bottom: 1px solid #4d4d4d;
    margin-bottom: 2rem;
    text-align: center;
}
.onlin_shop a {
    background-color: #f5f5f5;
    padding: 0.5rem 1rem;
    border-top: 1px solid #9d9d9d;
    border-bottom: 1px solid #9d9d9d;
}
@media (width < 1000px) {
    #menu-drawer{
        height: 100vh;
    }
    .time_open {
        border-bottom: 1px solid #ffffff;
    }
    .time_open span{
        color: #fff;
    }
}

/* クラフト　バナー */
.craft-line {
    width: 100%;
    position: absolute;
    bottom: 0;
    margin: 0;
}

/* ナビ　開閉 */
/* 初期状態で非表示 */
.menu_drawer_list {
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* チェックされた場合に表示 */
.accordion-toggle:checked + label + .menu_drawer_list,
.accordion-toggle_b:checked + label + .menu_drawer_list {
    display: block;
    padding: 1rem;
    border: 1px solid #4b4b4b;
}

.menu_drawer_list li a {
    color: #fff;
    font-size: 14px;
}
/* ラベルのスタイル */
.button_a label,
.button_b label {
    display: block;
    cursor: pointer;
}
/* sp */
@media (width < 900px) {
    .sp_none{
        display: none;
    }
    .button_a label,
    .button_b label {
        color: #fff;
    }
    .accordion-toggle:checked + label + .menu_drawer_list,
    .accordion-toggle_b:checked + label + .menu_drawer_list {
        border: 1px solid #ffffff;
    }

}

input#toggle-salon,
input#toggle-salon_b {
    display: none;
}

/* 開閉時のアイコンやスタイルを追加する場合 */
.button_a label::after,
.button_b label::after {
    content: "＋";
    float: right;
    transition: transform 0.3s ease;
}

.accordion-toggle:checked + label::after,
.accordion-toggle_b:checked + label::after {
    transform: rotate(180deg);
    content: "－";
}


.sns_botm {
    justify-content: space-between;
    width: 80%;
    margin: .5rem auto 1rem;
    gap: 1rem;
}
.sns_botm li {
    margin: 0;
    padding: 0;
    /* width: clamp(50%, 2vw, 33%); */
    width: calc(100% / 4);
}
.sns_botm img {
    /* width: 50%;
    margin: 0 auto; */
}

/* トリミング　テキスト */
.menu_drawer_list .corse_menu_option li a {
    color: #4d4d4d;
    font-size: revert;
    text-align: right;
}

/* ここまで　ナビ　開閉 */


/* pc */
@media (900px <= width) {
header-wrapper {
    width: 20%;
    height: 100%;
    padding: 1rem 0 0;
    overflow-y: auto;
}
summary.header__icon {
    display: none;
}

header-wrapper a:hover,
.footer__info a:hover,
.attention a:hover{
    text-decoration: underline;
}

header h1 img{
    width: 60%;
    margin: 0 auto;
}
}
/* TB */
@media (min-width:600px) and (max-width:900px) {
    .sp_barg_Nav {
        top: 97px;
    }
    }
    @media (width < 600px) {
        .sp_barg_Nav {
            top: 54px;
        }
    }

/* sp */
@media (width < 900px) {
    *{
        font-size: 14px;
      }
    header {
        display: flex;
        align-items: center;
        position: relative;
    }
    summary.header__icon {
        width: 5%;
        position: absolute;
        left: 2rem;
        top: 1.5rem;
    }
    
/* 初期状態：ナビが左側に隠れる */
.sp_barg_Nav{
    order: 3;
    position: absolute;
    background: #fff;
    /* left: -500px; */
    width: 100%;
    height: 100vh;
    background-color: #747474;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    display: none;
    overflow: scroll;
}
.sp_barg_Nav li,
.sp_barg_Nav li a{
    color: #fff;
}

header h1{
        order: 2;
    }

    header h1 img {
        width: 34%;
        margin: 1rem auto;
    }

    /*  開閉ナビ　初期状態ではメニューとクローズアイコンを非表示 .sp_barg_Nav,*/
    .icon {
        cursor: pointer;
        transition: transform 0.3s ease; /* 任意のアニメーション */
    }
    
    .icon-close {
        display: none; /* 初期状態で非表示 */
    }
    
    .header__icon[aria-expanded="true"] .icon-hamburger {
        display: none; /* メニューが開いたらハンバーガーを非表示 */
    }
    
    .header__icon[aria-expanded="true"] .icon-close {
        display: block; /* メニューが開いたら×を表示 */
    }
    .menu_drawer_list .corse_menu_option li a {
        color: #ffffff;
    }
    
    
}

/* バナー　リンクエリア */
.top_bnr {
    padding: 3rem 0;
    position: relative;
    z-index: 10;
    background-color: #f5f5f5;
    border-top: 1px solid #e0e4e8;
}
.bana-ran {
    max-width: 73%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0;
}
.bana-ran li {
    list-style: none;
    width: calc(97% / 3);
    margin-bottom: 1rem;
}

/* pc */
@media (900px <= width) {
    .craft-line_link_sp {
        display: none;
    }
    #top_index .top_bnr {
        margin-top: 33%;
        border-top:0;
        }
}
/* sp */
@media (width < 900px) {
    .bana-ran {
        max-width: 80%;
    }
    .bana-ran li {
        width: 100%;
    }
    
}

/* 右下　予約 */
.yoyaku p{
    position: fixed;
    background-color: #70727e;
    bottom: 2%;
    right: 2%;
    width: 100px;
    height: 100px;
    z-index: 50;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0px 0px 8px rgba(0, 0, 0, 1);
}
.yoyaku p a{
    font-size: 16px;
    text-align: center;
}


/* フッター */
footer{
    background-color: #fff;
    padding: 1rem;
    position: relative;
    z-index: 10;
    }
    footer .footer__log{
        width: 10%;
        max-width: 130px;
    }
    .copyright__content {
        justify-content: center;
    }
    .footer__copyright {
        margin: 3rem 0 0;
    }
    .copyright__content, .copyright__content a {
        font-size: 12px;
        color: #959595;
    }

    /* pc */
    @media (900px <= width) {
        .footer__d_f {
            display: flex;
            align-items: flex-start;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .footer__info {
            width: 50%;
        }
        .footer__info a{
            font-size: 12px;
        }
        
        .footer__info li {
            width: calc(100% / 2);
            margin: .5rem 0;
        }
        .footer__info li:nth-of-type(1){
            order: 1;
        }
        .footer__info li:nth-of-type(2){
            order: 3;
        }
        .footer__info li:nth-of-type(3){
            order: 5;
        }
        .footer__info li:nth-of-type(4){
            order: 7;
        }
        .footer__info li:nth-of-type(5){
            order: 2;
        }
        .footer__info li:nth-of-type(6){
            order: 4;
        }
        .footer__info li:nth-of-type(7){
            order: 6;
        }

    }

/* sp */
@media (width < 900px) {
    footer .footer__log{
        width: 30%;
        margin: 0 auto;
    }
    .footer__info {
        text-align: center;
        margin: 1rem 0 0;
    }
    .footer__d_f li {
        margin-bottom: 1rem;
    }
}

/* 別窓 アイコン表示　*/
.new_win a{
    display: flex;
}
.new_win a::after {
    content: "";
    margin-left: 5px;
    width: 12px;
    display: inline-block;
    background: url(/img/new_win.png) no-repeat;
    height: auto;
    background-size: contain;
}

/* sp */
@media (width < 900px) {
    footer .new_win a{
        justify-content: center;
    }
    .sp_barg_Nav .new_win a::after{
        background: url(/img/new_win_sp_nav.png) no-repeat;
        background-size: contain;
    }
}

select#lang-select {
    cursor: pointer;
    border: 1px solid #70727e;
    padding: 0.3rem 1rem;
    margin: 0 0 0 1rem;
    text-align: center;
}
@media (width < 900px) {
select#lang-select {
    border-color: #ffffff;
}
}




