@charset "UTF-8";

body {
    background-color: #EEECDD;
    color: #3F3026;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after,
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: currentColor;
}

/* ヘッダー用 */
.header {
    height: 70px;
    background-color: #EEECDD;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}

.header-container {
    width: min(92%, 1080px);
    margin: auto;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 25px;
}

/* ナビゲーションボタン */
li.gnavi__list > a {
    font-family: 'Shippori Mincho', serif;
    font-weight: 500;
    font-size: 20px;
    color: #EEECDD;
}
li.gnavi__list > a.salon {
    font-size: 17px;
    color: #FFD43E;
}
.navbtn {
    padding: 0;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #3F3026;
    font-size: 30px;
}
.navbtn-hamburger {
    padding-top: 1px;
}
.open .navbtn {
    z-index: 110;
    color: #EEECDD;
}
.nav .fa-bars {
    display: revert;
}
.open .navbtn .fa-bars {
    display: none;
}
.navbtn .fa-times {
    display: none;
}
.open .navbtn .fa-times {
    display: revert;
}
/* ドロップダウンメニュー */
.dropdown__lists {
    /* text-align: center; */
}
.dropdown__lists li {
    padding-top: 20px;
    font-size: 20px;
    color: #EEECDD;
}
.dropdown__list > a::before {
    content: "・";
}
/* サロン情報 */
.salon_info {
    background-color: #EEECDD;
}
.salon_info h1 {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    padding-bottom: 20px;
    text-indent: 0.25em;
}
.salon_info_tel-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 270px;
    margin: 0 auto;
    margin-bottom: 12px;
}
.salon_info_hours-container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 47px;
    width: 270px;
    margin: 0 auto;
}
.salon_info-item {
    width: 100%;
}
.salon_info-item p {
    font-size: 12px;
}
.salon_info-item .tel {
    font-size: 15px;
    font-weight: 700;
}
.salon_info-item .tel::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 22px;
    padding-right: 5px;
    background-image: url(../images/common/tel.png);
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: text-top;
}
.salon_info-item table {
    font-size: 12px;
    width: 100%;
}
.salon_info-item th {
    text-align: left;
    line-height: 1.5;
}
.salon_info-item td {
    text-align: left;
    line-height: 1.5;
}
/* feb価格表 */
.price_feb {
    background-color: #EEECDD;
    padding-bottom: 50px;
}
.price_feb h2 {
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
    border-bottom: 1px solid #3F3026;
}
.price_feb-category {
    border-bottom: 1px solid #3F3026;
    padding: 15px 3%;
}
.price_feb-category h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}
.price_feb-category table {
    width: 100%;
    border-collapse: collapse;
}
.price_feb-category ul li {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    text-indent: -1em;
    padding-left: 1em;
}
.price_feb-category > .price-list .item {
    width: 80%;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: -0.05em;
}
.price_feb-category > .price-list .price {
    width: 20%;
    font-size: 14px;
    line-height: 1.5;
}
/* スタイリスト */
.stylist {
    background-color: #EEECDD;
    padding-bottom: 33px;
}
.stylist h2 {
    font-family: 'Shippori Mincho', serif;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    padding-bottom: 15px;
}
.stylist-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 11px;
}

.stylist-detail img {
    width: 100%;
}
.stylist-detail p {
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
}
.other_shop {
    background-color: #EEECDD;
    padding: 60px 0 75px 0;
}
.other_shop-container {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.other_shop-button a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 1em 0em;
    width: 336px;
    color: #EEECDD;
    background-color: #3F3026;
    border-radius: 35vh;
    font-size: 20px;
}
.sp-w35 {
    width: 35%;
}

/* 768px 以上 */
@media (min-width: 768px) {
    .header {
        height: 110px;
        font-size: 18px;
    }
    .navbtn {
        display: none;
    }
    .nav > ul {
        display: flex;
        gap: 40px;
        align-items: center;
    }
    li.gnavi__list > a {
        color: #3F3026;
        font-size: 18px;
    }
    li.gnavi__list > a.salon {
        color: #3F3026;
        font-size: 18px;
    }
    .gnavi__list .instagram {
        width: 50px;
    }
    /* ドロップダウンメニュー */
    .dropdown__list > a::before {
        content: "";
    }
    .dropdown__lists {
        visibility: hidden;
        opacity: 0;
        transition: all .3s;
        position: absolute;
        width: 141.61px;
        background-color: #3F3026;
        color: #ffffff;
        text-align: center;
    }
    .dropdown__lists li {
        font-size: 16px;
        padding-top: 25px;
    }
    .dropdown__lists li:last-child {
        padding-bottom: 25px;
    }
    .gnavi__lists li:not(:nth-child(3)):hover,
    .dropdown__lists li:hover {
        text-decoration: underline;
        text-underline-offset: 5px;
    }
    /* メニューにホバーしたら表示 */
    .gnavi__list:hover .dropdown__lists {
        visibility: visible;
        opacity: 1;
    }
    .gnavi__list .active {
        text-decoration: underline;
        text-underline-offset: 5px;
    }
    /* サロン情報 */
    .sp-w35 {
        width: 100%;
    }
    .salon_info h1 {
        font-size: 32px;
        font-weight: 700;
        padding-bottom: 36px;
    }
    .salon_info-item p {
        font-size: 18px;
    }
    .salon_info-item .tel {
        font-size: 22px;
    }
    .salon_info-item .tel::before {
        width: 32px;
        height: 32px;
    }
    .salon_info-item table {
        font-size: 18px;
    }
    .salon_info-item td {
        text-align: right;
    }
    .salon_info_tel-container {
        gap: 23px;
        width: 100%;
        margin-bottom: 16px;
    }
    .salon_info_hours-container {
        gap: 20px;
        padding-bottom: 66px;
        width: 80%;
        max-width: 500px;
    }
    .price_feb {
        padding-bottom: 88px;
    }
    .price_feb h2 {
        font-size: 40px;
        padding-bottom: 19px;
        border-bottom: none;
    }
    .price_feb-container {
        border: 1px solid #3F3026;
        border-radius: 20px;
        padding: 31px 89px 62px 89px;
    }
    .price_feb-category {
        display: flex;
        align-items: center;
        padding: 20px 0;
    }
    .price_feb-category h3 {
        font-size: 20px;
        font-weight: 700;
        line-height: 1;
    }
    .price_feb-category .title {
        width: 50%;
    }
    .price_feb-category .price {
        width: 50%;
    }
    .price_feb-category > .price-list .item {
        width: 78%;
        font-size: 16px;
    }
    .price_feb-category > .price-list .price {
        width: 22%;
        font-size: 16px;
        line-height: 1.5;
    }
    .price_feb-category ul li {
        font-size: 16px;
    }
    /* スタイリスト */
    .stylist-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px 22px;
    }
    .stylist h2 {
        font-size: 40px;
        padding-bottom: 35px;
    }
    .stylist-detail img {
        padding-bottom: 17px;
    }
    .stylist-detail p {
        font-size: 18px;
        font-weight: 500;
        line-height: 1;
    }
}

@media (max-width: 767px) {
    .nav {
        position: fixed;
        inset: 0 -100% 0 100%;
        z-index: 100;
        background-color: #31241D;
        transition: transform 0.3s;
    }
    .open .nav {
        transform: translate(-100%, 0);
    }
    .open body {
        overflow: hidden;
    }
    .nav > ul {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        height: 100%;
        gap: 50px;
        color: #ffffff;
        margin-left: 20%;
    }
    .gnavi__list_instagram {
        display: none;
    }
	.stylist-container .stylist-detail.empty {
		display: none;
	}	
}

@media (min-width: 960px) {
    .price_feb-category {
        padding: 20px 5%;
    }
    .other_shop-button a {
        padding: 1.25em 2em;
    }
}