/*
 Theme Name:   Marutama GeneratePress Child
 Theme URI:    https://marutamamarket.com/
 Description:  酒のマルタマ公式サイト専用のGeneratePress子テーマ
 Author:       Marutama
 Template:     generatepress
 Version:      1.0.0
 Text Domain:  marutama-gp-child
*/

/*
 * Marutama site foundation
 * GeneratePress provides the WordPress core; shared presentation lives here.
 */
:root {
  --mt-brand: #7a1f22;
  --mt-brand-dark: #451416;
  --mt-ink: #251c18;
  --mt-paper: #f7f1e7;
  --mt-gold: #b68a42;
}

html {
  scroll-behavior: smooth;
}

body.page {
  margin: 0;
  color: var(--mt-ink);
  background: var(--mt-paper);
}

body.page #masthead,
body.page #site-navigation,
body.page .site-footer,
body.page .page-header,
body.page .entry-header {
  display: none !important;
}

body.page #page,
body.page .site.grid-container,
body.page .site-content,
body.page #primary,
body.page .content-area,
body.page .site-main,
body.page .inside-article,
body.page .entry-content {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.page .site-content {
  display: block;
}

body.page .entry-content > :first-child {
  margin-top: 0;
}

body.page .entry-content > :last-child {
  margin-bottom: 0;
}

body.page .comments-area,
body.page .post-navigation {
  display: none;
}

@media (max-width: 768px) {
  body.page #page,
  body.page .site-content,
  body.page .inside-article {
    padding: 0;
  }
}


body.page .widget-area,
body.page .site-footer {
  display: none !important;
}

.mt-global-footer {
  position: relative;
  z-index: 2;
  color: #f8f1e6;
  background:
    radial-gradient(circle at 10% 0%, rgba(182, 138, 66, 0.16), transparent 34%),
    #171311;
  border-top: 1px solid rgba(182, 138, 66, 0.45);
}

.mt-global-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding: 64px 0 24px;
}

.mt-global-footer__brand a {
  display: inline-flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.mt-global-footer__brand strong {
  font-family: Georgia, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.12em;
}

.mt-global-footer__brand span {
  margin-top: 4px;
  color: var(--mt-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.mt-global-footer__brand p {
  margin: 18px 0 0;
  color: rgba(248, 241, 230, 0.72);
}

.mt-global-footer__nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 24px;
  margin: 40px 0;
  padding: 32px 0;
  border-block: 1px solid rgba(248, 241, 230, 0.14);
}

.mt-global-footer__nav a,
.mt-global-footer__store a {
  color: #f8f1e6;
  text-decoration: none;
}

.mt-global-footer__nav a:hover,
.mt-global-footer__nav a:focus-visible,
.mt-global-footer__store a:hover,
.mt-global-footer__store a:focus-visible {
  color: #e4bd73;
}

.mt-global-footer__store {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  color: rgba(248, 241, 230, 0.82);
}

.mt-global-footer__store address,
.mt-global-footer__store p {
  margin: 0;
  font-style: normal;
}

.mt-global-footer__store a {
  font-size: 1.08rem;
  font-weight: 700;
}

.mt-global-footer__legal {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 40px;
  padding-top: 20px;
  color: rgba(248, 241, 230, 0.58);
  border-top: 1px solid rgba(248, 241, 230, 0.1);
  font-size: 0.78rem;
}

@media (max-width: 760px) {
  .mt-global-footer__inner {
    width: min(100% - 28px, 1180px);
    padding-top: 46px;
  }

  .mt-global-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mt-global-footer__store,
  .mt-global-footer__legal {
    align-items: flex-start;
    flex-direction: column;
  }
}


.mt-screen-reader-heading {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/*
 * Shared header foundation
 * Theme-owned header shared by every page.
 */
.mt-global-skip {
  position: fixed;
  z-index: 1000001;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #171311;
  background: #fff;
  border-radius: 4px;
  transform: translateY(-160%);
}

.mt-global-skip:focus {
  transform: none;
}

.mt-global-header {
  position: fixed;
  z-index: 999999;
  inset: 0 0 auto;
  height: 78px;
  color: #fff;
  background: rgba(20, 17, 15, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(14px);
}

body.admin-bar .mt-global-header {
  top: 32px;
}

.mt-global-header__inner {
  width: min(1420px, calc(100% - 36px));
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 26px;
}

.mt-global-header__brand {
  display: flex;
  flex: none;
  align-items: center;
  gap: 11px;
  color: #fff;
  text-decoration: none;
}

.mt-global-header__brand img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.mt-global-header__brand span,
.mt-global-header__brand strong,
.mt-global-header__brand small {
  display: block;
}

.mt-global-header__brand strong {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: 19px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.mt-global-header__brand small {
  margin-top: 6px;
  color: #d5ad62;
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: 0.18em;
}

.mt-global-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  margin-left: auto;
}

.mt-global-header__nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mt-global-header__nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: #b52b31;
  transition: right 0.2s ease;
}

.mt-global-header__nav a:hover::after,
.mt-global-header__nav a:focus-visible::after {
  right: 0;
}

.mt-global-header__actions {
  display: flex;
  flex: none;
  align-items: center;
  gap: 16px;
}

.mt-global-header__hours {
  text-align: right;
  color: rgba(255, 255, 255, 0.68);
  font-size: 8px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.mt-global-header__hours strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0;
}

.mt-global-header__visit {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #d93624;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.mt-global-header__visit:hover,
.mt-global-header__visit:focus-visible {
  color: #fff;
  background: #b52b31;
}

.mt-global-header__mobile {
  display: none;
  position: relative;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
}

.mt-global-header__mobile summary {
  min-height: 42px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  color: #fff;
  background: #d93624;
  border-radius: 999px;
  cursor: pointer;
  list-style: none;
  font-size: 12px;
  font-weight: 900;
}

.mt-global-header__mobile summary::-webkit-details-marker {
  display: none;
}

.mt-global-header__mobile nav {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: min(280px, calc(100vw - 24px));
  padding: 10px;
  background: #fff;
  border: 1px solid #d9cbb9;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

.mt-global-header__mobile nav a {
  display: block;
  padding: 11px 12px;
  color: #201714;
  text-decoration: none;
  border-bottom: 1px solid #eee5d9;
  font-size: 13px;
  font-weight: 700;
}

.mt-global-header__mobile nav a:last-child {
  border-bottom: 0;
}

.mt-global-header__mobile nav a:hover,
.mt-global-header__mobile nav a:focus-visible {
  color: #8d2028;
  background: #f5efe5;
}

@media (max-width: 1120px) {
  .mt-global-header__nav {
    gap: 12px;
  }

  .mt-global-header__nav a {
    font-size: 11px;
  }

  .mt-global-header__hours {
    display: none;
  }
}

@media (max-width: 920px) {
  .mt-global-header {
    height: 68px;
  }

  .mt-global-header__inner {
    width: calc(100% - 24px);
  }

  .mt-global-header__nav,
  .mt-global-header__actions {
    display: none;
  }

  .mt-global-header__mobile {
    display: block;
    margin-left: auto;
  }
}

@media (max-width: 782px) {
  body.admin-bar .mt-global-header {
    top: 46px;
  }
}

@media (max-width: 480px) {
  .mt-global-header {
    height: 60px;
  }

  .mt-global-header__inner {
    width: calc(100% - 18px);
  }

  .mt-global-header__brand img {
    width: 38px;
    height: 38px;
  }

  .mt-global-header__brand strong {
    font-size: 16px;
  }

  .mt-global-header__brand small {
    display: none;
  }

  .mt-global-header__mobile summary {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 11px;
  }
}

/*
 * Shared lower-page components (MMX)
 * Centralized from page-embedded styles for 100-page operation.
 */
/* MMX_TOPMENU_RESET_V4 */
/* MMX_FIXED_BAR_V2 */
/* MMX_FIXED_HOME_V1 */

.mmx{--ink:#201714;--wine:#8d2028;--gold:#d5ad62;--cream:#f5efe5;--line:#d9cbb9;color:var(--ink);font-family:"Zen Kaku Gothic New","Yu Gothic",sans-serif;line-height:1.85}.mmx *{box-sizing:border-box}.mmx a{color:inherit}.mmx-wrap{width:min(1120px,calc(100% - 40px));margin:auto}.mmx-hero{min-height:680px;display:flex;align-items:center;position:relative;background-size:cover;background-position:center;color:#fff;isolation:isolate}.mmx-hero:before{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(19,12,10,.93) 0%,rgba(19,12,10,.70) 38%,rgba(19,12,10,.08) 72%);z-index:-1}.mmx-copy{width:min(650px,90%);padding:90px 0}.mmx-kicker{color:#f0d58e;font-weight:900;letter-spacing:.18em;margin:0}.mmx h1{font-family:"Yu Mincho",serif;font-size:clamp(2.6rem,6vw,5.5rem);line-height:1.18;margin:18px 0 24px;color:#fff}.mmx-lead{font-size:clamp(1rem,1.7vw,1.25rem);max-width:590px}.mmx-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:30px}.mmx-btn{display:inline-flex;min-height:50px;align-items:center;padding:11px 22px;background:var(--wine);color:#fff!important;text-decoration:none;font-weight:900;border:1px solid transparent}.mmx-btn.-ghost{background:rgba(0,0,0,.25);border-color:#fff}.mmx-intro{padding:90px 0;background:var(--cream)}.mmx-head{text-align:center;max-width:760px;margin:0 auto 40px}.mmx-eyebrow{color:var(--wine);font-weight:900;letter-spacing:.14em}.mmx h2{font-family:"Yu Mincho",serif;font-size:clamp(2rem,4.2vw,3.5rem);line-height:1.3;margin:10px 0;color:var(--ink)}.mmx-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}.mmx-card{background:#fff;border:1px solid var(--line);padding:30px;box-shadow:0 10px 28px rgba(47,30,22,.07)}.mmx-card b{color:var(--wine);font-size:.85rem;letter-spacing:.08em}.mmx-card h3{font-size:1.3rem;margin:9px 0}.mmx-products{padding:90px 0;background:#fff}.mmx-list{display:grid;grid-template-columns:repeat(2,1fr);gap:10px}.mmx-item{display:flex;justify-content:space-between;gap:18px;padding:18px 20px;background:#faf7f1;border:1px solid var(--line)}.mmx-item strong:last-child{color:var(--wine);white-space:nowrap}.mmx-tablebox{overflow:auto;border:1px solid var(--line)}.mmx table{width:100%;min-width:680px;border-collapse:collapse}.mmx th,.mmx td{padding:15px 18px;border-bottom:1px solid #e6ddd2;text-align:left}.mmx th{background:#251816;color:#fff}.mmx td:last-child,.mmx th:last-child{text-align:right;font-weight:900}.mmx tbody tr:nth-child(even){background:#faf7f2}.mmx-note{font-size:.88rem;color:#65534b;margin-top:18px}.mmx-band{padding:70px 0;background:#d8ad58;text-align:center}.mmx-band h2{margin-top:0}.mmx-related{padding:70px 0;background:#201614;color:#fff}.mmx-related h2{color:#fff}.mmx-links{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}.mmx-links a{min-height:72px;display:flex;align-items:center;padding:16px;border:1px solid #66544d;text-decoration:none;font-weight:800}.mmx-details{display:grid;gap:10px}.mmx details{background:#fff;border:1px solid var(--line);padding:20px}.mmx summary{cursor:pointer;font-weight:900;font-size:1.1rem}.mmx-step{counter-reset:step}.mmx-step .mmx-card{position:relative}.mmx-step .mmx-card:before{counter-increment:step;content:"0" counter(step);display:block;color:var(--wine);font-weight:900;letter-spacing:.1em}.mmx-map{display:grid;grid-template-columns:1fr 1fr;gap:18px}.mmx-data{background:#fff;border:1px solid var(--line);padding:28px}.mmx-data dl{display:grid;grid-template-columns:110px 1fr;gap:10px;margin:0}.mmx-data dt{font-weight:900}.mmx-data dd{margin:0}
@media(max-width:800px){.mmx-hero{min-height:590px;background-position:62% center}.mmx-hero:before{background:linear-gradient(90deg,rgba(19,12,10,.92),rgba(19,12,10,.48))}.mmx-copy{padding:70px 0}.mmx-grid,.mmx-links,.mmx-map{grid-template-columns:1fr}.mmx-list{grid-template-columns:1fr}.mmx-intro,.mmx-products{padding:62px 0}.mmx-wrap{width:min(100% - 28px,1120px)}}

@media (max-width: 800px) {
  body.page-id-80 .mmx-hero { background-position: 78% center; }
}

/* Whisky price table mobile: keep all three columns visible. */
@media (max-width: 640px) {
  body.page-id-74 .mmx-tablebox { overflow: visible; }
  body.page-id-74 .mmx table { min-width: 0; width: 100%; table-layout: fixed; font-size: 0.78rem; }
  body.page-id-74 .mmx th,
  body.page-id-74 .mmx td { padding: 10px 6px; vertical-align: top; overflow-wrap: anywhere; line-height: 1.5; }
  body.page-id-74 .mmx th:nth-child(1),
  body.page-id-74 .mmx td:nth-child(1) { width: 43%; }
  body.page-id-74 .mmx th:nth-child(2),
  body.page-id-74 .mmx td:nth-child(2) { width: 31%; }
  body.page-id-74 .mmx th:nth-child(3),
  body.page-id-74 .mmx td:nth-child(3) { width: 26%; white-space: nowrap; }
}

/* JULY26_INOKICHI_HEADER_V1
 * July 26 restoration: elegant Japanese logotype, photographic navigation,
 * compact mobile menu and resilient Japanese line breaking.
 */
:root {
  --mt-header-ink: #100d0b;
  --mt-header-copper: #c27b4f;
  --mt-header-copper-light: #e2aa76;
  --mt-header-red: #a51f28;
}

body.page {
  overflow-x: clip;
}

.mt-global-header {
  height: 86px;
  background: linear-gradient(180deg, rgba(15, 12, 10, 0.97), rgba(15, 12, 10, 0.89));
  border-bottom: 1px solid rgba(194, 123, 79, 0.42);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(16px) saturate(118%);
}

body.home .mt-global-header {
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.94), rgba(12, 10, 8, 0.74));
  border-bottom-color: rgba(226, 170, 118, 0.28);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
}

.mt-global-header__inner {
  width: min(1460px, calc(100% - 30px));
  gap: 24px;
}

.mt-global-header__brand {
  gap: 15px;
  min-width: 245px;
}

.mt-global-header__brand img {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  outline: 1px solid rgba(194, 123, 79, 0.82);
  outline-offset: 3px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.34);
}

.mt-global-header__brand strong,
.mt-global-footer__brand strong {
  font-family: "Kaisei Tokumin", "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.mt-global-header__brand strong {
  font-size: 25px;
  line-height: 0.95;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.mt-global-header__brand small {
  margin-top: 8px;
  color: var(--mt-header-copper-light);
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: 0.24em;
}

.mt-global-header__nav {
  align-self: stretch;
  gap: clamp(14px, 1.35vw, 24px);
}

.mt-global-header__nav a {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2px 1px 0;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mt-global-header__nav a::before {
  content: var(--mt-nav-en, "");
  margin-bottom: 7px;
  color: var(--mt-header-copper-light);
  font: 700 7px/1 Arial, sans-serif;
  letter-spacing: 0.2em;
  opacity: 0.92;
}

.mt-global-header__nav a:nth-child(1) { --mt-nav-en: "BASASHI"; }
.mt-global-header__nav a:nth-child(2) { --mt-nav-en: "TORI"; }
.mt-global-header__nav a:nth-child(3) { --mt-nav-en: "HAKATA"; }
.mt-global-header__nav a:nth-child(4) { --mt-nav-en: "WHISKY"; }
.mt-global-header__nav a:nth-child(5) { --mt-nav-en: "ACCESS"; }
.mt-global-header__nav a:nth-child(6) { --mt-nav-en: "GIFT"; }
.mt-global-header__nav a:nth-child(7) { --mt-nav-en: "FAQ"; }

.mt-global-header__nav a::after {
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--mt-header-copper), var(--mt-header-red));
  transition: right 0.22s ease, left 0.22s ease;
}

.mt-global-header__nav a:hover,
.mt-global-header__nav a:focus-visible {
  color: #ffe4c4;
  transform: translateY(-1px);
}

.mt-global-header__nav a:hover::after,
.mt-global-header__nav a:focus-visible::after {
  right: 0;
  left: 0;
}

.mt-global-header__actions {
  gap: 12px;
}

.mt-global-header__hours {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Noto Serif JP", serif;
}

.mt-global-header__visit {
  min-height: 52px;
  padding: 0 20px;
  gap: 8px;
  background: linear-gradient(135deg, #c45d3d, #a51f28);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(165, 31, 40, 0.28);
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.04em;
}

.mt-global-header__visit::before {
  content: "↗";
  font-size: 14px;
}

.mt-global-header__visit:hover,
.mt-global-header__visit:focus-visible {
  background: linear-gradient(135deg, #d07c51, #bd2731);
  transform: translateY(-1px);
}

.mt-global-footer__brand strong {
  font-size: clamp(28px, 3vw, 42px);
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.34);
}

.marutama-v2 h1,
.marutama-v2 h2,
.marutama-v2 h3,
.mmx h1,
.mmx h2,
.mmx h3 {
  text-wrap: balance;
  word-break: auto-phrase;
  overflow-wrap: normal;
}

@media (max-width: 1220px) {
  .mt-global-header__brand {
    min-width: 205px;
  }

  .mt-global-header__brand img {
    width: 50px;
    height: 50px;
  }

  .mt-global-header__brand strong {
    font-size: 22px;
  }

  .mt-global-header__nav {
    gap: 12px;
  }

  .mt-global-header__nav a {
    font-size: 11px;
  }

  .mt-global-header__nav a::before {
    font-size: 6px;
  }
}

@media (max-width: 920px) {
  .mt-global-header,
  body.home .mt-global-header {
    height: 72px;
    background: linear-gradient(180deg, rgba(14, 11, 9, 0.98), rgba(14, 11, 9, 0.93));
    border-bottom-color: rgba(194, 123, 79, 0.42);
  }

  .mt-global-header__inner {
    width: calc(100% - 22px);
  }

  .mt-global-header__brand {
    min-width: 0;
    gap: 12px;
  }

  .mt-global-header__brand img {
    width: 48px;
    height: 48px;
  }

  .mt-global-header__brand strong {
    font-size: 21px;
  }

  .mt-global-header__brand small {
    margin-top: 6px;
    font-size: 6px;
  }

  .mt-global-header__mobile summary {
    position: relative;
    width: 50px;
    height: 50px;
    min-height: 50px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(145deg, var(--mt-header-copper), var(--mt-header-red));
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.28);
    font-size: 0;
  }

  .mt-global-header__mobile summary::before {
    content: "";
    width: 20px;
    height: 14px;
    background: linear-gradient(to bottom, #fff 0 2px, transparent 2px 6px, #fff 6px 8px, transparent 8px 12px, #fff 12px 14px);
  }

  .mt-global-header__mobile summary::after {
    content: "MENU";
    color: #fff;
    font: 700 6px/1 Arial, sans-serif;
    letter-spacing: 0.16em;
  }

  .mt-global-header__mobile[open] summary {
    background: linear-gradient(145deg, #8f1d25, #5f151b);
  }

  .mt-global-header__mobile nav {
    position: fixed;
    top: 72px;
    right: 10px;
    left: 10px;
    width: auto;
    max-height: calc(100vh - 84px);
    overflow-y: auto;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    background: rgba(16, 13, 11, 0.985);
    border: 1px solid rgba(194, 123, 79, 0.48);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  }

  body.admin-bar .mt-global-header__mobile nav {
    top: 118px;
  }

  .mt-global-header__mobile nav a {
    min-height: 52px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-family: "Noto Serif JP", serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
  }

  .mt-global-header__mobile nav a:first-child,
  .mt-global-header__mobile nav a:last-child {
    grid-column: 1 / -1;
  }

  .mt-global-header__mobile nav a:hover,
  .mt-global-header__mobile nav a:focus-visible {
    color: #fff3e4;
    background: rgba(194, 123, 79, 0.2);
  }
}

@media (max-width: 640px) {
  .marutama-v2 .section,
  .mmx-intro,
  .mmx-products,
  .mmx-related {
    padding-top: clamp(52px, 13vw, 68px);
    padding-bottom: clamp(52px, 13vw, 68px);
  }

  .marutama-v2 h1,
  .mmx h1 {
    line-height: 1.22;
  }

  .marutama-v2 h2,
  .mmx h2 {
    line-height: 1.34;
  }
}

@media (max-width: 480px) {
  .mt-global-header,
  body.home .mt-global-header {
    height: 66px;
  }

  .mt-global-header__inner {
    width: calc(100% - 18px);
  }

  .mt-global-header__brand img {
    width: 44px;
    height: 44px;
  }

  .mt-global-header__brand strong {
    font-size: 20px;
  }

  .mt-global-header__brand small {
    display: block;
    font-size: 5.5px;
  }

  .mt-global-header__mobile summary {
    width: 46px;
    height: 46px;
    min-height: 46px;
  }

  .mt-global-header__mobile nav {
    top: 66px;
  }

  body.admin-bar .mt-global-header__mobile nav {
    top: 112px;
  }
}

