@charset "utf-8";
/* 下層ページ専用スタイル */

main.l-sub {
  background: transparent;
  color: #feeab4;
  padding-bottom: 12rem;
}

/* ユーティリティクラス */
.s-section--dark {
  background: rgba(0, 0, 0, 0.15);
}
.s-section--narrow-y {
  padding: 6rem 0;
}
.s-text-center {
  text-align: center;
}

/* カーボン・オフセットページ：通常表示の画像（パララックスなし） */
.s-carbonoffset-img {
  margin: 0;
  width: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.s-carbonoffset-img img {
  display: block;
  width: 100%;
  height: auto;
}
/* process.png 用：白の角丸ベタ背景 */
.s-carbonoffset-img--card {
  background: #fff;
  padding: 4rem;
}
@media screen and (max-width: 768px) {
  .s-carbonoffset-img--card {
    padding: 2rem;
  }
}

/* カーボン・オフセットページ：認証番号の枠 */
.s-carbonoffset-note {
  border: 1px solid rgba(254, 234, 180, 0.4);
  border-radius: 1.2rem;
  padding: 2.4rem 3rem;
  margin: 0;
}

/* 電話お問い合わせ：背景画像 + オーバーレイ */
.s-section--phone {
  position: relative;
  padding: 9rem 0;
  background-image: url("../img/inquiry/inquiry_img.jpeg");
  background-size: cover;
  /* 写真の表示範囲を中央寄り（見える絵が少し上にずれる） */
  background-position: center 35%;
  background-repeat: no-repeat;
  overflow: hidden;
  isolation: isolate;
}
.s-section--phone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.55);
}
.s-section--phone,
.s-section--phone .s-head__en,
.s-section--phone .s-head__ttl,
.s-section--phone .s-bigtel,
.s-section--phone .s-bigtel-note {
  color: #fff;
}
.s-section--phone .s-phone-content {
  max-width: 50%;
  text-align: left;
}

/* フッターとの隙間を 0 にするユーティリティ（main.l-sub の padding-bottom を相殺） */
.s-flush-footer {
  margin-bottom: -12rem;
}
@media screen and (max-width: 768px) {
  .s-flush-footer {
    margin-bottom: -6rem;
  }
  .s-section--phone {
    padding: 6rem 0;
  }
  .s-section--phone .s-phone-content {
    max-width: 100%;
  }
}
.s-text-right {
  text-align: right;
  margin-top: 2rem;
}
.s-mt-0 {
  margin-top: 0;
}
.s-mb-0 {
  margin-bottom: 0;
}
.s-mt-4 {
  margin-top: 4rem;
}
.s-mt-5 {
  margin-top: 5rem;
}
.s-mt-6 {
  margin-top: 6rem;
}
.s-mt-section {
  margin-top: 6rem;
}

/* ヒーロー直下の100vw画像 */
.s-parallax-wide.s-mt-0 {
  margin-top: 0;
}
.s-parallax-wide.s-mt-0--tall {
  margin: 0;
  height: 60vh;
}
.s-parallax-wide.s-no-margin {
  margin: 0;
}

/* 概要パネル（アイボリー塗り） */
.s-card-panel {
  padding: 4rem 3rem;
  border: 0;
  border-radius: 2.4rem;
  background: #feeab4;
  color: #044b2b;
}
.s-card-panel h3,
.s-card-panel h4 {
  color: #044b2b;
}
.s-card-panel .c-list-ul,
.s-card-panel .c-list-ol {
  color: #044b2b;
}
.s-card-panel .c-list-ul li::before {
  background: #044b2b;
}
.s-card-panel h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}

/* 大き目電話番号表示 */
.s-bigtel {
  font-family: "Instrument Sans", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.s-bigtel-note {
  font-size: 1.3rem;
  color: rgba(254, 234, 180, 0.75);
  margin-top: 1rem;
}

/* 横並びカード幅（top.css の .l-product 系を上書きするため詳細度を上げる）
   幅指定は PC のみ。SP では top.css の column レイアウト + width: 100% を継承させる */
@media screen and (min-width: 769px) {
  .l-product .l-product_inner .other_product .list_other.s-list-other--gap2 {
    gap: 2rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .l-product .l-product_inner .other_product .list_other.s-list-other--col2 > li {
    width: calc((100% - 2rem) / 2);
  }
  .l-product .l-product_inner .other_product .list_other.s-list-other--col3 > li {
    width: calc((100% - 4rem) / 3);
  }
  /* col3 で 5 項目時、2 行目（4・5番目）は他と同じ幅で左詰め＋10px 下へずらす */
  .l-product .l-product_inner .other_product .list_other.s-list-other--col3 > li:nth-child(4),
  .l-product .l-product_inner .other_product .list_other.s-list-other--col3 > li:nth-child(5) {
    margin-top: 1rem;
  }
}

/* list_other 内の figure を縦横比固定にして左右で高さを揃える */
.l-product .l-product_inner .other_product .list_other.s-list-other--gap2 > li > figure {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
}
.l-product .l-product_inner .other_product .list_other.s-list-other--gap2 > li > figure img,
.l-product .l-product_inner .other_product .list_other.s-list-other--gap2 > li > figure picture,
.l-product .l-product_inner .other_product .list_other.s-list-other--gap2 > li > figure picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* l-product wrapper override (when used inside subpage) */
.s-product-wrap .l-product_inner {
  width: 100%;
  max-width: none;
}

/* その他主要設備 見出し（背景枠なし・左にメニューアイコン） */
.s-eq-title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0 0 2rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.s-eq-title img {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}

/* 補助設備グリッド */
.s-eq-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
}
.s-eq-list li {
  padding: 1.4rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 1.7rem;
  text-align: center;
  font-size: 1.3rem;
}
@media screen and (max-width: 768px) {
  .s-eq-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* 入力フィールド幅制限 */
.c-input--postal {
  max-width: 24rem;
}

/* 中央フォームチェック */
.c-check--center {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.c-check--center a {
  text-decoration: underline;
}

/* フォーム送信ボタン中央配置 */
.s-form-submit {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* 記事内インラインテキスト調整 */
.s-text-body {
  font-size: 1.5rem;
  line-height: 2;
}
.s-text-body p {
  margin-bottom: 1.6rem;
}
.s-text-body p:last-child {
  margin-bottom: 0;
}

/* お知らせメイン画像 */
.s-news-eyecatch {
  margin-bottom: 4rem;
}

/* プライバシー本文 */
.s-policy-intro {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 6rem;
}
.s-policy-section {
  margin-bottom: 5rem;
}
.s-policy-section h2 {
  margin-bottom: 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.3);
  font-size: 2rem;
  font-weight: 700;
}
.s-policy-section p {
  font-size: 1.5rem;
  line-height: 2;
}
.s-policy-section p + p {
  margin-top: 1.6rem;
}
.s-policy-section ul.c-list-ul {
  margin-top: 1.6rem;
}
.s-policy-section ol.c-list-ol {
  margin-top: 1.6rem;
  font-size: 1.5rem;
  line-height: 2;
}
.s-policy-section ol.c-list-ol li {
  padding-left: 2.4em;
}
.s-policy-section ol.c-list-ol li + li {
  margin-top: 1.2rem;
}
.s-policy-section h3 {
  margin: 2.4rem 0 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #cda16f;
}
.s-policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0;
  font-size: 1.35rem;
}
.s-policy-table th,
.s-policy-table td {
  padding: 1rem 1.2rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}
.s-policy-table th {
  background: rgba(254, 234, 180, 0.08);
  font-weight: 700;
}
@media (max-width: 768px) {
  .s-policy-table {
    font-size: 1.2rem;
  }
  .s-policy-table th,
  .s-policy-table td {
    padding: 0.8rem 1rem;
  }
}
.s-policy-section a.s-link {
  color: #feeab4;
  text-decoration: underline;
  text-underline-offset: 0.3em;
  font-size: 1.4rem;
  word-break: break-all;
}
.s-policy-contact {
  margin-top: 6rem;
  padding: 4rem 3rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 2.4rem;
  background: rgba(0, 0, 0, 0.2);
}
.s-policy-contact h3 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  font-weight: 700;
}
.s-policy-contact address {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 2;
}

/* APS / Precut hero 補助 */
.s-aps-hero {
  margin-top: 0;
  height: 60vh;
}
.s-precut-narrow .s-info__row {
  grid-template-columns: 14rem 1fr;
}
.s-info--noborder {
  border-top: 0;
}

/* products related 区切り */
.s-related-section {
  background: rgba(0, 0, 0, 0.15);
}
.s-cat-prepad {
  padding: 6rem 0;
}

/* セクション基本 */
.s-section {
  position: relative;
  padding: 10rem 0;
}
/* セクションの上下余白ユーティリティ（base .s-section の後でショートハンドを上書き） */
.s-section--pt0 {
  padding-top: 0;
}
.s-section--pb0 {
  padding-bottom: 0;
}
.s-section--pt-half {
  padding-top: 5rem;
}
.s-section--pb-half {
  padding-bottom: 5rem;
}

/* セクション区切り線 */
.s-divider {
  width: 122.6rem;
  max-width: 92%;
  margin: 0 auto;
  border: 0;
  border-top: 1px solid rgba(254, 234, 180, 0.2);
}

/* ごあいさつセクション：背景装飾 product_dec02.png（img_about01.png 上面にくっつく） */
.s-section--greeting::before {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-image: url("../img/top/product_dec02.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left bottom;
  bottom: 0;
  left: -8rem;
  width: 72rem;
  aspect-ratio: 964 / 576;
}
.s-section--greeting .s-section__inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .s-section--greeting {
    overflow: hidden;
  }
  .s-section--greeting::before {
    bottom: 0;
    left: -12rem;
    width: 56rem;
  }
}

/* 白背景セクション（下から上がってきて上の画像に被さる） */
.s-section--white {
  background: #fff;
  color: #044b2b;
}
.s-section--white .s-head__en {
  color: #044b2b;
}
.s-section--white .s-head__ttl {
  color: #044b2b;
}
.s-section--white .s-head__lead {
  color: rgba(4, 75, 43, 0.85);
}
.s-section--white .s-info {
  border-top-color: rgba(4, 75, 43, 0.15);
}
.s-section--white .s-info__row {
  border-bottom-color: rgba(4, 75, 43, 0.15);
}
.s-section--white .s-info__row dt,
.s-section--white .s-info__row dd {
  color: #044b2b;
}
.s-section--white .s-info__row dd ul li::before {
  background: rgba(4, 75, 43, 0.7);
}

/* アイボリーフルブリードセクション（関連の工法・関連事業など） */
.s-section--ivory-flat {
  background: #feeab4;
  color: #044b2b;
}
.s-section--ivory-flat .s-head__en,
.s-section--ivory-flat .s-head__ttl {
  color: #044b2b;
}
.s-section--ivory-flat .s-head__lead {
  color: rgba(4, 75, 43, 0.85);
}
/* l-product の有機形デコ(product_dec01/02.png) を非表示 */
.s-section--ivory-flat .l-product::before,
.s-section--ivory-flat .l-product::after {
  display: none;
}
.s-section--ivory-flat .l-product {
  padding-bottom: 0;
  margin-top: 0;
}
/* テキスト色：top.css のネスト（specificity 0,4,2）を超えるためアイボリー親 + 同じネストで上書き */
.s-section--ivory-flat .l-product .l-product_inner .other_product .list_other li h4 {
  color: #044b2b;
}
.s-section--ivory-flat .l-product .l-product_inner .other_product .list_other li p {
  color: rgba(4, 75, 43, 0.85);
}
.s-section--ivory-flat .l-product .l-product_inner .other_product .list_other li .btn_other,
.s-section--ivory-flat .l-product .l-product_inner .other_product .list_other li .btn_other .dec_arrow {
  color: #044b2b;
}
/* 全ボーダーをアイボリー(#feeab4)→深緑(#044b2b)へ（しっかり見える濃さで） */
.s-section--ivory-flat .list_other li,
.s-section--ivory-flat .list_other li::before,
.s-section--ivory-flat .list_other li::after,
.s-section--ivory-flat .list_other li figure,
.s-section--ivory-flat .list_other li figure::before,
.s-section--ivory-flat .list_other li figure::after,
.s-section--ivory-flat .list_other li .btn_other,
.s-section--ivory-flat .list_other li .btn_other::before,
.s-section--ivory-flat .list_other li .btn_other::after,
.s-section--ivory-flat .list_other li .btn_other .dec_arrow::before,
.s-section--ivory-flat .list_other li .btn_other .dec_arrow::after {
  border-color: #044b2b !important;
}
/* ViewMore 矢印画像を緑バージョンに差し替え */
.s-section--ivory-flat .list_other li .btn_other .dec_arrow::after {
  background-image: url("../img/common/arrow_g.svg") !important;
}

/* アイボリー角丸カード背景セクション（応募フォーム用） */
.s-section--ivory .s-section__inner {
  background: #feeab4;
  border-radius: 3.2rem;
  padding: 7rem 6rem;
  color: #044b2b;
}
.s-section--ivory .s-head__en {
  color: #044b2b;
}
.s-section--ivory .s-head__ttl {
  color: #044b2b;
}
.s-section--ivory .s-head__lead {
  color: rgba(4, 75, 43, 0.85);
}
.s-section--ivory .c-form__label {
  color: #044b2b;
}
.s-section--ivory .c-form__hint {
  color: rgba(4, 75, 43, 0.6);
}
.s-section--ivory .c-input,
.s-section--ivory .c-textarea,
.s-section--ivory .c-select {
  background: #fff;
  border: 1px solid rgba(4, 75, 43, 0.12);
}
.s-section--ivory .c-input::placeholder,
.s-section--ivory .c-textarea::placeholder {
  color: rgba(4, 75, 43, 0.35);
}
.s-section--ivory .c-input:focus,
.s-section--ivory .c-textarea:focus,
.s-section--ivory .c-select:focus {
  border-color: #044b2b;
  box-shadow: 0 0 0 3px rgba(4, 75, 43, 0.15);
}
.s-section--ivory .c-file {
  background: #fff;
  border: 1px solid rgba(4, 75, 43, 0.12);
  color: #044b2b;
}
.s-section--ivory .c-file:hover {
  background: rgba(4, 75, 43, 0.05);
}
.s-section--ivory .c-check,
.s-section--ivory .c-radio {
  color: #044b2b;
}
.s-section--ivory .c-check a,
.s-section--ivory .c-radio a {
  color: #044b2b;
  text-decoration: underline;
}
.s-section--ivory .c-check input,
.s-section--ivory .c-radio input {
  border-color: #044b2b;
  background: #fff;
}
.s-section--ivory .c-check input:checked {
  background: #044b2b;
}
.s-section--ivory .c-check input:checked::after {
  border-right-color: #feeab4;
  border-bottom-color: #feeab4;
}
.s-section--ivory .c-radio input:checked::after {
  background: #044b2b;
}
.s-section--ivory .c-btn--primary {
  background: #044b2b;
  color: #feeab4;
  border-color: #044b2b;
}
.s-section--ivory .c-btn--primary::after {
  background-image: url("../img/common/arrow_y.svg");
}
.s-section--ivory .c-btn--primary:hover {
  background: transparent;
  color: #044b2b;
  border-color: #044b2b;
}
.s-section--ivory .c-btn--primary:hover::after {
  background-image: url("../img/common/arrow_g.svg");
}
@media screen and (max-width: 768px) {
  .s-section--ivory .s-section__inner {
    border-radius: 2rem;
    padding: 4rem 2rem;
  }
}

/* 上の要素（sticky 画像）にかぶさってくるセクション */
.s-section--overlap {
  position: relative;
  z-index: 2;
  margin-top: 0;
  padding-top: 14rem;
  border-radius: 4rem 4rem 0 0;
}
@media screen and (max-width: 768px) {
  .s-section--overlap {
    padding-top: 9rem;
    border-radius: 2.4rem 2.4rem 0 0;
  }
}
.s-section__inner {
  margin: 0 auto;
  width: 122.6rem;
  max-width: 92%;
}
.s-section__inner--narrow {
  width: 88rem;
  max-width: 88%;
}
/* 2カラム（左：見出し / 右：コンテンツ・右が広い） */
.s-section__inner--split {
  display: grid;
  grid-template-columns: 28rem 1fr;
  gap: 6rem;
  align-items: start;
}
.s-section__inner--split .s-head {
  margin-bottom: 0;
}
@media screen and (max-width: 990px) {
  .s-section__inner--split {
    grid-template-columns: 22rem 1fr;
    gap: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .s-section__inner--split {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

/* セクション見出し（縦書きen + 日本語） */
.s-head {
  display: flex;
  flex-flow: column;
  gap: 1rem;
  margin-bottom: 5rem;
}
.s-head--center {
  align-items: center;
  text-align: center;
}
.s-head--tight {
  margin-bottom: 2.5rem;
}
.s-head__en {
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  color: #feeab4;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.s-head__en::before {
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background: url("../img/common/icon_menu.svg") no-repeat center / contain;
  flex-shrink: 0;
}
.s-head__ttl {
  font-size: 3.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.4;
}
.s-head__lead {
  margin-top: 2rem;
  max-width: 70rem;
  font-size: 1.5rem;
  line-height: 2;
  color: rgba(254, 234, 180, 0.85);
}
.s-head--center .s-head__lead {
  margin-inline: auto;
}

/* マスク内パララックス用画像 */
.s-mask-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 2055 / 599;
  border-radius: 1.7rem;
}
.s-mask-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  will-change: transform;
}

/* floating 画像（パララックス対応・傾きなし） */
.s-tilted {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2.4rem;
  will-change: transform;
}
.s-tilted img {
  display: block;
  width: 100%;
  height: auto;
}
.s-tilted--left,
.s-tilted--right {
  /* 傾きなし */
}

/* ポートレート写真（小さめ表示・パララックスなし） */
.s-tilted--portrait {
  width: 72%;
  margin: 0 auto;
  will-change: auto;
}
@media screen and (max-width: 768px) {
  .s-tilted--portrait {
    width: 80%;
  }
}

/* 並列レイアウト（左右テキスト + 画像） */
.s-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
}
.s-split--reverse > :first-child {
  order: 2;
}
.s-split__text h3 {
  margin-bottom: 2rem;
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.s-split__text p {
  font-size: 1.5rem;
  line-height: 2;
  color: rgba(254, 234, 180, 0.9);
}
.s-split__text p + p {
  margin-top: 1.4rem;
}
.s-split__img {
  position: relative;
  overflow: hidden;
  border-radius: 2.4rem;
  aspect-ratio: 4 / 3;
  background: rgba(254, 234, 180, 0.05);
}
.s-split__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
}

/* 横スクロール（縦→横→縦） */
.s-hscroll {
  position: relative;
  height: 400vh;
}
.s-hscroll__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.s-hscroll__wrap {
  display: flex;
  flex-flow: column;
  gap: 4rem;
  width: 100%;
}
.s-hscroll__track {
  display: flex;
  gap: 4rem;
  padding: 0 8rem;
  will-change: transform;
}
.s-hscroll__item {
  flex: 0 0 48rem;
  height: 60rem;
  padding: 4rem 3.6rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 2.4rem;
  background: transparent;
  display: flex;
  flex-flow: column;
}
.s-hscroll__media {
  margin: 0 0 2.4rem;
  border-radius: 1.4rem;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.s-hscroll__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.s-hscroll__item h4 {
  margin-bottom: 2rem;
  font-size: 2.2rem;
  font-weight: 700;
}
.s-hscroll__item p {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(254, 234, 180, 0.85);
}
.s-hscroll__num {
  display: block;
  margin-bottom: 1rem;
  font-family: "Instrument Sans", sans-serif;
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(254, 234, 180, 0.7);
}

/* 沿革（横スクロール×横一直線タイムライン＋ドット＋進捗） */
.s-history-track {
  position: relative;
  align-items: stretch;
  gap: 0;
  padding: 0 8rem;
}
.s-history-track::before,
.s-history-track::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 1px;
  pointer-events: none;
}
.s-history-track::before {
  width: var(--history-total, 100%);
  background: rgba(254, 234, 180, 0.22);
}
.s-history-track::after {
  width: var(--history-progress, 0);
  background: #feeab4;
  transition: width 0.15s linear;
  z-index: 1;
}
.s-history-item {
  flex: 0 0 40rem;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto 1fr;
  padding: 4rem 4rem;
}
.s-history-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #044b2b;
  border: 2px solid rgba(254, 234, 180, 0.4);
  transform: translate(-50%, -50%);
  z-index: 2;
  transition:
    background 0.3s ease,
    border-color 0.3s ease;
}
.s-history-item.is-passed::after {
  background: #feeab4;
  border-color: #feeab4;
}
.s-history-item__top {
  grid-row: 1;
  align-self: end;
  margin-bottom: 3rem;
  text-align: left;
}
.s-history-item__bottom {
  grid-row: 3;
  align-self: start;
  margin-top: 3rem;
  text-align: left;
}
.s-history-item__index {
  display: block;
  margin-bottom: 1rem;
  font-family: "Instrument Sans", sans-serif;
  font-style: italic;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  color: rgba(254, 234, 180, 0.55);
}
.s-history-item__num {
  display: block;
  font-family: "Instrument Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 11rem;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: #feeab4;
}
.s-history-item__era {
  display: block;
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #feeab4;
}
.s-history-item__text {
  font-size: 1.35rem;
  line-height: 1.9;
  color: rgba(254, 234, 180, 0.85);
}
@media screen and (max-width: 990px) {
  .s-history-item {
    flex: 0 0 34rem;
    padding: 4rem 3rem;
  }
  .s-history-item__num {
    font-size: 8.8rem;
  }
}
@media screen and (max-width: 768px) {
  .s-history-track {
    flex-flow: column;
    gap: 0;
    padding: 0;
    margin: 0 4%;
    overflow: hidden;
  }
  /* SP用：左から 1.2rem の位置に縦線（基本＋進捗） */
  .s-history-track::before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 1.2rem;
    width: 1px;
    height: auto;
    background: rgba(254, 234, 180, 0.35);
    transform: translateX(-0.5px);
  }
  .s-history-track::after {
    display: block;
    position: absolute;
    top: 0;
    left: 1.2rem;
    width: 1px;
    height: var(--history-progress-sp, 0);
    background: #feeab4;
    transition: height 0.15s linear;
    transform: translateX(-0.5px);
    z-index: 1;
  }
  .s-history-item {
    flex: 0 0 auto;
    width: auto;
    display: block;
    padding: 3.4rem 0 3.4rem 3rem;
    border-left: 0;
    margin: 0;
    position: relative;
  }
  .s-history-item::after {
    top: 4rem;
    left: 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    transform: translate(-50%, 0);
    z-index: 2;
  }
  .s-history-item__top {
    margin-bottom: 1.6rem;
  }
  .s-history-item__bottom {
    margin-top: 0;
  }
  .s-history-item__num {
    font-size: 6.4rem;
  }
  .s-history-item__era {
    font-size: 1.4rem;
  }
  .s-history-item__text {
    font-size: 1.3rem;
  }
}

/* ============================================
   製品詳細（products-detail.html）— zigzag features
   ============================================ */

/* 上部のインデックスナビ */
.s-prod-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 8rem;
  padding: 0;
  list-style: none;
}
.s-prod-nav__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.4rem;
  padding: 1.8rem 2rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 1.6rem;
  color: #feeab4;
  text-decoration: none;
  transition:
    background 0.3s,
    transform 0.3s,
    border-color 0.3s;
}
.s-prod-nav__item:hover {
  background: rgba(254, 234, 180, 0.06);
  border-color: rgba(254, 234, 180, 0.6);
  transform: translateY(-2px);
}
.s-prod-nav__num {
  font-family: "Instrument Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: #cda16f;
}
.s-prod-nav__name {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* 各カテゴリの feature 行（交互配置） */
.s-prod-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem;
  align-items: center;
  padding: 8rem 0;
  border-top: 1px solid rgba(254, 234, 180, 0.18);
  scroll-margin-top: 8rem;
}
.s-prod-feature:first-of-type {
  border-top: 0;
  padding-top: 0;
}
.s-prod-feature:last-of-type {
  padding-bottom: 0;
}
.s-prod-feature--reverse .s-prod-feature__media {
  order: 2;
}
.s-prod-feature--reverse .s-prod-feature__body {
  order: 1;
}

.s-prod-feature__media {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 2.4rem;
  overflow: visible;
}
.s-prod-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2.4rem;
}
.s-prod-feature__num {
  position: absolute;
  top: -2.4rem;
  left: -1.6rem;
  z-index: 2;
  font-family: "Instrument Sans", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 9rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px #feeab4;
}
.s-prod-feature--reverse .s-prod-feature__num {
  left: auto;
  right: -1.6rem;
}

.s-prod-feature__body {
  display: flex;
  flex-direction: column;
}
.s-prod-feature__name {
  margin: 0 0 1.8rem;
  font-size: 3.4rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #feeab4;
  line-height: 1.3;
}
.s-prod-feature__lead {
  margin: 0 0 3rem;
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(254, 234, 180, 0.88);
}

.s-prod-feature__list {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.s-prod-feature__list > div {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 2rem;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(254, 234, 180, 0.18);
  align-items: start;
}
.s-prod-feature__list > div:last-child {
  border-bottom: 1px solid rgba(254, 234, 180, 0.18);
}
.s-prod-feature__list dt {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #cda16f;
  line-height: 1.6;
}
.s-prod-feature__list dd {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(254, 234, 180, 0.88);
}

@media screen and (max-width: 768px) {
  .s-prod-nav {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-bottom: 4rem;
  }
  .s-prod-nav__item {
    padding: 1.4rem 1.4rem;
  }
  .s-prod-nav__num {
    font-size: 1.2rem;
  }
  .s-prod-nav__name {
    font-size: 1.3rem;
  }

  .s-prod-feature {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 5rem 0;
  }
  .s-prod-feature--reverse .s-prod-feature__media,
  .s-prod-feature--reverse .s-prod-feature__body {
    order: 0;
  }
  .s-prod-feature__media,
  .s-prod-feature__media img {
    border-radius: 1.6rem;
  }
  .s-prod-feature__num {
    font-size: 5.6rem;
    top: -1.2rem;
    left: -0.4rem;
  }
  .s-prod-feature--reverse .s-prod-feature__num {
    right: auto;
    left: -0.4rem;
  }
  .s-prod-feature__name {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
  }
  .s-prod-feature__lead {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
  .s-prod-feature__list > div {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.2rem 0;
  }
  .s-prod-feature__list dt {
    font-size: 1.2rem;
  }
  .s-prod-feature__list dd {
    font-size: 1.3rem;
  }
}

/* タイムライン（沿革） */
.s-timeline {
  position: relative;
  padding-left: 4rem;
}
.s-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(254, 234, 180, 0.3);
}
.s-timeline__item {
  position: relative;
  padding: 2rem 0;
}
.s-timeline__item + .s-timeline__item {
  border-top: 1px dashed rgba(254, 234, 180, 0.2);
}
.s-timeline__item::before {
  content: "";
  position: absolute;
  left: -4.5rem;
  top: 3.2rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #feeab4;
}
.s-timeline__date {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.4rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: rgba(254, 234, 180, 0.85);
}
.s-timeline__text {
  font-size: 1.5rem;
  line-height: 1.8;
}

/* 営業所案内：日本地図＋ピン＋詳細パネル */
.s-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: stretch;
}
.s-map__detail {
  position: relative;
  min-height: 32rem;
  display: flex;
  flex-flow: column;
  order: 2;
  width: 100%;
  max-width: 52rem;
  justify-self: end;
}
.s-map__placeholder {
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(254, 234, 180, 0.6);
  padding: 4rem 0;
}
.s-map__panel {
  display: none;
  flex: 1;
  flex-flow: column;
}
.s-map__panel.is-active {
  display: flex;
  animation: s-map-fade-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.s-map__panel.is-active .s-map__embed {
  margin-top: auto;
}
.s-map.is-selected .s-map__placeholder {
  display: none;
}
@keyframes s-map-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.s-map__name {
  margin-bottom: 1.8rem;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.45;
  color: #feeab4;
}
.s-map__lead {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.85;
  color: rgba(254, 234, 180, 0.85);
}
.s-map__info {
  margin-bottom: 2.8rem;
  border-top: 1px solid rgba(254, 234, 180, 0.2);
}
.s-map__info > div {
  display: grid;
  grid-template-columns: auto 7rem 1fr;
  gap: 0 1.4rem;
  align-items: center;
  padding: 1.4rem 0.5rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.2);
  font-size: 1.35rem;
  line-height: 1.7;
}
.s-map__info > div::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
.s-map__info > [data-icon="address"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23feeab4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M12 21s7-7.5 7-12a7 7 0 1 0-14 0c0 4.5 7 12 7 12z'/><circle cx='12' cy='9' r='2.5'/></svg>");
}
.s-map__info > [data-icon="tel"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23feeab4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M22 16.92v3a2 2 0 0 1-2.18 2 19.79 19.79 0 0 1-8.63-3.07 19.5 19.5 0 0 1-6-6A19.79 19.79 0 0 1 2.12 4.18 2 2 0 0 1 4.11 2h3a2 2 0 0 1 2 1.72c.13.96.37 1.9.72 2.81a2 2 0 0 1-.45 2.11L8.09 9.91a16 16 0 0 0 6 6l1.27-1.27a2 2 0 0 1 2.11-.45c.91.35 1.85.59 2.81.72A2 2 0 0 1 22 16.92z'/></svg>");
}
.s-map__info > [data-icon="fax"]::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23feeab4' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9V3h12v6'/><rect x='2' y='9' width='20' height='9' rx='2'/><rect x='6' y='14' width='12' height='7'/><circle cx='18.5' cy='12.5' r='0.6' fill='%23feeab4'/></svg>");
}
.s-map__info dt {
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(254, 234, 180, 0.7);
}
.s-map__info dd {
  color: #feeab4;
}
.s-map__embed {
  width: 100%;
  aspect-ratio: 12 / 5;
  border-radius: 1.6rem;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.15);
}
.s-map__embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.s-map__visual {
  position: relative;
  width: 100%;
  display: flex;
  flex-flow: column;
  order: 1;
}
.s-map__board {
  position: relative;
  width: 100%;
  aspect-ratio: 1597 / 1389;
}
.s-map__tabs {
  margin-top: auto;
}
.s-map__svg {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.85;
}
.s-map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translate(-50%, -100%);
  transform-origin: 50% 100%;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}
.s-map__pin::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #cda16f;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  transition: background 0.3s ease;
}
.s-map__pin::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 50%;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #044b2b;
  transform: translateX(-50%);
  transition: background 0.3s ease;
}
.s-map__pin:hover {
  transform: translate(-50%, -100%) scale(1.15);
}
.s-map__pin.is-active {
  transform: translate(-50%, -100%) scale(1.6);
  z-index: 3;
}
.s-map__pin.is-active::after {
  background: #feeab4;
}

/* 地図下の営業所選択タブ（日本語＋英語サブ、横並び） */
.s-map__tabs {
  display: flex;
  flex-flow: row;
  gap: 1rem;
  width: 100%;
  margin: 2.4rem 0 0;
  padding: 0;
  list-style: none;
}
.s-map__tabs > li {
  flex: 1;
  min-width: 0;
}
.s-map__tab {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 0.3rem;
  padding: 1rem 1.4rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 9999px;
  background: transparent;
  color: #feeab4;
  cursor: pointer;
  text-align: center;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}
.s-map__tab-ja {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.2;
}
.s-map__tab-en {
  font-family: "Instrument Sans", sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0;
  color: rgba(254, 234, 180, 0.6);
  line-height: 1;
}
.s-map__tab:hover {
  border-color: #feeab4;
}
.s-map__tab.is-active {
  background: #cda16f;
  border-color: #cda16f;
  color: #044b2b;
}
.s-map__tab.is-active .s-map__tab-en {
  color: rgba(4, 75, 43, 0.7);
}

@media screen and (max-width: 768px) {
  .s-map {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .s-map__visual {
    max-width: 100%;
    margin: 0 auto;
  }
  .s-map__pin {
    width: 1.8rem;
    height: 1.8rem;
  }
  .s-map__name {
    font-size: 1.8rem;
  }
  .s-map__tabs {
    gap: 0.5rem;
    margin-top: 1.6rem;
  }
  .s-map__tab {
    padding: 0.8rem 0.4rem;
  }
  .s-map__tab-ja {
    font-size: 1.1rem;
  }
  .s-map__tab-en {
    font-size: 0.85rem;
  }
}

/* 営業所カード（不揃いグリッド・旧版） */
.s-offices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.s-offices__item:nth-child(odd) {
  margin-top: -3rem;
}
.s-office {
  padding: 4rem 3rem;
  border: 1px solid rgba(254, 234, 180, 0.3);
  border-radius: 2.4rem;
  background: rgba(0, 0, 0, 0.15);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.s-office:hover {
  transform: translateY(-0.6rem);
}
.s-office h3 {
  margin-bottom: 2rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.3);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.s-office__lead {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  line-height: 1.8;
  color: rgba(254, 234, 180, 0.8);
}
.s-office address {
  display: block;
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}
.s-office__tel {
  font-size: 1.3rem;
  color: rgba(254, 234, 180, 0.8);
  margin-bottom: 2rem;
}
.s-office__map {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 1.6rem;
  border: 1px solid rgba(254, 234, 180, 0.5);
  border-radius: 999px;
  font-size: 1.2rem;
  transition: 0.3s;
}
.s-office__map:hover {
  background: #feeab4;
  color: #044b2b;
}

/* 100vw パララックス画像 */
.s-parallax-wide {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  margin: 8rem 0;
}
.s-parallax-wide--no-mb {
  margin-bottom: 0;
}
/* 上端ピン留め（次セクションがこの上にかぶさってくる） */
.s-parallax-wide--sticky {
  position: sticky;
  top: 0;
  z-index: 0;
  margin: 0;
}
.s-parallax-wide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 150%;
  object-fit: cover;
  will-change: transform;
}

/* タグ */
.s-tag {
  display: inline-block;
  padding: 0.3rem 1rem;
  background: #feeab4;
  color: #044b2b;
  border-radius: 1.1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.s-tag--important {
  background: #d15555;
  color: #fff;
}

/* 戻るボタン */
.s-back-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.4rem 3rem;
  border: 1px solid #feeab4;
  border-radius: 999px;
  color: #feeab4;
  font-size: 1.3rem;
  transition: 0.3s;
}
.s-back-link::before {
  content: "←";
  font-family: "Instrument Sans", sans-serif;
}
.s-back-link:hover {
  background: #feeab4;
  color: #044b2b;
}

/* 求人タブ */
.s-jobtabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
.s-jobtab {
  padding: 2rem;
  border: 1px solid rgba(254, 234, 180, 0.4);
  border-radius: 1.7rem;
  text-align: center;
  font-size: 1.4rem;
  transition: 0.3s;
}
.s-jobtab.is-current {
  background: #feeab4;
  color: #044b2b;
  font-weight: 700;
}
.s-jobtab.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}

/* お知らせ */
.s-news-list {
  display: flex;
  flex-flow: column;
}
.s-news-item {
  border-top: 1px solid rgba(254, 234, 180, 0.2);
}
.s-news-item:last-child {
  border-bottom: 1px solid rgba(254, 234, 180, 0.2);
}
.s-news-link {
  display: grid;
  grid-template-columns: 14rem auto 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.6rem 1.6rem;
  color: #feeab4;
  transition:
    background-color 0.4s ease,
    color 0.4s ease,
    padding 0.4s ease;
}
.s-news-link__date {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.3rem;
  color: rgba(254, 234, 180, 0.75);
  transition: color 0.4s ease;
}
.s-news-link__tags {
  display: flex;
  gap: 0.6rem;
}
.s-news-link__ttl {
  font-size: 1.5rem;
  line-height: 1.7;
}
.s-news-link__arrow {
  width: 1.5rem;
  aspect-ratio: 15 / 12;
  background: url("../img/common/arrow_y.svg") no-repeat center / contain;
  transition:
    transform 0.3s ease,
    background-image 0s 0.15s;
}
.s-news-link:hover {
  background: #feeab4;
  color: #044b2b;
  padding-left: 2.6rem;
}
.s-news-link:hover .s-news-link__date {
  color: rgba(4, 75, 43, 0.75);
}
.s-news-link:hover .s-news-link__arrow {
  background-image: url("../img/common/arrow_g.svg");
  transform: translateX(0.6rem);
}
.s-news-link:hover .s-tag--report,
.s-news-link:hover .s-tag--news,
.s-news-link:hover .s-tag--neutral {
  background: #044b2b;
  color: #feeab4;
}

/* 記事本文 */
.s-article {
  width: 88rem;
  max-width: 100%;
  margin: 0 auto;
}
.s-article__header {
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.3);
}
.s-article__meta {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 1.6rem;
  align-items: center;
}
.s-article__date {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.3rem;
  color: rgba(254, 234, 180, 0.8);
}
.s-article__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.s-article__body {
  font-size: 1.5rem;
  line-height: 2.1;
}
.s-article__body p {
  margin-bottom: 1.6rem;
}
.s-article__body h3 {
  margin: 4rem 0 1.6rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.3);
  font-size: 2rem;
  font-weight: 700;
}
.s-article__media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin: 4rem 0;
}
.s-article__media figcaption {
  margin-top: 1rem;
  font-size: 1.2rem;
  color: rgba(254, 234, 180, 0.7);
}
.s-article__media img {
  width: 100%;
  border-radius: 2rem;
}

/* テーブル（dl型 + 横並びtable両対応） */
.s-info {
  border-top: 1px solid rgba(254, 234, 180, 0.2);
}
.s-info__row {
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 2rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid rgba(254, 234, 180, 0.2);
  font-size: 1.4rem;
  line-height: 1.8;
}
.s-info__row dt {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.s-info__row dd ul li {
  padding-left: 1.2em;
  position: relative;
}
.s-info__row dd ul li::before {
  content: "";
  position: absolute;
  left: 0.3em;
  top: 0.7em;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background: rgba(254, 234, 180, 0.7);
}
.s-info__row dd p + p {
  margin-top: 0.6rem;
}

/* 製品カテゴリ表（products-detail.html用） */
.s-cat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 6rem 0;
  border-top: 1px solid rgba(254, 234, 180, 0.2);
}
.s-cat:nth-child(even) > :first-child {
  order: 2;
}
.s-cat__img {
  border-radius: 2.4rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(254, 234, 180, 0.05);
}
.s-cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-cat__name {
  margin-bottom: 1.4rem;
  font-size: 2.4rem;
  font-weight: 700;
}
.s-cat__lead {
  margin-bottom: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.9;
  color: rgba(254, 234, 180, 0.85);
}
.s-cat__items dl {
  display: grid;
  gap: 1.2rem;
}
.s-cat__items dt {
  font-size: 1.3rem;
  font-weight: 700;
  color: #feeab4;
}
.s-cat__items dd {
  margin-top: 0.4rem;
  font-size: 1.3rem;
  line-height: 1.7;
  color: rgba(254, 234, 180, 0.8);
}

/* SP */
@media screen and (max-width: 768px) {
  main.l-sub {
    padding-bottom: 6rem;
  }
  .s-section {
    padding: 6rem 0;
  }
  .s-section--pt0 {
    padding-top: 0;
  }
  .s-section--pb0 {
    padding-bottom: 0;
  }
  .s-section--pt-half {
    padding-top: 3rem;
  }
  .s-section--pb-half {
    padding-bottom: 3rem;
  }
  .s-section__inner,
  .s-section__inner--narrow {
    max-width: 88%;
  }
  .s-head__ttl {
    font-size: 2.2rem;
  }
  .s-head__lead {
    font-size: 1.3rem;
  }
  .s-split,
  .s-cat {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .s-split--reverse > :first-child {
    order: 0;
  }
  .s-cat:nth-child(even) > :first-child {
    order: 0;
  }
  .s-split__text h3 {
    font-size: 2rem;
  }
  .s-hscroll {
    height: auto;
  }
  .s-hscroll__sticky {
    position: static;
    height: auto;
  }
  .s-hscroll__track {
    flex-flow: column;
    gap: 2rem;
    /* s-section__inner と同じく max-width: 92% で中央寄せ */
    width: 92%;
    max-width: 92%;
    margin: 0 auto;
    padding: 0;
    transform: none !important;
  }
  .s-hscroll__item {
    flex: 0 0 auto;
    height: auto;
    padding: 2.4rem;
  }
  .s-offices {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .s-offices__item:nth-child(odd) {
    margin-top: 0;
  }
  .s-offices__item:nth-child(3n) {
    transform: none;
  }
  .s-office {
    padding: 3rem 2rem;
  }
  .s-info__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
    padding: 1.4rem 0;
  }
  .s-info__row dt {
    color: rgba(254, 234, 180, 0.7);
    font-size: 1.2rem;
  }
  .s-news-link {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  .s-news-link__arrow {
    display: none;
  }
  .s-jobtabs {
    grid-template-columns: 1fr;
  }
  .s-timeline {
    padding-left: 2.4rem;
  }
  .s-timeline__item::before {
    left: -2.9rem;
    top: 2.6rem;
  }
  .s-article__ttl {
    font-size: 2rem;
  }
  .s-article__media-grid {
    grid-template-columns: 1fr;
  }
  .s-parallax-wide {
    height: 30vh;
    margin: 4rem 0;
  }
}

/* 追記 */
/* お問い合わせ */
.c-form__item__error {
  color: #d15555;
  font-size: 1.3rem;
  font-weight: bold;
}

.c-form__btn-group {
  display: flex;
  flex-flow: column;
  /* align-self: flex-start; */
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .c-form__btn-group {
    align-self: center;
  }
}

.s-section--ivory .c-btn--primary {
  align-self: center;
}

.s-section--ivory .c-btn--primary.c-back {
  flex-flow: row-reverse;
}
.s-section--ivory .c-btn--primary.c-back::after {
  transform: scale(-1);
}
.s-section--ivory .c-btn--primary.c-back:hover::after {
  transform: scale(-1) translateX(0.6rem);
}

.s-section--pb0 .c-form__btn-group.c-top {
  margin: 4rem auto 0;
  width: 4.8rem;
}
@media screen and (max-width: 768px) {
  .s-section--pb0 .c-form__btn-group.c-top {
    width: 16rem;
  }
}

/* お知らせ  */

.news_image {
  width: 100%;
  margin-bottom: 2rem;
}
.news_link {
  border-bottom: 1px solid #feeab4;
}

.s-article__media-grid_3 {
  display: flex;
  flex-flow: wrap;
  gap: 1.5rem;
}
.s-article__media-grid_3 .s-article__media {
  width: calc((100% - 3rem) / 3);
}
.s-article__media-grid_3 .s-article__media img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .s-article__media-grid_3 .s-article__media {
    width: calc((100% - 1.5rem) / 2);
  }
}
