/* ====================
   Reset & Basic Settings
   ==================== */
:root {
    --color-background: #2B2B2B;
    --color-primary: #182641; 
    --color-accent: #f3d57c; 
    --color-white: #fff;
    --color-text: #fff;
    --font-base: 'Zen Kaku Gothic New', sans-serif;
    --font-title: 'Zen Kaku Gothic New', sans-serif;
}
*, *::before, *::after {
    box-sizing: border-box;
}
body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.8;
    font-size: 16px;
    overflow-y: scroll;
}
main {
    background-color: var(--color-background); 
    width: 100%; 
    margin: 0 auto;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}
a {
    color: inherit;
    text-decoration: none;
}
ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
h1, h2, h3, h4, h5, h6, p, dl {
    margin: 0;
}
.section__inner {
    max-width: 1440px;
    margin: 0 10vw;
    padding: 50px 0px;
}
/* ====================
   Header
   ==================== */
.header {
    background-color: var(--color-background);
    height: 90px; 
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header__inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.header__logo img {
    height: 75px; 
}
.header__logo {
    flex-shrink: 0;     
}
.header__right {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
    margin-right: 20px;
}
.header__instagram-icon {
    color: var(--color-white);
    font-size: 45px;
    display: block;
}
/* ====================
   Hamburger Menu
   ==================== */
.hamburger-menu {
    position: relative;
    width: 45px;
    height: 45px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
}
.hamburger-menu span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--color-white);
    transition: all 0.3s;
}
.hamburger-menu span:nth-of-type(1) { top: 6px; }
.hamburger-menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}
.hamburger-menu span:nth-of-type(3) { bottom: 6px; }

.hamburger-menu.is-open span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}
.hamburger-menu.is-open span:nth-of-type(2) {
    opacity: 0;
}
.hamburger-menu.is-open span:nth-of-type(3) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
/* ====================
   Drawer Navigation
   ==================== */
.drawer-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 99;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.drawer-nav.is-open {
    opacity: 1;
    visibility: visible;
}
.drawer-nav__list {
    text-align: center;
}
.drawer-nav__item {
    font-family: var(--font-title);
    font-size: 20px;
    letter-spacing: 0.1em;
}
.drawer-nav__item a {
    display: block;
    padding: 20px;
    color: var(--color-white);
    border-bottom: 1px solid var(--color-white);
}
.drawer-nav__item:last-child a {
    border-bottom: none;
}
/* ====================
   Main Visual
   ==================== */
.main-visual__title {
    font-family: var(--font-base);
    font-size: 48px;
    font-weight: bold;
    color: var(--color-text);
    letter-spacing: 0.1em; 
    line-height: 1.2;
}
.main-visual__subtitle {
    font-size: 32px; 
    font-weight: bold; 
    color: var(--color-text);
    letter-spacing: 0.1em;
}
.main-visual__inner {
    text-align: center;  
    padding: 287px 40px 40px;
    margin-top: 90px;
    height: 85vh;
    min-height: 500px;
    background-image: url('../../images/bg-main-visual.webp'); 
    background-size: cover;
    background-position: top; 
}
.menu__flex-item:nth-of-type(1) .menu__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.menu__flex-item:nth-of-type(4) .menu__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    margin-top: auto;
    display: flex;
}
/* ====================
   Section Common
   ==================== */
.section--bg-gray {
    background-color: var(--color-background-gray);
}
.section__title {
    font-family: var(--font-title);
    font-size: 40px;
    margin-bottom: 40px;
    display: inline-flex; 
    flex-direction: column; 
    align-items: center;
}
.section__title-sub {
    display: block;
    font-size: 16px;
    margin-top: 0px;
    line-height: 0.1;
    font-weight: normal;
}
/* ====================
   Concept Section
   ==================== */
#concept {
    padding-top: 50px;
}
.concept__content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}
.concept__text {
    flex: 1;
    display: flex; 
    flex-direction: column; 
}
.concept__text section {
    display: flex;          
    flex-direction: column; 
    flex-grow: 1;           
}
.concept__text h3 {
    font-size: 20px;
}
.concept__text p {
    margin-bottom: 1em;
}
.concept__image {
    flex: 1;
    aspect-ratio: 550 / 500; 
}
.concept__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.concept__gallery {
    display: flex;
    gap: 20px;
    margin-top:auto; 
}
.concept__gallery img {
    width: calc(50% - 10px);
    aspect-ratio: 225 / 169;
    object-fit: cover;
}
/* ====================
   Menu Section
   ==================== */
.menu__flex-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px; 
}
.menu__flex-item {
    width: calc(50% - 15px); 
    display: flex;
    flex-direction: column;
}
.menu__flex-item p {
    margin-bottom: 20px;
}
.menu__item-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.menu__instagram-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-accent);
    color: #000;
    height: 62px;
    border-radius: 30px;
    border: 1px solid #000;
    margin-top: auto; 
    transition: opacity 0.3s;
    font-weight: bold;
    text-align: center;
    font-size: 20px;
    width: 100%;
    height: auto; 
    min-height: 62px;
}
.menu__instagram-button:hover {
    background-color: #f2b500;
}
.menu__instagram-button i {
    font-size: 30px;
}
.menu__list {
    margin-top: 0; 
    width: 100%;
    flex-grow: 1; 
    display: flex; 
    flex-direction: column; 
}
.menu__list li {
   margin-bottom: 0;
   flex-grow: 1;
}
.menu__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    height: 50px; 
    transition: background-color 0.3s;
    font-weight: bold;
    font-size: 16px; 
    color: var(--color-text); 
    background-color: var(--color-primary); 
    border-radius: 0; 
    border-top: 1px solid var(--color-text); 
    border-bottom: 1px solid var(--color-text); 
}
.menu__list a:hover {
    background-color: #234A96;
}
/* ====================
   About Section
   ==================== */
.about__content {
    display: flex;
    gap: 40px; 
    align-items: stretch;
}
.about__info {
    flex-grow: 1; 
    display: flex;   
    flex-direction: column;
}
.about__info section {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: space-between; 
}
.about__info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    margin-top: -10px;
}
.about__instagram { 
    flex: 1;                   
    display: flex;         
    justify-content: center; 
    flex-direction: column;
    align-items: flex-start;
}
.about__info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px 10px;
    margin-bottom: 30px;
}
.about__info dt {
    font-weight: bold;
    text-align: justify;
    text-align-last: justify;
}
.about__instagram-button {
    display: inline-flex;
    justify-content: center;
    min-width: 250px;
    max-width: 100%;
}
.about__instagram blockquote.instagram-media {
    max-width: 100%;
    box-sizing: border-box;  
}
.about__text {
    flex: 3; 
    min-width: 0;
    display: flex; 
    flex-direction: column;
}
.about__text .section__title {
    margin-bottom: 40px; 
    margin-top: -10px;  
    align-items: flex-start; 
}
/* ====================
   Access Section
   ==================== */
.access__content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}
.access__text {
    flex: 1;
}
.access__map {
    flex: 1;
    flex-grow: 0;        
    flex-basis: 500px;
    aspect-ratio: 4 / 3; 
    min-width: 0;
}
.access__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.access__text dl dt {
    font-size: 18px;
    font-weight: bold;
    border-left: 4px solid var(--color-accent);
    padding-left: 10px;
    margin-bottom: 10px;
}
.access__text dl dd {
    margin-left: 15px;
    margin-bottom: 20px;
}
.access__gallery {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.access__gallery img {
    width: calc((100% - 60px) / 3);
    aspect-ratio: 1 / 1;
    object-fit: cover;
}
/* ====================
   Link Section
   ==================== */
.link__description {
    text-align: left;
    margin-bottom: 40px;
}
.link__buttons {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.link-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    width: 500px; 
    height: 60px; 
    transition: opacity 0.3s;
    border-radius: 30px;
    font-size: 20px;
    font-weight: bold;
}
.link-button--shuffle {
    background-color: var(--color-primary);
    border: 1px solid var(--color-white);
}
.link-button--sweep {
    background-color: var(--color-accent);
    color: #333; 
    border: 1px solid #000;
}
.link-button--shuffle:hover {
    background-color: #234A96;
}
.link-button--sweep:hover {
    background-color: #f2b500;
}
.link-button i {
    margin-left: 30px;
    font-size: 30px;
}
#link {
    padding-bottom: 130px; 
}
/* ====================
   Footer
   ==================== */
.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    height: 226px;
    position: relative;
    padding: 20px 0; 
    border-top: 1px solid #AEAEAE;
}
.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 150px;
    height: 100%;
}
.footer__logo {
    flex-shrink: 0; 
}
.footer__logo img {
    height: 135px;
    width: 258px; 
}
.footer__nav-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    font-size: 20px;
}
.footer__nav-item a {
    text-decoration: underline;
    font-weight: bold; 
}
.footer__address {
    font-size: 16px;
    color: var(--color-text);
    margin-bottom: 30px;
}
.footer__copyright {
    font-size: 16px;
    color: #aaa;
    text-align: center;
    position: absolute; 
    bottom: 20px; 
    left: 0; 
    width: 100%; 
}
.br-sp {
    display: none;
}
.menu-last-sp-text { display: none; }s
.menu-last-pc-text {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.sp-only { display: none; }
.pc-only { display: inline; }
@media (min-width: 769px) {      
      #menu, #about, #access {
        scroll-margin-top:30px; 
      }
    }
@media (max-width: 1200px) {
  .header__inner {
    padding: 0 20px; 
  }
}
main > .section {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.ig-fab {
  display: none;
}
.drink-menu__description--large,
.drink-menu__description--small,
.drink-menu__category-title,
.drink-menu__subcategory-title,
.other-menu__image,
.drink-menu__list{
  visibility: hidden;
}
