@charset "UTF-8";
body {
  background-color: #fdfaf5;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}

.menu-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}
@media (max-width: 600px) {
  .menu-wrapper {
    padding: 20px;
  }
}

.menu-header {
  text-align: center;
  border-bottom: 3px double #1a2a40;
  margin-bottom: 50px;
  padding-bottom: 20px;
}
.menu-header h1 {
  font-size: 2.5rem;
  margin: 0;
  letter-spacing: 0.2em;
  color: #1a2a40;
}
@media (max-width: 600px) {
  .menu-header h1 {
    font-size: 1.8rem;
  }
}

.section-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: #1a2a40;
  border-left: 6px solid #b22222;
  padding-left: 15px;
  margin-top: 60px;
  margin-bottom: 20px;
}

.section-note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 20px;
}

/* メニューの並び（1列/2列） */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px 40px;
}
@media (max-width: 600px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  border-bottom: 1px dotted #ccc;
  padding: 8px 0;
}
.menu-item.highlight {
  display: block;
  background: #fffafa;
  border: 1px solid #b22222;
  padding: 15px;
  border-radius: 4px;
}
.menu-item.highlight .item-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-weight: bold;
  font-size: 1.2rem;
  color: #b22222;
}

.description {
  font-size: 0.85rem;
  color: #555;
  margin: 5px 0 0 0;
}

/* 注意書きボックス */
.alert {
  background-color: #fff4f4;
  border: 1px solid #ffcccc;
  padding: 15px;
  color: #d80000;
  font-weight: bold;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

/* テーブル（焼酎リスト） */
.shochu-table-wrapper {
  overflow-x: auto;
  margin-top: 20px;
}

.shochu-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.shochu-table th, .shochu-table td {
  padding: 12px;
  border: 1px solid #eee;
  text-align: left;
}
.shochu-table th {
  background-color: #1a2a40;
  color: white;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Shippori Mincho", serif;
  line-height: 1.8;
  color: #333333;
  background-color: #f4f1ea;
  padding: 0;
  margin: 0;
}

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

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 640px) {
  .section-header {
    margin-bottom: 4rem;
  }
}
.section-header__label {
  color: #b89150;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  display: block;
}
.section-header__title {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}
@media (min-width: 640px) {
  .section-header__title {
    font-size: 1.875rem;
  }
}
.section-header--light {
  color: #ffffff;
}
.section-header--light .section-header__label {
  color: #b89150;
}
.section-header--light .section-header__title {
  color: #ffffff;
}

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  background-color: rgba(10, 25, 47, 0.95);
  padding: 1rem 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.header.scrolled {
  padding: 0.5rem 0;
}
.header__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 640px) {
  .header__container {
    padding: 0 1.5rem;
  }
}
.header__logo {
  color: #ffffff;
}
.header__logo-main {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (min-width: 640px) {
  .header__logo-main {
    font-size: 1.5rem;
  }
}
.header__logo-sub {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
}
.header__nav {
  display: none;
}
@media (min-width: 768px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  list-style: none;
}
.header__nav-link {
  color: #ffffff;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #b89150;
}
.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.header__reserve-btn {
  display: none;
  background-color: #b89150;
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.125rem;
  font-size: 0.875rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media (min-width: 640px) {
  .header__reserve-btn {
    display: block;
    display: none;
  }
}
@media (min-width: 768px) {
  .header__reserve-btn {
    display: block;
  }
}
.header__reserve-btn:hover {
  background-color: #a17d3f;
}
.header__hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
@media (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}
.header__hamburger span {
  width: 1.5rem;
  height: 0.125rem;
  background-color: #ffffff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header__hamburger.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translate(5px, 5px);
          transform: rotate(45deg) translate(5px, 5px);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -6px);
          transform: rotate(-45deg) translate(7px, -6px);
}
.header__mobile-menu {
  display: none;
  background-color: #0a192f;
  border-top: 1px solid rgba(184, 145, 80, 0.2);
}
@media (min-width: 768px) {
  .header__mobile-menu {
    display: none !important;
  }
}
.header__mobile-menu.active {
  display: block;
}
.header__mobile-nav {
  padding: 1.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.header__mobile-link {
  color: #ffffff;
  padding: 0.5rem 0;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.header__mobile-link:hover {
  color: #b89150;
}
.header__mobile-reserve {
  display: block;
  text-align: center;
  background-color: #b89150;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.125rem;
  margin-top: 1rem;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header__mobile-reserve:hover {
  background-color: #a17d3f;
}

.hero {
  position: relative;
  height: 100vh;
  background-image: url("../img/nagi2のコピー.jpeg");
  background-size: cover;
  background-position: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .hero {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    background-image: url("../img/nagi2のコピー.png");
  }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
.hero__content {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .hero__content {
    margin-right: 10%;
  }
}
.hero__text {
  color: #ffffff;
  font-size: 30px;
  letter-spacing: 0.3em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}
@media (min-width: 640px) {
  .hero__text {
    font-size: 36px;
  }
}
@media (min-width: 1024px) {
  .hero__text {
    font-size: 48px;
    letter-spacing: 0.4em;
  }
}
.hero__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  color: #ffffff;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  -webkit-animation: bounce 2s infinite;
          animation: bounce 2s infinite;
}

@-webkit-keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
}

@keyframes bounce {
  0%, 100% {
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  50% {
    -webkit-transform: translateX(-50%) translateY(-10px);
            transform: translateX(-50%) translateY(-10px);
  }
}
.notice {
  background: linear-gradient(135deg, #fff9e6 0%, #ffeaa7 100%);
  border-left: 4px solid #b89150;
  padding: 1.5rem 1rem;
}
@media (min-width: 640px) {
  .notice {
    padding: 2rem 1.5rem;
  }
}
.notice__container {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 640px) {
  .notice__container {
    gap: 1.5rem;
  }
}
.notice__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #b89150;
}
.notice__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 640px) {
  .notice__icon svg {
    width: 2rem;
    height: 2rem;
  }
}
.notice__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.notice__title {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #0a192f;
}
@media (min-width: 640px) {
  .notice__title {
    font-size: 1.125rem;
    margin-bottom: 1rem;
  }
}
.notice__text {
  font-size: 0.875rem;
  line-height: 1.8;
  color: #333333;
}
@media (min-width: 640px) {
  .notice__text {
    font-size: 0.9375rem;
  }
}

.concept {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .concept {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .concept {
    padding: 6rem 1.5rem;
  }
}
.concept__container {
  max-width: 1200px;
  margin: 0 auto;
}
.concept__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .concept__grid {
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .concept__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}
.concept__item-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .concept__item-title {
    font-size: 1.25rem;
  }
}
.concept__item-text {
  font-size: 0.875rem;
  line-height: 1.8;
}

.menu {
  padding: 4rem 1rem;
  background-color: #0a192f;
  color: #ffffff;
}
@media (min-width: 640px) {
  .menu {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .menu {
    padding: 6rem 1.5rem;
  }
}
.menu__container {
  max-width: 1200px;
  margin: 0 auto;
}
.menu__grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 768px) {
  .menu__grid {
    gap: 2.5rem;
  }
}
.menu__item {
  border: 1px solid rgba(184, 145, 80, 0.3);
  padding: 1rem;
}
@media (min-width: 640px) {
  .menu__item {
    padding: 1.5rem;
  }
}
.menu__item-image {
  height: 12rem;
  overflow: hidden;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .menu__item-image {
    height: 13rem;
    margin-bottom: 1.5rem;
  }
}
.menu__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu__item-title {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .menu__item-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}
.menu__item-description {
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: #d1d1d1;
}
@media (min-width: 640px) {
  .menu__item-description {
    margin-bottom: 1rem;
  }
}
.menu__item-price {
  color: #b89150;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .menu__item-price {
    font-size: 1rem;
  }
}
.menu__cta {
  text-align: center;
}
.menu__cta-btn {
  display: inline-block;
  border: 1px solid #ffffff;
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (min-width: 640px) {
  .menu__cta-btn {
    padding: 0.75rem 2rem;
  }
}
.menu__cta-btn:hover {
  background-color: #ffffff;
  color: #0a192f;
}

.info {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .info {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .info {
    padding: 6rem 1.5rem;
  }
}
.info__container {
  max-width: 1200px;
  margin: 0 auto;
}
.info__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .info__grid {
    gap: 3rem;
  }
}
@media (min-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.info__title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .info__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.info__table {
  width: 100%;
  border-collapse: collapse;
}
.info__table th, .info__table td {
  padding: 0.75rem 0;
  border-bottom: 1px solid #d1d1d1;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .info__table th, .info__table td {
    font-size: 1rem;
  }
}
.info__table th {
  text-align: left;
  padding-right: 1rem;
  width: 6rem;
}
@media (min-width: 640px) {
  .info__table th {
    width: 8rem;
  }
}
.info__faq-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.info__faq-item dt {
  font-weight: 500;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .info__faq-item dt {
    font-size: 1rem;
  }
}
.info__faq-item dd {
  font-size: 0.875rem;
  color: #666666;
  padding-left: 1rem;
}

.access {
  padding: 4rem 1rem;
  background-color: #f4f1ea;
}
@media (min-width: 640px) {
  .access {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .access {
    padding: 6rem 1.5rem;
  }
}
.access__container {
  max-width: 1200px;
  margin: 0 auto;
}
.access__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .access__grid {
    gap: 2.5rem;
  }
}
@media (min-width: 768px) {
  .access__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.access__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
}
.access__address-main {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 640px) {
  .access__address-main {
    font-size: 1.125rem;
  }
}
.access__address-sub {
  font-size: 0.875rem;
  color: #666666;
}
.access__phone {
  border: 2px solid #b89150;
  padding: 1rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .access__phone {
    padding: 1.5rem;
  }
}
.access__phone-label {
  font-size: 0.875rem;
  color: #666666;
}
.access__phone-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0a192f;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media (min-width: 640px) {
  .access__phone-number {
    font-size: 1.875rem;
  }
}
.access__phone-number svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 640px) {
  .access__phone-number svg {
    width: 2rem;
    height: 2rem;
  }
}
.access__phone-number:hover {
  color: #b89150;
}
.access__phone-note {
  font-size: 0.75rem;
  color: #999999;
}
.access__hours {
  font-size: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.access__hours strong {
  display: inline-block;
  width: 5rem;
}
@media (min-width: 640px) {
  .access__hours strong {
    width: 6rem;
  }
}
.access__map {
  height: 18.75rem;
  background-color: #d1d1d1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #666666;
}
@media (min-width: 640px) {
  .access__map {
    height: 21.875rem;
  }
}

.social {
  padding: 4rem 1rem;
}
@media (min-width: 640px) {
  .social {
    padding: 5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .social {
    padding: 6rem 1.5rem;
  }
}
.social__container {
  max-width: 1200px;
  margin: 0 auto;
}
.social__content {
  background-color: #f4f4f4;
  padding: 3rem 1rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .social__content {
    padding: 4rem 1rem;
  }
}
.social__icon {
  color: #b89150;
}
.social__icon svg {
  width: 3rem;
  height: 3rem;
}
@media (min-width: 640px) {
  .social__icon svg {
    width: 4rem;
    height: 4rem;
  }
}
.social__text {
  color: #666666;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .social__text {
    font-size: 1rem;
  }
}
.social .instagram-media {
  min-width: 280px !important;
}
.social__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#a855f7), to(#ec4899));
  background: linear-gradient(to right, #a855f7, #ec4899);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media (min-width: 640px) {
  .social__btn {
    padding: 0.75rem 2rem;
  }
}
.social__btn svg {
  width: 1rem;
  height: 1rem;
}
@media (min-width: 640px) {
  .social__btn svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.social__btn:hover {
  opacity: 0.9;
}

.footer {
  background-color: #000000;
  color: #ffffff;
  text-align: center;
  padding: 2.5rem 1rem;
}
@media (min-width: 640px) {
  .footer {
    padding: 3rem 1rem;
  }
}
.footer__logo {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .footer__logo {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: #999999;
}
@media (min-width: 640px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}