﻿* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: #000;
}

body {
    margin: 0;
    color: #fff;
    background: #000;
    font-family: "Zen Kaku Gothic New", sans-serif;
    line-height: 1.8;
}

body.is-menu-open {
    overflow: hidden;
}

img {
    display: block;
    width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-shell {
    position: relative;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    overflow: hidden;
    background: #050505;
    box-shadow: 0 0 40px rgba(255, 255, 255, .06);
}


.header__logo img {
    width: 40px;
    height: auto;
}

.header__logo {
    display: block;
    width: 54px;
    height: auto;
}

.header {
    position: absolute;
    top: 30px;
    left: 0;
    z-index: 40;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    padding: 0 28px;
}

.hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 40px;
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 1px;
    margin: 0 0 6px;
    background: #fff;
}

.hamburger em {
    display: block;
    margin-top: 0;
    font-size: 10px;
    font-style: normal;
    line-height: 1;
    letter-spacing: .08em;
}



.section-image {
    position: relative;
    margin: 0;
    background: #000;
}

.section-image img {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100dvh;
    padding: 120px 0 96px;
    overflow: hidden;
    background: url(images/bg_01.png) no-repeat;
    background-size: cover;
}

.hero__main {
    position: relative;
    top: 30px;
    display: grid;
    grid-template-columns: 1fr 64px;
    align-items: start;
    gap: 18px;
    padding-left: 0;
}

.hero__image {
    width: 97%;
    margin-left: 0;
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__catch {
    position: absolute;
    top: 0;
    right: 28px;
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    line-height: 2.1;
    letter-spacing: .18em;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

.hero__text {
    width: calc(100% - 48px);
    margin: 72px auto 0;
}

.hero__text p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 2.1;
    letter-spacing: .12em;
}

.hero__sub-image {
    width: 74%;
    margin: 68px 0 0 auto;
}

.hero__sub-image img {
    width: 100%;
    height: auto;
    display: block;
}

.section-heading {
    text-align: center;
    margin-bottom: 34px;
}

.section-heading span {
    display: block;
    color: #d6b06d;
    font-size: 38px;
    line-height: 1;
    letter-spacing: .08em;
    font-weight: 400;
}

.section-heading small {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .78);
    font-size: 12px;
    letter-spacing: .26em;
}


.map {
    height: 300px;
    background: #111;
}

.map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) invert(.9) contrast(.9);
}

.footer {
    position: relative;
    padding: 0 0 92px;
    background: #000;
    text-align: center;
}

.footer img {
    width: 100%;
}

.footer small {
    display: block;
    padding: 20px 0 0;
    color: rgba(255, 255, 255, .55);
    font-size: 10px;
    letter-spacing: .16em;
}

.sp-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .25s ease, visibility .25s ease;
    background: #000;
}

body.is-menu-open .sp-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.sp-menu__panel {
    position: relative;
    width: min(100%, 430px);
    min-height: 100dvh;
    margin: 0 auto;
    overflow: hidden;
    background: #050505;
}

.sp-menu__bg {
    position: absolute;
    inset: 0;
    opacity: .34;
}

.sp-menu__bg img {
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.sp-menu__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .92));
}

.sp-menu__content {
    position: relative;
    z-index: 1;
    min-height: 100dvh;
    padding: 29px 28px 48px;
}

.sp-menu__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.sp-menu__logo {
    width: 40px;
    height: auto;
}

.sp-menu__close {
    position: relative;
    width: 40px;
    height: 52px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
}

.sp-menu__close span {
    position: absolute;
    top: 12px;
    left: 5px;
    width: 30px;
    height: 1px;
    background: #fff;
}

.sp-menu__close span:first-child {
    transform: rotate(45deg);
}

.sp-menu__close span:nth-child(2) {
    transform: rotate(-45deg);
}

.sp-menu__close em {
    position: absolute;
    left: 50%;
    top: 30px;
    transform: translateX(-50%);
    font-size: 10px;
    font-style: normal;
    line-height: 1;
    letter-spacing: .08em;
}

.sp-menu__list {
    font-family: "Reddit Sans", sans-serif;
    list-style: none;
    padding: 0;
    margin: 60px 0 0 28px;
}

.sp-menu__list li {
    border-bottom: 0;
}

.sp-menu__list li+li {
    margin-top: 28px;
}

.sp-menu__list a {
    display: block;
    padding: 0;
    color: #fff;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: .14em;
}

.sp-menu__list a::after {
    display: none;
}

.sp-menu__buttons {
    display: grid;
    gap: 20px;
    width: 82%;
    margin: 48px auto 0;
}

.sp-menu__buttons a {
    display: grid;
    place-items: center;
    min-height: 60px;
    border: 0;
    color: #fff;
    font-size: 18px;
    letter-spacing: .12em;
}

.sp-menu__buttons a:first-child {
    background: #41352B;
}

.sp-menu__buttons a:last-child {
    background: #323A33;
}

.fixed-cta {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 60;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, .85);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .5);
}

.fixed-cta__image {
    width: 100%;
}

.fixed-cta__links {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fixed-cta__links a {
    display: grid;
    place-items: center;
    overflow: hidden;
    color: transparent;
    font-size: 1px;
}

body.is-menu-open .fixed-cta {
    display: none;
}

.concept {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(rgba(28, 27, 23, .92), rgba(28, 27, 23, .92)),
        url("images/bg-texture.jpg") center / cover;
    color: #fff;
}

.concept__top-image img {
    width: 100%;
    height: auto;
    display: block;
}

.concept__inner {
    position: relative;
    padding: 76px 0 180px;
    background: url(images/bg_02.png) no-repeat;
    background-size: cover;
}

.concept__heading {
    text-align: center;
    margin-bottom: 30px;
}

.concept__label {
    margin: 0;
    font-size: 0.95rem;
    letter-spacing: .1em;
    color: #fff;
    font-family: "Reddit Sans", sans-serif;
}

.concept__line {
    display: block;
    width: 28px;
    height: 1px;
    margin: 28px auto 52px;
    background: rgba(255, 255, 255, .35);
}

.concept__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: .18em;
}

.concept-point {
    position: relative;
    margin-top: 46px;
}

.concept-point:first-of-type {
    margin-top: 0;
}

.concept-point__image {
    width: 86%;
}

.concept-point--right .concept-point__image {
    margin-left: auto;
}

.concept-point--left .concept-point__image {
    margin-right: auto;
}

.concept-point__image img {
    width: 100%;
    height: auto;
    display: block;
}

.concept-point__body {
    width: min(100% - 56px, 340px);
    margin: 42px 0 0 15%;
}

.concept-point__body h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: .16em;
    line-height: 1.8;
}

.concept-point__body p {
    width: 83%;
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 2.3;
    letter-spacing: .12em;
}

/* 画像横の細いL字装飾 */
.concept-point__image {
    position: relative;
}

.concept-point__image::before {
    content: "";
    position: absolute;

    /* 画像の高さの55%付近 */
    top: 103%;

    /* 画像の外側へ少し出す */
    left: -20px;

    /* L字の大きさ */
    width: 40px;
    height: 40px;

    border-top: 1px solid rgba(255, 255, 255, .5);
    border-left: 1px solid rgba(255, 255, 255, .5);

    /* topの基準位置から中央に寄せる */
    transform: translateY(-50%);
}

/* 左右反転 */
.concept-point--left .concept-point__image::before {
    left: auto;
    right: -20px;

    border-left: 0;
    border-right: 1px solid rgba(255, 255, 255, .5);
}


.concept__bottom-bg {
    position: absolute;
    width: 100%;
    opacity: 0.8;
    bottom: 0;
}

.concept__bottom-bg img {
    display: block;
    width: 100%;
    height: auto;
}

.drink-menu {
    background: url(images/bg_03.png) no-repeat;
    background-size: cover;
    color: #fff;
    padding: 98px 0 110px;
}

.drink-menu__intro {
    text-align: center;
    padding: 0 24px 52px;
}

.drink-menu__label {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    letter-spacing: .1em;
    font-family: "Reddit Sans", sans-serif;
}

.drink-menu__line {
    display: block;
    width: 28px;
    height: 1px;
    margin: 28px auto 52px;
    background: rgba(255, 255, 255, .35);
}

.drink-menu__title {
    margin: 0;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2.1;
    letter-spacing: .18em;
}

.drink-menu__main-image {
    width: 100%;
}

.drink-menu__main-image img {
    width: 100%;
    height: auto;
    display: block;
}

.drink-menu__inner {
    width: min(100% - 64px, 360px);
    margin: 0 auto;
    padding-top: 88px;
}

.drink-card {
    padding: 46px 34px 40px;
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.drink-card+.drink-card {
    margin-top: 24px;
}

.drink-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 34px;
}

.drink-card h3 {
    margin: 0 0 22px;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: .14em;
}

.drink-card p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
    line-height: 2;
    letter-spacing: .12em;
}

.drink-card__price {
    margin-top: 40px !important;
    color: #fff !important;
    font-size: 1.15rem !important;
    letter-spacing: .12em;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300 !important;
}

.drink-menu__list {
    margin: 56px 0 0;
}

.drink-menu__list div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.drink-menu__list div:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.drink-menu__list dt,
.drink-menu__list dd {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 0.95rem;
    letter-spacing: .14em;
}

.drink-menu__list dd {
    text-align: right;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
}

.bartender {
    position: relative;
    overflow: hidden;
    padding-bottom: 110px;
    background: url("images/bg_02.png") center / cover;
    color: #fff;
}

.bartender__top-bg {
    position: absolute;
    width: 100%;
    opacity: 0.8;
    top: 0;
}

.bartender__top-bg img {
    display: block;
    width: 100%;
    height: auto;
}

.bartender__visual img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .62;
}

.bartender__inner {
    width: 100%;
    margin: 0 auto;
}

.bartender__heading {
    padding: 339px 0 68px;
    text-align: center;
}

.bartender__label {
    margin: 0;
    font-size: 0.9rem;
    font-family: "Reddit Sans", sans-serif;
    letter-spacing: .26em;
    color: rgba(255, 255, 255, .78);
}

.bartender__line {
    display: block;
    width: 28px;
    height: 1px;
    margin: 26px auto 50px;
    background: rgba(255, 255, 255, .35);
}

.bartender__title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2.2;
    letter-spacing: .16em;
}

.bartender-card+.bartender-card {
    margin-top: 66px;
}

.bartender-card__image {
    width: 57%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.bartender-card__image img {
    width: 100%;
    height: auto;
    display: block;
}

.bartender-card__body {
    width: 89%;
    margin-top: -46px;
    padding: 92px 12% 44px;
    background: rgba(70, 65, 55, .3);
    backdrop-filter: blur(12px);
}

/* 1人目 */
.bartender-card:nth-child(even) .bartender-card__body {
    margin-left: auto;
    margin-right: 0;
}

/* 2人目 */
.bartender-card:nth-child(odd) .bartender-card__body {
    margin-left: 0;
    margin-right: auto;
}

.bartender-card__role {
    margin: 0 0 14px;
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: .14em;
}

.bartender-card__name {
    margin: 0 0 30px;
    font-size: 1.29rem;
    font-weight: 400;
    letter-spacing: .16em;
}

.bartender-card__list {
    margin: 0 0 34px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, .25);
    border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.bartender-card__list li {
    margin-left: 1.2em;
    color: #fff;
    font-size: 0.9rem;
    line-height: 2;
    letter-spacing: .1em;
}

.bartender-card__text {
    margin: 0;
    color: #fff;
    font-size: 0.9rem;
    line-height: 2.3;
    letter-spacing: .12em;
}

.bar-gallery {
    padding: 96px 0 110px;
    background: url(images/bg_01.png) no-repeat;
    background-size: cover;
    color: #fff;
}

.bar-gallery__inner {
    width: min(100% - 48px, 360px);
    margin: 0 auto;
}

.bar-gallery__heading {
    margin-bottom: 72px;
    text-align: center;
}

.bar-gallery__heading h2 {
    margin: 0;
    font-size: 0.95rem;
    font-family: "Reddit Sans", sans-serif;
    font-weight: 300;
    letter-spacing: .18em;
    line-height: 1;
}

.bar-gallery__heading span {
    display: block;
    width: 42px;
    height: 1px;
    margin: 32px auto 0;
    background: rgba(255, 255, 255, .35);
}

.bar-gallery__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bar-gallery__item {
    overflow: hidden;
}

.bar-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bar-gallery__item--wide {
    grid-column: 1 / -1;
    height: 210px;
}

.bar-gallery__item--a,
.bar-gallery__item--c,
.bar-gallery__item--d,
.bar-gallery__item--e {
    height: 145px;
}

.bar-gallery__item--b {
    grid-row: span 2;
    height: 308px;
}

.bar-access {
    background: #050505;
    color: #fff;
    padding: 90px 0 110px;
}

.bar-access__inner {
    width: min(100% - 48px, 360px);
    margin: 0 auto;
}

.bar-access__heading {
    text-align: center;
    margin-bottom: 50px;
}

.bar-access__heading h2 {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: .24em;
    font-family: "Reddit Sans", sans-serif;
}

.bar-access__heading span {
    display: block;
    width: 30px;
    height: 1px;
    margin: 18px auto 0;
    background: rgba(255, 255, 255, .35);
}

.bar-access__map {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: 48px;
}

.bar-access__map iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
}

.bar-access__content {
    display: grid;
    gap: 42px;
}

.bar-access__item {
    font-size: 0.95rem;
}

.bar-access__item h3 {
    position: relative;
    margin: 0 0 2px;
    color: rgba(255, 255, 255, .9);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: .14em;
    font-family: "Reddit Sans", sans-serif;
}

.ad::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url("images/address.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.op::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url("images/open.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.ac::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 10px;
    vertical-align: middle;
    background-image: url("images/access.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.bar-access__item p {
    margin: 0;
    padding-left: 7%;
    color: rgba(255, 255, 255, .75);
    line-height: 2.2;
    letter-spacing: .08em;
}


.bar-footer {
    padding: 86px 0 124px;
    background: linear-gradient(180deg, #202a24 0%, #5b5146 100%);
    color: #fff;
    text-align: center;
}

.bar-footer__inner {
    width: min(100% - 48px, 360px);
    margin: 0 auto;
}

.bar-footer__logo {
    width: 18%;
    margin: 0 auto 54px;
}

.bar-footer__logo img {
    width: 100%;
    height: auto;
}

.bar-footer__tel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 38px;
    font-size: 1.25rem;
    line-height: 1;
    letter-spacing: .12em;
    font-family: "Reddit Sans", sans-serif;
}

.bar-footer__tel-icon {
    width: 10%;
    position: relative;
    top: 3px;
}

.bar-footer__address {
    display: grid;
    gap: 0;
    margin: 0 0 38px;
    color: rgba(255, 255, 255, .9);
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.7;
    letter-spacing: .12em;
}

.bar-footer__copyright {
    display: block;
    color: rgba(255, 255, 255, .38);
    font-size: 13px;
    font-family: "Reddit Sans", sans-serif;
    line-height: 1.8;
    letter-spacing: .18em;
}

.fixed-cta {
    position: fixed;
    left: 50%;
    bottom: 0;
    z-index: 90;
    width: 100%;
    height: 50px;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.fixed-cta__button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;

    color: #fff;
    font-size: 0.8rem;
    letter-spacing: .12em;
}

.fixed-cta__button img {
    width: 14px;
    height: 14px;
}

.fixed-cta__button--tel {
    background: #41352B;
}

.fixed-cta__button--map {
    background: #323A33;
}

@media (min-width: 1100px) {
    body {
        background:
            radial-gradient(circle at center top, rgba(85, 67, 42, .28), transparent 360px),
            #000;
    }

    .site-shell {
        max-width: 430px;
    }

    .fixed-cta {
        display: none;
    }
}

/* ==============================
   PC layout: kimono LP style
   - SP CSS above is kept as-is.
   - PC only: left visual / scroll page / right menu.
============================== */
.pc-visual,
.pc-menu {
    display: none;
}

.sp-menu__buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.sp-menu__buttons a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
}

.bar-news {
    padding: 90px 0 100px;
    background: #050505;
    color: #fff;
}

.bar-news__inner {
    width: min(100% - 48px, 360px);
    margin: 0 auto;
}

.bar-news__heading {
    text-align: center;
    margin-bottom: 46px;
}

.bar-news__heading h2 {
    margin: 0;
    font-family: "Reddit Sans", sans-serif;
    font-size: .95rem;
    font-weight: 300;
    letter-spacing: .24em;
}

.bar-news__heading span {
    display: block;
    width: 30px;
    height: 1px;
    margin: 18px auto 0;
    background: rgba(255, 255, 255, .35);
}

.bar-news__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bar-news__list li {
    border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.bar-news__list a {
    display: block;
    padding: 18px 0;
}

.bar-news__list time {
    display: block;
    color: rgba(255, 255, 255, .55);
    font-family: "Reddit Sans", sans-serif;
    font-size: .8rem;
    letter-spacing: .12em;
}

.bar-news__list span {
    display: block;
    margin-top: 4px;
    font-size: .9rem;
    letter-spacing: .08em;
}

@media (min-width: 1100px) {

    html,
    body {
        width: 100%;
        height: 100%;
        overflow: hidden;
    }

    body {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 560px 240px;
        grid-template-areas: "visual page menu";
        background: #1f1f1f;
    }

    .pc-visual {
        grid-area: visual;
        display: block;
        width: 100%;
        height: 100vh;
        overflow: hidden;
        background: #000;
    }

    .pc-visual__image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        opacity: .82;
    }

    .site-shell {
        grid-area: page;
        margin: 0;
        box-shadow: none;
        scroll-behavior: smooth;
        grid-area: page;
        width: 560px;
        max-width: 560px;
        height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    .site-shell .header,
    .sp-menu,
    .fixed-cta {
        display: none !important;
    }

    .pc-menu {
        grid-area: menu;
        display: block;
        position: relative;
        grid-area: menu;
        width: 240px;
        height: 100vh;
        background: #000;
        overflow: hidden;
    }

    .pc-menu::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 180px;
        background: url("images/Mask group.png") no-repeat center bottom;
        background-size: cover;
        z-index: 0;
    }

    .pc-menu__inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        min-height: 100%;
        padding: 40px 20px;
        color: #fff;
    }

    .pc-menu__logo {
        display: block;
        width: 60px;
        margin: 0 auto 46px;
    }

    .pc-menu__logo img {
        width: 100%;
        height: auto;
    }

    .pc-menu__nav {
        width: 100%;
    }

    .pc-menu__list {
        list-style: none;
        padding: 0;
        padding-left: 35px;
        margin: 0;
        font-family: "Reddit Sans", sans-serif;
    }

    .pc-menu__list li+li {
        margin-top: 24px;
    }

    .pc-menu__list a {
        display: block;
        color: rgba(255, 255, 255, .84);
        font-size: 16px;
        line-height: 1;
        letter-spacing: .12em;
    }

    .pc-menu__actions {
        display: grid;
        gap: 12px;
        margin-top: 46px;
    }

    .pc-menu__button {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 50px;
        padding: 0 8px;
        border: 1px solid rgba(255, 255, 255, .22);
        color: #fff;
        font-size: 16px;
        letter-spacing: .08em;
    }

    .pc-menu__button img {
        width: 13px;
        height: 13px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .pc-menu__button--map {
        border: 0;
        background: #323A33;
    }

    .pc-menu__button--tel {
        background: rgba(0, 0, 0, .16);
    }

    .pc-menu__bottom {
        width: calc(100% + 44px);
        margin: auto -22px -24px;
        opacity: .72;
    }

    .pc-menu__bottom img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* PC top section spacing matching provided composition */
    .hero {
        min-height: 100vh;
        padding-top: 88px;
        padding-bottom: 150px;
    }

    .hero__main {
        top: 0;
        grid-template-columns: 1fr 72px;
        gap: 18px;
    }

    .hero__image {
        width: 94%;
    }

    .hero__catch {
        right: 30px;
        font-size: 1.6rem;
    }

    .hero__text {
        width: calc(100% - 70px);
        margin-top: 46px;
    }

    .hero__text p {
        font-size: 1.2rem;
    }

    .hero__sub-image {
        width: 78%;
        margin-top: 80px;
    }

    .concept__inner {
        padding: 125px 0 280px;
    }

    .concept__line {
        margin: 28px auto 70px;
    }

    .concept__label {
        font-size: 20px;
    }

    .concept__title {
        font-size: 26px;
    }

    .concept-point__body h3 {
        font-size: 24px;
    }

    .concept-point__body p {
        font-size: 20px;
    }

    .concept-point__body {
        width: 85%;
    }

    .drink-menu__label {
        font-size: 20px;
    }

    .drink-menu {
        padding: 170px 0 184px;
    }

    .drink-menu__line {
        margin: 28px auto 66px;
    }

    .drink-menu__title {
        font-size: 26px;
    }

    .drink-menu__intro {
        padding-bottom: 75px;
    }

    .drink-menu__inner {
        padding-top: 120px;
    }

    .drink-menu__inner {
        width: 440px;
    }

    .drink-card h3 {
        font-size: 24px;
    }

    .drink-card p {
        font-size: 20px;
    }

    .drink-card p {
        font-size: 24px;
    }

    .drink-card {
        font-size: 56px 34px 60px;
    }

    .drink-menu__list dt,
    .drink-menu__list dd {
        font-size: 20px;
    }

    .bartender__heading {
        padding: 490px 0 68px;
    }

    .bartender__label {
        font-size: 20px;
    }

    .bartender__title {
        font-size: 26px;
    }

    .bartender-card__image {
        width: 59%;
    }

    .bartender-card__role {
        font-size: 18px;
    }

    .bartender-card__name {
        font-size: 26px;
    }

    .bartender-card__list li {
        font-size: 20px;
    }

    .bartender-card__text {
        font-size: 20px;
        line-height: 2;
    }

    .bartender {
        padding-bottom: 180px;
    }

    .bar-gallery {
        padding-top: 160px;
        padding-bottom: 160px;
    }

    .bar-gallery__heading h2 {
        font-size: 20px;
    }

    .bar-gallery__inner {
        width: 480px;
        max-width: 480px;
    }

    .bar-gallery__grid {
        gap: 22px;
    }

    .bar-gallery__item--wide {
        height: 280px;
    }

    .bar-gallery__item--a,
    .bar-gallery__item--c,
    .bar-gallery__item--d,
    .bar-gallery__item--e {
        height: 193px;
    }

    .bar-gallery__item--b {
        height: 408px;
    }

    .bar-access {
        padding: 140px 0 160px;
    }

    .bar-access__heading h2 {
        font-size: 20px;
    }

    .bar-access__heading {
        margin-bottom: 80px;
    }

    .bar-access__inner {
        width: 100%;
    }

    .bar-access__content {
        padding: 0 28px;
    }

    .bar-access__item h3 {
        font-size: 20px;
    }

    .bar-access__item {
        font-size: 20px;
    }

    .bar-footer {
        padding: 124px 0;
    }

    .bar-footer__logo {
        width: 80px;
    }

    .bar-footer__tel {
        font-size: 26px;
    }

    .bar-footer__address {
        font-size: 20px;
    }

    .bar-footer__copyright {
        font-size: 16px;
    }

    .bar-footer__inner {
        width: 398px;
    }

    .bar-access__map {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .bar-access__map iframe {
        height: 448px;
    }

    .sp-menu__panel {
        width: 100%;
    }
}

@media (min-width: 431px) {
    .sp-menu__panel {
        width: 100%;
    }
}