/* =========================================================
   About pages: shared foundations
========================================================= */

.about-page {
  --main: #b61f35;
  --main-dark: #8f002b;
  --text: #333333;
  --sub: #666666;
  --line: #e4ddd8;
  --bg: #fbf8f5;
  --bg2: #f3eee9;
  --white: #ffffff;
  --serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
           "Hiragino Mincho Pro", "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue",
          "Yu Gothic", YuGothic, Meiryo, sans-serif;

  overflow: hidden;
  background: linear-gradient(
    180deg,
    #fbf8f5 0%,
    #f7f1eb 100%
  );
  color: var(--text);
  font-family: var(--serif) !important;
  line-height: 2;
  text-align: left;
}

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

/* 改行のPC・スマホ表示切り替え */
br.for-sp {
  display: none;
}

@media screen and (max-width: 600px) {
  br.for-pc {
    display: none;
  }

  br.for-sp {
    display: inline;
  }
}

.about-page img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.about-page a {
  color: inherit;
  text-decoration: none;
}

.about-heading {
  position: relative;
  z-index: 1;
}

.about-heading h1 {
  margin: 0;
  padding: 0;
  background: none;
  color: var(--main-dark);
  font-family: var(--serif) !important;
  font-size: clamp(34px, 3.8vw, 50px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: .16em;
}

body.culture-small-page,
body.godai-story-page,
body:has(.culture-page),
body:has(.story-page) {
  margin: 0;
  padding-top: 90px;
  background: #fff;
}

body.culture-small-page > .header,
body.godai-story-page > .header,
body:has(.culture-page) header.header,
body:has(.story-page) header.header {
  background: #ebebeb;
  border-bottom: 1px solid #ddd;
}

body.culture-small-page > .header nav a,
body.culture-small-page > .header .menu-toggle,
body.godai-story-page > .header nav a,
body.godai-story-page > .header .menu-toggle,
body:has(.culture-page) header.header nav a,
body:has(.culture-page) header.header .menu-toggle,
body:has(.story-page) header.header nav a,
body:has(.story-page) header.header .menu-toggle {
  color: #222;
}

body.culture-small-page > .header button.menu-toggle,
body.godai-story-page > .header button.menu-toggle,
body:has(.culture-page) header.header button.menu-toggle,
body:has(.story-page) header.header button.menu-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  line-height: 1;
}

/* About Us：HERO画像を固定ヘッダーの背面まで表示 */
body:has(#aboutus-content) {
  margin: 0;
  padding-top: 0 !important;
  background: #fff;
}

/* About Us：HERO画像を透かして見せる、すりガラス状のヘッダー */
body:has(#aboutus-content) header.header {
  background: rgba(255, 255, 255, 0.55) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

    /* =========================
       Culture page
    ========================= */

.culture-page { 
  --culture-image: url("images/culture-handkerchief-bg.jpg"); 
  position: relative; 
  min-height: 100vh; 
} 
 
.culture-stage { 
  position: relative; 
  z-index: 1; 
  width: min(1120px, calc(100% - 72px)); 
  margin: 0 auto; 
  padding: 80px 0 106px; 
  min-height: 1120px; 
  overflow: hidden; 
} 

.culture-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 52px;
  right: -34px;
  width: 60%;
  height: calc(100% - 100px);

  background-image: var(--culture-image);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;

  opacity: .58;
  pointer-events: none;

  /* 上下を透明化 */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 86%,
    transparent 100%
  );

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 10%,
    #000 86%,
    transparent 100%
  );

  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;

  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

    .culture-hero {
      position: relative;
      z-index: 1;
      padding: 0 0 54px;
    }

    .culture-copy {
      color: var(--main-dark);
    }

    .culture-copy span {
      display: block;
      font-weight: 500;
      letter-spacing: .14em;
    }

    .culture-copy-sp {
      display: none;
    }

    /* =========================
       Content
    ========================= */

    .culture-content {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 34px minmax(300px, 540px) minmax(0, 1fr);
      column-gap: 28px;
      padding: 0;
    }

    .culture-line {
      position: relative;
      z-index: 1;
      grid-column: 1;
      grid-row: 1;
      min-height: 100%;
    }

    .culture-line::before {
      content: "";
      position: absolute;
      top: 10px;
      bottom: 0;
      left: 50%;
      width: 1px;
      transform: translateX(-50%);
      background: rgba(182, 31, 53, .44);
    }

    .culture-body {
      position: relative;
      z-index: 1;
      grid-column: 2;
      grid-row: 1;
      max-width: 540px;
    }

    .culture-body p {
      margin: 0 0 24px;
      font-size: 15px;
      line-height: 2.15;
      letter-spacing: .04em;
    }

    .culture-body p.accent {
      color: var(--main);
      font-size: 18px;
      font-weight: 600;
      line-height: 2;
      letter-spacing: .08em;
    }

    /* PCでは右側コピーを本文冒頭と同じ高さから開始 */
    .culture-copy-pc {
      position: relative;
      z-index: 2;
      grid-column: 3;
      grid-row: 1;
      align-self: start;
      justify-self: end;
      display: flex;
      flex-direction: row-reverse;
      gap: 20px;
      margin: 0 74px 0 0;
    }

    .culture-copy-pc span {
      writing-mode: vertical-rl;
      text-orientation: mixed;
      white-space: nowrap;
      font-size: 22px;
      line-height: 1.9;
    }

    /* =========================
       Tablet / SP
    ========================= */

    @media screen and (max-width: 900px) {
      .culture-stage {
        width: min(100% - 44px, 720px);
        padding: 70px 0 70px;
        min-height: auto;
      }

      .culture-stage::before {
        top: 190px;
        right: -60px;
        width: 112%;
        height: calc(100% - 170px);
        background-position: right top;
        background-size: contain;
        opacity: .82;
      }

      .culture-hero {
        padding: 0 0 34px;
      }

      .about-heading h1 {
        font-size: 36px;
        line-height: 1.7;
        letter-spacing: .12em;
      }

      .culture-copy-pc {
        display: none;
      }

      .culture-copy-sp {
        display: block;
        position: static;
        margin: 22px 0 0;
      }

      .culture-copy-sp span {
        display: block;
        writing-mode: horizontal-tb;
        white-space: normal;
        color: var(--main);
        font-size: 18px;
        line-height: 1.9;
        letter-spacing: .12em;
      }

      .culture-content {
        grid-template-columns: 20px minmax(0, 1fr);
        column-gap: 16px;
        padding: 0;
      }

      .culture-body {
        grid-column: 2;
        max-width: none;
      }

      .culture-body p {
        font-size: 14px;
        line-height: 2.1;
        margin-bottom: 22px;
      }

      .culture-body p.accent {
        font-size: 17px;
        line-height: 2;
      }
    }

    @media screen and (max-width: 600px) {
      .about-page {
        overflow-x: clip;
        overflow-y: visible;
      }

      .culture-stage {
        width: min(100% - 36px, 520px);
        padding: 48px 0 60px;
        overflow: visible;
      }

      .culture-stage::before {
        position: sticky;
        display: block;
        top: 0;
        right: auto;
        bottom: auto;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        margin-left: calc((100vw - 100%) / -2);
        margin-bottom: -100vh;
        margin-bottom: -100dvh;
        background-position: right bottom;
        background-size: auto 82%;
        opacity: .82;

        /* スマホでも画像の上下を背景になじませる */
        -webkit-mask-image: linear-gradient(
          to bottom,
          transparent 0%,
          #000 10%,
          #000 86%,
          transparent 100%
        );

        mask-image: linear-gradient(
          to bottom,
          transparent 0%,
          #000 10%,
          #000 86%,
          transparent 100%
        );
      }

      .culture-hero {
        padding-bottom: 32px;
      }

      .about-heading h1 {
        font-size: 31px;
        line-height: 1.75;
      }

      .culture-copy-sp span {
        font-size: 17px;
      }

      .culture-content {
        grid-template-columns: 18px minmax(0, 1fr);
        column-gap: 14px;
      }

      .culture-line::before {
        top: 9px;
      }

      body.culture-small-page footer,
      body.culture-small-page .footer {
        position: relative;
        z-index: 10;
        background: #fff;
      }
    }



    /* =========================
       Layout
    ========================= */

    .story-inner {
      width: min(1120px, calc(100% - 72px));
      margin: 0 auto;
    }

    .story-opening {
      padding: 80px 0 54px;
    }

.story-copy {
  color: var(--main);
}

.story-copy span {
  display: block;
  font-weight: 500;
  letter-spacing: .14em;
}

.story-copy-sp {
  display: none;
}

.story-copy-pc {
  position: relative;
  z-index: 2;
  grid-column: 3;
  grid-row: 1;
  align-self: start;
  justify-self: end;
  display: flex;
  flex-direction: row-reverse;
  gap: 18px;
  margin: 0 80px 0 0;
}

.story-copy-pc span {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  font-size: 21px;
  line-height: 1.9;
}

    /* =========================
       Generations
    ========================= */

    .story-content {
      padding: 0 0 86px;
    }

    .generation {
      --gen-image: none;
      position: relative;
      display: grid;
      grid-template-columns: 34px minmax(300px, 420px) minmax(0, 1fr);
      column-gap: 28px;
      min-height: 650px;
      padding: 54px 0 68px;
      border-top: 1px solid rgba(130, 95, 75, .18);
      overflow: hidden;
    }

    .generation:first-child {
      border-top: none;
    }

    .generation::before {
      content: "";
      position: absolute;
      z-index: 0;
      top: 116px;
      right: -42px;
      width: 58%;
      height: calc(100% - 170px);
      background-image: var(--gen-image);
      background-repeat: no-repeat;
      background-position: center center;
      background-size: contain;
      opacity: .60;
      pointer-events: none;
    }

    .generation-line {
      position: relative;
      z-index: 2;
      grid-column: 1;
      grid-row: 1;
      min-height: 100%;
    }

    .generation-line::before {
      content: "";
      position: absolute;
      top: 10px;
      bottom: 0;
      left: 50%;
      width: 1px;
      transform: translateX(-50%);
      background: rgba(182, 31, 53, .44);
    }

    .generation-line span {
      position: absolute;
      top: 0;
      left: 50%;
      width: 7px;
      height: 7px;
      transform: translateX(-50%);
      border-radius: 50%;
      background: var(--main);
    }

    .generation-body {
      position: relative;
      z-index: 1;
      grid-column: 2;
      grid-row: 1;
      max-width: 420px;
    }

    .generation-label {
      margin: 0 0 14px;
      color: var(--main);
      font-size: 15px;
      font-weight: 600;
      line-height: 1.8;
      letter-spacing: .12em;
    }

    .generation h2 {
      margin: 0 0 30px;
      color: var(--main-dark);
      font-size: 30px;
      font-weight: 500;
      line-height: 1.55;
      letter-spacing: .1em;
    }

    .generation-body p {
      margin: 0 0 22px;
      font-size: 15px;
      line-height: 2.15;
      letter-spacing: .04em;
    }

    .generation-body p.accent {
      color: var(--main);
      font-weight: 600;
    }

    .generation-01::before {
      top: 160px;
      right: -30px;
      width: 54%;
      height: calc(100% - 230px);
      opacity: .30;
      background-position: right center;
    }

    /* 世代ごとの背景画像指定 */
    .generation-01 { --gen-image: url("images/godai-01.jpg"); }
    .generation-02 { --gen-image: url("images/godai-02.jpg"); }
    .generation-03 { --gen-image: url("images/godai-03.jpg"); }
    .generation-04 { --gen-image: url("images/godai-04.jpg"); }
    .generation-05 { --gen-image: url("images/godai-05.jpg"); }

    /* =========================
       Tablet / SP
    ========================= */

    @media screen and (max-width: 900px) {
      .story-inner {
        width: min(100% - 44px, 720px);
      }

      .story-opening {
        padding: 70px 0 34px;
      }

      .generation {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    column-gap: 16px;
    min-height: auto;
    padding: 46px 0 54px;
      }

      .generation::before {
        top: auto;
        right: -90px;
        bottom: 42px;
        width: 110%;
        height: 54%;
        background-position: right bottom;
        background-size: contain;
        opacity: .60;
      }

      .generation-01::before {
        top: auto;
        right: -86px;
        bottom: 40px;
        width: 112%;
        height: 54%;
        opacity: .22;
      }

      .generation-body {
        grid-column: 2;
        grid-row: 1;
        max-width: none;
      }

.story-copy-pc {
  display: none;
}

.story-copy-sp {
  display: block;
  position: static;
  margin: 22px 0 0;
}

.story-copy-sp span {
  display: block;
  writing-mode: horizontal-tb;
  white-space: normal;
  color: var(--main);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: .12em;
}

      .generation-label {
        margin-bottom: 12px;
        font-size: 14px;
      }

      .generation h2 {
        margin-bottom: 28px;
        font-size: 26px;
      }

      .generation-body p {
        font-size: 14px;
        line-height: 2.1;
      }
    }

    @media screen and (max-width: 600px) {
      .story-inner {
        width: min(100% - 36px, 520px);
      }

      .story-opening {
        padding: 48px 0 32px;
      }

  .story-copy span {
    display: block;
    writing-mode: horizontal-tb;
    white-space: normal;
    color: var(--main);
    font-size: 18px;
    line-height: 1.9;
    letter-spacing: .12em;
  }

      .generation {
    grid-template-columns: 18px minmax(0, 1fr);
    column-gap: 14px;
    padding: 42px 0 50px;
    margin-right: -18px;
    padding-right: 18px;
      }

      .generation::before,
      .generation-01::before {
        right: -82px;
        bottom: 36px;
        width: 120%;
        height: 50%;
        opacity: .48;
      }

      .generation-line::before {
        top: 9px;
      }

      .generation-line span {
        width: 6px;
        height: 6px;
      }

      .generation h2 {
        font-size: 25px;
      }

      .generation-body p {
        margin-bottom: 20px;
      }

      .story-copy span {
        font-size: 17px;
      }
    }

.breadcrumb {
  display: block;
  position: relative;
  z-index: 5;
  width: min(1180px, calc(100% - 60px));
  margin: 0 auto;
  padding: 6px 0 18px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.8;
  color: #777;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb li + li::before {
  content: ">";
  margin: 0 8px 0 2px;
  color: #aaa;
}

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

.breadcrumb a:hover {
  color: var(--main);
}

.breadcrumb [aria-current="page"] {
  color: var(--main);
}

@media screen and (max-width: 900px) {
  .breadcrumb {
    width: min(100% - 44px, 720px);
    padding: 4px 0 12px;
    font-size: 11px;
  }
}

@media screen and (max-width: 600px) {
  .breadcrumb {
    width: min(100% - 36px, 520px);
  }
}


/* =========================================================
   About Us index page
========================================================= */

    .aboutus-page {
      --main: #c7003a;
      --main-dark: #8f002b;
      --text: #333333;
      --sub: #666666;
      --line: #e4ddd8;
      --bg: #fbf8f5;
      --bg2: #f3eee9;
      --white: #ffffff;
      --serif:
        "Yu Mincho",
        "YuMincho",
        "Hiragino Mincho ProN",
        "Hiragino Mincho Pro",
        "Noto Serif JP",
        serif;
      --sans:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "Yu Gothic",
        "YuGothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif;
    }

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

    .aboutus-page a {
      color: inherit;
      text-decoration: none;
    }

    .aboutus-page {
      overflow: hidden;
      background: var(--bg);
      color: var(--text);
      font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        "Yu Gothic",
        "YuGothic",
        "Hiragino Kaku Gothic ProN",
        Meiryo,
        sans-serif !important;
      line-height: 1.9;
      text-align: left;
    }

.aboutus-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 540px;
  margin-top: 0 !important;
  overflow: hidden;
  background-image: url("images/aboutus-hero.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  color: #fff;
}

/* 背景画像の上にグラデーションを重ね、文章を読みやすくする */
.aboutus-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(
      90deg,
      rgba(30, 20, 15, 0.72) 0%,
      rgba(30, 20, 15, 0.52) 42%,
      rgba(30, 20, 15, 0.14) 72%,
      rgba(30, 20, 15, 0) 100%
    );
  pointer-events: none;
}

.aboutus-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 72px));
  margin: 0 auto;
  padding: 140px 0 70px;
}

.aboutus-hero-text {
  max-width: 560px;
}

.aboutus-hero .eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.18em;
}

.aboutus-hero h1 {
  margin: 0;
  padding: 0;
  background: none;
  color: #fff;
  font-family:
    "Yu Mincho",
    "YuMincho",
    "Hiragino Mincho ProN",
    "Hiragino Mincho Pro",
    "Noto Serif JP",
    serif;
  font-size: clamp(38px, 3.1vw, 48px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.aboutus-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
}

    .aboutus-section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 80px 30px;
    }

    .aboutus-section-heading {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 34px;
      padding-bottom: 22px;
      border-bottom: 1px solid var(--line);
    }

    .aboutus-section-heading h2 {
      margin: 0;
      font-family: var(--serif) !important;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: .08em;
    }

    .aboutus-section-heading p {
      max-width: 560px;
      margin: 0;
      color: var(--sub);
      font-size: 14px;
    }

    .aboutus-overview-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 28px;
    }

    .aboutus-overview-card {
      display: block;
      min-height: 162px;
      padding: 30px 34px;
      color: inherit;
      text-decoration: none;
      cursor: pointer;
      background: var(--white);
      border: 1px solid var(--line);
      transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    }

    .aboutus-overview-card h3 {
      margin: 0 0 12px;
      color: var(--main);
      font-family: var(--serif) !important;
      font-size: 18px;
      font-weight: 500;
      letter-spacing: .08em;
    }

.aboutus-overview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(182, 31, 53, 0.35);
}

.aboutus-overview-card:focus-visible {
  outline: 2px solid #b61f35;
  outline-offset: 3px;
}

    .aboutus-overview-card p {
      margin: 0;
      color: #555;
      font-size: 14px;
      line-height: 1.9;
    }

    .index-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 42px;
    }

    .index-card {
      display: grid;
      grid-template-columns: minmax(260px, .9fr) minmax(320px, 1.1fr) minmax(280px, .85fr);
      min-height: 300px;
      overflow: hidden;
      background: var(--white);
    }

    .index-card-head {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 44px 38px;
    }

    .index-card .num {
      display: block;
      margin-bottom: 10px;
      color: var(--main);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .14em;
    }

    .index-card h3 {
      margin: 0 0 24px;
      font-family: var(--serif) !important;
      font-size: 30px;
      font-weight: 500;
      letter-spacing: .1em;
    }

    .index-card p {
      margin: 0;
      color: #555;
      font-size: 14px;
      line-height: 2;
    }

    .index-card .link-list {
      align-self: center;
      width: 100%;
      margin: 0;
      padding: 28px 34px;
      list-style: none;
    }

    .index-card .link-list li {
      margin: 0;
      padding: 0;
    }

    .index-card .link-list a,
    .index-card .link-list .item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 54px;
      padding: 12px 0;
      border-bottom: 1px solid var(--line);
      font-size: 14px;
      transition: color .2s ease, padding-left .2s ease;
    }

    .index-card .link-list li:last-child a,
    .index-card .link-list li:last-child .item {
      border-bottom: 0;
    }

    .index-card .link-list a:hover {
      padding-left: 6px;
      color: var(--main);
    }

    .index-card .link-list a::after,
    .index-card .link-list .item::after {
      content: "›";
      color: var(--main);
      font-size: 22px;
      line-height: 1;
    }

    .index-card-visual {
      min-height: 300px;
      margin: 0;
      background-color: #ded8d2;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .index-card--history .index-card-visual {
      background-image:
        linear-gradient(rgba(36, 32, 29, .08), rgba(36, 32, 29, .08)),
        url("images/aboutus-history.jpg");
      filter: saturate(.72) contrast(.96);
    }

    .index-card--culture .index-card-visual {
      background-image:
        linear-gradient(rgba(255, 255, 255, .05), rgba(255, 255, 255, .05)),
        url("images/aboutus-culture.jpg");
      background-color: #ece6e0;
    }

    .index-card--craft .index-card-visual {
      background-image:
        linear-gradient(rgba(29, 25, 22, .04), rgba(29, 25, 22, .04)),
        url("images/aboutus-craft.jpg");
      background-color: #d8d0c8;
    }

    .visual-break {
      position: relative;
      min-height: 420px;
      background-color: #d8d1ca;
      background-image:
        linear-gradient(90deg, rgba(23, 20, 18, .18), rgba(23, 20, 18, .02)),
        url("images/aboutus-wide.jpg");
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }

    .visual-break-inner {
      position: absolute;
      inset: auto 0 0;
      width: 100%;
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 30px 34px;
      color: #fff;
      font-family: var(--serif);
      font-size: 15px;
      letter-spacing: .12em;
      text-shadow: 0 1px 12px rgba(0, 0, 0, .35);
    }

    .tag {
      display: inline-block;
      margin-left: 8px;
      padding: 2px 7px;
      border-radius: 999px;
      background: #f4ebe6;
      color: #84695e;
      font-size: 11px;
      white-space: nowrap;
    }

    .company-links {
      background: var(--bg2);
    }

    .company-links .aboutus-section {
      padding-top: 70px;
      padding-bottom: 70px;
    }

    .button-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .button-card {
      position: relative;
      min-height: 180px;
      padding: 28px 24px 24px;
      background: var(--white);
      border: 0;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .button-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(49, 39, 33, .08);
    }

    .button-card .company-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      margin-bottom: 24px;
      color: #34302d;
      font-size: 30px;
    }

    .button-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--main-dark);
      font-size: 15px;
      letter-spacing: .04em;
    }

    .button-card span {
      display: block;
      color: #666;
      font-size: 12px;
      line-height: 1.7;
    }

    .button-card::after {
      content: "›";
      position: absolute;
      right: 22px;
      bottom: 20px;
      color: var(--main);
      font-size: 22px;
      line-height: 1;
    }


    .shop-guide {
      background: var(--white);
    }

    .shop-guide .aboutus-section {
      padding-top: 70px;
      padding-bottom: 70px;
    }

    .shop-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
    }

    .aboutus-shop-card {
      display: grid;
      grid-template-columns: 140px 1fr;
      gap: 24px;
      min-height: 150px;
      padding: 26px;
      background: var(--bg);
      border: 1px solid var(--line);
      align-items: center;
    }

    .shop-thumb {
      display: block;
      width: 100%;
      height: 96px;
      overflow: hidden;
      border: 1px solid var(--line);
      background: #eee9e5;
    }

    .shop-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .aboutus-shop-card strong {
      display: block;
      margin-bottom: 8px;
      color: var(--main-dark);
      font-size: 17px;
      letter-spacing: .05em;
    }

    .aboutus-shop-card span {
      display: block;
      color: #666;
      font-size: 13px;
      line-height: 1.8;
    }


    .press-area {
      background: var(--bg);
    }

    .press-layout {
      display: grid;
      grid-template-columns: 1fr 220px;
      gap: 34px;
      align-items: start;
    }

    .press-list {
      background: var(--white);
      border: 1px solid var(--line);
    }

    .press-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 22px;
      padding: 22px 26px;
    }

    .press-item:not(:last-child) {
      border-bottom: 1px solid var(--line);
    }

    .press-thumb {
      width: 100%;
      height: 96px;
      overflow: hidden;
      border: 1px solid var(--line);
      background:
        linear-gradient(135deg, rgba(255,255,255,.7), rgba(255,255,255,.25)),
        repeating-linear-gradient(45deg, #eaded6, #eaded6 10px, #f6f1ed 10px, #f6f1ed 20px);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #987f72;
      font-size: 11px;
      letter-spacing: .1em;
    }

    .press-thumb img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .press-date {
      display: block;
      margin-bottom: 5px;
      color: #777;
      font-size: 13px;
      line-height: 1.5;
    }

    .press-item h3 {
      margin: 0;
      color: #444;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.8;
    }

    .press-item h3 a {
      color: inherit;
      text-decoration: none;
      transition: color .2s ease;
    }

    .press-item h3 a:hover,
    .press-item h3 a:focus-visible {
      color: var(--main);
      text-decoration: underline;
      text-underline-offset: .2em;
    }

    .press-more {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 12px 18px;
      border: 1px solid var(--main);
      color: var(--main);
      background: var(--white);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .06em;
      text-align: center;
    }

    .press-more::after {
      content: " ›";
      margin-left: 6px;
      font-size: 18px;
      line-height: 1;
    }

    .note-area {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 30px 80px;
    }

    .note-box {
      padding: 24px 28px;
      background: #fff;
      border-left: 5px solid var(--main);
      color: #555;
      font-size: 14px;
    }

    .note-box p {
      margin: 0;
    }

    @media screen and (max-width: 900px) {
      .aboutus-hero {
        min-height: 540px;
        background-position: 62% center;
      }

      .aboutus-hero::before {
        background: rgba(25, 18, 15, 0.5);
      }

      .aboutus-hero-inner {
        width: min(100% - 44px, 720px);
      }

      .aboutus-hero-text {
        max-width: 580px;
      }

      .aboutus-hero h1 {
        font-size: 36px;
      }

      .button-grid,
      .shop-grid {
        grid-template-columns: 1fr;
      }

      .index-card {
        grid-template-columns: minmax(230px, .8fr) minmax(280px, 1.2fr);
      }

      .index-card-visual {
        grid-column: 1 / -1;
        min-height: 320px;
      }

      .aboutus-section-heading {
        display: block;
      }

      .aboutus-section-heading h2 {
        margin-bottom: 14px;
      }

      .aboutus-overview-grid {
        grid-template-columns: 1fr;
      }
    }

    @media screen and (max-width: 600px) {
      .press-layout {
        grid-template-columns: 1fr;
      }

      .aboutus-hero {
        min-height: 520px;
        background-position: center center;
      }

      .aboutus-hero::before {
        background:
          linear-gradient(
            180deg,
            rgba(25, 18, 15, 0.38) 0%,
            rgba(25, 18, 15, 0.62) 100%
          );
      }

      .aboutus-hero-inner {
        width: min(100% - 36px, 520px);
      }

      .aboutus-hero .eyebrow {
        margin-bottom: 18px;
        font-size: 13px;
      }

      .aboutus-hero h1 {
        font-size: 30px;
        line-height: 1.65;
        letter-spacing: 0.09em;
      }

      .aboutus-lead {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.95;
      }

      .visual-break {
        min-height: 260px;
      }

      .visual-break-inner {
        padding: 0 22px 22px;
        font-size: 12px;
      }

      .aboutus-section {
        padding: 56px 22px;
      }

      .aboutus-section-heading h2 {
        font-size: 24px;
      }

      .aboutus-overview-card {
        min-height: 0;
        padding: 26px 24px;
      }

      .link-list a,
      .link-list .item,
      .button-card,
      .aboutus-shop-card {
        padding-left: 22px;
        padding-right: 22px;
      }

      .index-card {
        grid-template-columns: 1fr;
      }

      .index-card-head {
        padding: 34px 28px 12px;
      }

      .index-card .link-list {
        padding: 12px 28px 28px;
      }

      .index-card-visual {
        grid-column: auto;
        min-height: 240px;
      }

      .button-grid,
      .shop-grid {
        grid-template-columns: 1fr;
      }

      .button-card {
        min-height: 150px;
      }

      .aboutus-shop-card {
        grid-template-columns: 96px 1fr;
      }

      .press-item {
        grid-template-columns: 90px 1fr;
        gap: 16px;
        padding: 18px;
      }

      .note-area {
        padding: 0 22px 56px;
      }
    }

/* =========================================================
   文化ページ：スマホ用固定背景
========================================================= */

@media screen and (max-width: 600px) {

  body:has(.culture-page) {
    overflow-x: hidden;
  }

  .about-page.culture-page,
  .culture-page,
  .culture-stage {
    overflow: visible !important;
  }

  .culture-stage::before {
    position: fixed !important;
    display: block;

    top: auto !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;

    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;

    /* sticky用の負のマージンを解除 */
    margin: 0 !important;

    background-image: var(--culture-image);
    background-repeat: no-repeat;
    background-position: right bottom !important;
    background-size: auto 92% !important;

    opacity: .82;
    pointer-events: none;
    z-index: 0;
  }

  /* 本文を背景画像より前面へ */
  .culture-stage > * {
    position: relative;
    z-index: 1;
  }

  /* フッターが表示されたら固定画像を覆い隠す */
  body:has(.culture-page) footer.grand-menu,
  body:has(.culture-page) .grand-menu,
  body:has(.culture-page) p.copy {
    position: relative !important;
    z-index: 20 !important;
    background: #fff !important;
  }
}

/* About Us：スマホ専用ヒーロー画像 */
@media screen and (max-width: 600px) {
  .aboutus-hero {
    background-image: url("images/aboutus-hero-sp.jpg");
    background-position: center center;
    background-size: cover;
  }

  /* PCより薄いオーバーレイ */
  .aboutus-hero::before {
    background: linear-gradient(
      180deg,
      rgba(25, 18, 15, 0.25) 0%,
      rgba(25, 18, 15, 0.42) 100%
    );
  }

  /* オーバーレイを薄くした分、文字にごく薄い影を追加 */
  .aboutus-hero-text {
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.32);
  }
}
