@charset "utf-8";

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --black: #333;
    --yellow: #e6b422;
    --red: #7D011A;
}
html {
    font-size: 10px;
    overflow-y: scroll;
}
body {
    font-size: 1.6em;
    line-height: 1;
    font-family: "Shippori Mincho", serif;
    color: var(--black);
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    width: 100%;
}
ul, ol, dl {
    list-style: none;
}
#haral_category {
    /* scroll-margin-topが効かないので代案 */
    /* margin-top: -91px;
    padding-top: 91px;  */
    scroll-margin-top: 86px;
}

/* header------------------------------------ */
header {
    background: url(../img/bg_black.webp) no-repeat top/cover;
    display: flex;
    padding: 20px 40px 20px 35px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}
header>div {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ハンバーガーメニュー */
.hamburger {
    width: 50px;
    height: 50px;
    position: relative; /* 基準 */
  /* 0.5秒かけて変化させる */
    transition: all 0.5s;
    cursor: pointer;
  /* ::afterを左右中央寄せにする */
    text-align: center;
  /* 他要素と並べるため 1本目の線を下げた分だけ上げる */
    margin-top: -23px;
    z-index: 20;
}
/* ハンバーガーメニューの線の設定（メニューが閉じている時）*/
.hamburger span {
  /* spanはインライン要素のため */
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.5s;
    position: absolute;  /* 対象 */
}
/* 1本目の線の位置を設定 */
.hamburger span:nth-child(1) {
    top: 33%;
}
/* 2本目の線の位置を設定 */
.hamburger span:nth-child(2) {
    top: 66%;
    width: 25px;
}
/* 1本目の線を-45度回転 transformで線のど真ん中の点を中心に動く */
.open .hamburger span:nth-child(1) {
    top: 50%;
    transform: rotate(-45deg);
}
/* 2本目の線を45度回転 */
.open .hamburger span:nth-child(2) {
    top: 50%;
    transform:  rotate(45deg);
    width: 50px;
}
/* 2本の線がtop: 50%となったため中心に重なる */

.hamburger::after {
  /* 左右中央寄せにするため block要素にする（親要素にcenter指定済み）*/
    display: block;
    content: "メニュー"; /* MENU */
    font-size: 70%; /* 80% */
    font-weight: 500;
    letter-spacing: .075em; /* .1em */
    padding-left: .1em;
    padding-top: 100%;
}
.hamburger.active::after {
    content: "閉じる";
    padding-left: .3em;
    padding-top: calc(100% + .375em);
}
/* ここから開いてからのこと */
.hamburger_menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url(../img/bg_black.webp) no-repeat top/cover;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    padding: 120px 80px;
    z-index: 10;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.hamburger_menu.open {
    opacity: 1;
    pointer-events: auto;
}
.hamburger_menu>ul {
    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}
.hamburger_menu>ul>li>img {
    width: 200px;
    margin-bottom: 60px;
}
.nav_wrap {
    width: 100%;
    display: flex;
    justify-content: center;
}
.nav {
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    display: flex;
    flex-flow: column;
    gap: 1.75em;
    padding-top: 40px;
    border-top: #fff .75px solid;
}
.nav li>a {
    font-size: 1em;
    letter-spacing: .1em;
    line-height: 1.375;
    color: #fff;
}
.nav li>a:hover {
    opacity: .6;
}
.nav li>p {
    font-size: 60%;
    color: #999;
    letter-spacing: .1em;
    padding-top: .25em;
}
.link {
    gap: 60px;
    padding-left: 8%;
    border-left: #fff .75px solid;
}
.link li>p {
    text-align: center;
    font-size: .85em;
    line-height: 1.75;
    margin-bottom: 1.5em;
}
.link li>div {
    display: flex;
    flex-flow: column;
    gap: 20px;
}
.yellow,
.red {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 55px;
    border-radius: 99px;
    transition: 1s all;
}
.yellow:hover ,
.red:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.yellow {
    background: var(--yellow);
}
.red {
    background: var(--red);
}
.tel,
.net {
    display: inline-block;
    text-align: center;
}
.tel>div>p {
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1;
}
.net>p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.25;
} 
.tel>div>p>span {
    font-size: .625em;
}
.net>p>span {
    font-size: .75em;
}
.tel>div>img {
    width: 30px;
    height: 30px;
    margin: auto 0;
}
.tel>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25em;
    padding-right: 1em;
}
.tel>div>a {
    display: inline-block;
    text-align: center;
}
.red>a {
    display: inline-block;
    text-align: center;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.25;
}

/* headerのメニュー横のボタン（下層ページのみ） */
.button>a {
    display: inline-block;
    text-align: center;
    font-size: .85em;
    font-weight: 500;
    width: 145px;
    padding: 1em;
    border-radius: 99px;
    transition: 1s all;
}
.button>a:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.button>a:first-of-type {
    background: var(--yellow);
}
.button>a:last-of-type {
    background: var(--red);
    margin-left: 15px;
}

/* ロゴ */
header>p a>img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* sns */
.sns {
    display: flex;
    flex-flow: column;
    align-items: center;
    gap: 1em;
    position: fixed;
    bottom: 40px;
    left: 25px;
    z-index: 100000;
    /* text-shadow: 0 0 6px #33333380; */
}
.sns p {
    order: -1;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
}
.sns a>img {
    width: 1.25em;
    height: 1.25em;
    /* filter: drop-shadow(0 0 5px #33333380); */
}
.sns::before {
    content: '';
    background-color: #fff;
    height: 4em; 
    width: .75px;
    display: inline-block;
    margin-bottom: 1em;
    /* box-shadow: 0 0 6px #33333399; */
}


/* main  ***************************************/

.grand_category {
    background: url(../img/bg_white.webp) no-repeat top/cover;
    width: 100%;
    padding: 91px 10% 120px 95px;
    overflow: hidden;
}
.haral_category {
    background: url(../img/bg_green.webp) no-repeat top/cover;
    width: 100%;
    padding: 0 10% 150px 95px;
    overflow: hidden;
}

.grand_category>div,
.haral_category>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-flow: row-reverse;
    justify-content: space-between;
}

.category_title {
    display: flex;
    display: flex;
    flex-flow: column-reverse;
    align-items: flex-start;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    z-index: 1;
}
.category_title h1{
    padding: 120px 10px 0 10%;
    letter-spacing: .15em;
    font-size: 1.5em;
    font-weight: 400;
    border-right: var(--black) .825px solid;
}

.haral_category .category_title h1 {
    color: #fff;
    text-shadow: 5px 5px 10px #33333380;
    border-right: #fff .825px solid;
}
.haral_policy .category_title h2 {
    padding: 0 10px 0 0;
    letter-spacing: .15em;
    font-size: 1.25em;
    font-weight: 400;
    color: #fff;
    text-shadow: 5px 5px 10px #33333380;
    border-right: #fff .825px solid;
}
.category_title p {
    font-size: .75em;
    letter-spacing: .1em;
}
.grand_category .category_title p {
    /* border-left: var(--black) .825px solid; */
    padding: 189px 0 0 10px;
    color: #999;
}
.haral_category .category_title p {
    /* border-left: #fff .825px solid; */
    padding: 230px 0 0 10px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
}
.haral_policy .category_title p {
    /* border-left: #fff .825px solid; */
    padding: 0 0 69px 10px;
    margin-top: 5px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
}

.container1 {
    position: relative;
}
.container1>img {
    max-width: 280px;
    max-height: 280px;
    object-fit: cover;
    position: absolute;
    bottom: -80px;
    right: -220px;
    z-index: 0;
}
.container2 {
    position: relative;
}
.container2>img {
    max-width: 260px;
    max-height: 260px;
    object-fit: cover;
    position: absolute;
    bottom: -80px;
    right: -180px;
    z-index: 0;
}
.container3 {
    position: relative;
}
.container3>img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    position: absolute;
    top: -80px;
    left: -80px;
    z-index: 0;
}

.menu_category {
    display: flex;
    flex-flow: row-reverse;
    margin-top: 120px;
    max-width: 670px;
}
.grand_category .menu_category {   
    box-shadow: -30px -30px 0 #e9cf964D;
}
.haral_category .menu_category {
    box-shadow: -30px -30px 0 #ffffff1A;
}

.menu_category a {
    position: relative;
    width: calc(100% / 3);
    text-align: center;
    overflow: hidden;
    display: block;
}

.menu_category a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(128, 128, 128, 0.5);
    z-index: 2;
    transition: background 0.3s ease;
    pointer-events: none;
}
.menu_category a:hover::before {
    background: rgba(128, 128, 128, 0.2);
}

.menu_category img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    position: relative;
    z-index: 1;
}
.menu1 {
    object-position: 40% 50%;
}
.menu2 {
    object-position: 30% 50%;
}
.menu4 {
    object-position: 45% 50%;
}

.menu_category a:hover img {
    transform: scale(1.05);
}

.menu_category h3 {
    position: absolute;
    top: 8%;
    left: calc(85% - 1.5em / 2);
    writing-mode: vertical-rl;
    font-size: 1.5em;
    font-weight: normal;
    color: #fff;
    text-shadow: 5px 5px 10px #33333380;
    z-index: 3;
    pointer-events: none;
}

.haral_policy {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-flow: row;
    justify-content: space-between;
    padding-top: 150px;
}
.rule {
    display: flex;
    flex-flow: column;
    gap: 1.5em;
    width: 75%;
    margin-top: 60px;
    color: #fff;
}
.rule h4 {
    font-size: 1.175em;
    font-weight: normal;
    line-height: 1.625em;
    letter-spacing: .05em;
    text-shadow: 5px 5px 10px #33333380;
}
.rule h4>span {
    display: inline-block;
}
.rule p {
    font-size: .825em;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 1em;
    text-shadow: 5px 5px 10px #33333380;
}
.rule a {
    display: inline-block;
    font-size: .75em;
    letter-spacing: .1em;
    border: #fff solid .825px;
    padding: 1em 1.5em 1em 1em;
    margin-left: auto;
    text-shadow: 5px 5px 10px #33333380;
    transition: .5s;
}
.rule a::before {
    content: '';
    background-color: #fff;
    height: .6px;
    width: 3.5em;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 -2.825em;
    transition: .5s;
}
.rule a:hover {
    background-color: #ffffff44;
}
.rule a:hover::before {
    transform: translate(-.75em, 0);
}


/* footer---------------------------------------- */
footer {
    background: url(../img/bg_black.webp) no-repeat bottom/cover;
    color: #fff;
}
footer>div {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
footer .title {
    display: flex;
    justify-content: center;
    padding-top: 120px;
}
footer .title h2 {
    writing-mode: vertical-rl;
    padding: 0 9px 0 0;
    letter-spacing: .15em;
    font-size: 1.25em;
    font-weight: 400;
    text-shadow: 5px 5px 10px #33333380;
    border-right: #fff .825px solid; /* 表示修正で消す */
}
footer .title p {
    writing-mode: vertical-rl;
    padding: 0 0 0 10px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
    position: relative;
    font-size: .75em;
    letter-spacing: .1em;
}
footer .title p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .825px;
    height: 110px;
}

address {
    display: flex;
    justify-content: space-evenly;
    font-style: normal;
    margin: 100px 0;
}
address h3 {
    font-weight: 400;
}

.route {
    display: flex;
    flex-flow: column;
    position: relative;
}
.route ul {
    font-size: .85em;
    position: relative;
    z-index: 1;
}
.route ul li:not(.main_address, .open_hour){
    margin: 12px 0;
}
.route img {
    width: 90px;
    position: absolute;
    top: -10px;
    right: 0; 
    z-index: 0;   
}
.main_address,
.open_hour {
    margin: 2em 0;
    line-height: 1.75em;
}
.open_hour span {
    letter-spacing: .15em;
}
iframe {
    width: 450px;
    height: auto;
    object-fit: cover;
}

.reservation {
    display: flex;
    justify-content: center;
    gap: 10%;
    padding-bottom: 120px;
    border-bottom: #fff .75px solid;
}
.yellow {
    background: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    border-radius: 99px;
    transition: 1s all;
}
.yellow:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.tel,
.net {
    display: inline-block;
    text-align: center;
}
.tel>div>p {
    font-size: 1.25em;
    font-weight: 500;
    line-height: 1;
}
.net>p {
    font-size: 1em;
    font-weight: 500;
    line-height: 1.25;
} 
.tel>div>p>span {
    font-size: .625em;
}
.net>p>span {
    font-size: .75em;
}
.tel>div>img {
    width: 30px;
    height: 30px;
    margin: auto 0;
}
.tel>div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .25em;
    padding-right: 1em;
}
.tel>div>a {
    display: inline-block;
    text-align: center;
}

/* 恵比寿店紹介----------------------- */
.ebisu {
    display: flex;
    justify-content: center;
    gap: 8%;
    padding : 120px 10% 0;
    max-width: 800px;
}
.ebisu>div {
    display: flex;
}
.ebisu>div h2 {
    writing-mode: vertical-rl;
    padding: 0 10px 0 0;
    letter-spacing: .15em;
    font-size: 1.25em;
    font-weight: 400;
    text-shadow: 5px 5px 10px #33333380;
}
.ebisu>div p {
    writing-mode: vertical-rl;
    padding: 0 0 0 10px;
    color: #e6e6e6;
    text-shadow: 5px 5px 10px #33333380;
    position: relative;
    font-size: .75em;
    letter-spacing: .1em;
}
.ebisu>div p::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .825px;
    height: 230px;
}
.ebisu a img {
    max-width: 400px;
    max-height: 260px;
    object-fit: cover;
}
/* fooyterNav---------------------- */
.footerbox_l {
    display: flex;
    justify-content: center;
    margin-top: 200px;
}
.footerNav {
    display: flex;
    flex-flow: row-reverse;
    gap: 8%;
    padding: 0 3% 0 5%;
}
.footerNav>img {
    width: 45px;
    margin-top: -55px;
}
.footerNav ul {
    writing-mode: vertical-rl;
}
.footerNav ul li {
    font-size: .825em;
    letter-spacing: .1em;
    line-height: 1.375;
    margin: 0 1em;
}
.footerbox_s {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    padding-left: 5%;
    position: relative;
}
.footerbox_s::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    width: .75px;
    height: 145px;
}
.footerbox_s p {
    text-align: center;
    font-size: .85em;
    line-height: 2em;
    margin-bottom: 2em;
}
.red_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 240px;
    height: 60px;
    border-radius: 99px;
    transition: 1s all;
    background: var(--red);
    font-size: 1em;
}
.red_btn:hover {
    transform: scale(1.06,1.06);
    transition: 1s all;
}
.copyright {
    display: flex;
    justify-content: flex-end;
    align-items: baseline;
    margin: 50px 0 0 80px;
    padding-bottom: 20px;
}
.copyright>div {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 10%;
    margin-right: 10%;
}
/* トップへ戻るボタン------------------- */
.back-btn {
    padding: 1.5em 1em;
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    position: relative;
    font-size: .825em;
    width: 8em;
}
.back-btn::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(-45deg);
    position: absolute;
    top: 10%;
    left: 45%;
    /* bottom: 0; */
    margin: auto;
}

@media (max-width: 1023px) {
    /* ハンバーガーメニュー */
    .hamburger_menu>ul>li>img {
        width: 150px;
        margin-bottom: 40px;
    }
    .nav {
        gap: 1em;
        padding-top: 20px;
    }
    .link {
        padding-left: 6%;
    }
}

@media (max-width: 819px) {
    /* フッター */
    address {
        flex-flow: column;
        align-items: center;
        gap: 60px;
        margin: 100px 0 80px;
    }
    iframe {
        width: 100%;
        height: 270px;
    }
    .reservation {
        flex-flow: column-reverse;
        align-items: center;
        gap: 40px;
        padding-bottom: 80px;
        margin: 0 60px;
    }
    .ebisu {
        padding: 100px 5% 100px 13%;
        gap: 5%;
    }
    .ebisu>div h2 {
        font-size: 1em;
    }
    .ebisu>div p::before {
    height: 190px;
    }
    .footerbox_l {
        flex-flow: column-reverse;
        align-items: center;
        gap: 100px;
        margin: 0 60px;
        position: relative;
    }
    /* .footerbox_l::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        background: #fff;
        width: 100%;
        height: .75px;
    } */
    .footerNav {
        padding: 0 0 0 8%;
        gap: 5%;
    }
    .footerNav>img {
        width: 30px;
        margin-top: -40px;
    }
    .footerbox_s {
        padding: 60px 0 0;
    }
    .footerbox_s::before {
        display: none;
    }
    .footerNav ul li {
        font-size: .825em;
        letter-spacing: .1em;
        line-height: 1;
        margin: 0 1em;
    }
    .copyright {
        margin: 50px 0 0 60px;
    }
    .copyright>div {
        flex-flow: column-reverse;
        gap: 1em;
        margin-right: 0;
        font-size: .625em;
    }
} 

@media (max-width: 767px) {
    header {
        padding: 20px;
    }
    /* ハンバーガーメニュー */
    .hamburger_menu {
        padding: 80px;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        gap: 70px;
    }
    .hamburger_menu>ul>li>img {
        width: 100px;
        margin-bottom: 20px;
    }
    .link {
        gap: 20px;
        padding-left: 0;
        border: none;
    }
    .link li>p {
        display: none;
    }
    .link li>div {
        display: flex;
        flex-flow: column;
        gap: 20px;
    }
    /* headerのメニュー横のボタン（下層ページのみ） */
    .button {
        display: none;
    }
    /* sns */
    .sns {
        left: 11px;
    }
    /* main */
    .grand_category {
        padding: 171px 5% 60px;
    }
    .haral_category {
        padding: 100px 5% 100px;
    }
    .grand_category>div,
    .haral_category>div {
        flex-flow: column;
        justify-content: center;
        align-items: center;
    }
    .category_title h1{
        padding: 0 10px 0 0;
        letter-spacing: .15em;
        font-size: 1.25em;
        font-weight: 400;
    }
    .grand_category .category_title p {
        padding: 0 0 52px 10px;
        margin-top: 2px;
    }
    .haral_category>div .category_title p {
        padding: 0 0 74px 10px;
        margin-top: 5px;
    }
    .menu_category {
        margin-top: 30px;
        flex-flow: column;
        align-items: center;
        justify-content: center;
    }
    .menu_category a {
        width: 85%;
        aspect-ratio: 3 / 2;
        overflow: hidden;
        display: block;
    }
    .menu_category a::before {
        background: rgba(128, 128, 128, 0.3);
    }
    .grand_category .menu_category {   
        box-shadow: none;
    }
    .haral_category .menu_category {
        box-shadow: none;
    }
    .menu_category img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    position: relative;
    z-index: 1;
}
    .menu1 {
        object-position: 50% 30%;
    }
    .menu2 {
        object-position: 50% 25%;
    }
    .menu4 {
        object-position: 50% 20%;
    }
    .menu3,
    .menu5 {
        object-position: 50% 20%;
    }

    .menu_category a:hover img {
        transform: scale(1.05);
    }
    .container1>img {
        max-width: 120px;
        max-height: 120px;
        top: -140px;
        right: 42%;
    }
    .container2>img {
        max-width: 120px;
        max-height: 120px;
        top: -200px;
        right: 42%;
    }
    .container3>img {
        width: 120px;
        height: 120px;
        top: -50px;
        left: -60px;
    }
    .menu_category h3 {
        top: 10%;
        left: calc(90% - 1.175em / 2);
        font-size: 1.175em;
    }
    .friendly {
        font-size: 1em !important;
    }
    .haral_policy {
        flex-flow: column;
        align-items: center;
        justify-content: center;
        max-width: 500px;
        padding-top: 120px;
    }
}

@media (max-width: 450px) {
   .hamburger_menu {
    height: 100vh;
   }
}
