:root{
    --inner-width:1200px;
    --color-white:#ffffff;
    --color-black:#333333;
    --color-blue:#353569;
    --bg-lightblue:#e9e9f2;
    --sec-bg:#e7e7e7;
    --sec-margin:100px;
    --sec-padding:100px;
    --border:1px solid #999999;

    @media screen and (max-width: 767px){
        --inner-width:90%;
        --sec-margin:50px;
        --sec-padding:50px; 
        --block-margin:30px;       
    }

}

/**** googlefont ****/

.zen-old-mincho-regular {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .zen-old-mincho-medium {
    font-family: "Zen Old Mincho", serif;
    font-weight: 500;
    font-style: normal;
  }
  
  .zen-old-mincho-semibold {
    font-family: "Zen Old Mincho", serif;
    font-weight: 600;
    font-style: normal;
  }

/**** 共通 ****/

html{
    font-size:62.5%;
    scroll-behavior: smooth;
}

body{
    font-size:1.6rem;
    line-height: 1.5;
}

p{
    margin-bottom:16px;
}

p:last-child{
    margin-bottom:0;
}

a{
    text-decoration: none;
    color:var(--color-black);
}

.sec{
    margin-bottom:var(--sec-margin);
}

.sec.bg{
    min-width:var(--inner-width);
    background:var(--sec-bg);
    padding-top:var(--sec-padding);
    padding-bottom:var(--sec-padding);
}

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

.inner{
    width:var(--inner-width);
    margin:0 auto;
    padding:0 30px;
    box-sizing: border-box;
}

.sec h2.title{
    font-size:4rem;
    margin-bottom:30px;
    padding-top:120px;
    margin-top:-120px;
    display:flex;
    align-items: center;
}

.sec h2.title:before{
    content:"";
    display:inline-block;
    width:3%;
    height:3px;
    background:var(--color-black);
    margin-right:20px;
}

.sec h3.title{
    font-size:2.4rem;
    margin-bottom:24px;
}

.sec .txtarea p{
    line-height:2;
}

.pc_only{
    display:block;
}

.sp_only{
    display:none;
}

@media screen and (max-width: 767px){

    .inner{
        padding:0px;
    }
    
    .sec h2.title{
        font-size:2.6rem;
        margin-bottom:20px;
        padding-top:30px;
        margin-top:-30px;
    
    }
    
    .sec h3.title{
        font-size:2rem;
        margin-bottom:16px;
    }

    .pc_only{
        display:none;
    }
    
    .sp_only{
        display:block;
    }
    
    
}


/**** フェードイン ****/

.fadeIn {
    opacity: 0;
    transform: translate(0, 50%);
    transition: 2s;
  }
  .fadeIn.is-show {
    transform: translate(0, 0);
    opacity: 1;
  }



/**** ヘッダー ****/

header{
    margin:0 auto;
    background:rgba(0,0,0,0.8);
    min-width:var(--inner-width);
    position:absolute;
    width:100%;
}

header .flex{
    padding:10px 30px;
    align-items: center;
    box-sizing: border-box;
}

header h1.title{
    width:200px;
    height:48px;
}

header.fixed{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index: 100;
}

@media screen and (max-width: 767px){

    header{
        position: inherit;
    }

    header .inner.flex{
        padding:10px 0px;
    }  
    
    header h1.title{
        width:150px;
        height:36px;
    }
    

}

/**** ナビゲーション ****/

nav ul{
    list-style:none;
    width:800px;
}

nav ul li{
    text-align:center;
}

nav ul li a{
    color:var(--color-white);
}

nav ul li a span{
    display:block;
    font-size:1.4rem;
}

nav ul li.reserve{
    border:1px solid var(--color-white);
    padding:5px 20px;
}

@media screen and (max-width: 767px){
    nav{
        display:none;
    }

    nav.active{
        display:block;
    }

    nav ul{
        width:100%;
        position: fixed;
        top:0;
        left:0;
        z-index: 10002;
        margin-top:20%;
    }

    nav ul li{
        width:100%;
        margin-bottom:30px;
        text-align:center;
    }
    
    nav ul li.reserve {
        border: 1px solid var(--color-white);
        padding: 5px 20px;
        box-sizing: border-box;
    }

    nav ul li a {
        color: var(--color-white);
    }



    .sp-menu-btn{
        position:fixed;
        top:15px;
        right:4%;
        height:50px;
        z-index: 10001;
    }

    .sp-menu-btn span{
        position: relative;
        display: block;
        width:40px;
        border:var(--border);
        transition: 0.5s;
    }

    .sp-menu-btn span:nth-child(1){
        top:0;
    }

    .sp-menu-btn span:nth-child(2){
        top:10px;
    }

    .sp-menu-btn span:nth-child(3){
        top:20px;
    }

    .sp-menu-btn.open span:nth-child(1){
        transform:rotate(-45deg);
        top:10px;
    }

    .sp-menu-btn.open span:nth-child(2){
        opacity: 0;
    }

    .sp-menu-btn.open span:nth-child(3){
        transform: rotate(45deg);
        top:7px;
    }


    .overlay{
        opacity: 0;
        position: fixed;
        top:0;
        left:0;
        width:100%;
        height:100vh;
        overflow:auto;
        background-color: rgba(0,0,0,0.9);
        transition: 0.5s;
        z-index: -100;
    }

    .overlay.active{
        opacity: 1;
        z-index: 10000;
    }

}

/**** visual ****/

.index .visual{
    margin-bottom:var(--sec-margin);
    position: relative;
    z-index: -1;
}

.index .visual .toppic div{
    width:100%;
    min-width:1200px;
    height:768px;
}

.index .visual .img01{
    background:url(../images/top-visual01.jpg) center center;
}

.index .visual .img02{
    background:url(../images/top-visual02.jpg) center center;
}


.index .visual .catchcopy{
    position: absolute;
    left:20vw;
    bottom:350px;
}

.index .visual .catchcopy p{
    font-size:3rem;
    font-weight:bold;
    color:var(--color-white);
}

@media screen and (max-width: 1200px){

    .index .visual .catchcopy{
        left:5vw;
    }
    
}

@media screen and (max-width: 767px){

.index .visual{
    padding-top:0px;
}
    
.index .visual .toppic div{
    width:100%;
    min-width:inherit;
    height:500px;
}
    
.index .visual .img01{
    background:url(../images/top-visual01-sp.jpg) center center;
    background-size:cover;
}

.index .visual .img02{
    background:url(../images/top-visual02-sp.jpg) center center;
    background-size:cover;
}


.index .visual .catchcopy{
    position: absolute;
    left:0;
    right:0;
    bottom:0;
    top:45%;
}

.index .visual .catchcopy p{
    width:90%;
    margin:0 auto;
    font-size:2rem;
    font-weight:bold;
    color:var(--color-white);
    text-align:center;
}

    
}


/**** footer ****/

footer{
    min-width:var(--inner-width);
    background-color:var(--color-black);
    padding:30px 0;
}

footer p{
    color:var(--color-white);
    text-align:center;
}

@media screen and (max-width: 767px){

    footer{
        padding:15px 0;
    }
    
}

/**** トップへ戻る ****/
.pagetop {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
}
.pagetop a {
    display: block;
    background-color: #ccc;
    text-align: center;
    color: #222;
    font-size: 28px;
    text-decoration: none;
    padding: 5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.pagetop a:hover {
    display: block;
    background-color: var(--color-black);
    text-align: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    padding:5px 10px;
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}

@media screen and (max-width: 767px){

    .pagetop {
        bottom: 60px;
        right: 20px;
    }
    .pagetop a {
        font-size: 16px;
    }
    .pagetop a:hover {
        font-size: 16px;
    }
        
}

/**** floatメニュー ****/

@media screen and (max-width: 767px){

.float{
    width:100%;
    background:var(--color-black);
    position:fixed;
    left:0;
    bottom:0;
}

.float a{
    color:var(--color-white);
    display:block;
    text-align:center;
    font-weight:bold;
    padding:15px 0;
}

}


/**** コンセプト ****/

.concept .block{
    margin-bottom:100px;
}

.concept .txtarea{
    width:calc(100% - 690px);
}

.concept .txtarea p{
    line-height:1.8;
}

.concept .imgarea img{
    max-width:580px;
    width:100%;
}

@media screen and (max-width: 767px){


    .concept h2.title{
        text-align:center;
    }

    .concept .block{
        margin-bottom:30px;
    }

    .concept .txtarea{
        width:90%;
        margin:0 auto;
        background:#ece9d8;
        padding:20px;
        box-sizing: border-box;
        position: relative;
        top:-30px;
    }

    .concept .imgarea{
        order: -1;
    }

    .concept .imgarea img{
        max-width:inherit;
    }
    
}

/**** メニュー ****/

.menu h3{
    font-size:2.4rem;
    margin-bottom:20px;
}

.menu h3 span{
    font-size:1.6rem;
}

.menu .menu-block{
    margin-bottom:50px;
}

.menu .menu-block:last-child{
    margin-bottom:0;
}

.menu .menu-block dl{
    width:500px;
    font-size:1.8rem;
    border-bottom:1px solid var(--color-black);
    margin-bottom:30px;
}




@media screen and (max-width: 767px){

    .menu h3{
        font-size:2rem;
        margin-bottom:20px;
    }
    

    .menu .leftarea{
        width:100%;
    }    

    .menu .rightarea{
        width:100%;
    }  

    .menu .menu-block{
        margin-bottom:50px;
    }

    .menu .menu-block:last-child {
        margin-bottom:50px;
    }
    


    .menu .menu-block dl{
        width:100%;
        font-size:1.8rem;
        border-bottom:1px solid var(--color-black);
        margin-bottom:30px;
    }
    

}



/**** スタイリスト ****/

.stylist .imgarea img{
    max-width:350px;
    width:100%;
}

.stylist .txtarea{
    width:calc(100% - 450px);
}

.stylist .txtarea h3.name{
    font-size:2.2rem;
    margin-bottom:50px;
}

.stylist .txtarea h3.name span{
    font-size:1.6rem;
    margin-left:30px;
}

@media screen and (max-width: 767px){

    .stylist .imgarea{
        text-align:center;
        margin:0 auto;
    }
    
    .stylist .txtarea{
        width:100%;
    }

    .stylist .txtarea h3.name{
        text-align:center;
        font-size:2.2rem;
        margin-bottom:50px;
    }
    
    .stylist .txtarea h3.name span{
        display:block;
        margin-left:0;
    }
    
}



/**** news ****/

.sec.news h2{
    display:block;
    text-align:center;
}

.sec.news h2:before{
    display:block;
    margin:0 auto 20px;
}

.news .flex{
    justify-content: start;
}

.news .date{
    margin-right:30px;
}

.news article{
    border-top:var(--border);
    padding:30px 10px;
}

.news article:last-child{
    border-bottom:var(--border);
}

@media screen and (max-width: 767px){
    .news article{
        padding:20px 10px;
    }
}


/**** ギャラリー ****/

.gallery-wrap{
    min-width:var(--inner-width);
}

.gallery-wrap .gallery img{
    max-width:13vw;
}

@media screen and (max-width: 767px){

    .gallery-wrap .gallery img{
        max-width:31vw;
    }

}

/**** access ****/

.access .txtarea{
    width:calc(100% - 540px);
}

.access .maparea{
    width:520px;
}

.access .maparea  iframe{
    width:100%;
    height:400px;
}

.access dl{
    display:flex;
    margin-bottom:20px;
}

.access dl dt{
    font-size:1.8rem;
    width:20%;
}

.access .insta img{
    margin-top:30px;
    width:40px;
}

@media screen and (max-width: 767px){

    .access .txtarea{
        width:100%;
    }
    
    .access .maparea{
        width:100%;
    }
    
    .access .maparea  iframe{
        width:100%;
        height:400px;
    }

    .access .dl-wrap{
        background:#ece9d8;
        padding:20px;
        box-sizing: border-box;
        margin-bottom:50px;
    }

    .access dl{
        display:block;
        margin-bottom:20px;
        text-align:center;
    }

    .access dl dt{
        font-size:1.8rem;
        width:100%;
    }
    
    .access .insta img{
        display:block;
        margin:0 auto;
    }
        
    


}




