@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;
}

/* 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;
}
.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: 50px;
    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  ***************************************/

main {
    background: url(../img/bg_white.webp) no-repeat top/cover;
}
main>img {
    height: 400px;
    object-fit: cover;
    object-position: 18% 100%;
}
main section {
    display: flex;
    gap: 10%;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px 150px 65px;
}
.store_information {
    display: flex;
    flex-flow: column-reverse;
    align-items: flex-start;
    writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    flex: .25;
}
.store_information h1 {
    padding: 3em 10px 0 0;
    letter-spacing: .15em;
    font-size: 1.5em;
    border-right: var(--black) .825px solid;
}
.store_information p {
    /* border-left: var(--black) .825px solid; */
    padding: 250px 0 0 10px;
    font-size: .75em;
    letter-spacing: .1em;
    color: #999;
}
.detail {
    display: flex;
    align-items: flex-end;
    gap: 10%;
    height: 600px;
}
.detail>div {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    gap: 2.5em;
}
.detail>div h2 {
    font-size: 1.25em;
    letter-spacing: .05em;
    line-height: 1.625;
}
.detail>div p {
    font-size: .825em;
    line-height: 1.75;
    text-align: justify;
    margin-bottom: 1em;
}
.detail>div a {
    display: inline-block;
    font-size: .75em;
    letter-spacing: .1em;
    border: var(--black) solid .825px;
    padding: 1em 1.5em 1em 1em;
    margin-left: auto;
    transition: .5s;
}
.detail>div a::before {
    content: '';
    background-color: var(--black);
    height: .6px;
    width: 3em;
    display: inline-block;
    vertical-align: middle;
    margin: 0 1.25em 0 -3em;
    transition: .5s;
}
.detail>div a:hover {
    background-color: #ffffff80;
}
.detail>div a:hover::before {
    transform: translate(-.75em, 0);
}

.detail aside {
    display: flex;
    flex-flow: column;
}
.detail aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* 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 */
    main>img {
        height: 350px;
    }
    main section {
        justify-content: center;
        gap: 8%;
        padding: 0 10% 80px 45px;
    }
    .detail {
        flex-flow: column;
        height: 100%;
        width: 65%;
        margin-top: 120px;
    }
    .detail>div {
        gap: 1.5em;
    }
    .detail aside {
        flex-flow: row;
        justify-content: flex-end;
        margin-top: 50px;
    }
    .detail aside img {
        width: calc(115% / 3);
        height: auto;
    }
}

@media (max-width: 450px) {
    .hamburger_menu {
        height: 100vh;
    }
    /* main */
    main section {
        justify-content: space-between;
    }
    .detail {
        width: 75%;
    }
    .detail>div h2 {
        font-size: 1em;
    }
    .store_information h1 {
        font-size: 1.25em;
        padding: 2em 10px 0 0;
    }
    .store_information p {
        padding: 169px 0 0 10px;
    }
    .detail aside img {
        width: calc(135% / 3);
    }
}