@charset "utf-8";

/*•---------------------------------------------------------------
••初期スタイル調整
---------------------------------------------------------------•*/
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family:"Noto Serif JP", serif;
}

img{
    max-width: 100%;
    height: auto;
}

body{
    line-height: 1.75;
    font-family: "Noto Serif", sans-serif;
    font-weight: 400;
    color: #040000;
    background-color:#e3e1da;
}

/*•---------------------------------------------------------------
••ナビゲーション
---------------------------------------------------------------•*/
nav{
    display: flex;
    justify-content: flex-end;
    margin: 20px 20px 0 0;
}
/* チェックボックスを隠す */
#menu-toggle{
    display: none;
}
/* メニューボタンの見た目（カーソルを指にする） */
.menu-btn{
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
}
/* 閉じるボタン（目次が開いた時、右上に表示されるmenu画像） */
.menu-content{
    position: fixed;
    top:0;
    left:0;
    width: 100%;
    height:100vh;
    background-color: rgba(244, 242, 238, 0.5);
    z-index:9999;
/* 最初は隠しておく */
    opacity: 0; 
    visibility: hidden;
    transition: opacity 0.4s ease,visibility 0.4s ease;
/* 目次を画面の真ん中に寄せる */
    display: flex;
    justify-content: right;
    align-items: center;
}
/* 目次の中のリスト */   
.menu-content ul{
        list-style: none;
        padding: 0;
        text-align: center;
}

.menu-content ul li{
    margin: 30px 0;
}

.menu-content ul li a{
    font-size: 12px;
    color: #787171;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'Times New Roman', Times, serif;
    transition: opacity 0.3s;
}

.menu-content ul li a:hover{
    opacity: 0.5;
}

#menu-toggle:checked~.menu-content{
    opacity: 1;
    visibility: visible;
}
nav img{
    width: 40px;
    height: auto;
    vertical-align: middle;
}

nav a img{
    width: 40px;
    height: auto;
}

nav img:hover{
    opacity: 0.7;
    box-shadow:2px 2px 2px 0px rgba(0, 0, 0, 0.3);
}

nav a{
    display: inline-block;
    vertical-align: middle;
}

/*•---------------------------------------------------------------
•ロゴ
---------------------------------------------------------------•*/
.header_logo{
    text-align: center;
    margin-top: 30px;
}
.header_logo img{
    width: 60px;
    height: auto;
}

/*•---------------------------------------------------------------
•メインビジュアル
---------------------------------------------------------------•*/
.main-visual{
    width: 100%;
    margin-top: 100px;
    text-align: center;
}
.main-visual img{
    width: 100%;
    display: block;
}

/*•---------------------------------------------------------------
•本文
---------------------------------------------------------------•*/
section{
    margin: 100px 45px;

}

h1 img{
    width: 150px;
    margin: 0 10px;
}

h2{
    font-size: 13px;
    font-weight: normal;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 50px;
    white-space: nowrap;
}

/*•
•1、コンセプト
---------------------------------------------------------------•*/
.concept p{
    font-size: 9px;
    text-align: center;
    line-height: 27px;
    font-weight: lighter;
    letter-spacing: .8px;
}

/*•
•２、アバウト　アス
---------------------------------------------------------------•*/
.about_us h1{
    text-align: right;
}

.about_us p{
    font-size: 9px;
    text-align: center;
    line-height: 27px;
    font-weight: lighter;
    letter-spacing: .8px;
}


/*•
•写真
---------------------------------------------------------------•*/
.photos img{
    width: 230px;
}

.photos{
    position: relative;
    width: 100%;
    height: 450px;
}

.img-flower{
    position: absolute;
    top:40px;
    right:20%;
    z-index: 1;
}

.img-scissors{
    display: none;
}

.img-coffee{
    position: absolute;
    top:250px;
}
/*•
•３、スタッフ
---------------------------------------------------------------•*/
.staff img{
    width: 150px;
}

.staff_introduce{
    display: flex;
}

.staff p{
    letter-spacing: 3px;
    font-size: 12px;
    font-weight: bold;
}

.staff .position{
    font-size: 11px;
    letter-spacing: 1.3px;
    margin: 60px 0 0 20px;
}

.staff .name{
    margin-top: 5px;
    margin-left:40px;
    white-space: nowrap;
}

.staff .wrap .logo_back{
    display: none;
}
/*•
•４、メニュー
---------------------------------------------------------------•*/
.menu{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}
.menu h1{
    text-align: right;
}

.menu ul li span{
    font-size: 10px;
    font-weight: 100;
}

.menu ul li{
    border-bottom: .05px solid rgba(0, 0, 0, 0.3);
    line-height:25px;
    padding-top: 30px;
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; 
}

.menu .etc{
    font-size: 10px;
    font-weight: 100;
    margin-top: 30px;
    text-align: right;
}

.menu .coupon{
    font-size: 7px;
    letter-spacing: 1.5px;
    margin-top: 10px;
}

.menu .coupon a:hover{
    color: #787171;
}

.menu .page_link p a img{
    width: 10px;
    margin-top: 20px;
    margin-left: 5px;
}
.menu .page_link{
    display: flex;
    justify-content: end;    
}

.menu .page_link a{
    text-decoration: none;
    color: black;
    font-weight: 100;
}

/*•
•店内写真
---------------------------------------------------------------•*/
.salon_photo{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

.salon_photo img{
    width: 100%;
    display: block;
}

/*•
•5.アクセス
---------------------------------------------------------------•*/
.access{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

.access .address{
    font-size: 9px;
    font-weight: 100;
    letter-spacing: 1px;
    width: 80%;
    margin: 0 auto;
}

.access .time{
    text-align: center;
    font-size: 9px;
    font-weight: 100;
    letter-spacing: 1px;
    text-align: center;
    position: relative;
    margin-top: 30px;
    padding: 15px 0;
    line-height: 24px;

}

.access .time::before,
.access .time::after{
    content:"";
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    height: .1px;
    width: 45%;
    background-color: black;

}

.access .time::before{
    top:0;
}

.access .time::after{
    bottom: 0;
}

.access .time span{
    text-align: right;

}

.access .map img{
    width: 75%;
    margin: 0 auto;
}

.access .map{
    text-align: center;
    margin: 30px 0 10px 0;
}

.access .button a{
    text-decoration: none;
    color: black;
    font-size: 7px;
    letter-spacing: 1px;
    font-weight: 100;
    border: .1px solid rgba(0, 0, 0, 0.3);
    padding: 4px 8px;
    border-radius: 7px;
}

.access .button a img{
    width: 9px;
    margin-left: 3px;
}

.access .button p{
    width: 80px;
    margin: 0 auto;
}

.access .button p a:hover{
    color: #787171;
}

/*•
•6.スタイル
---------------------------------------------------------------•*/
.style{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

.style h1{
    text-align: right;
}

.style .style_img{
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    list-style: none;
}

.style .style_img li img{
    width:100px;
    margin:0 5px;
}

.style p a{
    text-decoration: none;
    color: black;
    font-size: 7px;
    letter-spacing: 1px;
    font-weight: 100;
}
.style p a:hover{
    color: #787171;
}
.style p {
    text-align: right;
    margin: 20px;
}

.style p img{
    width: 8px;
    margin-left: 2px;
}

.style .coment{
    list-style: none;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 100;
    text-align: center;
}

.style .coment li{
    margin-bottom: 7px;
}

/*•
•7リクルート
---------------------------------------------------------------•*/
.recruit{
    width: 100%;
    margin: 0 auto;
    margin-top: 100px;
}

.recruit_main{
    background-image: url("../img/recruit_photo.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    color: #fff;
    position: relative;
}


.recruit p{
    position: absolute;
    bottom: 30px;
    right: 20px;
    font-size: 14px;
}





/*•---------------------------------------------------------------
•フッター
---------------------------------------------------------------•*/
footer p img{
    width: 80%;
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, filter 0.3s ease;
}

footer p img:hover{
    transform: translateY(-2px);
    filter: drop-shadow(0px 6px 10px rgba(0,0,0,0.25));
    opacity: 0.9;
}

.copy_right{
    height: 60px;
    background-color: #fff;
    font-size: 7px;
    font-weight: 100;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
}


@media screen and (min-width:768px){


/*•---------------------------------------------------------------
••ナビゲーション
---------------------------------------------------------------•*/
nav img{
    width: 50px;
    height: auto;
    vertical-align: middle;
}

nav a img{
    width: 50px;
    height: auto;
}

/*•---------------------------------------------------------------
•ロゴ
---------------------------------------------------------------•*/
.header_logo img{
    width: 80px;
    height: auto;
}

.header_logo{
    text-align: center;
    margin-top: 80px;
}

/*•---------------------------------------------------------------
•本文
---------------------------------------------------------------•*/
section{
    width: 60%;
    margin: 0 auto;
}

h1 img{
    width: 200px;
    margin-top: 200px;
    margin-bottom: 50px;
}

h2{
    font-size: 17px;

}

/*•
•1、コンセプト
---------------------------------------------------------------•*/
.concept p{
    font-size: 11px;
    line-height: 30px;
    letter-spacing: 1.6px;
}


/*•
•２、アバウト　アス
---------------------------------------------------------------•*/
.about_us p{
    font-size: 11px;
    line-height: 30px;
    letter-spacing:1.6px;
}

/*•
•写真
---------------------------------------------------------------•*/
.photos img{
    width: 300px;
}

.img-flower{
    position: absolute;
    top:100px;
    right:20%;
    z-index: 1;
}

.img-coffee{
    top:250px;
    left:20%
}

/*•
•３、スタッフ
---------------------------------------------------------------•*/
.staff_photo img{
    width: 200px;
}

.staff p{
    letter-spacing: 5px;
    font-size: 20px;
}

.staff .position{
    font-size: 14px;
    letter-spacing: 1.5px;
    margin: 60px 0 0 50px;
}

.staff .name{
    margin-top: 15px;
    margin-left:80px;
}

/*•
•４、メニュー
---------------------------------------------------------------•*/
.menu ul li span{
    font-size: 15px;
    font-weight: 100;
}
.menu ul li{
    line-height:50px;
    padding-top: 40px;
}

.menu .etc{
    font-size: 13px;
}

.menu .coupon{
    font-size: 9px;
}

.menu .page_link p a img{
    width: 11px;
}

/*•
•5.アクセス
---------------------------------------------------------------•*/
.access{
    margin-top: 0;
}
.access .address{
    font-size: 12px;
    letter-spacing: 2px;
    width: 80%;
    margin: 0 auto;
    text-align: left;
    display: block;
}

.access .time{
    font-size: 11px;
    position: relative;
    margin-top: 60px;
    padding: 30px 0;
    line-height: 30px;
}

.access .map{
    margin: 70px 0 10px 0;
}

.access .button a{
    font-size: 10px;
    letter-spacing: 1px;
    font-weight: 100;
    border: .1px solid rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 9px;
}

.access .button a img{
    width: 10px;
    margin-left: 3px;
}

.access .button p{
    width: 100%;
    display: inline-block;
    text-align: center;
}

/*•
•6.スタイル
---------------------------------------------------------------•*/
.style{
    margin-top: 0;
}

.style .style_img li img{
    width:200px;
    margin:0 5px;
}

.style p a{
    font-size: 9px;
}

.style p {
    margin: 25px;
}

.style p img{
    width: 9px;
}

.style .coment{
    font-size: 13px;
}

.style .coment li{
    margin-top: 15px;
}

/*•
•7リクルート
---------------------------------------------------------------•*/
.recruit{
    margin-top: 0px;
}

.recruit_main{
    height: 800px;

}


.recruit p{
    font-size: 17px;
}

/*•---------------------------------------------------------------
•フッター
---------------------------------------------------------------•*/
footer{
    margin-top: 100px;
}
footer p img{
    width: 60%;
}

.copy_right{
    font-size: 9px;
}
}

@media screen and (min-width:1025px){
/*•---------------------------------------------------------------
••ナビゲーション
---------------------------------------------------------------•*/
nav img{
    width: 60px;
}

nav a img{
    width: 60px;
}

/*•---------------------------------------------------------------
•ロゴ
---------------------------------------------------------------•*/
.header_logo img{
    width: 100px;
}

.header_logo{
    margin-top: 100px;
}

 /*•---------------------------------------------------------------
•メインビジュアル
---------------------------------------------------------------•*/
.main-visual{
    width: 50%;
    padding-top: 200px;
    margin: 0 auto;
}
.main-visual img{
    width: 100%;
    display: block;
}
   
/*•---------------------------------------------------------------
•本文
---------------------------------------------------------------•*/

section{
    width: 70%;
}

.section1-2{
    display: flex;
    gap: 300px;
    width: fit-content;
    margin: 0 auto;
}

.concept h1{
    text-align:left;
}

.concept p,.concept h2{
    text-align: left;
    white-space: nowrap;
}

.about_us h1{
    text-align:left;
}

.about_us p,.about_us h2{
text-align: left;
}

/*•
•写真
---------------------------------------------------------------•*/
.photos{
    margin-bottom: 100px;
}
.photos img{
    width: 350px;
}

.img-flower{
    position: absolute;
    top:200px;
    right:20%;
}

.img-coffee{
    top:200px;
    left:20%;
}

.img-scissors{
    display: block;
    margin: 0 auto;
    margin-top:200px;
}
/*•
•３、スタッフ
---------------------------------------------------------------•*/
.staff{
    position: relative;
}
.staff img{
    width: 200px;
}

.staff p{
    letter-spacing: 4px;
    font-size: 18px;
    font-weight: bold;
}

.staff .position{
    font-size: 13px;
    letter-spacing: 1.5px;
    margin: 60px 0 0 80px;
}

.staff .name{
    margin-top: 12px;
    margin-left:100px;
}

.staff .wrap{
    display: flex;
    justify-content: space-between;
}

.staff .wrap .logo_back{
    display: block;
    width: 400px;
    opacity: 0.15;
    transform: rotate(12deg);
    position: absolute;
    right:40%;
    top: 300px;
}

/*•
•４、メニュー
---------------------------------------------------------------•*/
.menu h1 img{
    width: 200px;
    margin-top: 100px;
}
.menu{
    width: 100%;
    margin: 0 auto;

}
.menu h1{
    text-align: right;
    width: 84%;
}

.menu ul li span{
    font-size: 17px;
}

.menu ul li{
    line-height:60px;
    padding-top: 60px;
    width: 67%;
}

.menu .etc{
    font-size: 14px;
    width: 84%;
}

.menu .coupon{
    font-size: 11px;
    width: 34%;
}

.menu .page_link p a img{
    width: 11px;
}

/*•
•店内写真
---------------------------------------------------------------•*/
.salon_photo{
    display: none;
}

/*•
•5.アクセス
---------------------------------------------------------------•*/
.access{
    margin-top: 100px;
}

.access h1 img{
    margin-bottom: 0px;
}

.info{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 120px;
    margin-top: 50px;
}

.access .address{
    font-size: 12px;
    letter-spacing: 2px;
    text-align: left;
    width: 400px;
}

.access .time{
    font-size: 11px;
    margin-top: 60px;
    padding: 30px 0;
    line-height: 30px;
    text-align: center;
    position: relative;
    line-height: 30px;

}

.access .map img{
    width: 100%; 
    text-align: center;  
    padding: 0;
    max-width: 400px;
}

/*•
•6.スタイル
---------------------------------------------------------------•*/
.style h1{
    width: 84%;
}

.style .style_img li img{
    width:270px;
}

.style .style_img{
    justify-content:center;
}

.style p a{
    font-size: 11px;
}

.style p {
    margin: 30px;
    width: 90%;
}

.style .coment{
    font-size: 15px;
}

/*•
•7リクルート
---------------------------------------------------------------•*/
.recruit_main{
    width: 65%;
    display: block;
    margin: 0 auto;
}


/*•---------------------------------------------------------------
•フッター
---------------------------------------------------------------•*/

footer p img{
    width: 45%;
    padding: 5px 0;
}

.copy_right{
    font-size: 11px;
    height: 80px;
    margin-top: 20px;
}
}
