@charset "UTF-8";
/*
 * ======================================
 * 合同会社AI総合土建 — サイト固有CSS（site.css）
 * ======================================
 * 配色・フォントは scss/main.scss で @use "vars" with(...) により上書きし、
 * main.css にコンパイル済み（base/accent=#F8D136 / sub=#111 / dark=#0a0a0a）。
 * 本ファイルは claude-design-output の固有レイアウト・余白・装飾を
 * asd- プレフィックスで補完する（黒×イエローの重厚な土建トンマナ）。
 *
 * --------------------------------------
 * 追加クラス一覧（共通SCSS取り込み検討用）
 * --------------------------------------
 * 共通レイアウト/部品
 *   .asd-wrap(--n920/1160/1100/960/820/760)  - デザイン準拠の中央寄せラッパー（max1280 / 左右28px）
 *   .asd-btn-y / .asd-btn-outl-l / .asd-btn-outl-d - イエローソリッド / 明色枠線 / 暗色枠線 CTA
 * ヘッダー / フッター / 共通
 *   .asd-header      - 黒地・下辺イエロー3pxのstickyヘッダー（現在ページ下線 / TEL+MAP）
 *   .asd-spnav       - SPフルスクリーンナビの暗色テーマ上書き
 *   .asd-footer      - 黒地3カラムフッター（ブランド / MENU / ACCESS）
 *   .asd-pagetop     - ページトップ丸ボタン
 *   .asd-phero       - 下層ページヒーロー（写真+左暗グラデ+EN黄+和文特大）
 * ページ固有
 *   TOP     : .asd-hero / .asd-strength / .asd-news / .asd-spre / .asd-wpre / .asd-rcta / .asd-clink
 *   company : .asd-cbody / .asd-dl / .asd-mapbox
 *   service : .asd-slist
 *   works   : .asd-works / .asd-lightbox
 *   recruit : .asd-rhero / .asd-merit / .asd-reqs / .asd-rend
 *   news    : .asd-newshero / .asd-newslist
 *   contact : .asd-form
 *
 * --------------------------------------
 * 共通SCSSに不足していたもの（5分類で整理）
 * --------------------------------------
 * ・構造不足：黒地sticky＋現在ページ下線バーのヘッダー、写真上テキスト＋左→右の
 *             透明グラデ暗幕を持つヒーロー/CTA帯（page-hero__overlay--gradientでは方向が異なる）
 * ・装飾パターン不足：巨大英字ウォーターマーク(WORKS 170px)、番号(01-06)を黄字あしらいにした
 *             ハイライン区切りグリッド（service-preview）、2枚重ね写真（works-preview）
 * ・値の粒度不足：デザイン固有の余白（64/88/92/104/110px）とフォントサイズ
 *             （13.5/14.5/26/30/34/38/52px 等）が共通utilityの刻みに無く個別指定
 * ・状態不足：黄ボタンの opacity hover、co-link の #f2c800 hover、写真サムネのズームhover
 */

:root { --os: 'Oswald', sans-serif; --y: #F8D136; }

/* ===== global ===== */
body { letter-spacing: normal; }        /* デザイン（Noto Sans JP・字間なし）に合わせる */
.asd-sp-br { display: none; }            /* SPだけ改行を出す<br> */
@media (max-width: 640px) { .asd-sp-br { display: inline; } }
a { color: inherit; }
a:hover { opacity: 1; }
::selection { background: #F8D136; color: #000; }
.asd-main { display: block; }
img { vertical-align: bottom; }

/* ===== スクロール連動リビール（TOP等） ===== */
.asd-reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; will-change: opacity, transform; }
.asd-reveal--left { transform: translateX(-32px); }
.asd-reveal--right { transform: translateX(32px); }
.asd-reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .asd-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== layout wrap ===== */
.asd-wrap { max-width: 1280px; margin: 0 auto; padding-left: 28px; padding-right: 28px; }
.asd-wrap--n920  { max-width: 976px; }
.asd-wrap--n960  { max-width: 1016px; }
.asd-wrap--n1100 { max-width: 1156px; }
.asd-wrap--n1160 { max-width: 1216px; }
.asd-wrap--n820  { max-width: 876px; }
.asd-wrap--n760  { max-width: 816px; }

/* ===== buttons ===== */
.asd-btn-y,
.asd-btn-outl-l,
.asd-btn-outl-d {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; line-height: 1.3; text-align: center;
  transition: opacity .25s ease, background-color .25s ease, color .25s ease, border-color .25s ease;
}
.asd-btn-y { background: #F8D136; color: #000; font-size: 15px; padding: 16px 30px; }
.asd-btn-y:hover { opacity: .9; color: #000; }
.asd-btn-outl-l { color: #fff; border: 1px solid #999; font-size: 15px; padding: 16px 30px; }
.asd-btn-outl-l:hover { border-color: #F8D136; color: #F8D136; }
.asd-btn-outl-d { color: #fff; border: 1px solid #444; font-size: 14px; padding: 15px 40px; }
.asd-btn-outl-d:hover { border-color: #F8D136; color: #F8D136; }
.asd-btn-outl-dk { color: #111; border: 1px solid #111; font-size: 14px; padding: 15px 40px; }
.asd-btn-outl-dk:hover { background: #111; color: #F8D136; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.asd-header {
  position: sticky; top: 0; z-index: 60;
  background: #000; color: #fff; border-bottom: 3px solid #F8D136;
}
.asd-header__inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 0 28px; height: 74px;
}
.asd-header__logo { display: flex; align-items: center; }
.asd-header__logo img { height: 43px; width: auto; display: block; }
.asd-header__nav { display: flex; align-items: center; gap: 2px; }
.asd-header__nav-item {
  position: relative; color: #fff; font-size: 13.5px; font-weight: 500;
  padding: 26px 15px;
}
.asd-header__nav-item:hover { color: #F8D136; }
.asd-header__nav-item.is-current { color: #F8D136; }
.asd-header__nav-item.is-current::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 18px;
  height: 2px; background: #F8D136;
}
.asd-header__utils {
  display: flex; align-items: center; gap: 14px;
  margin-left: 14px; padding-left: 18px; border-left: 1px solid #333;
}
.asd-header__tel { display: flex; flex-direction: column; line-height: 1.1; }
.asd-header__tel:hover { color: #F8D136; }
.asd-header__tel-label { font-family: var(--os); font-size: 9px; letter-spacing: .28em; color: #888; }
.asd-header__tel-num { font-family: var(--os); font-weight: 600; font-size: 18px; letter-spacing: .02em; }
.asd-header__map {
  font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .12em;
  background: #F8D136; color: #000; padding: 10px 16px; transition: opacity .25s ease;
}
.asd-header__map:hover { opacity: .9; }

/* nav-toggle（黒地テーマ） */
.nav-toggle--dark { background: rgba(0,0,0,.55); border: 1px solid rgba(248,209,54,.6); }
.nav-toggle--dark .nav-toggle__line { background: #fff; }

/* SPナビ（暗色テーマ上書き） */
.asd-spnav { background: linear-gradient(150deg, #111 0%, #000 100%); }
.asd-spnav .sp-nav__item { border-color: rgba(255,255,255,.14); }
.asd-spnav .sp-nav__item:first-child { border-top-color: rgba(255,255,255,.14); }
.asd-spnav .sp-nav__link { color: #fff; justify-content: center; }
.asd-spnav .sp-nav__link::after { content: none; }
.asd-spnav .sp-nav__link.is-current { color: #F8D136; }
.asd-spnav .sp-nav__link:hover { background: rgba(255,255,255,.06); color: #F8D136; }
.asd-spnav__tel {
  display: inline-flex; flex-direction: column; align-items: center; color: #fff;
  margin-bottom: 20px;
}
.asd-spnav__tel span { font-family: var(--os); font-size: 10px; letter-spacing: .28em; color: #888; }
.asd-spnav__tel { font-family: var(--os); font-weight: 600; font-size: 26px; }
.asd-spnav__map {
  display: inline-block; font-family: var(--os); font-weight: 600; font-size: 13px;
  letter-spacing: .1em; background: #F8D136; color: #000; padding: 12px 28px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.asd-footer { background: #0a0a0a; color: #fff; border-top: 3px solid #F8D136; }
.asd-footer__inner {
  max-width: 1280px; margin: 0 auto; padding: 64px 28px 30px;
  display: grid; grid-template-columns: 1.2fr 1fr 1.1fr; gap: 48px;
}
.asd-footer__logo { height: 38px; width: auto; display: block; }
.asd-footer__en { font-family: var(--os); font-size: 9.5px; letter-spacing: .4em; color: #F8D136; margin-top: 12px; }
.asd-footer__addr { margin: 22px 0 0; font-size: 13px; line-height: 1.9; color: #aaa; }
.asd-footer__tel { display: inline-flex; flex-direction: column; margin-top: 18px; }
.asd-footer__tel:hover { color: #F8D136; }
.asd-footer__tel-label { font-family: var(--os); font-size: 9px; letter-spacing: .28em; color: #888; }
.asd-footer__tel-num { font-family: var(--os); font-weight: 600; font-size: 24px; }
.asd-footer__heading { font-family: var(--os); font-size: 11px; letter-spacing: .24em; color: #F8D136; margin-bottom: 16px; }
.asd-footer__menu { display: flex; flex-direction: column; gap: 12px; }
.asd-footer__menu a { color: #ccc; font-size: 13.5px; }
.asd-footer__menu a:hover { color: #F8D136; }
.asd-footer__map { display: block; width: 100%; aspect-ratio: 16/9; border: 1px solid #262626; }
.asd-footer__bottom { border-top: 1px solid #1e1e1e; }
.asd-footer__copy {
  max-width: 1280px; margin: 0 auto; padding: 20px 28px; display: block;
  font-family: var(--os); font-size: 11px; letter-spacing: .1em; color: #666;
  text-align: center;
}

/* ページトップ */
.asd-pagetop {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 48px; height: 48px; background: #F8D136; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
.asd-pagetop.is-visible { opacity: 1; visibility: visible; }
.asd-pagetop:hover { opacity: .9; }
.asd-pagetop__arrow {
  width: 12px; height: 12px; border-top: 2px solid #000; border-right: 2px solid #000;
  transform: rotate(-45deg); margin-top: 3px;
}

/* ==========================================================================
   PAGE HERO（下層共通）
   ========================================================================== */
.asd-phero { position: relative; color: #fff; overflow: hidden; }
.asd-phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.asd-phero__img--c30 { object-position: center 30%; }
.asd-phero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  /* 下層ページのヒーロー暗幕は少し薄め（テキストの視認は確保） */
  background: linear-gradient(90deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.36) 55%, rgba(0,0,0,.16) 100%);
}
.asd-phero__inner { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; padding: 96px 28px; }
.asd-phero__en { font-family: var(--os); font-weight: 600; font-size: 13px; letter-spacing: .34em; color: #F8D136; }
.asd-phero__ttl { margin: 10px 0 0; font-weight: 900; font-size: 38px; }
/* ソリッド（news用） */
.asd-phero--solid { background: #000; }
.asd-phero--solid::before { content: none; }
.asd-phero--solid .asd-phero__inner { padding: 70px 28px; }

/* ==========================================================================
   TOP : HERO
   ========================================================================== */
.asd-hero {
  color: #fff; position: relative; overflow: hidden;
  min-height: calc(100vh - 74px); display: flex; align-items: center;
}
.asd-hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
/* メインビュー：静止画／CMSスライダー（Swiper構造）共通フィット
   ※.swiper-slide に position:absolute を当てるとSwiperのスライド配置を壊すため使わない。
     #slideshow を絶対配置でヒーロー全面に敷き、中身は height:100% で追従させる（§10.1 rule4）。 */
.asd-hero__slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; height: 100%; }
.asd-hero__slideshow #cms-slider-1-1-area,
.asd-hero__slideshow #cms-slider-1-1-area .swiper,
.asd-hero__slideshow #cms-slider-1-1-area .swiper-wrapper,
.asd-hero__slideshow .swiper-slide,
.asd-hero__slideshow .main_slider__inner { width: 100%; height: 100%; }
.asd-hero__slideshow img { width: 100%; height: 100%; object-fit: cover; display: block; }
.asd-hero__ov {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.08) 72%, rgba(0,0,0,0) 100%);
}
.asd-hero__inner { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }
.asd-hero__box { max-width: 600px; padding: 60px 0; animation: asdRise .7s ease both; }
@keyframes asdRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.asd-hero__eyebrow { font-family: var(--os); font-weight: 600; font-size: 13px; letter-spacing: .34em; color: #F8D136; margin-bottom: 26px; }
.asd-hero__ttl { margin: 0; font-weight: 900; font-size: 52px; line-height: 1.32; letter-spacing: .01em; }
.asd-hero__ttl span { color: #F8D136; }
.asd-hero__lead { margin: 28px 0 0; font-size: 16px; line-height: 2; color: #e2e2e2; max-width: 480px; }
.asd-hero__btns { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }

/* TOP : STRENGTH */
.asd-strength { background: #F8D136; color: #000; }
.asd-strength__inner {
  max-width: 1280px; margin: 0 auto; padding: 64px 28px;
  display: grid; grid-template-columns: auto 1fr; gap: 48px; align-items: center;
}
.asd-strength__label {
  font-family: var(--os); font-weight: 700; font-size: 15px; letter-spacing: .3em;
  writing-mode: vertical-rl; border-left: 3px solid #000; padding-left: 14px;
}
.asd-strength__ttl { margin: 0; font-weight: 900; font-size: 30px; line-height: 1.5; }
.asd-strength__ttl mark { background: #000; color: #F8D136; padding: 2px 10px; }
.asd-strength__txt { margin: 20px 0 0; font-size: 15px; line-height: 2; max-width: 820px; }

/* TOP : NEWS */
.asd-news { background: #fff; }
.asd-news__wrap { max-width: 1280px; margin: 0 auto; padding: 88px 28px; }
.asd-news__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 20px;
  margin-bottom: 34px; border-bottom: 2px solid #000; padding-bottom: 18px;
}
.asd-news__en { font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .3em; color: #999; }
.asd-news__ttl { margin: 6px 0 0; font-weight: 900; font-size: 26px; }
.asd-news__more { font-weight: 700; font-size: 13px; color: #111; }
.asd-news__more:hover { color: #F8D136; }
.asd-news__row {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: center;
  padding: 18px 4px; border-bottom: 1px solid #e6e6e6;
}
.asd-news__date { font-family: var(--os); font-weight: 500; font-size: 15px; color: #555; }
.asd-news__txt { font-size: 15px; }
/* TOPの新着情報ではCMSページャを常に非表示（entry_listと同id運用のため詳細度を上げる） */
.asd-news #asd-blog-list .pages { display: none; }

/* TOP : SERVICE PREVIEW */
.asd-spre { background: #0d0d0d; color: #fff; position: relative; overflow: hidden; }
.asd-spre__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; opacity: .6; }
.asd-spre__ov { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,.55), rgba(13,13,13,.68)); }
.asd-spre__wrap { position: relative; max-width: 1280px; margin: 0 auto; padding: 92px 28px; }
.asd-spre__en { font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .3em; color: #F8D136; }
.asd-spre__ttl { margin: 8px 0 40px; font-weight: 900; font-size: 30px; }
.asd-spre__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.14);
}
.asd-spre__item { background: rgba(13,13,13,.82); padding: 34px 26px; color: #fff; transition: background-color .25s ease; }
.asd-spre__item:hover { background: rgba(30,30,30,.92); }
.asd-spre__num { font-family: var(--os); font-weight: 700; font-size: 34px; color: #F8D136; line-height: 1; }
.asd-spre__ittl { margin: 16px 0 10px; font-weight: 700; font-size: 19px; }
.asd-spre__itxt { margin: 0; font-size: 12.5px; line-height: 1.9; color: #a8a8a8; }
.asd-spre__foot { text-align: center; margin-top: 44px; }

/* TOP : WORKS PREVIEW */
.asd-wpre { background: #f0efec; position: relative; overflow: hidden; }
.asd-wpre__wrap { max-width: 1280px; margin: 0 auto; padding: 104px 28px; position: relative; }
.asd-wpre__watermark {
  position: absolute; right: 12px; top: 44px; font-family: var(--os); font-weight: 700;
  font-size: 170px; line-height: .82; color: rgba(0,0,0,.055); pointer-events: none;
  text-align: right; white-space: nowrap;
}
.asd-wpre__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; position: relative; }
.asd-wpre__photos { position: relative; height: 540px; }
.asd-wpre__ph { position: absolute; width: 64%; height: 66%; overflow: hidden; }
.asd-wpre__ph img { width: 100%; height: 100%; object-fit: cover; display: block; }
.asd-wpre__ph--a { left: 0; top: 0; background: #ddd; box-shadow: 0 20px 50px rgba(0,0,0,.22); border-bottom: 6px solid #F8D136; }
.asd-wpre__ph--b { right: 0; bottom: 0; background: #ccc; box-shadow: 0 20px 50px rgba(0,0,0,.28); border-bottom: 6px solid #000; }
.asd-wpre__body { position: relative; }
.asd-wpre__en { font-family: var(--os); font-weight: 600; font-size: 13px; letter-spacing: .3em; color: #999; }
.asd-wpre__ttl { margin: 12px 0 0; font-weight: 900; font-size: 36px; line-height: 1.4; }
.asd-wpre__ttl mark { background: #000; color: #F8D136; padding: 2px 10px; }
.asd-wpre__txt { margin: 24px 0 0; font-size: 15px; line-height: 2.1; color: #444; max-width: 440px; }
.asd-wpre__cta {
  margin-top: 36px; display: inline-flex; align-items: center; gap: 24px;
  background: #000; color: #fff; font-weight: 700; font-size: 15px; padding: 18px 30px;
  text-align: left; transition: background-color .25s ease, color .25s ease;
}
.asd-wpre__cta:hover { background: #F8D136; color: #000; }
.asd-wpre__cta span { font-family: var(--os); font-size: 20px; }

/* 従業員募集中：PCはMV内に円形バッジ／SPは画面下に帯を固定（下の640pxブロックで切替） */
.asd-rbadge {
  position: absolute; z-index: 6; right: 0; bottom: 0;
  width: 250px; height: 250px; border-radius: 100% 0 0 0;
  display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; gap: 6px;
  text-align: right; background: #E60012; color: #fff;
  padding: 0 40px 40px 0;
  box-shadow: -12px -12px 34px rgba(0,0,0,.4);
  transform-origin: bottom right;
  transition: background-color .25s ease, transform .25s ease;
}
.asd-rbadge:hover { color: #fff; background: #c9000f; transform: scale(1.06); }
.asd-rbadge__en { font-family: var(--os); font-weight: 700; font-size: 13px; letter-spacing: .24em; background: #111; color: #fff; padding: 4px 11px; margin-right: 20px; }
.asd-rbadge__main { font-weight: 900; font-size: 30px; line-height: 1.22; text-align: center; }

/* 従業員募集中 帯（SP専用・PCでは非表示） */
.asd-rbnr { display: none; }

/* TOP : RECRUIT CTA */
.asd-rcta { background: #000; color: #fff; position: relative; overflow: hidden; }
.asd-rcta__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: right -60px; transform: scaleX(-1); display: block;
}
.asd-rcta__ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.25) 70%, rgba(0,0,0,.1) 100%);
}
.asd-rcta__wrap { position: relative; max-width: 1280px; margin: 0 auto; padding: 110px 28px; }
.asd-rcta__box { max-width: 560px; }
.asd-rcta__en { font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .3em; color: #F8D136; }
.asd-rcta__ttl { margin: 10px 0 0; font-weight: 900; font-size: 32px; line-height: 1.5; }
@media (min-width: 1101px) { .asd-rcta__ttl { font-size: 42px; } }
.asd-rcta__txt { margin: 22px 0 0; font-size: 15px; line-height: 2; color: #dcdcdc; max-width: 520px; }
.asd-rcta__btn { margin-top: 34px; }

/* TOP : COMPANY LINK */
.asd-clink { background: #fff; }
.asd-clink__wrap { max-width: 1280px; margin: 0 auto; padding: 80px 28px; }
.asd-clink__box {
  position: relative; overflow: hidden;
  width: 100%; background: #F8D136; color: #000; text-align: left;
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; padding: 44px 48px;
  transition: background-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
/* hover：左から黒帯がスッと差し込む＋わずかに浮く */
.asd-clink__box::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 6px;
  background: #000; transform: scaleX(0); transform-origin: left center; transition: transform .3s ease;
}
.asd-clink__box:hover { background: #f2c800; color: #000; box-shadow: 0 16px 34px rgba(0,0,0,.16); transform: translateY(-3px); }
.asd-clink__box:hover::before { transform: scaleX(1); }
.asd-clink__en { font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .3em; color: #000; }
.asd-clink__ttl { margin-top: 10px; font-weight: 900; font-size: 28px; }
.asd-clink__desc { margin-top: 10px; font-size: 14px; color: #333; }
.asd-clink__view {
  font-family: var(--os); font-weight: 600; font-size: 18px; color: #000; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 6px; transition: transform .3s ease;
}
.asd-clink__box:hover .asd-clink__view { transform: translateX(10px); }

/* ==========================================================================
   COMPANY
   ========================================================================== */
.asd-cbody { max-width: 920px; margin: 0 auto; padding: 80px 28px; }
.asd-cbody__lead { margin: 0 0 44px; font-size: 16px; line-height: 2.1; color: #333; }
.asd-dl { border-top: 3px solid #000; }
.asd-dl__row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid #e2e2e2; padding: 22px 8px; }
.asd-dl__key { font-weight: 700; font-size: 15px; }
.asd-dl__val { font-size: 15px; color: #333; }
.asd-mapbox { margin-top: 48px; }
.asd-mapbox__embed { display: block; width: 100%; aspect-ratio: 16/6; border: 1px solid #ddd; }

/* ==========================================================================
   SERVICE
   ========================================================================== */
.asd-slist { max-width: 1160px; margin: 0 auto; padding: 96px 28px; display: flex; flex-direction: column; gap: 88px; }
.asd-slist__row { display: grid; grid-template-columns: .95fr 1.05fr; gap: 56px; align-items: center; scroll-margin-top: 90px; }
.asd-slist__figure {
  aspect-ratio: 4/3; overflow: hidden; position: relative;
  background: repeating-linear-gradient(135deg,#ececec,#ececec 13px,#e2e2e2 13px,#e2e2e2 26px);
  display: flex; align-items: center; justify-content: center; color: #9a9a9a;
  font: 12px/1.6 ui-monospace, monospace; text-align: center; padding: 16px;
  border-bottom: 6px solid #F8D136; box-shadow: 0 24px 50px rgba(0,0,0,.16);
}
.asd-slist__num {
  position: absolute; top: 0; left: 0; z-index: 2; background: #F8D136; color: #000;
  font-family: var(--os); font-weight: 700; font-size: 22px; padding: 9px 18px; letter-spacing: .02em;
}
.asd-slist__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.asd-slist__row:hover .asd-slist__img { transform: scale(1.05); }
/* テキスト側：背景の大ナンバー＋ENラベル＋見出し黄アクセント */
.asd-slist__body { position: relative; }
.asd-slist__bignum {
  position: absolute; top: -66px; right: -6px; z-index: 0; pointer-events: none;
  font-family: var(--os); font-weight: 700; font-size: 150px; line-height: 1; color: rgba(17,17,17,.05);
}
.asd-slist__label { position: relative; z-index: 1; display: inline-block; font-family: var(--os); font-weight: 600; font-size: 12px; letter-spacing: .28em; color: #c99a00; margin-bottom: 12px; }
.asd-slist__ttl { position: relative; z-index: 1; margin: 0; font-weight: 900; font-size: 27px; padding-left: 16px; border-left: 5px solid #F8D136; }
.asd-slist__ttlsub { font-size: .8em; font-weight: 700; }
.asd-slist__tag { position: relative; z-index: 1; margin: 16px 0 18px; font-weight: 700; font-size: 15px; color: #c99a00; }
.asd-slist__txt { position: relative; z-index: 1; margin: 0; font-size: 14.5px; line-height: 2.05; color: #333; }
/* 事業内容：情報量の多い行（車庫・駐車場工事）は本文を左・画像を右上に、小見出しを全幅3カラムで下段に明示配置 */
.asd-slist__row--detailed { grid-template-columns: 1.05fr .95fr; /* align-items: start; */ }
.asd-slist__row--detailed .asd-slist__body { grid-column: 1; grid-row: 1; }
.asd-slist__row--detailed .asd-slist__figure { grid-column: 2; grid-row: 1; }
.asd-slist__subs {
  grid-column: 1 / -1; grid-row: 2; position: relative; z-index: 1; margin-top: 10px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: #e2e2e2; border-top: 3px solid #F8D136;
}
.asd-slist__sub { background: #fff; padding: 22px 22px 24px; }
.asd-slist__subttl { margin: 0 0 8px; font-weight: 700; font-size: 15.5px; color: #111; padding-left: 12px; border-left: 4px solid #F8D136; }
.asd-slist__subtxt { margin: 0; font-size: 13.5px; line-height: 1.9; color: #444; }
/* 偶数番目は左右反転（画像右・テキスト左） */
.asd-slist__row:nth-child(even) { grid-template-columns: 1.05fr .95fr; }
.asd-slist__row:nth-child(even) .asd-slist__figure { order: 2; }
/* 偶数も大ナンバーはタイトルと反対側（右）に置く＝奇数と同じ見た目 */

/* ==========================================================================
   WORKS
   ========================================================================== */
.asd-works { max-width: 1280px; margin: 0 auto; padding: 80px 28px; }
.asd-works__group { margin-bottom: 56px; }
.asd-works__head { display: flex; align-items: baseline; gap: 16px; border-bottom: 2px solid #000; padding-bottom: 14px; margin-bottom: 22px; }
.asd-works__gttl { margin: 0; font-weight: 900; font-size: 23px; }
.asd-works__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.asd-works__thumb { aspect-ratio: 1/1; overflow: hidden; background: #e6e6e6; cursor: zoom-in; }
.asd-works__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.asd-works__thumb:hover img { transform: scale(1.05); }

.asd-lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center; padding: 40px; cursor: zoom-out;
}
.asd-lightbox.is-open { display: flex; }
.asd-lightbox__close { position: absolute; top: 24px; right: 28px; color: #fff; font-size: 34px; line-height: 1; font-family: var(--os); }
.asd-lightbox__img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; box-shadow: 0 0 60px rgba(0,0,0,.6); }

/* ==========================================================================
   RECRUIT
   ========================================================================== */
.asd-rhero { color: #fff; position: relative; overflow: hidden; }
.asd-rhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: right 20%; display: block; }
.asd-rhero__ov {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.72) 42%, rgba(0,0,0,.3) 72%, rgba(0,0,0,.12) 100%);
}
.asd-rhero__wrap { position: relative; max-width: 1100px; margin: 0 auto; padding: 96px 28px; }
.asd-rhero__en { font-family: var(--os); font-weight: 600; font-size: 13px; letter-spacing: .34em; color: #F8D136; }
.asd-rhero__ttl { margin: 16px 0 0; font-weight: 900; font-size: 40px; line-height: 1.4; }
.asd-rhero__ttl span { color: #F8D136; }
.asd-rhero__txt { margin: 26px 0 0; font-size: 17px; line-height: 1.9; color: #e2e2e2; }

.asd-merit { max-width: 1160px; margin: 0 auto; padding: 84px 28px; }
.asd-merit__ttl { margin: 0 0 40px; font-weight: 900; font-size: 26px; text-align: center; }
.asd-merit__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.asd-merit__item { border-top: 3px solid #F8D136; background: #f6f6f4; padding: 34px 26px; }
.asd-merit__num { font-family: var(--os); font-weight: 700; font-size: 40px; color: #F8D136; line-height: 1; }
.asd-merit__ittl { margin: 14px 0 14px; font-weight: 700; font-size: 18px; line-height: 1.5; }
.asd-merit__itxt { margin: 0; font-size: 13.5px; line-height: 1.95; color: #444; }

.asd-reqs { background: #f0efec; }
.asd-reqs__wrap { max-width: 960px; margin: 0 auto; padding: 80px 28px; }
.asd-reqs__ttl { margin: 0 0 32px; font-weight: 900; font-size: 26px; }
.asd-reqs__table { background: #fff; border-top: 3px solid #000; }
.asd-reqs__row { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid #e2e2e2; }
.asd-reqs__key { font-weight: 700; font-size: 14px; background: #111; color: #fff; padding: 20px; }
.asd-reqs__val { font-size: 14px; color: #333; white-space: pre-line; padding: 20px 22px; line-height: 1.85; }

.asd-rend {
  position: relative; text-align: center; color: #fff; overflow: hidden;
  background: #000 url('https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/28462/bg-contact.jpg') center / cover no-repeat;
}
.asd-rend::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.asd-rend__wrap { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; padding: 80px 28px; }
.asd-rend__txt { margin: 0; font-size: 16px; line-height: 2; color: #d5d5d5; }
.asd-rend__btn { margin-top: 36px; font-size: 16px; padding: 18px 44px; }

/* ==========================================================================
   NEWS（一覧）
   ========================================================================== */
.asd-newslist { max-width: 920px; margin: 0 auto; padding: 70px 28px; }
.asd-newslist__wrap { border-top: 3px solid #000; }
.asd-newslist__row {
  display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: center;
  padding: 22px 6px; border-bottom: 1px solid #e2e2e2; transition: background-color .2s ease;
}
.asd-newslist__row:hover { background: #faf8f2; }
.asd-newslist__date { font-family: var(--os); font-weight: 500; font-size: 15px; color: #555; }
.asd-newslist__txt { font-size: 15px; }

/* お知らせ一覧：CMS出力のページャ（クラス名不確定のため属性セレクタで対応・中央寄せ） */
#asd-blog-list [class*="pager"],
#asd-blog-list [class*="paging"],
#asd-blog-list [class*="pagenavi"],
#asd-blog-list [class*="page_nav"],
#asd-blog-list [class*="page-nav"],
#asd-blog-list .pagination {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 8px; margin-top: 48px; padding-top: 8px;
}
#asd-blog-list [class*="pager"] a,   #asd-blog-list [class*="pager"] span,   #asd-blog-list [class*="pager"] strong,
#asd-blog-list [class*="paging"] a,  #asd-blog-list [class*="paging"] span,  #asd-blog-list [class*="paging"] strong,
#asd-blog-list [class*="pagenavi"] a,#asd-blog-list [class*="pagenavi"] span,#asd-blog-list [class*="pagenavi"] strong,
#asd-blog-list .pagination a,        #asd-blog-list .pagination span,        #asd-blog-list .pagination strong {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 12px;
  font-family: var(--os); font-weight: 600; font-size: 14px;
  background: #fff; color: #111; border: 1px solid #ddd; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
#asd-blog-list [class*="pager"] a:hover,
#asd-blog-list [class*="paging"] a:hover,
#asd-blog-list [class*="pagenavi"] a:hover,
#asd-blog-list .pagination a:hover {
  background: #F8D136; color: #000; border-color: #F8D136;
}
/* 現在ページ（strong / .current / .is-current / .active 等） */
#asd-blog-list [class*="pager"] strong,
#asd-blog-list [class*="paging"] strong,
#asd-blog-list [class*="pagenavi"] strong,
#asd-blog-list .pagination strong,
#asd-blog-list [class*="current"],
#asd-blog-list [class*="active"] {
  background: #111; color: #F8D136; border-color: #111;
}

/* お知らせ一覧：CMSページャ（.pages > .page_prev / .page_next）を2カラム・中央揃え */
#asd-blog-list .pages {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 460px; margin: 48px auto 0;
}
#asd-blog-list .page_prev { justify-self: start; }
#asd-blog-list .page_next { justify-self: end; }
#asd-blog-list .pages a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; font-weight: 700; font-size: 13.5px; white-space: nowrap;
  background: #fff; color: #111; border: 1px solid #ddd; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
#asd-blog-list .pages a:hover { background: #F8D136; color: #000; border-color: #F8D136; }

/* 記事詳細：CMSページャ（前後記事リンク／.pages > .page_prev / .page_next）を2カラム・中央・ボタン型 */
#cms-blog-entry-detail-4-area .pages {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 480px; margin: 0 auto;
}
#cms-blog-entry-detail-4-area .page_prev { justify-self: start; }
#cms-blog-entry-detail-4-area .page_next { justify-self: end; }
#cms-blog-entry-detail-4-area .pages a {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 26px; font-weight: 700; font-size: 13.5px; white-space: nowrap;
  background: #fff; color: #111; border: 1px solid #ddd; text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}
#cms-blog-entry-detail-4-area .pages a:hover { background: #F8D136; color: #000; border-color: #F8D136; }

/* 記事詳細（entry.php）／一覧（entry_list.php）共通コンテナ */
.asd-entry { max-width: 1120px; margin: 0 auto; padding: 70px 28px; }
.asd-entry--single { max-width: 860px; }   /* 詳細ページ（サイドバー無し）は読みやすい幅に */
.asd-entry__back { text-align: center; margin-top: 52px; }
/* 月別アーカイブ（CMS出力リンク） */
#cms-blog-entry-month-1-area a { display: block; padding: 9px 2px; text-decoration: none; font-size: 13.5px; line-height: 1.5; color: #333; border-bottom: 1px solid #eee; transition: color .2s ease; }
#cms-blog-entry-month-1-area a:hover { color: #c99a00; }
.asd-article__meta { margin: 0 0 12px; }
.asd-article__date { font-family: var(--os); font-weight: 500; font-size: 14px; color: #888; }
.asd-article__title { font-weight: 900; font-size: 26px; line-height: 1.5; margin: 0 0 24px; padding-bottom: 20px; border-bottom: 3px solid #000; }
.asd-article__figure { margin: 0 0 28px; }
.asd-article__figure.is-empty { display: none; }
.asd-article__figure img { width: 100%; height: auto; display: block; }
.asd-article__body { font-size: 15px; line-height: 2; color: #333; }
.asd-article__body img { height: auto; }
.asd-article__pager { margin-top: 40px; }
.asd-archive__ttl { font-weight: 700; font-size: 16px; border-left: 4px solid #F8D136; padding-left: 12px; margin-bottom: 16px; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.asd-cform { max-width: 900px; margin: 0 auto; padding: 72px 28px; }
.asd-cform__intro { margin: 0 0 40px; font-size: 15px; line-height: 2; color: #333; text-align: center; }
.asd-cform__ttl { text-align: center; font-weight: 900; font-size: 22px; margin: 44px 0 28px; }
.asd-cform__ttl::after { content: ""; display: block; width: 48px; height: 3px; background: #F8D136; margin: 14px auto 0; }
.asd-cform__must { color: #c0392b; font-weight: 700; }
.asd-cform__errors {
  background: #fdeaea; border: 1px solid #e0a5a5; color: #a02020;
  padding: 16px 20px; margin-bottom: 28px; font-size: 14px; line-height: 1.9;
}
.asd-form { display: flex; flex-direction: column; gap: 26px; }
.asd-form__label { display: flex; flex-direction: column; gap: 9px; }
.asd-form__lbl { font-weight: 700; font-size: 14px; }
.asd-form__req { color: #c0392b; font-size: 11px; border: 1px solid #c0392b; padding: 1px 6px; margin-left: 4px; }
.asd-form__input,
.asd-form__select,
.asd-form__textarea {
  border: 1px solid #ccc; padding: 13px 14px; font-size: 14px; font-family: inherit; background: #fff;
  width: 100%;
}
.asd-form__textarea { resize: vertical; }
.asd-form__input:focus,
.asd-form__select:focus,
.asd-form__textarea:focus { outline: none; border-color: #F8D136; }
.asd-form__submit {
  align-self: center; background: #F8D136; color: #000; border: 0; cursor: pointer;
  font-weight: 700; font-size: 16px; padding: 18px 60px; margin-top: 6px; transition: opacity .25s ease;
}
.asd-form__submit:hover { opacity: .9; }
.asd-cform__done { text-align: center; padding: 60px 20px; }
.asd-cform__done-ttl { margin: 0; font-weight: 900; font-size: 26px; }
.asd-cform__done-txt { margin: 22px 0 0; font-size: 15px; line-height: 2; color: #333; }
.asd-cform__done-btn { margin-top: 34px; }
/* CMSお問い合わせフォーム（cms_ajax出力・汎用スタイル） */
.asd-cform__cms { margin-top: 8px; border: 1px solid #e2e2e2; padding: 36px; }
/* CMSフォーム内側コンテンツの余白（外側idで詳細度を強める） */
#cms-contact-1-1-area .form-contents,
.asd-cform__cms .form-contents { padding: 25px 30px; }
#cms-contact-1-1-area input[type="text"],
#cms-contact-1-1-area input[type="email"],
#cms-contact-1-1-area input[type="tel"],
#cms-contact-1-1-area input[type="number"],
#cms-contact-1-1-area textarea,
#cms-contact-1-1-area select {
  width: 100%; border: 1px solid #ccc; padding: 12px 14px; font-size: 14px; font-family: inherit; background: #fff;
}
#cms-contact-1-1-area textarea { resize: vertical; }
/* セレクトボックスの高さ崩れ（CMS側の固定heightで文字が切れる）を補正：id+class+要素で強く上書き */
#cms-contact-1-1-area select,
#cms-contact-1-1-area select.textarea-serect {
  box-sizing: border-box; height: auto; min-height: 48px; line-height: 1.5;
  padding: 12px 14px; background: #fff;
}
#cms-contact-1-1-area input:focus,
#cms-contact-1-1-area textarea:focus,
#cms-contact-1-1-area select:focus { outline: none; border-color: #F8D136; }
#cms-contact-1-1-area input[type="submit"],
#cms-contact-1-1-area button[type="submit"],
#cms-contact-1-1-area button {
  background: #F8D136; color: #000; border: 0; cursor: pointer;
  font-weight: 700; font-size: 16px; padding: 16px 48px; transition: opacity .25s ease;
}
#cms-contact-1-1-area input[type="submit"]:hover,
#cms-contact-1-1-area button:hover { opacity: .9; }
/* submitボタン内のメールアイコンを黒に */
#cms-contact-1-1-area button i,
#cms-contact-1-1-area button .fa,
#cms-contact-1-1-area button [class*="fa-"],
#cms-contact-1-1-area button [class*="icon"],
#cms-contact-1-1-area input[type="submit"] { color: #000; }
/* submitボタンのアイコン（::before の背景色）を黒に：外側idで詳細度を強める */
#cms-contact-1-1-area .form-pattern-1 .submit-btn::before,
.asd-cform__cms .form-pattern-1 .submit-btn::before { background-color: #000; }

/* ==========================================================================
   レスポンシブ
   ========================================================================== */
@media (max-width: 1100px) {
  .asd-header__nav { display: none; }
  /* ハンバーガー表示域ではフッターのMENUナビを隠す */
  .asd-footer__col--menu { display: none; }
  .asd-footer__inner { grid-template-columns: 1.3fr 1fr; }
}

@media (max-width: 900px) {
  .asd-hero__ttl { font-size: 40px; }
  .asd-strength__inner { grid-template-columns: 1fr; gap: 22px; }
  .asd-strength__label { writing-mode: horizontal-tb; border-left: none; border-top: 3px solid #000; padding-left: 0; padding-top: 10px; }
  .asd-spre__grid { grid-template-columns: repeat(2, 1fr); }
  .asd-wpre__grid { grid-template-columns: 1fr; gap: 40px; }
  .asd-wpre__photos { height: 380px; }
  .asd-wpre__watermark { font-size: 96px; top: 10px; }
  .asd-wpre__ttl { font-size: 30px; }
  .asd-merit__grid { grid-template-columns: 1fr; }
  .asd-slist__row,
  .asd-slist__row:nth-child(even) { grid-template-columns: 1fr; gap: 22px; }
  .asd-slist__row:nth-child(even) .asd-slist__figure { order: 0; }
  .asd-slist__row--detailed { grid-template-columns: 1fr; }
  .asd-slist__row--detailed .asd-slist__body,
  .asd-slist__row--detailed .asd-slist__figure,
  .asd-slist__row--detailed .asd-slist__subs { grid-column: auto; grid-row: auto; }
  .asd-slist__subs { grid-template-columns: repeat(2, 1fr); margin-top: 0; }
  .asd-works__grid { grid-template-columns: repeat(3, 1fr); }
  .asd-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .asd-footer__col--brand { grid-column: 1 / -1; }
  .asd-phero__ttl, .asd-rhero__ttl { font-size: 30px; }
  .asd-clink__ttl { font-size: 22px; }
}

@media (max-width: 640px) {
  .asd-hero { min-height: calc(100vh - 74px); }
  .asd-hero__ttl { font-size: 32px; }
  .asd-hero__box { padding: 40px 0; }
  .asd-hero__btns .asd-btn-y, .asd-hero__btns .asd-btn-outl-l { flex: 1 1 100%; }
  .asd-strength__ttl { font-size: 24px; }
  .asd-news__wrap { padding: 56px 20px; }
  .asd-slist__subs { grid-template-columns: 1fr; }
  .asd-spre__wrap { padding: 60px 20px; }
  .asd-spre__grid { grid-template-columns: 1fr; }
  .asd-wpre__wrap { padding: 64px 20px; }
  .asd-wpre__watermark { display: none; }
  .asd-wpre__ttl { font-size: 26px; }
  .asd-wpre__cta { min-width: 0; }
  /* 従業員募集中：SPはPCバッジを隠し、画面下に帯を固定表示 */
  .asd-rbadge { display: none; }
  .asd-rbnr {
    display: flex; align-items: center; gap: 12px;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 95;
    background: #E60012; color: #fff; padding: 12px 18px;
    box-shadow: 0 -4px 16px rgba(0,0,0,.3);
  }
  .asd-rbnr__badge { font-family: var(--os); font-weight: 700; font-size: 11px; letter-spacing: .2em; background: #111; color: #fff; padding: 5px 10px; }
  .asd-rbnr__main { font-weight: 900; font-size: 17px; letter-spacing: .04em; }
  .asd-rbnr__arrow { margin-left: auto; font-family: var(--os); font-weight: 700; font-size: 20px; }
  /* 固定帯ぶんの余白を確保し、ページトップボタンを帯の上に逃がす */
  body { padding-bottom: 52px; }
  .asd-pagetop { bottom: 66px; }
  .asd-rcta__wrap { padding: 72px 20px; }
  .asd-rcta__ttl { font-size: 24px; }
  .asd-rcta__img { object-position: 25% center; }   /* SPは背景をやや左寄せ（scaleX反転のため25%指定） */
  .asd-rcta__ov { background: linear-gradient(90deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,.7) 40%, rgba(0,0,0,.4) 70%, rgba(0,0,0,.3) 100%); }   /* SPは右側にもうっすら暗さを足す */
  .asd-hero__ov { background: rgba(0,0,0,.55); }   /* SPはメインビューを全体一律の暗さに */
  .asd-rhero__ttl br { display: none; }                /* 採用ヒーロー見出しはSPで改行しない */
  .asd-cform__cms { padding: 12px; }                   /* SPはフォーム余白を詰める */
  .asd-clink__box { grid-template-columns: 1fr; padding: 30px 26px; }
  .asd-clink__view { justify-self: start; }
  .asd-works__grid { grid-template-columns: repeat(2, 1fr); }
  .asd-dl__row, .asd-reqs__row { grid-template-columns: 1fr; }
  .asd-reqs__key { padding: 14px 20px; }
  .asd-reqs__val { padding: 14px 20px; }
  .asd-phero__inner { padding: 60px 20px; }
  .asd-phero__ttl, .asd-rhero__ttl { font-size: 26px; }
  .asd-rhero__wrap { padding: 64px 20px; }
  .asd-cbody, .asd-slist, .asd-works, .asd-newslist, .asd-cform { padding-left: 20px; padding-right: 20px; }
  .asd-footer__inner { grid-template-columns: 1fr; }
  /* お知らせ一覧：SPは日付＋タイトルを1カラム（縦積み）に */
  .asd-newslist__wrap .asd-news__row,
  .asd-newslist__wrap .asd-newslist__row { grid-template-columns: 1fr; gap: 6px; align-items: start; }
}
