@charset "UTF-8";

/*==========================
common
==========================*/

:root {
    --primary-white: #FFF;
    --primary-black: #2F2F2F;
    --primary-blackLow:  rgba(47, 47, 47, 0.74);
    --primary-glay: rgba(47, 47, 47, 0.80);
    --primary-beige: #EAEAE4;
    --primary-beigeSchool: rgba(219, 216, 206, 0.70);
    --primary-beigeSalon: rgba(238, 238, 238, 0.70);
    --primary-pink: #C48277;
    --primary-green: #356568;
    --primary-greenLow: rgba(53, 101, 104, 0.20);
    --secondary-green:rgba(0, 75, 50, 0.20);
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Kaku Gothic Antique",
        "Noto Serif JP",
        "serif";
    font-style: normal;
    color: var(--primary-black, #2F2F2F);
    background-color: var(--primary-beige, #EAEAE4);
    line-height: 1.5;
    font-weight: 400;
}

/* font */
// <weight>: Use a value from 200 to 900
// <uniquifier>: Use a unique and descriptive class name

.noto-serif-jp-<uniquifier> {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}

.zen-kaku-gothic-antique-regular {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-style: normal;
}
  
.zen-kaku-gothic-antique-medium {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 500;
    font-style: normal;
}
  
.zen-kaku-gothic-antique-bold {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 700;
    font-style: normal;
}
  
.marcellus-regular {
    font-family: "Marcellus", serif;
    font-weight: 400;
    font-style: normal;
}
 
/* common sp */
.uppercase {
    font-family: Marcellus;
    text-transform: uppercase;
}

.boldG {
    font-weight: 700;
}

.pcImg, 
.tbImg,
.pcSpan,
.pcBr {
    display: none;
}

/* common pc */
@media screen and (min-width: 1025px) {
    .pcImg,
    .pcBr {
        display: block;
    }

    .pcSpan {
        display: inline;
    }

    .spBr,
    .spSpan,
    .tbImg,
    .spImg {
        display: none;
    }
}
/* pc 1025px*/

/* common tb */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .tbImg {
        display: block;
    }

    .spBr,
    .spSpan,
    .spImg,
    .pcImg {
        display: none;
    }

    .spBr--tb {
        display: block;
    }
}
/* tb 768px-1024px */


/* fadeInアニメーション */
.fadeInTrigger{
	opacity: 0;
}

.txt__num {
    font-family: "Noto Serif JP",serif;
}

/* ===========================
header
============================*/
.header {
    display: flex;
    width: 100%;
    height: 81px;
    padding: 12px 0 13px 4.2%;
    align-items: center;
}

.logo__img {
    width: 229px;
}

/* ハンバーガーメニュー */
.open__btn {
	cursor: pointer;
    width: 24px;
    height: 24px;
    z-index: 9999;
    right: 4.2%;
    position: fixed;
    margin-bottom: 6px;
}

/*ボタン内側*/
.open__btn span {
    display: inline-block;
    transition: all .5s;/*アニメーションの設定*/
    position: absolute;
    width: 24px;
    height: 1.5px;
    background: var(--primary-black, #2F2F2F);
    transform: scaleY(0.5); /* 半分にして1px相当に */
    transform-origin: bottom;
}

.open__btn span:nth-of-type(1) {
	top:0px;
}

.open__btn span:nth-of-type(2) {
	top:8px;
}

.open__btn span:nth-of-type(3) {
	top:16px;
}

/*activeクラスが付与されると線が回転して×に*/
.open__btn.active span:nth-of-type(1) {
    top: 1px;
    transform: translateY(6px) rotate(-45deg);
    height: 1px;
    background: var(--primary-beige);
}

.open__btn.active span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}

.open__btn.active span:nth-of-type(3){
    top: 13px;
    transform: translateY(-6px) rotate(45deg);
    height: 1px;
    background: var(--primary-beige);
}

.nav {
    background: var(--primary-green);
    width: 100%;
    height: 845px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
    transform: translateY(-100%);
    transition: 0.4s;
    overflow: scroll;
}

.nav.active {
    transform: translateY(0);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav__item {
    color: var(--primary-beige);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 1.8px;
}

.nav__item--en {
    text-align: center;
    font-family: Marcellus;
    font-size: 1.8rem;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    font-weight: 400;
}

.accordion-area{
    list-style: none;
    /* width: 77.3%; */
    margin-top: 120px;
    margin-bottom: 40px;
}

.title__outer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    margin-left: 14px;
}

.title__outer img {
    width: 26px;
    height: 26px;
}

/*アコーディオンで現れるエリア*/
.boxA {
    display: none;/*はじめは非表示*/
	margin-top:30px;
}

.boxA__txt {
    margin-top: 18px;
}

.boxA__inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.boxA p {
    color: var(--primary-beige);
    text-align: center;
    font-family: "Noto Serif JP";
    font-size: 1.5rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-align: start;
}

.nav__item--03 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.nav__item--04 {
    margin-bottom: 40px;
}

/*activeクラスが付与されるとimgのみ回転*/
.title__outer.active img {
    transform: scale(1, -1);
}

.nav__item:hover,
.boxA p:hover {
    color: rgba(234, 234, 228, 0.45);
}

.sns__list {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.nav__menu .sns__list {
    padding-bottom: 60px;
}

.sns__item {
    width: 59px;
    height: 59px;
    padding: 14px 15px 15.971px 15px;
}

.sns__item img {
    width: 29px;
    height: 29px;
}

/* header pc */
@media screen and (min-width:1025px) {
    .header {
        height: 134px;
        padding: 28.4px 0 28.4px 6.2%;
    }
    
    .logo__img {
        width: 320px;
    }

    /* ハンバーガーメニュー */
    .open__btn {
        right: 6.2%;
        width: 36px;
        height: 36px;
    }

    /*ボタン内側*/
    .open__btn span {
        width: 36px;
    }
    
    .open__btn span:nth-of-type(2) {
        top:12px;
    }

    .open__btn span:nth-of-type(3) {
        top:24px;
    }

    /*activeクラスが付与されると線が回転して×に*/
    .open__btn.active span:nth-of-type(1) {
        top: 4px;
    }

    .open__btn.active span:nth-of-type(3){
        top: 16px;
    }

    .nav {
        width: 41%;
        height: 100vh;
        /* height: 890px; */
        display: flex;
        align-items: center;
        flex-direction: column;
    }
    
    .accordion-area li:nth-child(1) {
        margin-top: 177px
    }
}
/* pc 1025px */

/* header tb */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    /* ハンバーガーメニュー */
        .open__btn {
            right: 5.2%;
        }

        .header {
            padding: 12px 0 13px 5.2%;
        }

        .nav {
            /* width: 315px; */
            width: 40.9%;
            height: 100vh;
            /* height: 825px; */
        }

        .boxA {
            width: 95.3%;
            margin: 30px auto;
        }

        .accordion-area li:nth-child(1) {
            margin-top: 107px;
        }
}
/* tb 768px-1024px */

/* header カスタムブレイクポイント */
@media (min-width: 1025px) and (max-width: 1225px) {

    .boxA {
            width: 95.3%;
            margin: 30px auto;
        }

        .spBr--tb {
            display: block;
        }

}


/* ===========================
footer
============================*/
/*ボタンの形状*/
.float3{
	position: relative;
    transition: all .3s;
    display: flex;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary-beigeSchool);
    position: fixed;
    right: 4.2%;
    padding-bottom: 10px;
    bottom: 53px;
    z-index: 10;
} 

/*hoverをしたらボックスに影がつき、上に上がる*/
.float3:hover {
	bottom:52px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* topBtnスクロール一定位置で浮上 */
.body-in {
    position: relative;
}

.btn__top {
    width: 13.6px;
    height: 7.1px;
}

.footer__group {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__logo img {
    width: 231px;
    aspect-ratio: 3/2;
}

.footerlink__list {
    display: flex;
    gap: 14px;
    margin-top: 20px;
}

.salon__link {
    color: var(--primary-pink);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    display: inline-flex;
    padding: 2px 15px;
    justify-content: center;
    align-items: center;
    border-radius: 1px;
    border-bottom: 0.6px solid var(--primary-pink);
}

.salon__link:hover {
    border-bottom: none;
}

.school__link {
    color: var(--primary-green);
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    border-radius: 1px;
    border-bottom: 1px solid var(--primary-green);
    display: inline-flex;
    padding: 2px 7px;
    justify-content: center;
    align-items: center;
}

.school__link:hover {
    border-bottom: none;
}

.salonInfo {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
}

.salonInfo--01 {
    margin-top: 30px;
}

.salonInfo--02 {
    font-size: 1.5rem;
    margin-top: 4px;
}

.salonInfo--03 {
    margin-top: 5px;
}

.salonInfo--04,
.salonInfo--05 {
    color: var(--primary-blackLow);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.6px;
    display: block;
}

.salonInfo--04 {
    margin-top: 30px;
}

.salonInfo--05 {
    line-height: 1.8;
}

.contact__address a:hover {
    color: rgba(47, 47, 47, 0.45);
}

.copy {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.4px;
    display: flex;
    justify-content: center;
    margin: 41.5px auto 21.5px;
}

/* footer pc */
@media screen and (min-width:1025px) {
    .footer__logo img {
        width: 300px;
    }
    
    .footerlink__list,
    .salonInfo--01 {
        margin-top: 35px;
    }

    .salon__link {
        font-size: 1.6rem;
        padding: 4px 15px;
    }

    .school__link {
        font-size: 1.6rem;
        padding: 4px 15px;
    }

    .salonInfo,
    .salonInfo--04,
    .salonInfo--05  {
        line-height: 1.8;
    }
    
    .salonInfo--02,
    .salonInfo--03 {
        margin-top: 8px;
    }
    
    .salonInfo--04 {
        margin-top: 30px;
    }
    
    .copy {
        margin: 57.5px auto 21.5px;
    }
}
/* pc 1025px */

/* footer tb */
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .salon__link {
        padding: 4px 15px;
    }
    
    .school__link {
        padding: 4px 7px;
    }
    
    .salonInfo--01 {
        margin-top: 20px;
    }
    
    .salonInfo--02,
    .salonInfo--03 {
        margin-top: 8px;
    }

    .salonInfo .pcBr {
        display: none;
    }

    .salonInfo .spBr {
        display: block;
    }

    .copy {
        margin: 41.5px auto 21.5px;
    }
}
/* tb 768px-1024pxpx */