/* 
font-family: lato, sans-serif;
font-weight: 700;
font-style: normal; 

font-family: satisfy, sans-serif;
font-weight: 400;
font-style: normal;

font-family: tbchibirgothicplusk-pro, sans-serif;
font-weight: 400;
font-style: normal;
*/

html{
    font-size: 62.5%;/*16px X 62.5%=10px*/
}

body{
    font-family: lato, sans-serif;
    font-weight: bold;
    color: #444444;
    background-color: #FFFFFA;
}

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

li{
    list-style: none;
}

a{
    text-decoration: none;
}

.slick-slide{
    outline: none;
}

.slick-slider button{
    outline: none;
}

.ttl{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 68px;
    margin-right: 58px;
}

.ttl h3{
    font-size: 4.5rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ttl img{
    margin-right: 10px;
}

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

/* トップSNSーーーーーーーーーー */

.top-sns{
    position: fixed;
    height: 60px;
    width: 125px;
    background-color: #A72019;
    align-items: center;
    z-index: 100;
    border-bottom-right-radius: 50px;

    display: none;
}

.top-sns a{
    color: #fff;
    font-size: 3rem;
}

.top-sns a:hover{
    opacity: 0.6;
}

.top-sns a:first-of-type{
    padding: 5px 12px 12px 18px;
}
.top-sns a:last-of-type{
    padding: 5px 20px 12px 12px;
}

/* PCヘッダーナビゲーション */

.header-bar{
    z-index: 100;
    background-color: #A72019;
    position: fixed;
    top: 0;
    right: 0;
    height: 75px;
    width: 910px;
    border-bottom-left-radius: 60px;
    -webkit-border-bottom-left-radius: 60px;
    -moz-border-radius-bottomleft: 60px;
    margin-left: auto;
    transition: .5s;



}

.header-bar.hide{
    top: -75px;
}

.header-bar .nav{
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 1.8rem;
    justify-content: flex-end;
    height: 90px;
}

.header-bar > .nav > a{
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
}

.header-bar > .nav > a.current{
    opacity: 0.65;
}




.header-bar > .nav > a+a{
    margin-left: 70px;
}

.header-bar > .nav > a:last-of-type{
    margin-right: 40px;
}

.header-bar > .nav > a > img{
    margin-right: 10px;
}

.header-bar .nav a:first-child::before{
    content:"HOME";
    color: #fff;
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 44px;
} 

.header-bar .nav a:nth-child(2)::before{
    content:"ACCESS";
    color: #fff;
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 51px;
} 

.header-bar .nav a:nth-child(3)::before{
    content:"MENU";
    color: #fff;
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 53px;
} 

.header-bar .nav a:nth-child(4)::before{
    content:"PICTURE";
    color: #fff;
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 50px;
} 

.header-bar .nav a:nth-child(5)::before{
    content:"CONCEPT";
    color: #fff;
    position: absolute;
    font-size: 1rem;
    top: -15px;
    left: 55px;
} 

.header-bar .nav a::after {
    position: absolute;
    bottom: -2px;
    left: 0;
    display: block;
    content: "";
    width: 100%;
    height: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s;
}

.header-bar .nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left top;
}

.header-bar .nav a.current::after {
    opacity: 0;
}




/* SPヘッダーナビゲーション */


.hamburger {
    display : none;
    position: fixed;
    right : 13px;
    top   : 12px;
    width : 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
    z-index: 50;
}
.hamburger span {
    display : block;
    position: absolute;
    width   : 30px;
    height  : 2px ;
    left    : 6px;
    background : #A72019;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
    border-radius: 2px;
}
.hamburger span:nth-child(1) {
    top: 10px;
}
.hamburger span:nth-child(2) {
    top: 20px;
}
.hamburger span:nth-child(3) {
    top: 30px;
}

  /* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
    top : 16px;
    left: 6px;
    background :#fff;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 16px;
    background :#fff;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}

nav.globalMenuSp {
    position: fixed;
    top  : 0;
    left : 0;
    color: #fff;
    background-color: rgba(167, 32, 25, .9);
    text-align: center;
    width: 100%;
    height: 100%;
    transition: all 500ms;
    margin-left: 3000px;
    z-index: 40;
}

nav.globalMenuSp ul {
    width: 100%;
    display: flex;
    flex-flow: column;
    justify-content: space-around;
    height: 100%;
}


nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
    background-color: rgba(167, 32, 25, 0.5);

}

nav.globalMenuSp ul li a {
    display: flex;
    color: #fff;
    padding: 1em 0;
    text-decoration :none;
    justify-content: center;
    align-items: center;
    
}


  /* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
    margin-left: 0;

}

.globalMenuSp ul li a img{
    width: 34px;
}

.globalMenuSp ul li a p{
    position: relative;
    font-size: 3.4rem;
    text-transform: uppercase;
    margin-left: 20px;
    letter-spacing: 0.07em;
}

.globalMenuSp ul li:first-child a p::before{
    content:"ホーム";
    color: #fff;
    position: absolute;
    font-size: 1.4rem;
    top: -15px;
    left: 39px;
} 

.globalMenuSp ul li:nth-child(2) a p::before{
    content:"アクセス";
    color: #fff;
    position: absolute;
    font-size: 1.4rem;
    top: -15px;
    left: 41px;
} 

.globalMenuSp ul li:nth-child(3) a p::before{
    content:"メニュー";
    color: #fff;
    position: absolute;
    font-size: 1.4rem;
    top: -15px;
    left: 29px;
}

.globalMenuSp ul li:nth-child(4) a p::before{
    content:"店内写真";
    color: #fff;
    position: absolute;
    font-size: 1.4rem;
    top: -15px;
    left: 48px;
} 

.globalMenuSp ul li:nth-child(5) a p::before{
    content:"コンセプト";
    color: #fff;
    position: absolute;
    font-size: 1.4rem;
    top: -15px;
    left: 49px;
}





/*ーーーーーーーーーーーーーーー
        フッター
ーーーーーーーーーーーーーーーー*/

/* フッターーーーーーーーーーーーーー */


footer .page-top-btn{
    max-width: 1200px;
    margin: 0 auto;
    height: 100px;
    position: relative;
}


footer .page-top-btn a{
    position: absolute;
    right: 0;
}

footer .page-top-btn a img{
    margin-top: 20px;
    margin-right: 50px;
    transition: all 300ms;
    padding-bottom: 30px;
}

footer .page-top-btn a img:hover{
    margin-top: 0;
}

.footer{
    padding: 20px 0;
    background-color: #A72019;
    width: 100%;
    margin: 0% auto;
    text-align: center;
    color: #fff;
}

.footer > img{
    width: auto;
    margin: 0 auto;
    display: block;
}

.footer .aoyagi-logo{
    width: 135px;
    margin: 10px auto;
}

.footer p:nth-child(3){
    font-size: 1.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.footer p:nth-child(4){
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 0.08em;
}

.footer p:nth-child(6){
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer div{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.footer div a{
    color: #fff;
    font-size: 2rem;
}

.footer div a:hover{
    opacity: 0.5;
}

.footer div a:first-of-type{
    margin-right: 20px;
}


/*ーーーーーーーーーーーーーーー
        サイドバー
ーーーーーーーーーーーーーーーー*/

/* サイドバーSNS ーーーーーーーーーーー*/

.side-sns{
    z-index: 100;
}

.side-sns a{
    position: fixed;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: #444444;
    top: 44%;
    padding-right: 30px;
    font-size: 1.4rem;
    opacity: 0.4;
}

.side-sns a:hover{
    opacity: 1;
    color: #A72019;
}

.side-sns a:first-of-type{
    left: 0;
}

.side-sns a:last-of-type{
    right: 0;
}


.side-sns a i{
    margin-bottom: 8px;
}

.side-sns a:first-of-type{
    transform: rotate( -180deg ); 
}

.side-sns a p{
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    letter-spacing: 0.2em;
    font-size: 1.4rem;
}

/* --------------------------------------------------------------------------- */

@media screen and (max-width:1140px){
    .side-sns{
        display: none !important;
    }
}




@media screen and (max-width:900px){
    .header-bar{
        display: none;
    }

    .hamburger{
        display: block;
    }

    .top-sns{
        display: flex;
    }

    
    
    
}


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

    /* ハンバーガーメニュー */

    .globalMenuSp ul li a img{
        width: 30px;
    }

    .globalMenuSp ul li a p{
        position: relative;
        font-size: 3rem;
        text-transform: uppercase;
        margin-left: 14px;
        letter-spacing: 0.07em;
    }
    
    .globalMenuSp ul li:first-child a p::before{
        content:"ホーム";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 30px;
    } 
    
    .globalMenuSp ul li:nth-child(2) a p::before{
        content:"アクセス";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 33px;
    } 
    
    .globalMenuSp ul li:nth-child(3) a p::before{
        content:"メニュー";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 20px;
    }
    
    .globalMenuSp ul li:nth-child(4) a p::before{
        content:"店内写真";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 39px;
    } 
    
    .globalMenuSp ul li:nth-child(5) a p::before{
        content:"コンセプト";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 40px;
    }

    
}


@media screen and (max-width:600px){
    .ttl{
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 68px;
        margin-right: 36px;
    }
    
    .ttl h3{
        font-size: 4rem;
        letter-spacing: 0.07em;
        text-transform: uppercase;
    }
    

    /* ハンバーガーメニュー */
    .globalMenuSp ul{
        padding: 20px 0;
    }

    .globalMenuSp ul li a img{
        width: 24px;
    }

    .globalMenuSp ul li a p{
        position: relative;
        font-size: 2.4rem;
        text-transform: uppercase;
        margin-left: 10px;
        letter-spacing: 0.07em;
    }
    
    .globalMenuSp ul li:first-child a p::before{
        content:"ホーム";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 20px;
    } 
    
    .globalMenuSp ul li:nth-child(2) a p::before{
        content:"アクセス";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 20px;
    } 
    
    .globalMenuSp ul li:nth-child(3) a p::before{
        content:"メニュー";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 10px;
    }
    
    .globalMenuSp ul li:nth-child(4) a p::before{
        content:"店内写真";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 25px;
    } 
    
    .globalMenuSp ul li:nth-child(5) a p::before{
        content:"コンセプト";
        color: #fff;
        position: absolute;
        font-size: 1.4rem;
        top: -15px;
        left: 26px;
    }

}


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

    footer .page-top-btn a img {
        width: 75px;
    }

}
