@charset "UTF-8";
*{
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: Chathura;
    src: url(../../font/Chathura/Chathura-Bold.ttf);
}

@font-face {
    font-family: Noto_Sans_JP;
    src: url(../../font/Noto_Sans_JP/static/NotoSansJP-Regular.ttf);
}

body {
    background-color: rgb(238, 250, 215);
}


.header-flexbox {
    display: flex;
    width: 100%;
    height: 9vw;
    padding: 0% 1%;
    position: fixed;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 100;
}

h1 {
    width: 20%;
    margin-left: 5%;

}

h1 img {
    width: 100%;
}

.header-flexbox nav {
    width: 55%;
    margin-top: 3.5%;
    margin-left: 13%;
}

.header-flexbox nav ul {
    display: flex;
    list-style-type: none;
}

.header-flexbox nav ul li {
    margin-right: 5%;
}
.header-flexbox nav ul li a {
    width: fit-content;
    display: block;
    text-align: center;
    text-decoration: none;
    line-height: 1.5;
    font-family: Chathura;
    font-size: 3.8vw;
    color: #333;
    transition: 0.5s;
}

.header-flexbox nav ul li a:hover {
    color: #b9b9b9;
    transition: 0.5s;
}

header .sns-icon {
    display: none;
    width: 5%;
    margin-top: 0.7%;
    margin-right: 2.5%;
}

.topvisual {
    background-image: url(../../images//hairstyle.jpg);
    background-size: cover;
    width: 100%;
    height: 30vw;
    margin-bottom: 5%;
}

/* トップに戻る */
#page-top {
    display:none;    
}


/* メイン */

main h2 {
    width: fit-content; 
    margin-left: 10%;
    letter-spacing: 0.3em;
    font-family: Chathura;
    font-size: 7vw;
    color: #333;
}

main h3 {
    width: fit-content; 
    margin-left: 10%;
    margin-bottom: 7%;
    letter-spacing: 0.1em;
    font-family: Noto_Sans_JP;
    font-weight: 100;
    font-size: 2vw;
    color: #505050;
}

/* ふわっと出す */
.box {
    opacity: 0;/* ふわっと出てくるときに透明から→可視化したいので最初は透明 */
    transition: 1s;/* 時間をかけてフワッと出てきてほしいので時間指定している */
    transform: translateY(20px);
}

.isAnimate {
    opacity: 1;/*elemというクラス名を付けた要素が画面内に入ったときに可視化する */
    transform: translateY(0px);/* elemというクラス名を付けた要素が画面内に入ったときに
    下から上に少し移動させている */
  }


main section{
    width: 85%;
    margin-top: 1%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 15%;
}

main section .style-box {
    display: flex;
    gap: 2%;
    margin-bottom: 2%;
}



main section .style-box img {
    width: 25%;
    height: 27vw;
    object-fit: cover;
}




/* footer */
footer {
    width: 100%;
    /* height: 30vw; */
    padding: 8% auto;
    background-color: #4b4a4a;
}

footer .logo {
    width: 25%;
    padding-top: 5%;
    margin-left: auto;
    margin-right: auto;
}

footer .logo img {
    width: 100%;  
    margin-bottom: 2%; 
}

footer .logo p {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.3em;
    line-height: 1.5;
    font-family: Chathura;
    font-weight: 400;
    font-size: 3vw;
    color: #ffffff;
}


/* snsアイコン */
footer .sns-icon {
    display: block;
    width: 19%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto; 
}


footer .sns-icon .fa-instagram {
    font-size: 3.5vw;
    color: #ffffff;
    margin-left: 2%;
}

footer .sns-icon .fa-facebook {
    font-size: 3.5vw;
    color: #ffffff;
    margin-left: 16%;
    margin-right: 16%;
}

footer .sns-icon .fa-square-x-twitter {
    font-size: 3.5vw;
    color: #ffffff;
}

.footer-line {
    width: 90%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    border-bottom: solid 0.5px #ffffff ;
}

/* フッターナビ */
.footer-flexbox nav {
    width: 70%;
    margin-top: 4%;
    margin-left: auto;
    margin-right: auto;
}

.footer-flexbox nav ul {
    display: flex;
    gap: 7%;
    list-style-type: none;
}

.footer-flexbox nav ul li a {
    width: fit-content;
    display: block;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 1.9;
    font-family: Chathura;
    font-size: 3.8vw;
    color: #ffffff;
    transition: 0.5s;

}

.footer-flexbox nav ul li a:hover {
    color: #999898;
    transition: 0.5s;
}


/* 予約・採用 */
.reserve-box {
    display: block;
    gap: 5%;
    width: 50%;
    margin-top: 2%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5%;
}

.reserve-box p {
    display: block;
    width: 90%;
}

.reserve-box p a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    letter-spacing: 0.1em;
    line-height: 2;
    font-family: Noto_Sans_JP;
    font-weight: 300;
    font-size: 2.3vw;
    border: solid 0.2px #ffffff;
    color: #fffefe;
    transition: 0.5s;
}

.reserve-box p a:nth-of-type(1) {
    margin-top: 5%;
}

.reserve-box p a:hover {
    background-color: #ffffff;
    color: #222222;
    transition: 0.5s;
}





footer p small {
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 3%;
    letter-spacing: 0.2em;
    line-height: 1.5;
    font-size: 1.5vw;
    color: #ffffff;
}

