:root {
  color-scheme: dark;
  --black: #050505;
  --white: #f7f4ef;
  --muted: #b8b5b0;
  --red: #b5151d;
  --focus: #ef3841;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--black);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.home-page {
  height: 100svh;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
}

.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art,
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  display: block;
  object-fit: cover;
  object-position: center;
}

.ramen-motion-layers,
.ramen-motion-layer,
.ramen-motion-layer::before {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.ramen-motion-layers {
  z-index: 3;
}

.ramen-motion-layer {
  opacity: 0;
  transform: scale(1);
  transition:
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0ms linear 520ms;
  will-change: opacity, transform;
}

.ramen-motion-layer::before {
  content: "";
  background-image: url("../images/ramen-three-transparent.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ramen-motion-layer.is-active {
  opacity: 1;
  transform: scale(1.03);
  transition:
    transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1),
    opacity 0ms linear;
}

.ramen-motion-layer-shoyu {
  clip-path: inset(0 66% 55% 0);
  transform-origin: 11% 17%;
}

.ramen-motion-layer-shio {
  clip-path: inset(3% 0 32% 72%);
  transform-origin: 91% 36.5%;
}

.ramen-motion-layer-shio::before {
  transform: translate(0.06%, 2.02%);
}

.ramen-motion-layer-paitan {
  clip-path: inset(47% 64% 0 0);
  transform-origin: 12% 82%;
}

.history-egg-link {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: block;
  cursor: pointer;
  clip-path: ellipse(3.8% 7.2% at 54.8% 19.3%);
}

.history-egg-visual {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 7;
  background-image: url("../images/history-egg-desktop.png?v=20260716-1");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: 54.8% 19.3%;
  transition:
    transform 320ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 320ms ease;
}

.history-egg-link:hover + .history-egg-visual,
.history-egg-link:focus-visible + .history-egg-visual {
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.48)) brightness(1.05);
  transform: translateY(-0.45%) scale(1.045);
}

.history-egg-link:focus-visible {
  outline: 0;
}

.desktop-nav {
  position: fixed;
  right: clamp(28px, 3.6vw, 60px);
  bottom: clamp(28px, 4.5vh, 52px);
  z-index: 30;
}

.desktop-nav ul,
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.desktop-nav ul {
  display: grid;
  justify-items: end;
  gap: 9px;
}

.desktop-nav a {
  position: relative;
  display: inline-block;
  padding: 2px 0;
  color: rgba(255, 255, 255, 0.88);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.95);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red);
  content: "";
  transition: width 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  width: 100%;
}

.desktop-nav a:focus-visible,
.menu-toggle:focus-visible,
.menu-close:focus-visible,
.mobile-menu a:focus-visible,
.hotspot:focus-visible,
.hero-news a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.hotspot {
  position: absolute;
  z-index: 4;
  display: block;
  text-decoration: none;
}

.hotspot-label {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 6px 8px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  background: rgba(5, 5, 5, 0.78);
  border-left: 2px solid var(--red);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 160ms ease;
  z-index: 2;
}

.hotspot:hover .hotspot-label,
.hotspot:focus-visible .hotspot-label {
  opacity: 1;
}

.hotspot-shoyu {
  top: 0;
  left: 0;
  width: 34%;
  height: 47%;
}

.hotspot-shio {
  top: 4%;
  right: 0;
  width: 28%;
  height: 63%;
}

.hotspot-paitan {
  bottom: 0;
  left: 0;
  width: 34%;
  height: 49%;
}

.hero-news {
  position: absolute;
  z-index: 5;
  top: 23.5%;
  left: 0;
  width: 100%;
  color: var(--white);
}

.hero-news__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 28px;
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
}

.hero-news__heading::before,
.hero-news__heading::after {
  width: 38px;
  height: 1px;
  background: var(--red);
  content: "";
}

.hero-news__heading::before {
  margin-right: 10px;
}

.hero-news__heading::after {
  margin-left: 10px;
}

.hero-news__feed {
  display: grid;
  gap: 0;
  width: 30%;
  margin: 10px auto 0;
}

.hero-news__item {
  display: grid;
  grid-template-columns: minmax(64px, 0.38fr) minmax(0, 1fr);
  gap: 12px;
  align-items: baseline;
  min-height: 36px;
  padding: 8px 4px;
  color: var(--white);
  text-decoration: none;
  border-top: 0;
  transition: background-color 160ms ease, color 160ms ease;
}

.hero-news__item + .hero-news__item {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-news__category {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  line-height: 1.45;
}

.hero-news__title {
  overflow: hidden;
  font-size: 13px;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-news__heading:hover,
.hero-news__heading:focus-visible,
.hero-news__item:hover,
.hero-news__item:focus-visible {
  color: #fff0f0;
}

.hero-news__item:hover,
.hero-news__item:focus-visible {
  background: rgba(181, 21, 29, 0.18);
}

.content-page {
  min-height: 100svh;
  background: #080808;
}

.history-main {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(72px, 10vh, 128px) 0 clamp(88px, 12vh, 152px);
}

.history-intro {
  margin-bottom: 38px;
  text-align: center;
}

.history-kicker {
  margin: 0 0 14px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0;
}

.history-intro h1 {
  margin: 0;
  color: var(--white);
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.history-video {
  width: min(100%, 760px);
  margin: 0 auto;
}

.history-video video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1972 / 1080;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.subpage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.subpage-header a {
  text-decoration: none;
}

.subpage-brand {
  display: inline-flex;
  align-items: center;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 20px;
  line-height: 1;
}

.subpage-brand img {
  display: block;
  width: auto;
  height: 32px;
  mix-blend-mode: screen;
}

.subpage-back {
  color: var(--muted);
  font-size: 13px;
}

.subpage-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) 0;
}

.subpage-main p {
  margin: 0 0 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.subpage-main h1 {
  max-width: 18ch;
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(34px, 6vw, 74px);
  font-weight: 400;
  line-height: 1.25;
}

.ramen-character-title {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.ramen-character-title img {
  display: block;
  width: clamp(76px, 9vw, 132px);
  height: auto;
  margin-bottom: 0;
  object-fit: contain;
  transform: translate(-23%, 3%);
}

.ramen-character-title--cutout {
  gap: clamp(6px, 0.45vw, 7px);
}

.ramen-character-title--cutout img {
  width: auto;
  height: clamp(70px, 8.5vw, 122px);
  transform: translateY(3%);
}

.ramen-product-main {
  width: min(1672px, calc(100% - 32px));
  padding-bottom: clamp(32px, 5vw, 72px);
}

.ramen-product-heading {
  width: min(960px, 100%);
  margin: 0 auto;
}

.ramen-product-reference {
  display: block;
  width: 100%;
  margin: clamp(48px, 7vw, 96px) auto 0;
}

.ramen-product-reference__view {
  position: relative;
}

.ramen-product-reference__view img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.ramen-product-reference__view--mobile {
  display: none;
}

.ramen-video-trigger {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.ramen-video-trigger::before {
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0);
  content: "";
  transition: background-color 180ms ease, border-color 180ms ease;
}

.ramen-video-trigger__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: clamp(52px, 4.7vw, 72px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.66);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.28);
  transition: background-color 180ms ease, transform 180ms ease;
}

.ramen-video-trigger__icon::before {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid currentColor;
  content: "";
}

.ramen-video-trigger:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
}

@media (hover: hover) and (pointer: fine) {
  .ramen-video-trigger:hover::before {
    border-color: rgba(181, 21, 29, 0.72);
    background: rgba(255, 255, 255, 0.1);
  }

  .ramen-video-trigger:hover .ramen-video-trigger__icon {
    background: rgba(181, 21, 29, 0.9);
    transform: scale(1.08);
  }
}

.ramen-product-reference--shoyu .ramen-product-reference__view--desktop .ramen-video-trigger {
  top: 13.8%;
  left: 2.2%;
  width: 48.8%;
  height: 52%;
}

.ramen-product-reference--shio .ramen-product-reference__view--desktop .ramen-video-trigger {
  top: 15.2%;
  left: 1.7%;
  width: 52.8%;
  height: 52.2%;
}

.ramen-product-reference--tori-paitan .ramen-product-reference__view--desktop .ramen-video-trigger {
  top: 13.8%;
  left: 2%;
  width: 51%;
  height: 50.4%;
}

body.ramen-video-open {
  overflow: hidden;
}

.ramen-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom));
  background: rgba(0, 0, 0, 0.92);
}

.ramen-video-modal[hidden] {
  display: none;
}

.ramen-video-modal__dialog {
  position: relative;
  display: grid;
  place-items: center;
  max-width: 100%;
  max-height: 100%;
}

.ramen-video-modal__media {
  display: block;
  width: auto;
  max-width: min(480px, calc(100vw - 40px));
  height: auto;
  max-height: calc(100svh - 40px);
  background: #000;
  object-fit: contain;
}

.ramen-video-modal__close {
  position: fixed;
  top: max(14px, env(safe-area-inset-top));
  right: max(14px, env(safe-area-inset-right));
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  background: rgba(5, 5, 5, 0.8);
  color: #fff;
  font: 28px/1 Arial, sans-serif;
  cursor: pointer;
}

.ramen-video-modal__close:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.concept-page {
  overflow-x: clip;
}

.concept-main {
  width: min(1120px, calc(100% - 80px));
  margin: 0 auto;
  padding: clamp(88px, 13vh, 172px) 0 clamp(112px, 16vh, 208px);
}

.concept-kicker,
.concept-principle__number {
  margin: 0;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.concept-intro {
  max-width: 760px;
}

.concept-intro h1,
.concept-story h2 {
  margin: 18px 0 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.28;
}

.concept-intro h1 {
  font-size: clamp(42px, 6vw, 78px);
}

.concept-intro h1 span {
  display: block;
}

.concept-lead {
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.concept-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: clamp(96px, 14vw, 176px);
}

.concept-principle {
  min-width: 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.concept-principle h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400;
  line-height: 1.35;
}

.concept-principle > p:last-child {
  margin: 22px 0 0;
  color: #d3d3d3;
  font-size: 14px;
  line-height: 2;
}

@media (min-width: 768px) {
  .concept-principle__reading {
    font-size: 0.82em;
  }
}

.concept-story {
  position: relative;
  min-height: 540px;
  margin-top: clamp(72px, 9vw, 128px);
  padding: clamp(56px, 8vw, 104px) clamp(28px, 6vw, 84px);
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.22);
}

.concept-story__copy {
  position: relative;
  z-index: 1;
  width: min(100%, 600px);
}

.concept-story h2 {
  font-size: clamp(34px, 4.5vw, 60px);
}

.concept-story__copy > p:not(.concept-kicker):not(.concept-story__closing) {
  margin: 34px 0 0;
  color: #ddd;
  font-size: 15px;
  line-height: 2;
}

.concept-story__copy > p + p:not(.concept-story__closing) {
  margin-top: 24px;
}

.concept-story__closing {
  margin: 42px 0 0;
  color: var(--white);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.85;
}

.concept-story__visual {
  position: absolute;
  right: 0;
  bottom: -12.5%;
  width: min(70%, 760px);
  margin: 0;
  opacity: 0.42;
  pointer-events: none;
}

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

.contact-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(64px, 10vw, 160px);
  width: min(1100px, calc(100% - 80px));
  min-height: calc(100svh - 72px);
  margin: 0 auto;
  padding: clamp(96px, 16vh, 180px) 0 clamp(72px, 10vh, 120px);
}

.contact-intro > p:first-child {
  margin: 0 0 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.contact-intro h1 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 400;
  line-height: 1.2;
}

.contact-copy {
  max-width: 22em;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.contact-form {
  align-self: start;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-field {
  display: grid;
  grid-template-columns: minmax(126px, 0.4fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 24px 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.17);
}

.contact-field label {
  padding-top: 12px;
  color: var(--red);
  font-size: 13px;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  padding: 11px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  line-height: 1.6;
  outline: 0;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.contact-field textarea {
  min-height: 172px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--red);
  background: rgba(181, 21, 29, 0.06);
}

.contact-form-footer {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
}

.contact-submit-wrap {
  min-width: 168px;
}

.contact-status {
  min-height: 1.75em;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.contact-status[data-state="success"] {
  color: #d7e6b5;
}

.contact-status[data-state="error"] {
  color: #ff8790;
}

.contact-form-footer p {
  max-width: 27em;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  min-width: 168px;
  padding: 14px 0;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--white);
  font: inherit;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease;
}

.contact-submit span {
  color: var(--red);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 18px;
  line-height: 1;
  transition: transform 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  color: var(--red);
  border-color: var(--red);
}

.contact-submit:hover span,
.contact-submit:focus-visible span {
  transform: translateX(5px);
}

.contact-submit:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

.contact-submit:disabled {
  color: var(--muted);
  border-color: rgba(255, 255, 255, 0.3);
  cursor: wait;
}

.contact-submit:disabled span {
  color: var(--muted);
}

.contact-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.menu-index-list {
  display: grid;
  gap: 0;
  max-width: 560px;
  margin: 56px 0 0;
  padding: 0;
  list-style: none;
}

.menu-index-list a {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.menu-index-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  flex: 1;
  gap: 8px 16px;
  min-width: 0;
}

.menu-product-main,
.menu-variants,
.menu-variant {
  display: contents;
}

.menu-name {
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 32px;
  line-height: 1.25;
}

.menu-price {
  align-self: end;
  justify-self: end;
  margin-bottom: 5px;
  color: var(--white);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 21px;
  line-height: 1;
  white-space: nowrap;
}

.menu-price small,
.menu-variant small {
  margin-left: 2px;
  font-size: 0.68em;
}

.menu-variant > span {
  color: var(--muted);
  font-family: Georgia, "Yu Mincho", serif;
  font-size: 16px;
  line-height: 1.45;
}

.menu-variant > span:last-child {
  justify-self: end;
  white-space: nowrap;
}

.menu-index-arrow {
  flex: 0 0 auto;
  color: var(--red);
  font-size: 20px;
  transition: transform 180ms ease;
}

.menu-index-list a:hover .menu-index-arrow,
.menu-index-list a:focus-visible .menu-index-arrow {
  transform: translateX(5px);
}

.news-list {
  max-width: 760px;
  padding: 0;
  margin: 56px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.news-list__link {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  text-decoration: none;
}

.news-list__meta,
.news-detail .news-detail__meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.news-list__title {
  font-size: 17px;
  line-height: 1.6;
}

.news-list__arrow {
  color: var(--red);
  font-size: 20px;
}

.news-list__link:hover .news-list__title,
.news-list__link:focus-visible .news-list__title {
  color: #fff0f0;
}

.subpage-main .news-empty {
  margin-top: 56px;
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 15px;
}

.news-detail {
  max-width: 760px;
}

.news-detail__meta {
  margin: 0 0 14px;
}

.news-detail h1 {
  max-width: none;
}

.news-detail__image {
  margin: 48px 0 0;
}

.news-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail__body {
  margin-top: 48px;
  color: var(--white);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.9;
}

.news-detail__body p,
.news-detail__body li {
  color: var(--white);
  font-family: inherit;
  font-size: inherit;
}

.news-detail__body p {
  margin: 0 0 1.4em;
}

.news-detail__body h2,
.news-detail__body h3 {
  margin: 2em 0 0.75em;
  font-family: Georgia, "Yu Mincho", serif;
  font-weight: 400;
  line-height: 1.4;
}

.news-detail__body h2 {
  font-size: clamp(24px, 4vw, 36px);
}

.news-detail__body h3 {
  font-size: clamp(20px, 3vw, 28px);
}

.news-detail__body > :first-child {
  margin-top: 0;
}

.news-detail__body a {
  color: var(--white);
}

.menu-name ruby,
.subpage-main h1 ruby {
  ruby-align: center;
}

.menu-name rt,
.subpage-main h1 rt {
  color: var(--muted);
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.42em;
  font-weight: 400;
}

.menu-page {
  position: relative;
}

.menu-page-art {
  display: block;
  margin: 0;
  position: relative;
}

.menu-page-art img {
  display: block;
  width: 100%;
  height: auto;
}

.menu-page-art-base {
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 25%, #000 100%);
  mask-image: linear-gradient(to right, transparent 0, #000 25%, #000 100%);
}

.menu-page-art-protect {
  position: absolute;
  inset: 0;
  display: block;
}

.menu-page-art-protect-shoyu {
  -webkit-mask-image: radial-gradient(ellipse 31% 26% at 53% 29%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 31% 26% at 53% 29%, #000 72%, transparent 100%);
}

.menu-page-art-protect-shio {
  -webkit-mask-image: radial-gradient(ellipse 29% 24% at 31% 57%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 29% 24% at 31% 57%, #000 72%, transparent 100%);
}

.menu-page-art-protect-paitan {
  -webkit-mask-image: radial-gradient(ellipse 31% 25% at 62% 65%, #000 72%, transparent 100%);
  mask-image: radial-gradient(ellipse 31% 25% at 62% 65%, #000 72%, transparent 100%);
}

.shop-main {
  width: min(960px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) 0;
}

.shop-heading p {
  margin: 0 0 12px;
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.shop-heading h1 {
  margin: 0;
  font-family: Georgia, "Yu Mincho", serif;
  font-size: clamp(34px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.25;
}

.shop-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 36px 0 0;
}

.shop-map-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #090909;
}

.shop-map-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms cubic-bezier(0.2, 0.75, 0.2, 1), filter 240ms ease;
}

.shop-map-link:hover .shop-map-video,
.shop-map-link:focus-visible .shop-map-video {
  filter: brightness(1.08);
  transform: scale(1.02);
}

.shop-map-link:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 5px;
}

.shop-map-action {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 9px 11px;
  color: var(--black);
  background: var(--white);
  font-size: 12px;
  line-height: 1;
  text-decoration: none;
}

.shop-map-action:hover,
.shop-map-action:focus-visible {
  color: var(--white);
  background: var(--red);
}

.shop-map-action:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.shop-details {
  margin-top: 40px;
}

.shop-details address {
  font: inherit;
  font-style: normal;
}

.shop-details dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.shop-details dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.shop-details dt {
  color: var(--red);
  font-size: 13px;
}

.shop-details dd {
  margin: 0;
  line-height: 1.65;
}

.shop-parking-mobile-break {
  display: none;
}

.shop-instagram a {
  display: inline-flex;
  align-items: center;
  color: var(--white);
  line-height: 1;
  text-decoration: none;
}

.shop-instagram img {
  display: block;
  width: 24px;
  height: 24px;
}

.shop-instagram a:hover,
.shop-instagram a:focus-visible {
  color: var(--red);
}

.shop-instagram a:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 4px;
}

@media (min-width: 1024px) {
  .menu-page {
    height: 100svh;
    overflow: hidden;
  }

  .menu-page .subpage-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(48px, 6vw, 120px);
    width: min(1280px, calc(100% - 96px));
    height: calc(100svh - 72px);
    margin: 0 auto;
    padding: 0;
  }

  .menu-page-copy {
    width: min(100%, 520px);
  }

  .menu-page-art {
    align-self: stretch;
    height: calc(100svh - 72px);
  }

  .menu-page-art img {
    width: auto;
    height: 100%;
  }

  .menu-page-art-protect img {
    width: 100%;
    height: 100%;
  }

  .shop-page {
    height: 100svh;
    overflow: hidden;
  }

  .shop-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
    grid-template-rows: auto auto;
    column-gap: clamp(64px, 8vw, 144px);
    align-content: center;
    width: min(1280px, calc(100% - 96px));
    min-height: calc(100svh - 72px);
    padding: 0;
  }

  .shop-heading,
  .shop-details {
    grid-column: 1;
  }

  .shop-map {
    grid-column: 2;
    grid-row: 1 / span 2;
    align-self: center;
    justify-self: end;
    width: min(100%, 470px);
    margin: 0;
  }

  .shop-details {
    margin-top: 48px;
  }
}

@media (min-width: 1024px) and (max-height: 760px) {
  .shop-details {
    margin-top: 28px;
  }

  .shop-details dl div {
    padding: 11px 0;
  }
}

@media (max-width: 767px) {
  .ramen-product-main {
    width: 100%;
    padding-top: 72px;
    padding-bottom: 20px;
  }

  .ramen-product-heading {
    width: calc(100% - 40px);
  }

  .ramen-product-reference {
    margin-top: 48px;
  }

  .ramen-product-reference__view--desktop {
    display: none;
  }

  .ramen-product-reference__view--mobile {
    display: block;
  }

  .ramen-video-trigger__icon {
    width: 52px;
  }

  .ramen-product-reference--shoyu .ramen-product-reference__view--mobile .ramen-video-trigger {
    top: 9%;
    left: 4.6%;
    width: 90.8%;
    height: 25%;
  }

  .ramen-product-reference--shio .ramen-product-reference__view--mobile .ramen-video-trigger {
    top: 9.6%;
    left: 4.8%;
    width: 90.3%;
    height: 23.5%;
  }

  .ramen-product-reference--tori-paitan .ramen-product-reference__view--mobile .ramen-video-trigger {
    top: 7.8%;
    left: 4.4%;
    width: 91.2%;
    height: 24.7%;
  }

  .concept-main {
    width: min(100% - 40px, 620px);
    padding: 72px 0 24px;
  }

  .concept-intro h1 {
    font-size: clamp(28px, 8vw, 34px);
  }

  .concept-lead {
    margin-top: 28px;
    font-size: 12px;
    line-height: 1.9;
  }

  .concept-principles {
    display: block;
    margin-top: 76px;
  }

  .concept-principle {
    padding: 24px 0 30px;
  }

  .concept-principle + .concept-principle {
    border-top-color: rgba(255, 255, 255, 0.2);
  }

  .concept-principle h2 {
    margin-top: 16px;
    font-size: 28px;
  }

  .concept-principle > p:last-child {
    margin-top: 18px;
    font-size: 14px;
    line-height: 1.95;
  }

  .concept-story {
    min-height: 0;
    margin-top: 36px;
    padding: 50px 0 24px;
  }

  .concept-story h2 {
    font-size: 30px;
  }

  .concept-story__copy > p:not(.concept-kicker):not(.concept-story__closing) {
    margin-top: 28px;
    font-size: 14px;
    line-height: 1.95;
  }

  .concept-story__closing {
    margin-top: 34px;
    font-size: 16px;
    white-space: nowrap;
  }

  .concept-story__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 95%;
    margin: -50% 0 0 auto;
    opacity: 0.34;
    transform: none;
  }

  .news-list {
    margin-top: 40px;
  }

  .news-list__link {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 16px;
    padding: 18px 0;
  }

  .news-list__meta {
    grid-column: 1 / -1;
  }

  .news-list__title {
    font-size: 16px;
  }

  .news-detail__image,
  .news-detail__body {
    margin-top: 32px;
  }

  .news-detail__body {
    font-size: 15px;
    line-height: 1.85;
  }

  .contact-main {
    display: block;
    width: min(100% - 40px, 620px);
    min-height: 0;
    padding: 72px 0 88px;
  }

  .contact-copy {
    margin-top: 24px;
  }

  .contact-form {
    margin-top: 56px;
  }

  .contact-field {
    display: block;
    padding: 21px 0 20px;
  }

  .contact-field label {
    display: block;
    padding: 0;
    margin-bottom: 10px;
  }

  .contact-field textarea {
    min-height: 156px;
  }

  .contact-form-footer {
    display: block;
    padding-top: 24px;
  }

  .contact-submit {
    justify-content: space-between;
    width: 100%;
    margin-top: 28px;
  }

  .contact-submit-wrap {
    min-width: 0;
  }

  .shop-details dl div {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 14px;
  }

  .shop-details address {
    font-size: 14px;
    white-space: nowrap;
  }

  .shop-parking-mobile-break {
    display: block;
  }

  .subpage-brand img {
    height: 28px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-page-art {
    display: none;
  }

  .menu-toggle {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    z-index: 40;
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 5px;
    padding: 0;
    color: var(--white);
    background: rgba(0, 0, 0, 0.5);
    border: 0;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 1px;
    background: currentColor;
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 50;
    align-content: center;
    padding: max(64px, env(safe-area-inset-top)) 36px max(40px, env(safe-area-inset-bottom));
    background: rgba(5, 5, 5, 0.98);
  }

  .mobile-menu:not([hidden]) {
    display: grid;
  }

  .menu-close {
    position: absolute;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    width: 44px;
    height: 44px;
    padding: 0;
    color: var(--white);
    background: transparent;
    border: 0;
    font-size: 32px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-menu ul {
    display: grid;
    gap: 22px;
  }

  .mobile-menu a {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    align-items: baseline;
    gap: 18px;
    text-decoration: none;
  }

  .mobile-menu span {
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
  }

  .mobile-menu small {
    color: var(--muted);
    font-size: 13px;
  }

  .mobile-menu a[aria-current="page"] span,
  .mobile-menu a:hover span,
  .mobile-menu a:focus-visible span {
    color: var(--red);
  }

  .menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 600px;
  }

  .hotspot-label {
    display: none;
  }

  .hotspot.is-activating .hotspot-label {
    display: block;
    padding: 5px 7px;
    font-size: 12px;
    opacity: 1;
  }

  .ramen-motion-layer {
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    opacity: 1;
    transform: none;
    scale: 1;
    transition: scale 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .ramen-motion-layer.is-active {
    opacity: 1;
    transform: none;
    scale: 1.025;
    transition: scale 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .ramen-motion-layer::before {
    background-image: url("../images/ramen-three-transparent-mobile.png?v=20260711-1");
  }

  .ramen-motion-layer-shio::before {
    transform: none;
  }

  .ramen-motion-layer-shoyu {
    clip-path: inset(1% 20% 66% 20%);
    transform-origin: 50.32% 17.06%;
  }

  .ramen-motion-layer-paitan {
    clip-path: inset(55% 50% 13% 0);
    transform-origin: 21.62% 70.86%;
  }

  .ramen-motion-layer-shio {
    clip-path: inset(56% 0 13% 50%);
    transform-origin: 79.17% 71.8%;
  }

  .history-egg-link {
    clip-path: ellipse(7.7% 4.2% at 73.5% 89.3%);
  }

  .history-egg-visual {
    background-image: url("../images/history-egg-mobile.png?v=20260716-1");
    transform-origin: 73.5% 89.3%;
  }

  .history-egg-link:active + .history-egg-visual {
    filter: drop-shadow(0 8px 9px rgba(0, 0, 0, 0.5)) brightness(1.05);
    transform: translateY(-0.25%) scale(1.035);
  }

  .hotspot-shoyu {
    top: 1%;
    left: 20%;
    width: 60%;
    height: 31%;
  }

  .hotspot-shio {
    top: 58%;
    right: 0;
    width: 47%;
    height: 29%;
  }

  .hotspot-paitan {
    bottom: 13%;
    left: 0;
    width: 47%;
    height: 29%;
  }

  .hero-news {
    top: 31.5%;
    left: 0;
    width: 100%;
  }

  .hero-news__heading {
    min-height: 24px;
    font-size: 13px;
  }

  .hero-news__feed {
    width: 38.5%;
    margin-top: 6px;
  }

  .hero-news__item {
    display: block;
    min-height: 30px;
    padding: 5px 4px;
    border-top: 0;
  }

  .hero-news__item + .hero-news__item {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .hero-news__category {
    display: none;
  }

  .hero-news__title {
    display: block;
    font-size: 12px;
    line-height: 1.3;
  }

  .history-main {
    width: min(100% - 32px, 540px);
    padding: 64px 0 88px;
  }

  .history-intro {
    margin-bottom: 28px;
  }

  .history-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .history-intro h1 {
    font-size: clamp(27px, 8.2vw, 36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ramen-motion-layer {
    transform: none;
  }

  .history-egg-link:hover + .history-egg-visual,
  .history-egg-link:focus-visible + .history-egg-visual,
  .history-egg-link:active + .history-egg-visual {
    transform: none;
  }
}
