/*
 * Theme Name: Delivery Manager
 * Auther: Shuntaro Hoshi
 * Description: Delivery Manager to use with Timber
 * Version: 0.1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500&display=swap");

:root {
  --color-ink: #33363b;
  --color-muted: #6f7479;
  --color-white: #fff;
  --color-paper: #f7f7f5;
  --color-line: #e6e1dc;
  --color-blue: #143d52;
  --color-blue-deep: #0d2f42;
  --color-phone: #4aa9f2;
  --color-line-green: #69c85f;
  --color-mail: #e9475c;
  --shadow-soft: 0 22px 60px rgba(26, 34, 43, 0.14);
  --site-width: 1460px;
  --content-gutter: clamp(24px, 5vw, 80px);
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background: var(--color-white);
  font-family: "Raleway", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
  line-height: 1.9;
  letter-spacing: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  min-height: var(--header-height);
  color: var(--color-white);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0));
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: min(100% - 80px, 1880px);
  margin: 0 auto;
  padding: 22px 0;
}

.l-header__brand {
  display: flex;
  align-items: center;
  gap: 26px;
  min-width: 0;
}

.l-header__logo {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  color: var(--color-white);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.l-header__logo img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 38px;
  object-fit: contain;
}

.l-header__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.l-header__nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(22px, 2.8vw, 42px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-header__nav a {
  position: relative;
  display: block;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.98rem;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}

.l-header__nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.l-header__nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.l-main {
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--color-white);
}

.p-page {
  overflow: hidden;
}

.p-page__title {
  display: none;
}

.p-page__content {
  font-size: 1rem;
}

.p-page__content > * {
  margin-top: 0;
}

.p-page__content > :where(:not(.alignfull):not(.wp-block-cover):not(.wp-block-media-text)) {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--site-width));
  margin-right: auto;
  margin-left: auto;
}

.p-page__content > :first-child:not(.wp-block-cover):not(.wp-block-media-text) {
  margin-top: var(--header-height);
}

.p-page__content > .wp-block-cover:first-child,
.p-page__content > .wp-block-media-text:first-child {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(620px, 74vh, 760px);
  margin: 0;
  padding: 150px max(7vw, 40px) 120px;
  color: var(--color-white);
  background: #6f706d;
  overflow: hidden;
}

.p-page__content > .wp-block-media-text:first-child {
  grid-template-columns: 1fr;
}

.p-page__content > .wp-block-cover:first-child::before,
.p-page__content > .wp-block-media-text:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(40, 42, 43, 0.44), rgba(45, 47, 48, 0.18)),
    rgba(40, 42, 43, 0.34);
}

.p-page__content > .wp-block-cover:first-child .wp-block-cover__background {
  opacity: 0.38 !important;
}

.p-page__content > .wp-block-media-text:first-child .wp-block-media-text__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
}

.p-page__content > .wp-block-media-text:first-child .wp-block-media-text__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08);
}

.p-page__content > .wp-block-cover:first-child .wp-block-cover__inner-container,
.p-page__content > .wp-block-media-text:first-child .wp-block-media-text__content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--site-width));
  margin: 0 auto;
}

.p-page__content > .wp-block-media-text:first-child .wp-block-media-text__content {
  padding: 0;
}

.p-page__content > .wp-block-media-text:first-child .wp-block-group {
  width: min(620px, 100%);
  padding: 0;
  background: transparent !important;
  border: 0;
  box-shadow: none;
}

.p-page__content > .wp-block-cover:first-child h1,
.p-page__content > .wp-block-cover:first-child h2,
.p-page__content > .wp-block-cover:first-child p:first-child,
.p-page__content > .wp-block-media-text:first-child h1,
.p-page__content > .wp-block-media-text:first-child h2,
.p-page__content > .wp-block-media-text:first-child p:first-child {
  margin: 0 0 26px;
  color: var(--color-white);
  font-size: clamp(2.25rem, 3.7vw, 3.6rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34);
}

.p-page__content > .wp-block-cover:first-child p,
.p-page__content > .wp-block-media-text:first-child p {
  width: min(500px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.p-page__content > .wp-block-cover:first-child + *,
.p-page__content > .wp-block-media-text:first-child + * {
  margin-top: 0;
}

.wp-block-heading.is-style-section_ttl,
.p-page__content > h2,
.p-page__content > h3 {
  margin: 96px auto 28px;
  color: var(--color-blue);
  font-weight: 700;
  line-height: 1.5;
}

.wp-block-heading.is-style-section_ttl {
  display: block;
  padding: 4px 14px 8px;
  color: var(--color-white);
  background: var(--color-blue);
  font-size: clamp(1.65rem, 2.5vw, 2.35rem) !important;
  line-height: 1.35;
}

.wp-block-heading.is-style-section_ttl::after {
  display: none;
}

.p-page__content > p,
.p-page__content > ul,
.p-page__content > ol,
.p-page__content > .wp-block-columns,
.p-page__content > .wp-block-group,
.p-page__content > .wp-block-buttons {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--site-width));
  margin-right: auto;
  margin-left: auto;
}

.p-page__content > p {
  margin-bottom: 22px;
  font-weight: 600;
}

.wp-block-media-text:not(:first-child) {
  width: min(calc(100% - (var(--content-gutter) * 2)), var(--site-width));
  margin: 78px auto;
  gap: clamp(40px, 6vw, 96px);
}

.wp-block-media-text:not(:first-child) .wp-block-media-text__content {
  padding: 0;
}

.wp-block-media-text:not(:first-child) .wp-block-media-text__media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.wp-block-columns {
  gap: 24px;
  padding: 0;
}

.wp-block-columns .wp-block-column,
.wp-block-columns .has-text-align-center,
.wp-block-group.has-background {
  padding: 30px 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  box-shadow: 0 16px 40px rgba(33, 40, 48, 0.07);
}

.wp-block-columns strong,
.wp-block-group strong {
  color: var(--color-blue);
}

.p-page__content > .alignfull {
  width: 100%;
  max-width: none;
  margin: 88px 0;
}

.p-page__content > .alignfull:not(.wp-block-cover):not(.wp-block-media-text):not(:first-child) {
  padding: 74px var(--content-gutter);
  background: var(--color-paper) !important;
}

.p-page__content > .alignfull:not(.wp-block-cover):not(.wp-block-media-text):not(:first-child) > * {
  width: min(100%, var(--site-width));
  margin: 0 auto;
}

.wp-block-columns .wp-block-column {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.wp-block-columns .wp-block-column:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.wp-block-columns figure {
  margin: 0 0 16px;
  text-align: center;
}

.wp-block-columns .wp-block-column p {
  margin: 0;
  color: var(--color-blue);
  font-weight: 700;
  text-align: center;
}

.wp-block-buttons {
  margin: 42px auto 86px;
}

.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  color: var(--color-white);
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 0;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.wp-block-button__link:hover {
  color: var(--color-blue);
  background: var(--color-white);
}

.wp-block-cover.alignfull:not(:first-child) {
  min-height: 420px;
  margin: 90px 0 0;
}

.wp-block-cover:not(:first-child) p {
  color: var(--color-white);
  font-weight: 700;
}

.wp-block-cover iframe {
  display: block;
  max-width: 100%;
  margin: 24px auto 0;
  background: var(--color-white);
}

.p-contact-rail {
  position: fixed;
  right: 18px;
  top: 50%;
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transform: translateY(-50%);
}

.p-contact-rail__label {
  writing-mode: vertical-rl;
  color: var(--color-ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-contact-rail__button {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  color: var(--color-white);
  border-radius: 50%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(17, 22, 29, 0.18);
}

.p-contact-rail__button.is-phone {
  background: var(--color-phone);
}

.p-contact-rail__button.is-line {
  background: var(--color-line-green);
}

.p-contact-rail__button.is-mail {
  background: var(--color-mail);
}

.l-footer {
  padding: 44px 40px;
  color: var(--color-white);
  background: var(--color-blue-deep);
  text-align: center;
}

.l-footer small {
  font-size: 0.85rem;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 74px;
  }

  .l-header__inner {
    width: calc(100% - 40px);
    gap: 22px;
    padding: 18px 0;
  }

  .l-header__tagline {
    display: none;
  }

  .l-header__nav ul {
    gap: 18px;
  }

  .l-header__nav a {
    font-size: 0.9rem;
  }

  .p-page__content > .wp-block-cover:first-child,
  .p-page__content > .wp-block-media-text:first-child {
    min-height: 610px;
    padding: 130px 30px 94px;
  }

  .wp-block-media-text:not(:first-child) {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 760px) {
  body {
    line-height: 1.78;
  }

  .l-header {
    background: rgba(51, 54, 59, 0.72);
    backdrop-filter: blur(8px);
  }

  .l-header__inner {
    display: block;
    width: calc(100% - 32px);
    padding: 14px 0 12px;
  }

  .l-header__brand {
    justify-content: center;
    margin-bottom: 10px;
  }

  .l-header__logo img {
    max-height: 30px;
  }

  .l-header__nav {
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .l-header__nav ul {
    justify-content: flex-start;
    gap: 18px;
    width: max-content;
    min-width: 100%;
  }

  .l-header__nav a {
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .p-page__content > .wp-block-cover:first-child,
  .p-page__content > .wp-block-media-text:first-child {
    min-height: 560px;
    padding: 142px 22px 72px;
  }

  .p-page__content > .wp-block-cover:first-child h1,
  .p-page__content > .wp-block-cover:first-child h2,
  .p-page__content > .wp-block-cover:first-child p:first-child,
  .p-page__content > .wp-block-media-text:first-child h1,
  .p-page__content > .wp-block-media-text:first-child h2,
  .p-page__content > .wp-block-media-text:first-child p:first-child {
    font-size: 2rem;
  }

  .wp-block-heading.is-style-section_ttl,
  .p-page__content > h2,
  .p-page__content > h3,
  .p-page__content > p,
  .p-page__content > ul,
  .p-page__content > ol,
  .p-page__content > .wp-block-columns,
  .p-page__content > .wp-block-group,
  .wp-block-buttons {
    width: calc(100% - 36px);
  }

  .wp-block-heading.is-style-section_ttl {
    margin-top: 62px;
    font-size: 1.55rem !important;
  }

  .wp-block-media-text:not(:first-child) {
    width: calc(100% - 36px);
    margin: 46px auto;
  }

  .wp-block-media-text:not(:first-child) .wp-block-media-text__media img {
    min-height: 260px;
  }

  .p-page__content > .alignfull {
    margin: 56px 0;
  }

  .p-page__content > .alignfull:not(.wp-block-cover):not(.wp-block-media-text):not(:first-child) {
    padding: 46px 0;
  }

  .wp-block-columns .wp-block-column,
  .wp-block-columns .has-text-align-center,
  .wp-block-group.has-background {
    padding: 24px 18px;
  }

  .p-contact-rail {
    right: 12px;
    gap: 10px;
  }

  .p-contact-rail__label {
    display: none;
  }

  .p-contact-rail__button {
    width: 46px;
    height: 46px;
    font-size: 0.62rem;
  }
}

/* CH Watch Service repair-list style */
:root {
  --ch-gold: #c9c27e;
  --ch-gold-dark: #aaa45d;
  --ch-text: #2f3338;
  --ch-muted: #7b838a;
  --ch-line: #e7e7e7;
  --ch-blue: #174d7a;
  --ch-width: 1000px;
}

body {
  color: var(--ch-text);
  background: #fff;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-size: 13px;
  line-height: 1.75;
}

.l-header {
  position: static;
  min-height: 152px;
  color: var(--ch-text);
  background: #fff;
  border-top: 8px solid #333;
  box-shadow: 0 2px 7px rgba(0, 0, 0, 0.18);
}

.l-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 144px;
  gap: 22px;
  padding: 18px 32px 24px;
  text-align: center;
}

.l-header__logo {
  display: inline-block;
  color: #333;
  font-family: "Railway", "Raleway", "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
}

.l-header__logo img {
  max-width: 260px;
  max-height: 44px;
}

.l-header__tagline {
  display: none;
}

.l-header__nav {
  position: static;
  display: block;
  width: 100%;
  max-width: 100%;
  margin-top: 0;
  transform: none;
}

.l-header__nav ul {
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.l-header__nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 152px;
  padding: 0 8px 12px;
  color: #30343a;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-shadow: none;
}

.l-header__nav a::after {
  bottom: 0;
  height: 2px;
  background: var(--ch-gold);
  transform: scaleX(0);
}

.l-header__nav a:hover::after,
.l-header__nav .current-menu-item a::after,
.l-header__nav li:nth-child(2) a::after {
  transform: scaleX(1);
}

.l-main {
  padding: 0 0 86px;
  background: #fff;
}

.p-page-hero {
  display: grid;
  place-items: center;
  min-height: 90px;
  margin: 0 0 12px;
  color: #fff;
  background: var(--ch-gold);
}

.p-page-hero h1 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}

.p-breadcrumb {
  width: min(calc(100% - 48px), var(--ch-width));
  margin: 0 auto 48px;
  color: #777;
  font-size: 10px;
  line-height: 1.6;
}

.p-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.p-breadcrumb span::before {
  content: "/";
  margin: 0 6px;
  color: #b9b9b9;
}

.p-layout {
  display: grid;
  grid-template-columns: minmax(0, 640px) 220px;
  gap: 72px;
  width: min(calc(100% - 48px), var(--ch-width));
  margin: 0 auto;
}

.p-layout__main {
  min-width: 0;
}

.p-post__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-bottom: 10px;
  color: #6f777e;
  font-size: 10px;
  font-weight: 700;
}

.p-post__header {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 0 0 330px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--ch-line);
}

.p-post__title {
  flex: 1;
  margin: 0;
  color: #262b31;
  font-size: 29px;
  font-weight: 700;
  line-height: 1.3;
}

.p-post__label {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 14px;
  color: #fff;
  background: #3c3442;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.p-post__content {
  color: #333;
}

.p-post__content > * {
  margin-top: 0;
}

.p-post__content p {
  margin: 0;
  min-height: 50px;
  padding: 15px 16px 14px;
  border-bottom: 1px solid var(--ch-line);
  font-size: 13px;
  font-weight: 700;
}

.p-post__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  font-size: 13px;
}

.p-post__content :where(th, td) {
  padding: 15px 16px 14px;
  border: 0;
  border-bottom: 1px solid var(--ch-line);
  text-align: left;
  vertical-align: top;
}

.p-post__content th {
  width: 36%;
  color: #222;
  font-weight: 700;
}

.p-post__content td {
  color: #333;
  font-weight: 400;
}

.p-post__content :where(ul, ol) {
  margin: 0 0 28px 1.4em;
  padding: 0;
}

.p-post__content :where(h2, h3, h4) {
  margin: 34px 0 12px;
  font-weight: 700;
}

.p-print-action {
  margin: 20px 0 30px;
  text-align: center;
}

.p-print-action button {
  width: min(270px, 100%);
  min-height: 38px;
  color: #fff;
  background: var(--ch-blue);
  border: 0;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.p-post-footer {
  margin-top: 16px;
}

.p-post-tax {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 9px;
  color: #888;
  font-size: 10px;
}

.p-post-tax span {
  width: 86px;
  padding: 2px 8px;
  color: #fff;
  background: var(--ch-gold);
  text-align: center;
}

.p-post-tax a {
  color: #777;
  text-decoration: none;
}

.p-post-list {
  display: grid;
  gap: 18px;
}

.tease {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 16px;
  padding: 14px;
  border: 1px solid var(--ch-line);
  background: #fff;
}

.tease .h2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.35;
}

.tease .h2 a {
  color: #242930;
  text-decoration: none;
}

.tease p {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  color: #747b82;
  font-size: 12px;
  line-height: 1.6;
}

.tease img {
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 120px;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-site-sidebar {
  min-width: 0;
  color: #616a72;
}

.p-widget {
  margin: 0 0 28px;
}

.p-widget__title {
  margin: 0 0 14px;
  padding: 0 0 10px;
  color: #4b535b;
  border-bottom: 1px solid var(--ch-line);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.p-widget__title::after {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-top: 10px;
  background: var(--ch-gold);
}

.p-search-form__input {
  display: block;
  width: 100%;
  height: 28px;
  margin-bottom: 9px;
  border: 1px solid #dcdcdc;
  border-radius: 2px;
  background: #fff;
}

.p-search-form__button {
  min-width: 76px;
  min-height: 30px;
  color: #fff;
  background: var(--ch-gold);
  border: 0;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 700;
}

.p-widget-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-widget-list li {
  border-bottom: 1px solid #ededed;
}

.p-widget-list a {
  display: block;
  padding: 10px 0;
  color: #636b72;
  font-size: 12px;
  text-decoration: none;
}

.p-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}

.p-tag-cloud__item {
  color: #68707a;
  line-height: 1.15;
  text-decoration: none;
}

.p-tag-cloud__item.is-size-0 { font-size: 12px; }
.p-tag-cloud__item.is-size-1 { font-size: 17px; }
.p-tag-cloud__item.is-size-2 { font-size: 24px; }
.p-tag-cloud__item.is-size-3 { font-size: 14px; }
.p-tag-cloud__item.is-size-4 { font-size: 20px; }

.l-footer {
  padding: 38px 24px;
  color: #4f565d;
  background: #f7f7f7;
  border-top: 3px solid var(--ch-gold);
  text-align: center;
}

.l-footer small {
  font-size: 12px;
}

.p-contact-rail {
  display: none;
}

@media (max-width: 900px) {
  .p-layout {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .p-post__header {
    margin-bottom: 180px;
  }
}

@media (max-width: 760px) {
  .l-header {
    min-height: 112px;
    background: #fff;
    backdrop-filter: none;
  }

  .l-header__inner {
    min-height: 104px;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px 18px;
  }

  .l-header__logo {
    font-size: clamp(28px, 7vw, 38px);
  }

  .l-header__nav {
    position: static;
    max-width: 100%;
    overflow: visible;
    width: 100%;
    margin-top: 4px;
    transform: none;
  }

  .l-header__nav ul {
    justify-content: center;
    width: auto;
    min-width: 0;
    gap: 12px;
  }

  .l-header__nav a {
    color: #30343a;
    min-width: 112px;
    padding: 0 8px 10px;
    font-size: clamp(15px, 4vw, 18px);
    letter-spacing: 0.04em;
  }

  .p-page-hero {
    min-height: 74px;
  }

  .p-page-hero h1 {
    font-size: 21px;
  }

  .p-breadcrumb,
  .p-layout {
    width: calc(100% - 32px);
  }

  .p-breadcrumb {
    margin-bottom: 34px;
  }

  .p-post__header {
    display: block;
    margin-bottom: 100px;
  }

  .p-post__title {
    margin-bottom: 14px;
    font-size: 24px;
  }

  .p-post__label {
    width: max-content;
  }

  .tease {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .tease img {
    width: 86px;
  }

  .tease .h2 {
    font-size: 15px;
  }
}
