*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #fffaf2;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  color: #1c1713;
  background: #fffaf2;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
}

.od-closed {
  --ink: #1c1713;
  --paper: #fffaf2;
  --white: #ffffff;
  --blue: #14395f;
  --blue-deep: #071522;
  --gold: #c49135;
  --gold-soft: #f4d48a;
  --muted: #665f58;
  --line: rgba(28, 23, 19, 0.14);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.8;
}

.od-closed a {
  color: inherit;
}

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

.od-closed__header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 21, 34, 0.7);
  backdrop-filter: blur(12px);
}

.od-closed__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.od-closed__brand img {
  width: 126px;
  max-height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.od-closed__brand span {
  white-space: nowrap;
}

.od-closed__shop-link {
  flex: 0 0 auto;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 4px;
}

.od-closed__hero {
  position: relative;
  display: grid;
  min-height: min(760px, 92svh);
  align-items: end;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 34, 0.94) 0%, rgba(7, 21, 34, 0.78) 48%, rgba(7, 21, 34, 0.32) 100%),
    url("../img/set-tabekurabe.webp") center / cover no-repeat;
}

.od-closed__hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 18%;
  background: linear-gradient(180deg, rgba(7, 21, 34, 0), rgba(7, 21, 34, 0.44));
  content: "";
  pointer-events: none;
}

.od-closed__hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 150px 0 92px;
}

.od-closed__eyebrow,
.od-closed__section-label {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.od-closed__status {
  display: inline-block;
  margin: 0 0 24px;
  padding: 7px 13px;
  color: var(--blue-deep);
  background: var(--gold-soft);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 900;
}

.od-closed__hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(40px, 6.4vw, 76px);
  line-height: 1.12;
  word-break: keep-all;
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.38);
}

.od-closed__hero h1 span {
  display: block;
}

.od-closed__hero h1 .od-closed__headline-main > span {
  display: inline;
}

.od-closed__headline-main {
  white-space: nowrap;
}

.od-closed__lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
}

.od-closed__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.od-closed__button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  color: var(--white);
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
  font-size: 16px;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.od-closed__button:hover {
  background: #1c4a78;
  transform: translateY(-2px);
}

.od-closed__shell {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.od-closed__notice {
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--paper);
}

.od-closed__notice .od-closed__shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 88px);
  align-items: start;
}

.od-closed__notice-copy h2,
.od-closed__thanks h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  word-break: keep-all;
}

.od-closed__notice-copy > p:last-child,
.od-closed__thanks p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.od-closed__notice .od-closed__section-label {
  color: var(--blue);
}

.od-closed__schedule {
  margin: 0;
  padding: 4px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.od-closed__schedule div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  padding: 20px 0;
}

.od-closed__schedule div + div {
  border-top: 1px solid var(--line);
}

.od-closed__schedule dt {
  color: var(--blue);
  font-weight: 900;
}

.od-closed__schedule dd {
  margin: 0;
  font-weight: 700;
}

.od-closed__thanks {
  padding: clamp(64px, 9vw, 112px) 0;
  color: var(--white);
  background: var(--blue-deep);
}

.od-closed__thanks-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.od-closed__thanks figure {
  margin: 0;
}

.od-closed__thanks figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.od-closed__thanks p {
  color: rgba(255, 255, 255, 0.84);
}

.od-closed__text-link {
  display: inline-block;
  margin-top: 24px;
  color: var(--gold-soft);
  font-weight: 900;
  text-underline-offset: 5px;
}

.od-closed__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 18px;
  color: var(--white);
  background: #030b12;
}

.od-closed__footer img {
  width: 112px;
  filter: brightness(0) invert(1);
}

.od-closed__footer p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
}

@media (max-width: 760px) {
  .od-closed__header {
    padding: 16px 18px;
  }

  .od-closed__brand {
    gap: 9px;
  }

  .od-closed__brand img {
    width: 102px;
  }

  .od-closed__brand span {
    display: none;
  }

  .od-closed__shop-link {
    font-size: 13px;
  }

  .od-closed__hero {
    min-height: 760px;
    background:
      linear-gradient(180deg, rgba(7, 21, 34, 0.68) 0%, rgba(7, 21, 34, 0.9) 58%, rgba(7, 21, 34, 0.98) 100%),
      url("../img/set-tabekurabe.webp") 62% center / cover no-repeat;
  }

  .od-closed__hero-inner {
    width: calc(100% - 32px);
    max-width: 1120px;
    min-width: 0;
    padding: 126px 0 58px;
  }

  .od-closed__hero h1 {
    max-width: 100%;
    font-size: 36px;
    line-height: 1.16;
  }

  .od-closed__hero h1 .od-closed__headline-main > span {
    display: block;
  }

  .od-closed__headline-main {
    margin-top: 4px;
    white-space: normal;
  }

  .od-closed__lead {
    margin-top: 22px;
    font-size: 16px;
  }

  .od-closed__button {
    width: 100%;
  }

  .od-closed__notice .od-closed__shell,
  .od-closed__thanks-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .od-closed__notice-copy h2,
  .od-closed__thanks h2 {
    font-size: 32px;
  }

  .od-closed__notice-copy > p:last-child,
  .od-closed__thanks p {
    font-size: 15px;
  }

  .od-closed__schedule div {
    grid-template-columns: minmax(0, 1fr);
    gap: 5px;
  }

  .od-closed__thanks-inner {
    gap: 34px;
  }

  .od-closed__footer {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .od-closed__hero h1 {
    font-size: 34px;
  }

  .od-closed__status {
    font-size: 13px;
  }
}
