@charset "UTF-8";

/* 共通部分
------------------------------- */
html {
    font-size: 100%;
}
body {
    font-family: "Times New Roman", "Yu Mincho", "游明朝", YuMincho, "游明朝体", "ヒラギノ明朝 Pro W3", serif;
    line-height: 1.7;
    color: #888888;
}
a {
    text-decoration: none;
}
img {
    max-width: 100%;
}
::selection {
    background-color: rgba(199, 199, 199, 0.8);
    color: #888888;
}

/* HEADER
------------------------------- */
.logo {
    width: 180px;
    margin-top: 14px;
}
.main-nav {
    display: flex;
    font-size: 0.937rem;
    font-family: 'Sorts Mill Goudy', serif;
    text-transform: uppercase;
    margin-top: 34px;
    list-style: none;
}
.main-nav li {
    position: relative;
    cursor: pointer;
    margin-left: 36px;
}
.main-nav a {
    color: #937117;
}
header {
    display: flex;
    justify-content: space-between;
}
.wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 4%;
    letter-spacing: 0.06rem;
}

/* HOME
------------------------------- */
.big-bg{
    z-index: 1;/*#container,#footerよりも下に配置するために数値を小さくする*/
    /*以下画面で背景画像を表示させるための指定*/
    width: 100%;
    height:100vh;
    background-color: #F1F1F1;
    background-size:cover;
}


/* ボタン共通設定 */
.btn06{
    /* 矢印の基点 */
    position: relative;
    /* ボタンの形状 */
    text-decoration: none;
    display: inline-block;
    background: transparent;
    color: #888888;
    padding: 9px 70px 11px 60px;
    border: solid 1px;
    text-align: center;
    outline: none;
    /* アニメーションの指定 */
    transition: ease .2s;
}
.btnarrow1::after{
    content: '';
    /* 絶対配置で矢印の位置を決める */
    position: absolute;
    top: 42%;
    right: 20px;
    /* 矢印の形状 */
    width: 5px;
    height: 5px;
    border-top: 1px solid #888888;
    border-right: 1px solid #888888;
    transform: rotate(45deg);
    /* アニメーションの指定 */
    transition: all .3s;
}
/* hoverした際の移動 */
.btnarrow1:hover::after{
    right: 11px;
}

/* ボタンコメント */
.home-content .sub-text {
    font-size: 0.687rem;
    font-family: 'Noto Serif JP', serif;
    margin-top: 0.5rem;
}
.line-top{
    color: #888;
    border-bottom: 1px dotted #888;
}
.line-top:hover{
    opacity: 0.7;
}

/* ABOUT_MENU
------------------------------- */
.about_menu_area {
    background-color: #E4E4E4;
    padding: 4% 0;
    padding-bottom: 90px;
}
.about_menu {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
}
.button {
    font-size: 1.875rem;
    font-family: 'Sorts Mill Goudy', serif;
    color: #937117;
    display: block;
    position: absolute;
    bottom: 15px;
    right: 40px;
    text-shadow: #fff 3px 0 9px;
}
.am-button {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding: 30px;
}
.am-button::before {
    content: '';
    position: absolute;
    right: -8px;
    bottom: -8px;
    width: 100%;
    height: 100%;
    background-color: rgba(0 0 0 / 0);
    border: 1px solid #888;
    border-radius: 1rem;
}
.fa-chevron-right {
    display: block;
    position: absolute;
    bottom: 35px;
    right: 15px;
    color: #937117;
    text-shadow: #fff 3px 0 9px;
}
/* ABOUT_BUTTON
------------------------------- */
.about_button {
    background-image: url(../images/about_button.jpg);
    height: 300px;
    background-position: 50% 30%;
    filter: opacity(70%);
    position: relative;
    border-radius: 1rem;
}
.about_button:hover {
    transform: translate(3px, 3px);
}


/* MENU_BUTTON
------------------------------- */
.menu_button {
    background-image: url(../images/menu_button.jpg);
    height: 300px;
    background-position: 30% 30%;
    background-size: 200%;
    filter: opacity(70%);
    position: relative;
    border-radius: 1rem;
}
.m-btn-text {
    font-size: 0.812rem;
    color: #fff;
    font-family: 'Noto Serif JP', serif;
    width: 55%;
}
.menu_button:hover {
    transform: translate(3px, 3px);
}


/* GALLERY
------------------------------- */
#gallery {
    padding: 4% 0;
    background-color: #E4E4E4;
    text-align: center;
}
#gallery h3 {
    font-size: 1.875rem;
    font-family: 'Sorts Mill Goudy', serif;
    color: #937117;
    text-align: center;
    letter-spacing: 0.3rem;
    margin-bottom: 2rem;
    position: relative;
}
#gallery h3::after{
    content:"";
    position:absolute;
    display:block;
    bottom: -10px;
    width:18px;
    height:1px;
    background-color:#937117;
    left:50%;
    transform: translateX(-50%)
}
#gallery p {
    font-size: 0.875rem;
    text-align: center;
}
.grid {
    display: grid;
    width: 77vw;
    margin: 30px auto 7.5vw;
    gap: 3vw;
    grid-template-columns: repeat(4, 17vw);
    grid-template-rows: 17vw;
}
.img_wrap, .img_wrap_2{
    overflow: hidden;
}
.grid-item {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: opacity(90%);
}
.img_wrap img:hover{
    transform: scale(1.2) rotate(-9deg);
    transition-duration: 0.2s;
}
.img_wrap_2 img:hover{
    transform: scale(1.2) rotate(9deg);
    transition-duration: 0.2s;
}

.insta-btn{
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0 20px;
    color: #937117;
    text-decoration: none;
    outline: none;
    font-family: 'Sorts Mill Goudy', serif;
    margin-bottom: 50px;
}
.insta-btn{
    position: relative;
}
    /*矢印と下線の形状*/
.insta-btn::before{
    content:"";
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    top:50%;
    right:-26px;
    /*下線の形状*/
    width:30px;
    height:1px;
    background:#888;
    /*アニメーションの指定*/
    transition: all .2s linear;
}
.insta-btn::after{
    content:"";
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    top: 20%;
    right: -22px;
    /*矢印の形状*/
    width:1px;
    height:9px;
    background:#888;
    transform:skewX(45deg);
    /*アニメーションの指定*/
    transition: all .2s linear;
}
/*hoverした際の移動*/
.insta-btn:hover::before{
    right:-35px;
}

.insta-btn:hover::after{
    right:-30px;
}
/* NEWS
------------------------------- */
#news {
    padding: 4% 0;
    background-color: #F1F1F1;
}
#news li {
    display: flex;
}
.news-box{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.time {
    width: 20%;
    color: #937117;
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 20px;
    padding: 1.75rem;
    border-bottom: 1px solid #D8D8D8;

}
.news-list{
    width: 80%;
    font-size: 0.875rem;
    color:#888888;
    padding: 2rem 0.625rem;
    border-bottom: 1px solid #D8D8D8;
    text-decoration: none;
}
.news-list:hover{
    opacity: 0.7 ;
}

#news h3 {
    font-size: 1.875rem;
    font-family: 'Sorts Mill Goudy', serif;
    color: #937117;
    padding: 1.2rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3rem;
}

/* ACCESS
------------------------------- */
#location {
    padding: 4% 0;
    background-color: #F1F1F1;
}
#location .wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 150px;
}
/* 店舗情報 */
.location-info {
    width: 23%;
}
.location-info p {
    padding: 12px 10px;
    font-size: 0.875rem;
    margin: 0.375rem;
}
.location-map {
    width: 74%;
}
iframe {
    width: 100%;
}
.location-info h3 {
    font-size: 1.875rem;
    font-family: 'Sorts Mill Goudy', serif;
    color: #937117;
    margin-bottom: 3rem;
    margin-top: 1rem;
    padding: 12px 10px;
    letter-spacing: 0.3rem;
}
.short-line {
    position: relative; 
    display: inline-block;
}
.short-line::before {
    content: '';
    position: absolute;
    bottom: -5px;/*線の上下位置*/
    display: inline-block;
    width: 45px;/*線の長さ*/
    height: 1px;/*線の太さ*/
    background-color: #d8d8d8;/*線の色*/
    border-radius: 1px;/*線の丸み*/
    }
.line-friend{
    color: #888;
    font-weight: 600;
}
#location a:hover{
    opacity: 0.7;
}

/* FOOTER
------------------------------- */
footer {
    background: #C7BDB8;
    position: relative;
    z-index: 10;
}
.footer-contents {
    display: flex;
    justify-content: space-between;
    padding-top: 80px;
    padding-bottom: 114px;
}
.f-text {
    margin-top: 1.875rem;
    padding-left: 0.5rem;
}
.f-text1 {
    margin-top: 1.375rem;
    padding-left: 0.5rem;
}
.footer-title {
    font-family: 'Sorts Mill Goudy', serif;
    font-size: 1.125rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
    border-bottom: 1px solid #3D3D3D;
}


/* ロゴやリンクなど*/
.footer-left {
    width: 20%;
}
.link {
    display: flex;
    justify-content: space-between;
    margin-top: 2.6875rem;
    margin-bottom: 2.6875rem;
}
.fa-instagram {
    font-size: 1.625rem;
    color: #3D3D3D;
    padding-left:1.625rem;
}
.f-link {
    font-size: 1rem;
    color: #3D3D3D;
    padding-right:1.625rem;
    padding-left: 0.625rem;
    margin-bottom: 10px;
}
.copy {
    font-size: 0.75rem;
    font-family: 'Cinzel', serif;
    color: #3D3D3D;
    text-align: center;
}
.f-text2 {
    font-size: 1.25rem;
}
/* Salon info*/
.footer-center {
    width: 26%;
    font-size: 0.875rem;
    color: #3D3D3D;
    padding-left: 0.625rem;
    margin-left: 2.25rem;
    margin-top: 2.25rem;
}
/* Access*/
.footer-right {
    width: 27%;
    font-size: 0.875rem;
    color: #3D3D3D;
    padding-left: 0.625rem;
    margin-top: 2.25rem;
}
.f-link-n {
    display: block;
    font-size: 1rem;
    color: #3D3D3D;
    margin-top: 1.875rem;
    padding-left: 0.5rem;
}
.fa-map-marker-alt {
    font-size: 1.25rem;
    color: #3D3D3D;
}
#footer #page-top span{
    display: inline-block;
    width: 11px;
    height: 11px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    border-radius: 1px;
    transform: rotate(45deg);
    margin-top: 4px;
}
#footer a:hover{
    opacity: 0.7;
}

/*===========================================================*/
/*about_page*/
/*===========================================================*/
.current-text{
    color: #888;
    position: relative;
    display: inline-block;
}
@media (min-width: 800px) {
/*以下で線を表示*/
    .current-text:before {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -5px;/*線の上下位置*/
        display: inline-block;
        width: 50%;/*線の長さ*/
        height: 2px;/*線の太さ*/
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);/*位置調整*/
        background-color: #a0a0a0;;/*線の色*/
        border-radius: 2px;/*線の丸み*/
    }
}
.menu-top-about{
    position:relative;
    background-image: url(../images/about-top3.png);
    width: 90%;
    height: 450px;
    background-position: center right;
    background-size: cover;
    filter: opacity(95%);
}
.page-title_about{
    font-size: 2rem;
    font-family: "Sorts Mill Goudy", serif;
    color:#937117;
    position:absolute;
    top: 90px;
    text-shadow: #eeeeee 1px 1px 4px;
    margin: 0 auto;
}
.concept {
    line-height: 3;
    text-align: center;
}
#license {
    padding-top: 90px;
    padding-bottom: 100px;
}
#license h3{
    font-size: 1.875rem;
    font-family: 'Sorts Mill Goudy', serif;
    color: #937117;
    text-align: center;
    letter-spacing: 0.3rem;
    margin-bottom: 1rem;
}
.license {
    padding-top:45px;
    padding-bottom: 10px;
    background-color: #FDFDFD;
    border-radius: 20px;
    width:70%;
}
.license table{
    border-collapse: collapse;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    table-layout: fixed;
    margin-bottom: 50px;
}
#license table th ,table td {
    border-right: 0;
}
#license table th {
    text-align: left;
}
.l, .n{
    border-bottom: 1px solid #D8D8D8 !important;
    font-weight: 600;
}
.type {
    font-weight: 500;
    text-align: right;
    width: 40%;
}
.insta-btn:hover{
    opacity: 0.7;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
    filter: opacity(90%);
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}



/* モバイル版
------------------------------- */
@media (min-width: 500px) {
    .big-bg{
        z-index: 1;/*#container,#footerよりも下に配置するために数値を小さくする*/
        /*以下画面で背景画像を表示させるための指定*/
        width: 100%;
        height:100vh;
        background: url("../images/main-bg.jpg") no-repeat top center;/*背景画像の設定*/
        background-color: rgba(255, 255, 255, 0.075);
        background-blend-mode: soft-light;
        background-size:cover;
    }
    
    .parent {
        position: relative;
        height: 50vh;
    }
    .home-content {
        position: absolute;
        right: 10px;
        display: flex;
        top: 30%;
        flex-direction: column;
        align-items: center;
        background:rgba(255, 255, 255, 0.735);
        box-shadow: 0 0 20px #ccc;
        padding: 3vw 5rem;
        margin-right: 1.25rem;
    }
    /* 大きな背景画像 */
    #home .page-title {
        text-transform: none;
    }

    
    /* 見出し */
    .page-title {
        font-size: 3rem;
        font-family: 'Sorts Mill Goudy', serif;
        text-transform: uppercase;
        font-weight: normal;
        margin-bottom: -2rem;
    }
    .sub-title {
        font-size: 1rem;
        font-family: 'Sorts Mill Goudy', serif;
        font-weight: normal;
        margin-top: -2rem;
    }
    .home-content p {
        font-size: 0.937rem;
        font-family: 'Noto Serif JP', serif;
        text-align: center;
        margin-top: 0.5rem;
        margin-bottom: 1.5rem;
    }
    
}


@media (max-width: 600px) {
    #location .wrapper {
        display: flex;
        flex-direction:column;
        margin-bottom: 150px;
    }
    
}

@media (min-width: 800px) {
    .about_button {
        width: 50vw;
    }
    .menu_button {
        width: 50vw;
    }
#g-nav {
    display: none;
}
}
@media (max-width: 700px) {
    .news-box{
        flex-direction: column;
    }
    
    #news li{
        flex-direction: column;
    }    
    .news-list {
        width: 100%;
        padding: 1rem 1.75rem;
    }
    .time {
        padding-bottom: 0;
        border-bottom: 0px;
    }
    .footer-center {
        display: none;
    }
    .footer-right {
        display: none;
    }
    .footer-left{
        display: flex;
        flex-direction: column;
        justify-content: center;
        width: 100%;
    }
    footer img {
        width: 40%;
        margin: 0 auto;
        margin-bottom: 30px;

    }
    .link {
        width: 40%;
        margin: 0 auto;
        text-align: center;
        margin-bottom: 30px;
    }
    .f-link {
        margin-right: 10px;
    }
    .fa-instagram {
        margin-right: 10px;
        margin-left: 10px;
        padding-left: 5px;
    }
}

@media (max-width: 800px) {
    #g-navi {
        display: none;
    }
    .about_menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 30px;
        margin: 0 auto;
    }
    .about_button {
        width: 100%;
    }
    .menu_button {
        width: 100%;
    }
    .m-btn-text {
        margin-top: 30px;
        width: 45%;
    }
    #location .wrapper{
        display: flex;
        flex-direction: column;
    }
    .location-info-sp {
        display: flex;
        flex-direction: column;
        margin-bottom: 50px;
    }
    #location h3 {
        margin-bottom: 20px;
    }
    .location-info {
        width: 100%;
    }
    .location-map {
        width: 100%;
    }
    #location .wrapper {
        margin-bottom: 70px;
    }
    /* Grid */
    .grid {
        width: 80vw;
        gap: 2vw;
        grid-template-columns: repeat(2, 39vw);
        grid-template-rows: repeat(2, 39vw);
    }

    /* about-page */
    .menu-top-about{
        position:relative;
        background-image: url(../images/about-top4.png);
        width: 100%;
        background-position: center;
    }
    .license {
        width:92%;
    }

}

@media (max-width: 1150px) {
.page-title_about{
    top: 30px;
}
}
@media (max-width: 500px) {
    .m-btn-text {
        margin-top: 10px;
        width: 55%;
    }
    .page-title {
        display: none;
    }
    .sub-title {
        display: none;
    }
    .main-bg-sp{
        background-image: url(../images/main-bg.jpg);
        height: 300px;
        width: 100%;
        background-size: 130%;
        background-position: 50% 30%;
        filter: opacity(90%);
    }
    .top-text {
        font-size: 0.812rem;
        margin-bottom: 20px;
        text-align: center;
    }
    .home-content {
        text-align: center;
    }
}

@media (max-width: 400px) {
    .m-btn-text {
        width: 55%;
        font-size: 0.75rem;
    }
    iframe {
        width: 100%;
        height: 300px;
    }
    
}
@media (min-width: 800px){
    .tbsp {
        display:none!important;
    }
    .br-sp_about{
        display: none;
    }
    .menu-top-about{
        border-top-right-radius: 2rem;
        border-bottom-right-radius: 2rem;
    }
    .sp-br_a {
        display: none;
    }
}
@media (min-width: 700px) {
    .tab-sp-text{
        display: none;
    }
}


/*===========================================================*/
/* ハンバーガーメニュー*/
/*===========================================================*/
@media (min-width: 800px) {
/*ボタン全体の形状*/
.openbtn1{
    /*はじめは非表示に*/
    display: none;
    /*ボタンの位置*/
    position:fixed;
    top:20px;
    right: 20px;
    z-index: 999;
    /*ボタンの形状*/
    background:#666;
    cursor: pointer;
    width: 50px;
    height:50px;
}
/*ボタンのアイコン設定*/
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
}

.openbtn1 span:nth-of-type(1) {
    top:15px; 
}

.openbtn1 span:nth-of-type(2) {
    top:23px;
}

.openbtn1 span:nth-of-type(3) {
    top:31px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
    animation-name: fadeDownAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
    display: block;
}
@keyframes fadeDownAnime{
    from {
    opacity: 0;
    transform: translateY(-100px);
    }

    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/*========= ヘッダーナビゲーションのためのCSS ===============*/
/*.doneクラスがついたヘッダー*/
#header.dnone {
    opacity: 0;/*透過0にして非表示に*/
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#header.dnone.panelactive {
    opacity: 1;/*不透明にして出現*/
}
/*.doneクラスがついたヘッダーのテキストナビゲーションの形状*/
#header.dnone #g-navi{
    /*固定位置にして最背面に*/
    position:fixed;
    top: 0;
    left: 0;
    z-index: -9;
    /*高さと幅*/  
    width:100%;
    height: 100vh;
    /*天地中央＆テキスト中央揃え*/  
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /*はじめは透過0に*/  
    opacity: 0;
    transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたナビゲーションの形状*/
#header.dnone.panelactive #g-navi{
    opacity: 1;/*不透明に*/
    z-index:100;/*最前面に*/
    background:#eee;
}

#header.dnone.panelactive #g-navi ul{
    display:block;/*flexの横並びをblockにして縦並びに*/
}


/*リストの形状*/

#header.dnone.panelactive #g-navi li a{
    color: #937117;
    text-decoration: none;
    padding:10px;
    margin: 20px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    transition:all 0.3s;
}
}
section {
    position: relative;
    z-index: 1;
}


@media (max-width: 800px) {
/*========= ボタンのためのCSS ===============*/
.openbtn-sp{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:20px;
    right: 20px;
    cursor: pointer;
    border-style: solid;
    border-width: 1px;
    border-color: #666;
    width: 50px;
    height:50px;
    }
    
/*×に変化*/  
.openbtn-sp span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 1px;
    background-color: #666;
    width: 45%;
    }

.openbtn-sp span:nth-of-type(1) {
    top:15px; 
}

.openbtn-sp span:nth-of-type(2) {
    top:23px;
}

.openbtn-sp span:nth-of-type(3) {
    top:31px;
}

.openbtn-sp.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn-sp.active span:nth-of-type(2) {
    opacity: 0;
}

.openbtn-sp.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*========= ナビゲーションのためのCSS ===============*/

#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
    z-index: -10;
    opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
    top:0;
    width:100%;
    height: 100vh;/*ナビの高さ*/
    background: #eee;
    ;
    /*動き*/
    transition: all 0.6s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
    opacity: 1;
    z-index:999;
}


/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
    list-style: none;
    text-align: center; 
}

#g-nav li a{
    color: #937117;
    text-decoration: none;
    padding:10px;
    margin: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
}