@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&family=Lateef:wght@400;700&display=swap");

/* ──────────────────────────────Base styles & utilities────────────────────────────────── */
:root {
  --clr-text: #333;
  --clr-brown: #5c4520;
  --clr-light-brown: #e4cf9a;
  --clr-green: #a9de3d;
  --clr-white: #ffffff;

  --ff-serif: "Noto Serif JP";
  --ff-lateef: "Lateef";

  --fw-400: 400;
  --fw-500: 500;
  --fw-700: 700;
  --fw-900: 900;

  --fs-16: 16px;
  --fs-20: 20px;
  --fs-24: 24px;
  --fs-36: 36px;
  --fs-66: 66px;
  --fs-100: 100px;
  --fs-200: 200px;

  --lh-20: 20px;
  --lh-30: 30px;
  --lh-38: 38px;
  --lh-50: 50px;

  --gradient-body: linear-gradient(
    180deg,
    #a9de3d 0%,
    #a9de3d 50%,
    #ffffff 90%,
    #ffffff 100%
  );
}

main#content {
  background: url("../assets/common/background/background.png") repeat center
      top / contain,
    var(--gradient-body);
  background-repeat: repeat;
  background-position: center top;
  background-size: contain;
  padding-bottom: 100px;
}

body {
  padding: 0;
  margin: 0;
  font-family: var(--ff-serif);
  font-size: var(--fs-16);
  font-style: normal;
  font-weight: var(--fw-400);
  line-height: normal;
  color: var(--clr-text);
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  margin: 0;
  padding: 0;
}

/* ───────────────────────────────EFFECTS────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.reveal.anim-up {
  opacity: 1;
  transform: translateY(0);
}

.reveal.anim-down {
  opacity: 1;
  transform: translateY(0);
}

.anim-up {
  animation: fadeUp 0.8s ease forwards;
}

.anim-down {
  animation: fadeDown 0.8s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ───────────────────────────────Font utilities────────────────────────────────── */
.ff-serif {
  font-family: var(--ff-serif);
}
.ff-lateef {
  font-family: var(--ff-lateef);
}

.fw-400 {
  font-weight: var(--fw-400);
}

.fw-500 {
  font-weight: var(--fw-500);
}
.fw-700 {
  font-weight: var(--fw-700);
}
.fw-900 {
  font-weight: var(--fw-900);
}

.fs-16 {
  font-size: var(--fs-16);
}
.fs-20 {
  font-size: var(--fs-20);
}
.fs-24 {
  font-size: var(--fs-24);
}
.fs-36 {
  font-size: var(--fs-36);
}
.fs-66 {
  font-size: var(--fs-66);
}
.fs-100 {
  font-size: var(--fs-100);
}
.fs-200 {
  font-size: var(--fs-200);
}

.lh-20 {
  line-height: var(--lh-20);
}

.lh-30 {
  line-height: var(--lh-30);
}

.lh-38 {
  line-height: var(--lh-38);
}

.lh-50 {
  line-height: var(--lh-50);
}

.ls-15 {
  letter-spacing: 15px;
}

.ls-10 {
  letter-spacing: 10px;
}

.ls-5 {
  letter-spacing: 5px;
}

/* ───────────────────────────────Color utilities────────────────────────────────── */
.text-dark {
  color: var(--clr-text);
}
.text-brown {
  color: var(--clr-brown);
}
.text-light-brown {
  color: var(--clr-light-brown);
}
.text-green {
  color: var(--clr-green);
}
.text-white {
  color: var(--clr-white);
}

.bg-gradient {
  background: var(--gradient-body);
}
.bg-white {
  background-color: var(--clr-white);
}
.bg-brown {
  background-color: var(--clr-brown);
}
.bg-green {
  background-color: var(--clr-green);
}

.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.ta-c {
  text-align: center;
}

.ta-j {
  text-align: justify;
}
/* ───────────────────────────────Header & Footer────────────────────────────────── */
.site-header__lang,
.site-header__lang .gtranslate_wrapper,
.site-header__lang .gt_container {
  position: relative;
  z-index: 60;
}

.site-header__lang .gt_float_switcher .gt-selected .gt-current-lang {
  padding: 5px;
  color: #333;
  font-weight: bold;
}

.site-header__lang .gt_float_switcher {
  font-family: var(--ff-serif);
  font-size: 16px;
  border-radius: 0;
}

.site-header__lang .gt_options {
  position: absolute !important;
  top: calc(100% + 0px) !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  max-height: 50vh;
  overflow: auto;
  white-space: nowrap;
  padding: 6px 0;
}

.site-header__lang .gt-current-lang {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2500;
  background: url("../assets/common/header/design.png") no-repeat left center,
    url("../assets/common/header/white-mask.png") no-repeat -100px center,
    url("../assets/common/background/background.png") repeat center top,
    linear-gradient(to right, #ffffff 0%, #a9de3d 100%);
  background-size: contain, cover, cover, 100% 100%;
  background-attachment: scroll, scroll, scroll, scroll;
  border-bottom: 1px solid var(--clr-brown);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  overflow: visible;
}

.site-header__inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 53px 100px 53px 200px;
}

.site-header__logo img {
  height: 44px;
  width: auto;
  display: block;
}

.site-header__nav-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 50px;
}

.site-header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.site-header__nav a {
  font-family: var(--ff-serif);
  font-size: 16px;
  color: #333;
  transition: all 0.25s ease;
}

.site-header__nav a:hover {
  color: #a9de3d;
  font-weight: 900;
  text-shadow: -1px -1px 0 var(--clr-brown), 1px -1px 0 var(--clr-brown),
    -1px 1px 0 var(--clr-brown), 1px 1px 0 var(--clr-brown);
}

.mobile-nav-list li a {
  font-family: var(--ff-serif);
  font-size: 16px;
  color: #333;
  transition: all 0.25s ease;
}

.mobile-nav-list li a:hover {
  color: #a9de3d;
  font-weight: 900;
  text-shadow: -1px -1px 0 var(--clr-brown), 1px -1px 0 var(--clr-brown),
    -1px 1px 0 var(--clr-brown), 1px 1px 0 var(--clr-brown);
}

.site-header__info {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.site-header__phone {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-header__phone img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
.site-header__phone a {
  color: #333;
}

.site-header__sns a img {
  width: 28px;
  height: 28px;
  display: block;
}

.site-header__lang {
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__lang .glink,
.site-header__lang .gtranslate_wrapper {
  display: inline-flex;
  align-items: center;
}

.burger {
  position: relative;
  display: none;
  width: 32px;
  height: 26px;
  z-index: 4000 !important;
  cursor: pointer;
}
.burger .burger-bar,
.burger .burger-bar::before,
.burger .burger-bar::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  width: 25px;
  border-radius: 4px;
  background: #333;
  transition: transform 0.28s ease, opacity 0.2s ease, top 0.28s ease,
    bottom 0.28s ease;
}
.burger .burger-bar {
  top: 50%;
  transform: translateY(-50%);
}
.burger .burger-bar::before {
  top: -8px;
}
.burger .burger-bar::after {
  bottom: -8px;
}
.burger.active .burger-bar {
  background: #333;
  transform: rotate(45deg);
}
.burger.active .burger-bar::before {
  top: 0;
  transform: rotate(90deg);
}

.burger.active .burger-bar::after {
  bottom: 0;
  transform: rotate(90deg);
}
.burger-header-wrapper {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: url("../assets/common/background/background.png") repeat center
      top,
    linear-gradient(to right, #ffffff 0%, #a9de3d 100%);
  background-size: contain, cover, 100% 100%;
  background-attachment: scroll, scroll, scroll;
  overflow: auto;
}
.burger-header-wrapper.open {
  display: block;
}
.mobile-nav {
  min-height: 100vh;
  padding: 20vh 20px 20px;
}
.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 5vh;
  text-align: center;
  flex-direction: column;
}
.mobile-nav-list a {
  display: inline-block;
  text-decoration: none;
  color: #333;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.mobile-sep {
  margin: 28px auto;
  width: min(300px, 80%);
  border: 0;
  height: 1px;
  background: #333;
}
.mobile-utilities {
  display: flex;
  gap: 30px;
  justify-items: center;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.mobile-utilities .mutil {
  display: inline-block;
  text-decoration: none;
  color: #333;
}

.stop-body {
  overflow: hidden;
}

.footer-cta {
  background: url("../assets/common/footer/bg-design03.png") no-repeat right 40%,
    url("../assets/common/footer/bg-design04.png") no-repeat left bottom,
    #5c4520;
  background-size: 730px auto, 730px auto, auto;
  padding-block: 100px;
}

.footer-cta .section-container {
  display: grid;
  place-items: center;
}
.footer-cta__stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  text-align: center;
}

.text-white {
  color: #fff;
}

.footer-cta__btn {
  display: flex;
  justify-content: center;
}
.footer-cta__btn a {
  display: flex;
  width: 300px;
  height: 60px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: var(--clr-light-brown);
  color: var(--clr-brown);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  transition: transform 0.08s ease, box-shadow 0.08s ease, filter 0.08s ease;
}
.footer-cta__btn a:hover {
  filter: brightness(1.02);
}
.footer-cta__btn a:active {
  transform: translateY(1px); /* click feel */
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.footer-cta__btn i {
  font-size: 20px;
  color: var(--clr-brown);
}
.site-footer {
  background: url("../assets/common/footer/bg-design05.png") no-repeat right
      center,
    url("../assets/common/footer/footer-background.jpg") no-repeat center;
  background-size: contain, cover;
  background-attachment: scroll, scroll;
  background-blend-mode: normal;
  padding-block: 50px 30px;
  position: relative;
  z-index: 1;
}

.site-footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
}

.site-footer__logo {
  display: grid;
  place-items: center;
}
.site-footer__logo img {
  display: block;
  width: 50px;
  height: 227px;
}

.site-footer__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.site-footer__nav a {
  color: #333;
  transition: color 0.2s ease, text-shadow 0.2s ease, font-weight 0.2s ease;
}
.site-footer__nav a:hover {
  color: #a9de3d;
  font-weight: 900;
  text-shadow: -1px -1px 0 var(--clr-brown), 1px -1px 0 var(--clr-brown),
    -1px 1px 0 var(--clr-brown), 1px 1px 0 var(--clr-brown);
}

.site-footer__meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  color: #333;
}

.footer-link {
  color: #333;
  transition: color 0.2s ease, text-shadow 0.2s ease, font-weight 0.2s ease;
}

.footer-link:hover {
  color: #a9de3d;
  font-weight: 900;
  text-shadow: -1px -1px 0 var(--clr-brown), 1px -1px 0 var(--clr-brown),
    -1px 1px 0 var(--clr-brown), 1px 1px 0 var(--clr-brown);
}

.site-footer__divider {
  width: 1px;
  height: 20px;
  background: var(--clr-brown);
  display: inline-block;
}

.site-footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.site-footer__phone img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  display: block;
}
.site-footer__phone a {
  color: #333;
}

.site-footer__sns a img {
  width: 26px;
  height: 26px;
  display: block;
}

.site-footer__copy {
  text-align: center;
  color: #333;
  margin-top: 30px;
}

/* ──────────────────────────────Index────────────────────────────────── */
.mv {
  padding: 180px 50px 0 50px;
}

.mv-media {
  position: relative;
  border-radius: 5px;
  border: 2px solid var(--clr-brown);
  overflow: hidden;
  padding: 30px;
}

.mv-img {
  display: block;
  width: 100%;
  height: 640px;
  object-fit: cover;
}

.mv-logo {
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 2;
  width: 107px;
  height: 471px;
}

.section-wrapper {
  position: relative;
  max-width: 1920px;
  padding: 0 175px;
  margin: 0 auto;
}

.bottom-border {
  border-bottom: 2px solid var(--clr-brown);
}

.section01 {
  background: url("../assets/common/background/bg-design01.png") no-repeat left
    bottom;
  background-size: auto, contain, 100% 100%;
}

.section01-wrapper {
  margin: 150px 0 100px 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: row;
  gap: 30px;
}

.s1-text {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: start;
}

.s1-title {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.s1-body {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
}

.s1-media {
  position: relative;
}
.s1-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid var(--clr-brown);
  box-shadow: 0 18px 48px rgba(92, 69, 32, 0.15),
    inset 0 0 60px rgba(255, 255, 255, 0.35);
}

.section02 {
  background: url("../assets/common/background/bg-design02.png") no-repeat right
    92%;
  background-size: 1200px auto, contain, 100% 100%;
  padding: 60px 0;
}

.sec02 {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.sec02-head {
  text-align: center;
}
.sec02-head h2 {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.sec02-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sec02-item {
  display: flex;
  gap: 30px;
  align-items: start;
  justify-content: space-between;
}

.sec02-item.reverse .sec02-media {
  order: 2;
}
.sec02-item.reverse .sec02-text {
  order: 1;
}

.sec02-media {
  width: 50%;
  height: 100%;
  border-radius: 5px;
  border: 2px solid #5c4520;
  box-shadow: 0 18px 48px rgba(92, 69, 32, 0.15),
    inset 0 0 50px rgba(255, 255, 255, 0.35);
}

.sec02-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec02-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 50%;
}

.sec02-btn {
  margin-top: 30px;
}
.sec02-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #5c4520;
  border-bottom: 1px solid #5c4520;
  padding-bottom: 20px;
  transition: padding-right 0.2s ease, border-color 0.2s ease;
}

.sec02-arrow {
  display: inline-flex;
  align-items: center;
}

.sec02-arrow svg {
  width: 50px;
  height: 8px;
  transform-origin: left center;
  transition: transform 0.2s ease;
}

.sec02-btn a:hover,
.sec02-btn a:active {
  padding-right: 10px;
}
.sec02-btn a:hover .sec02-arrow svg,
.sec02-btn a:active .sec02-arrow svg {
  transform: scaleX(1.2);
}

.wrapper-container {
  margin: 100px 0 0 0;
  border-bottom: 2px solid var(--clr-brown);
}

.slider-wrapper {
  position: relative;
  padding: 100px 0;
}
.slider-wrapper h1 {
  position: absolute;
  color: rgba(92, 69, 32, 0.5);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-size: clamp(20px, 18vw, 200px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  z-index: 1;
}

.slider-header1 {
  top: -40px;
  left: 20px;
}

.slider-header2 {
  top: -40px;
  right: 20px;
}

.slider {
  border-top: 2px solid var(--clr-brown);
  border-bottom: 2px solid var(--clr-brown);
  padding: 30px 0;
}

.sl-img {
  border-radius: 5px;
  padding: 0 10px;
}

.slick-slide img {
  border-radius: 5px;
  object-fit: cover;
}

.regular {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.slick-prev,
.slick-next {
  width: 60px;
  height: 60px;
  background-color: var(--clr-brown);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 45%;
  z-index: 1;
  transition: 0.3s ease;
  cursor: pointer;
  border: none;
}

.slick-prev i,
.slick-next i {
  color: #fff;
  font-size: 30px;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.7;
}

.slick-prev {
  left: 15.5vw;
}

.slick-next {
  right: 15.5vw;
}

.btn-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 0 200px;
  margin-top: 60px;
}

.section03 {
  padding: 60px 0;
}

.sec03-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sec02-head i {
  font-size: 36px;
  color: #5c4520;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.sec03-grid {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-around;
}

.sec03-info .text-brown {
  color: #5c4520;
}
.sec03-table .row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 0;
  align-items: start;
  padding: 15px 0;
}
.sec03-table dt {
  color: #5c4520;
}
.sec03-table dd {
  margin: 0;
  color: #333;
  line-height: 30px;
}

.sec03-map {
  width: 50%;
}

.map-frame {
  border: 2px solid #5c4520;
  border-radius: 5px;
  overflow: hidden;
  padding: 20px;
  box-shadow: 0 12px 36px rgba(92, 69, 32, 0.12);
}
.map-frame iframe {
  display: block;
  width: 100%;
  height: 450px;
}

.access-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  padding: 0 100px;
}

.access-btn-wrapper .sec02-btn {
  margin-top: 0;
}
/* ───────────────────────────────Commit────────────────────────────────── */
.submv-wrapper {
  border-top: 2px solid #5c4520;
  border-bottom: 2px solid #5c4520;
  padding: 100px 200px;
}

.submv-inner {
  max-width: 1920px;
  margin: 0 auto;
}

.submv-jp {
  line-height: 1.2;
  letter-spacing: 0.04em;
  margin: 0;
}

.submv-en {
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin: 10px 0 0 20px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 60px;
}

.breadcrumb a {
  color: #333;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.breadcrumb a:hover {
  opacity: 0.7;
}

.breadcrumb i {
  font-size: 16px;
}

.page-commit,
.page-drinks,
.page-contact {
  padding-top: 144px;
}

.commit {
  padding: 100px 0 0 0;
}

.page-drinks .commit,
.page-commit .commit,
.page-sushi .commit {
  padding: 100px 0;
}

.content01 {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.content-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.content-reverse {
  flex-direction: row-reverse;
}

.media {
  position: relative;
  flex: 0 0 48%;
}
.photo {
  height: 100%;
  border-radius: 5px;
  border: 2px solid #5c4520;
}
.photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.left-photo {
  flex: 1 1 52%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left-photo img {
  width: 380px;
  height: 274px;
  display: block;
}

.v-label {
  position: absolute;
  writing-mode: vertical-rl;
  top: -10px;
  left: -50px;
  letter-spacing: 10px;
  pointer-events: none;
  user-select: none;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.media.right .v-label {
  left: auto;
  right: -50px;
}

.copy {
  flex: 1 1 52%;
}
.commit-ttl {
  line-height: 1.6;
  margin: 0 0 18px;
}
.copy p {
  margin: 0;
}

/* ───────────────────────────────Sushi────────────────────────────────── */
.btn-container {
  display: flex;
  justify-content: flex-end;
}

.blog-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
}

/* ───────────────────────────────Course────────────────────────────────── */
.course {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.course-feature {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 60px 100px;
  border: 2px solid #5c4520;
}

.course-feature-img {
  width: 100%;
  height: 100%;
}

.course-feature-img img {
  width: 100%;
  height: 100%;
}

.course-feature-text {
  text-align: center;
}

.course-pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
}

.course-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.course-col.right {
  margin-top: 100px;
}

.course-img {
  width: 100%;
  height: 100%;
}
.course-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.course-texts {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.course-vtitle {
  writing-mode: vertical-rl;
  margin: 0;
}

.course-vdesc {
  writing-mode: vertical-rl;
  margin: 0;
}

.divider-container {
  background: url("../assets/common/footer/bg-design03.png") no-repeat right 40%,
    #5c4520;
  background-size: 730px auto, 730px auto, auto;
  padding-block: 100px;
  margin-top: 100px;
}

/* ───────────────────────────────Drinks────────────────────────────────── */
main#content.page-drinks {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.drinks {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.drinks-hero {
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: space-between;
}

.drinks-body {
  writing-mode: vertical-rl;
  text-orientation: upright;
  margin: 0;
}

.drinks-photo {
  margin: 0;
  border-radius: 5px;
}
.drinks-photo img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.drinks-title {
  writing-mode: vertical-rl;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.drinks-cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
}

.drink-card {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.drink-title {
  margin-bottom: 30px;
}

.drink-img {
  width: 100%;
  height: 100%;
}
.drink-img img {
  display: block;
  width: 100%;
  height: 100%;
}

.drinks-menu {
  position: relative;
  overflow: hidden;
  background: url("../assets/drinks/sec03-bg.jpg") center / cover no-repeat;
}

.drinks-menu__inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 50px 0 100px 0;
  align-items: center;
  color: #fff;
}

.drinks-menu__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.drinks-menu__logo {
  width: 55px;
  height: 242px;
}

.drinks-menu__title {
  margin-bottom: 30px;
  text-align: center;
  opacity: 0.8;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.drinks-menu__note {
  text-align: center;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}

.drinks-menu__tables {
  display: flex;
  gap: 60px;
  justify-content: center;
}

.menu-table {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.menu-label {
  background: #bcae96;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  place-content: center;
}
.menu-list {
  padding: 30px 0 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.menu-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.menu-row .name {
  white-space: nowrap;
}
.menu-row .dash {
  width: 170px;
  border-bottom: 1px dashed #f5f5f5;
  transform: translateY(-5px);
  flex: 0 0 170px;
}

.price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  margin-left: auto;
  line-height: 1.4;
}

.menu-row .price {
  white-space: nowrap;
  color: #bcae96;
}
.menu-sub {
  display: flex;
  justify-content: flex-end;
}

.menu-sub .sub {
  color: #bcae96;
  opacity: 0.9;
}

/* ───────────────────────────────Access────────────────────────────────── */
.access {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.content03-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-around;
}

.access-info {
  flex: 1 1 45%;
}

.access-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.access-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px;
}

.access .sec03-map {
  width: 100%;
}

.seats {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.seats h2 {
  text-align: center;
}

.seats-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.seats-media {
  display: flex;
  margin: 0;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 50%;
}

.seats-media img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: contain;
}

.seats-copy {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* ───────────────────────────────Privacy────────────────────────────────── */

.privacy-policy__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  border-radius: 5px;
  border: 2px solid #5c4520;
  margin-top: 100px;
  padding: 60px;
}

.py-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.py-container h1 {
  font-weight: 700;
  font-size: 16px;
}

.py-container span {
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
}

/* ───────────────────────────────BLOG────────────────────────────────── */
.blog-hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.hero-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.hero-img {
  width: 780px;
  height: 453px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.hero-meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-meta a {
  text-decoration: none;
  color: var(--clr-brown);
}

.hero-meta h5 {
  font-size: 36px;
}

.blog-card {
  width: 100%;
}

.blog-card a {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-decoration: none;
}

.blog-desc {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* limit to 1 line */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
  max-width: 100%;
}

.blog-page-info {
  line-height: 36px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: space-between;
  justify-items: center;
}

.card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 5px;
  display: block;
}

.blog-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blog-caption {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3; /* limit to 3 lines */
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  max-width: 100%;
}

.blog-pagination .page-num.is-hidden {
  display: none;
}

.blog-pagination {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.blog-pagination a,
.sec03-meta a {
  text-decoration: none;
  color: #000000;
}
.blog-pagination .page-num {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 25px;
  color: var(--clr-brown);
}
.blog-pagination .page-num.is-active {
  background: var(--clr-brown);
  color: white;
}

.blog-pagination i {
  color: var(--clr-brown);
}

.post {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.post-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid #6b8936;
}

.post-figure {
  margin: 0;
}

.post-hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}

/* ───────────────────────────────CONTACT────────────────────────────────── */
.form-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 100px;
  margin-top: 100px;
}

.section-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.contact-header-text {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

.jp-contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  line-height: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 200px 50px 1fr;
  align-items: center;
  gap: 50px;
  padding: 30px 0;
  border-bottom: 1px solid #cac9c9;
}

.form-row label {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.required {
  display: flex;
  background: #820606;
  color: white;
  width: 50px;
  height: 30px;
  justify-content: center;
  align-items: center;
}

.required span {
  color: #f9f9f9;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 1.6px;
}

.optional {
  content: "";
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  display: flex;
  width: 400px;
  height: 50px;
  padding: 0px 20px;
  align-items: center;
  border: 0.5px solid #989898;
  background: #f9f9f9;
  font-family: inherit;
  font-size: inherit;
}

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #cac9c9;
  background-color: #f9f9f9;
  display: inline-block;
  position: relative;
  cursor: pointer;
  vertical-align: middle;
  transition: background-color 0.2s;
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 10px;
  height: 10px;
  background-color: var(--clr-brown);
  border-radius: 50%;
  border: none;
}

textarea {
  display: flex;
  width: 100%;
  height: 150px;
  font-family: inherit;
  font-size: inherit;
  padding: 20px;
  align-items: center;
  border: 0.5px solid #989898;
  background: #f9f9f9;
}

.radio-group {
  display: flex;
  gap: 20px;
  align-items: center;
}

.radio-item {
  display: flex;
  gap: 10px;
}

.radio-group span {
  font-size: 16px;
  font-style: normal;
  line-height: 27px;
  letter-spacing: 1.6px;
  color: inherit;
}

input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  background-color: #fff;
  border: 1px solid #cac9c9;
  cursor: pointer;
  position: relative;
  vertical-align: middle;
  transition: background-color 0.2s, border-color 0.2s;
}

input[type="checkbox"]:checked {
  background-color: none;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 10px;
  border: 1px solid var(--clr-brown);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.privacy-text {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  font-weight: 500;
}

.privacy-box a {
  color: #820606;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
}

.privacy-box a:hover {
  text-decoration: underline;
  text-decoration-color: #820606;
}

.privacy-box span {
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px;
}

input::placeholder,
textarea::placeholder {
  color: #31313133;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.6px;
  display: flex;
  align-items: baseline;
}

.input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: normal;
  align-items: center;
}

.mwform-checkbox-field-text {
  display: none;
}

body.page-template-page-contact0-check .required,
body.page-template-page-contact0-check .optional {
  display: none;
}

body.page-template-page-contact0-check .mwform-checkbox-field-text {
  display: inline;
}

body.page-template-page-contact0-check .privacy-text {
  display: none !important;
}

.mwform-checkbox-field input,
.mwform-radio-field input {
  margin: 0 !important;
}

.contact-check-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 200px;
}

.contact-head-text {
  width: 100%;
  text-align: center;
  padding-bottom: 30px;
}

body.page-template-page-contact0-check .form-row,
.contact-check-page .jp-contact-form .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 59, 132, 0.5);
}

.contact-check-page .jp-contact-form .required,
.contact-check-page .jp-contact-form .optional,
.contact-check-page .jp-contact-form .privacy-box a,
.contact-check-page .jp-contact-form .privacy-box i,
.contact-check-page .jp-contact-form .privacy-box span {
  display: none;
}

.contact-check-page .static-answer {
  color: var(--Text-Color, #1e1e1e);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.6px;
}

.contact-check-page .jp-contact-form .form-row {
  display: grid;
  grid-template-columns: 250px 1fr;
  align-items: center;
  gap: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
}

.contact-check-page .jp-contact-form .required,
.contact-check-page .jp-contact-form .optional,
.contact-check-page .jp-contact-form .privacy-box a,
.contact-check-page .jp-contact-form .privacy-box i,
.contact-check-page .jp-contact-form .privacy-box span,
.contact-check-page .jp-contact-form .button-wrapper {
  display: none;
}

.contact-check-page .static-answer {
  color: #1e1e1e;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 1.6px;
}

.secondary-button {
  display: flex;
  justify-content: center;
}

.secondary-button a {
  position: relative;
  display: block;
  width: 400px;
  background: #bcae96;
  border: 1px solid #000;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.secondary-button .icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 28px;
  height: 28px;
}

.secondary-button .icon i {
  font-size: 18px;
  color: var(--clr-white); /* white icon */
}

.secondary-button .label {
  display: inline-block;
  pointer-events: none;
  color: var(--clr-brown); /* #5C4520 text color */
}

.secondary-button a:hover {
  filter: brightness(0.95);
}

.secondary-button a:active {
  transform: translateY(1px);
}

/* ───────────────────────────────ERROR────────────────────────────────── */
.hero-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 100px 0;
}

.hero-figure {
  width: 320px;
  height: 231px;
  margin: 0;
}
.hero-figure img {
  display: block;
  width: 100%;
  height: 100%;
}

.primary-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.primary-button a {
  position: relative;
  display: block;
  width: 400px;
  background: var(--clr-brown);
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.primary-button .icon {
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 28px;
  height: 28px;
}
.primary-button .icon i {
  font-size: 18px;
  color: var(--clr-white);
}

.primary-button .label {
  display: inline-block;
  pointer-events: none;
}

.primary-button a:hover {
  filter: brightness(0.95);
}
.primary-button a:active {
  transform: translateY(1px);
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.button-wrapper01 {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form-btn2 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 390px;
  height: 60px;
  padding: 20px 60px;
  font-family: inherit;
  color: white;
  font-size: 20px;
  width: 400px;
  background: #5c4520;
  border: transparent;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  will-change: transform, box-shadow;
  align-self: center;
  cursor: pointer;
}
.form-btn2 i {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}
.form-btn2 span {
  line-height: 1;
}
.form-btn2:hover {
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
  transform: none;
  filter: none;
}

.form-btn3 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 390px;
  height: 60px;
  padding: 20px 60px;
  font-family: inherit;
  color: #5c4520;
  font-size: 20px;
  width: 400px;
  background: #bcae96;
  border: 1px solid #000;
  padding: 20px 40px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  will-change: transform, box-shadow;
  align-self: center;
}
.form-btn3 i {
  position: absolute;
  left: 60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  pointer-events: none;
}
.form-btn3 span {
  line-height: 1;
}
.form-btn3:hover {
  box-shadow: inset 0px 3px 6px rgba(0, 0, 0, 0.2);
  transform: none;
  filter: none;
}

/* ───────────────────────────────Responsive────────────────────────────────── */

@media (max-width: 1600px) {
  .site-header__inner {
    padding: 50px 50px 50px 100px;
  }

  .sl-img {
    width: 320px;
    height: 300px;
  }

  .slick-slide img {
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 1500px) {
  .section-wrapper,
  .btn-wrapper {
    padding: 0 150px;
  }
}

@media (max-width: 1440px) {
  .sl-img {
    width: 300px;
  }

  .slider-wrapper h1 {
    font-size: 150px;
  }

  .submv-wrapper {
    padding: 100px 150px;
  }
}

@media (max-width: 1340px) {
  .sl-img {
    width: unset;
    height: unset;
  }
}

@media (max-width: 1300px) {
  .site-header__nav,
  .site-header__info,
  .site-footer__nav {
    display: none;
  }

  .burger {
    display: block;
  }
}

@media (max-width: 1240px) {
  .site-header__inner {
    padding: 30px 50px 30px 100px;
  }

  .mv-img {
    height: 540px;
  }

  .section-wrapper,
  .btn-wrapper {
    padding: 0 100px;
  }

  .submv-wrapper {
    padding: 100px;
  }

  .submv-jp {
    font-size: 80px;
  }

  .page-commit,
  .page-drinks,
  .page-contact {
    padding-top: 105px;
  }

  .course-feature {
    padding: 60px;
  }
}

@media (max-width: 1180px) {
  .site-header__inner {
    padding: 30px 50px 30px 140px;
  }
  .mv {
    padding: 140px 50px 0 50px;
  }

  .submv-wrapper {
    padding: 100px 50px;
  }

  .content-row {
    flex-direction: column;
  }

  .photo {
    width: 100%;
  }

  .copy,
  .media {
    flex: unset;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .site-header__inner {
    padding: 30px 30px 30px 140px;
  }
  .mv {
    padding: 120px 20px 0 20px;
  }
  .mv-media {
    padding: 20px;
  }

  .section-wrapper,
  .btn-wrapper {
    padding: 0 50px;
  }
  .btn-wrapper {
    margin-top: 30px;
  }

  .map-frame iframe {
    height: 400px;
  }

  .mv-logo {
    height: 300px;
  }

  .card-img {
    height: 250px;
  }

  .course-feature {
    padding: 60px 30px;
  }

  .contact-check-page .jp-contact-form .form-row,
  body.page-template-page-contact0-check .form-row {
    grid-template-columns: 250px 1fr;
    grid-template-rows: auto auto;
    gap: 0;
    padding-bottom: 10px;
  }

  .contact-check-page .jp-contact-form label,
  body.page-template-page-contact0-check .form-row label {
    grid-column: 1;
    grid-row: 1;
  }

  .contact-check-page .jp-contact-form .static-answer,
  body.page-template-page-contact0-check #text {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 200px 1fr;
    grid-template-rows: auto auto;
    gap: 10px 20px;
  }

  .form-row label {
    grid-column: 1;
  }

  .form-row .required,
  .form-row .optional {
    grid-column: 2;
  }

  .form-row .input-wrapper {
    grid-column: 1 / span 2;
    grid-row: 2;
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: justify;
    leading-trim: both;
    text-edge: cap;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
  }

  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="tel"],
  .form-row textarea,
  .form-row .radio-group,
  .form-row .privacy-box {
    grid-column: 1 / span 2;
    grid-row: 2;
    width: 100%;
  }

  textarea {
    height: 200px;
  }

  .form-block {
    padding: 0;
  }

  .button-wrapper01 {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .drinks-menu__tables,
  .menu-list {
    flex-direction: column;
    width: 100%;
  }

  .drinks-menu__inner {
    flex-direction: column;
  }

  .menu-row {
    justify-content: space-between;
  }

  .menu-row .dash {
    width: 100%;
    flex: unset;
  }
}

@media (max-width: 940px) {
  .section01-wrapper {
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .s1-text,
  .sec02-item,
  .sec03-grid {
    flex-direction: column;
    align-items: center;
  }

  .s1-title,
  .s1-body {
    writing-mode: unset;
    text-align: center;
  }

  .s1-media,
  .sec02-text,
  .sec02-media {
    width: 100%;
    text-align: center;
  }

  .sec03-info {
    width: 100%;
  }

  .reverse {
    flex-direction: column-reverse;
  }

  .slider-wrapper h1 {
    font-size: 100px;
  }

  .slider-header1,
  .slider-header2,
  .slider-header3 {
    top: 0px;
  }

  .sec03-grid {
    gap: 30px;
  }

  .sec03-map {
    width: 100%;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-img {
    height: 300px;
  }

  .content03-grid {
    flex-direction: column-reverse;
  }

  .access-info,
  .access-image {
    flex: unset;
    width: 100%;
  }

  .sec03-table .row {
    grid-template-columns: 300px 1fr;
  }
}

@media (max-width: 840px) {
  .mv-logo {
    left: 30px;
  }

  .mv-img {
    height: 450px;
  }

  .section01-wrapper {
    margin: 100px 0;
  }

  .seats-row {
    flex-direction: column-reverse;
    gap: 60px;
  }

  .seats-copy,
  .seats-media {
    width: 100%;
  }

  .access-btn-wrapper {
    display: flex;
    padding: 0;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    padding: 30px;
  }

  .submv-jp {
    font-size: 70px;
  }

  .drinks-hero {
    gap: 60px;
    flex-direction: column-reverse;
  }

  .drinks-title,
  .drinks-body {
    writing-mode: unset;
  }

  .drinks-cards {
    flex-direction: column;
  }

  .drink-title {
    margin-bottom: 0;
    line-height: unset;
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .section-wrapper,
  .btn-wrapper {
    padding: 0 30px;
  }

  .v-label {
    font-size: 54px;
    left: -30px;
  }

  .media.right .v-label {
    left: auto;
    right: -30px;
  }

  .submv-wrapper {
    padding: 100px 20px;
  }

  .course-pair {
    flex-direction: column;
    gap: 60px;
  }

  .course-col.right {
    margin-top: 0;
  }

  .sec03-table .row {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .slider-wrapper h1 {
    font-size: 70px;
  }

  .slider-header1,
  .slider-header2,
  .slider-header3 {
    top: -30px;
  }

  .post-hero-img {
    height: 400px;
  }

  .primary-button a {
    width: 100%;
  }

  .s1-text,
  .sec02,
  .drinks-hero {
    gap: 30px;
  }
  .section01-wrapper {
    margin: 30px 0;
  }

  .wrapper-container {
    margin: 30px 0;
  }

  .slider-wrapper {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .site-header__inner {
    padding: 20px 30px;
  }

  .mv-img {
    height: 400px;
  }

  .mv-logo {
    top: 40px;
    left: 10px;
    height: 250px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .page-commit,
  .page-drinks,
  .page-contact {
    padding-top: 85px;
  }

  .submv-wrapper {
    padding: 60px 20px;
  }

  .submv-jp {
    font-size: 60px;
  }

  .left-photo img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .submv-jp {
    font-size: 40px;
  }

  .submv-en {
    margin: 10px 0 0 0;
  }

  .blog-pagination {
    gap: 40px;
  }

  .hero-figure {
    width: 250px;
    height: auto;
  }

  .hero-figure img {
    object-fit: contain;
  }
}

@media (max-width: 425px) {
  .slider-wrapper h1 {
    font-size: 60px;
  }
  .site-header__logo img {
    width: 150px;
    object-fit: contain;
  }

  .section-wrapper,
  .btn-wrapper {
    padding: 0 20px;
  }

  .s1-title {
    font-size: 24px;
    letter-spacing: 10px;
  }

  .footer-cta__stack p {
    font-size: 16px;
  }

  .site-footer__logo img {
    width: 44px;
    height: 150px;
  }

  .site-footer__meta {
    flex-direction: column;
  }

  .site-footer__divider {
    width: 60%;
    height: 1px;
  }

  .v-label {
    font-size: 45px;
    left: -20px;
  }

  .media.right .v-label {
    left: auto;
    right: -20px;
  }

  .course-feature {
    padding: 60px 20px;
  }

  .course-col,
  .course-feature {
    gap: 30px;
  }

  .hero-title {
    font-size: 24px;
  }

  .form-btn2,
  .form-btn3 {
    width: 100%;
  }

  .form-btn2 i {
    right: 20px;
  }

  .form-btn3 i {
    left: 20px;
  }

  .slider-header1,
  .slider-header2,
  .slider-header3 {
    top: -20px;
  }
}

@media (max-width: 375px) {
  .site-header__inner {
    padding: 20px;
  }

  .site-header__phone img {
    width: 20px;
    height: 20px;
  }

  .mv-media {
    padding: 10px;
  }

  .mv-logo {
    left: 0;
  }

  .sec03-table .row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .slider-wrapper {
    padding: 60px 0;
  }

  .slider-wrapper h1 {
    font-size: 46px;
  }

  .slider-header1,
  .slider-header2,
  .slider-header3 {
    top: 15px;
  }

  .footer-cta__btn a {
    width: 280px;
  }

  .submv-jp {
    font-size: 40px;
  }

  .mobile-utilities {
    flex-direction: column;
  }

  .primary-button .icon {
    left: 20px;
  }

  .privacy-text {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .form-row .input-wrapper {
    align-items: baseline;
  }

  .blog-pagination {
    gap: 20px;
  }
}

@media (max-width: 320px) {
}
