/*
 * ARTISAN SPIRITS — style_top_new.css
 * 新ヘッダー・フッター・TOPページ差分スタイル
 * 既存 css-n/style.css に上書きする形で適用
 * クラス名は as- プレフィックスで既存CSSと分離
 * ================================================================
 */

/* ================================================================
   共通変数
================================================================ */
:root {
  --top-header-h: 82px;
  --top-max-w:    1800px;
  --top-pad:      48px;
}

/* ================================================================
   ① ヘッダー PC
================================================================ */
#as-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--top-header-h);
  display: flex;
  align-items: center;
  /* 既存 #sheader / .header の白背景を上書き */
  background: rgba(0,0,0,0) !important;
  border-top: none !important;
  box-shadow: none !important;
  transition: background .3s cubic-bezier(.4,0,.2,1),
              box-shadow  .3s cubic-bezier(.4,0,.2,1),
              border-top-color .3s;
}

#as-header.is-scrolled {
  background: rgba(255,255,255,1) !important;
  border-top: 4px groove #111 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.07) !important;
}

/* 3カラムグリッド */
.as-header-inner {
  max-width: var(--top-max-w);
  margin: 0 auto;
  padding: 0 var(--top-pad);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

/* ナビ */
.as-nav-left,
.as-nav-right {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
  gap: 28px;
}
.as-nav-right { justify-content: flex-end; }

.as-nav-link {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,.88);
  display: block;
  position: relative;
  padding: 3px 0;
  white-space: nowrap;
  transition: color .2s;
}
.as-nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: #e53637;
  transform: scale(0);
  transition: transform .5s;
}
.as-nav-link:hover { color: #fff; text-decoration: none; }
.as-nav-link:hover::after { transform: scale(1); }

#as-header.is-scrolled .as-nav-link       { color: #111; }
#as-header.is-scrolled .as-nav-link:hover { color: #111; }

.as-nav-link--dealer { color: #fff; }
#as-header.is-scrolled .as-nav-link--dealer { color: #111; }

/* ロゴ画像 */
.as-logo { text-align: center; }
.as-logo a { text-decoration: none; display: inline-block; }
.as-logo a:hover { opacity: .85; text-decoration: none; }

.as-logo-img {
  height: 32px;
  width: auto;
  display: block;
}
/* 初期：白ロゴ表示 / 黒ロゴ非表示 */
.as-logo-img--white { display: block; }
.as-logo-img--black { display: none; }

/* スクロール後：黒ロゴ / 白ロゴ非表示 */
#as-header.is-scrolled     .as-logo-img--white,
#as-header-mob.is-scrolled .as-logo-img--white { display: none; }
#as-header.is-scrolled     .as-logo-img--black,
#as-header-mob.is-scrolled .as-logo-img--black { display: block; }

/* SP ロゴ */
.as-mob-logo { display: flex; align-items: center; text-decoration: none; }
.as-mob-logo:hover { opacity: .85; text-decoration: none; }
.as-mob-logo .as-logo-img { height: 26px; }

/* PC のみ表示 */
@media screen and (max-width: 1024px) {
  #as-header { display: none; }
}
@media screen and (min-width: 1025px) {
  #as-header-mob { display: none; }
}
#as-header-mob .as-pc-menu-icon,
#as-header-mob .as-pc-menu-text {
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
#as-header-mob.is-scrolled .as-pc-menu-icon,
#as-header-mob.is-scrolled .as-pc-menu-text {
  color: #111 !important;
}

/* ================================================================
   ① ヘッダー SP
================================================================ */
#as-header-mob {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--top-header-h);
  align-items: center;
  background: transparent !important;
  border-top: none !important;
  box-shadow: none !important;
  transition: background .3s cubic-bezier(.4,0,.2,1);
}
#as-header-mob.is-scrolled {
  background: rgba(255,255,255,1) !important;
  border-top: 4px groove #111 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.07) !important;
}
@media screen and (max-width: 1024px) {
  #as-header-mob { display: flex; }
}

.as-mob-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  width: 100%;
}

.as-mob-btn {
  background: none; border: none; cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.9);
  text-decoration: none;
  display: flex; align-items: center; gap: 5px;
  padding: 4px; transition: color .2s;
}
.as-mob-btn .as-icon { font-size: 20px; line-height: 1; }
#as-header-mob.is-scrolled .as-mob-btn { color: #111; }

.as-mob-logo {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 15px; font-weight: 500;
  letter-spacing: 5px; text-transform: uppercase;
  color: rgba(255,255,255,.95);
  text-decoration: none; transition: color .2s;
}
#as-header-mob.is-scrolled .as-mob-logo { color: #111; }

/* ================================================================
   ② ドロワーメニュー
================================================================ */
.as-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.3);
  z-index: 1100;
  opacity: 0; visibility: hidden;
  transition: opacity .5s, visibility .5s;
}
.as-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.as-mob-drawer {
  position: fixed;
  top: 0; left: -300px;
  width: 300px; height: 100%;
  background: #fff;
  z-index: 1200;
  padding: 60px 30px 30px;
  overflow-y: auto;
  transition: left .5s, opacity .5s;
  opacity: 0;
}
.as-mob-drawer.is-open { left: 0; opacity: 1; }

.as-drawer-close {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; cursor: pointer;
  font-size: 22px; color: #111; padding: 6px; line-height: 1;
}

.as-drawer-nav { display: flex; flex-direction: column; }
.as-drawer-nav a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #111; text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  display: block; transition: color .2s;
}
.as-drawer-nav a:hover { color: #999; text-decoration: none; }

/* PC メニューボタン */
.as-pc-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.as-pc-menu-btn:hover { opacity: .7; }
#as-header.is-scrolled .as-pc-menu-btn { color: #111; }
#as-header-mob.is-scrolled .as-pc-menu-btn { color: #111 !important; }
.as-pc-menu-icon {
  font-size: 27px;
  line-height: 1;
  position: relative;
  top: -7px;
}
.as-pc-menu-text {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.as-mob-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
#as-header-mob .as-nav-icon-link { color: rgba(255,255,255,.88); }
#as-header-mob.is-scrolled .as-nav-icon-link { color: #111; }

/* SP用アイコンサイズ・色調整 */
#as-header-mob .as-nav-icon {
  width: 16px;
  height: 16px;
}
#as-header-mob .as-nav-icon-label {
  display: none;
}
#as-header-mob .as-nav-icon {
  width: 25px;
  height: 25px;
  fill: rgba(255,255,255,.88);
}
#as-header-mob.is-scrolled .as-nav-icon {
  fill: #111;
}
/* SP topbar 3カラム均等配置 */
#as-header-mob .as-mob-topbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
#as-header-mob .as-mob-logo {
  grid-column: 2;
  justify-self: center;
}
#as-header-mob .as-mob-right {
  grid-column: 3;
  justify-self: end;
}
/* ================================================================
   本文エリア：ヘッダー分のマージン
================================================================ */
.as-top-body {
  margin-top: 0;
}

/* ================================================================
   HERO
================================================================ */
.as-hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.as-hero-slides { position: relative; width: 100%; height: 100%; }

.as-hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  pointer-events: none;
}
.as-hero-slide.is-active { opacity: 1; z-index: 1; pointer-events: all; }

.as-hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.as-hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.45) 0%,
    rgba(0,0,0,.15) 30%,
    rgba(0,0,0,0)   60%
  );
  pointer-events: none;
}

.as-hero-text {
  position: absolute;
  top: 180px; left: 60px;
  z-index: 2; max-width: 480px;
}
.as-hero-h1 {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 4px; text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 12px;
  opacity: 0; transform: translateY(100px);
  transition: opacity .6s, transform .6s;
}
@media screen and (max-width: 1279px) {
  .as-hero-h1 { font-size: 34px; }
}
@media screen and (max-width: 1024px) {
  .as-hero-h1 { font-size: 28px; }
}
@media screen and (max-width: 767px) {
  .as-hero-h1 { font-size: 22px; }
}
.as-hero-sub {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin: 0 0 28px;
  opacity: 0; transform: translateY(100px);
  transition: opacity .6s .2s, transform .6s .2s;
}

.as-hero-btn {
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: #fff; background: #111;
  padding: 14px 30px; text-decoration: none;
  opacity: 0; transform: translateY(100px);
  transition: opacity .6s .4s, transform .6s .4s, color .2s, background .2s;
}
@media screen and (max-width: 1279px) {
  .as-hero-btn { font-size: 12px; padding: 12px 24px; }
}
@media screen and (max-width: 1024px) {
  .as-hero-btn { font-size: 11px; padding: 10px 20px; }
}
@media screen and (max-width: 767px) {
  .as-hero-btn { font-size: 10px; padding: 8px 16px; }
}
.as-hero-btn:hover { color: #000000; background: #fff; text-decoration: none; }

.as-hero-slide.is-active .as-hero-h1,
.as-hero-slide.is-active .as-hero-sub,
.as-hero-slide.is-active .as-hero-btn {
  opacity: 1; transform: translateY(0);
}

.as-hero-controls {
  position: absolute;
  bottom: 80px; right: 60px;
  z-index: 3; display: flex; gap: 8px;
}
.as-hero-arrow {
  width: 44px; height: 44px;
  background: rgba(0,0,0,.4);
  border: 1px solid rgba(255,255,255,.3);
  cursor: pointer;
  color: rgba(255,255,255,.8); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.as-hero-arrow:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.8);
}

.as-hero-counter {
  position: absolute;
  bottom: 136px; right: 64px;
  z-index: 3;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px;
  color: rgba(255,255,255,.45);
}

@media screen and (max-width: 767px) {
  .as-hero {
    height: auto;
    min-height: auto;
  }
  .as-hero-slides {
    width: 100%;
    aspect-ratio: 16 / 10;
    position: relative;
  }
  .as-hero-slide img {
    object-fit: cover;
    object-position: center center;
  }
  .as-hero-text {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}
  .as-hero-controls { display: none; }
  .as-hero-counter  { display: none; }
}
/* ================================================================
   共通セクション
================================================================ */
.as-sec { padding: 100px 0; }
.as-sec-inner {
  max-width: var(--top-max-w);
  margin: 0 auto;
  padding: 0 var(--top-pad);
}
.as-sec-head { 
  margin-bottom: 56px;
  text-align: center; 
}
.as-sec-label {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999; display: block; margin-bottom: 8px;
}
.as-sec-title {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; /* ←ここ追加！ */
  font-size: 30px; font-weight: 400;
  letter-spacing: 3px; text-transform: uppercase;
  color: #111; margin: 0;
}

.as-view-all {
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 4px; text-transform: uppercase;
  color: #fff; background: #111;
  padding: 14px 30px; text-decoration: none;
  transition: color .2s, background .2s;
}
.as-view-all:hover {
  color: #000000; background: #fff;
  border: 1px solid #111; text-decoration: none;
}

.as-bg-white { background: #fff; }
.as-bg-light { background: #f8f8f8; }

/* ================================================================
   PICKUP VEHICLE
================================================================ */
.as-pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.as-pickup-card { display: block; text-decoration: none; }
.as-pickup-img {
  aspect-ratio: 2/1;
  overflow: hidden; background: #e0e0de;
  margin-bottom: 24px;
}
.as-pickup-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.as-pickup-card:hover .as-pickup-img img { transform: scale(1.04); }
.as-pickup-info { text-align: center; }
.as-pickup-vehicle {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 20px; font-weight: 400;
  letter-spacing: 2px;
  color: #111; margin: 0 0 5px;
}
.as-pickup-brand,
.as-pickup-line {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999; margin: 0 0 3px;
}

/* ================================================================
   VEHICLE LINEUP
================================================================ */
.as-lineup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.as-lineup-card { display: block; text-decoration: none; }
.as-lineup-img {
  aspect-ratio: 2/1;
  overflow: hidden; background: #e4e4e2;
  margin-bottom: 14px;
}
.as-lineup-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.as-lineup-card:hover .as-lineup-img img { transform: scale(1.03); }
.as-lineup-name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px; font-weight: 400;
  letter-spacing: 2px;
  color: #111; margin: 0;
  text-align: center;
}

/* ================================================================
   FEATURED PRODUCTS
================================================================ */
.as-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.as-product-card { display: block; text-decoration: none; }
.as-product-img {
  aspect-ratio: 3/2;
  overflow: hidden; background: #e8e8e6;
  margin-bottom: 16px;
}
.as-product-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.as-product-card:hover .as-product-img img { transform: scale(1.04); }
.as-product-info { text-align: center; }
.as-product-name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: #111; margin: 0 0 5px;
}
.as-product-cat {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999; margin: 0;
}

/* ================================================================
   BRAND / FACTORY
================================================================ */
.as-brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.as-brand-card { display: block; text-decoration: none; }
.as-brand-img {
  aspect-ratio: 3/2;
  overflow: hidden; background: #ddd;
  margin-bottom: 16px;
}
.as-brand-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .7s ease;
}
.as-brand-card:hover .as-brand-img img { transform: scale(1.03); }
.as-brand-info { text-align: center; }
.as-brand-name {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: #111; margin: 0 0 5px;
}
.as-brand-sub {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 2px; text-transform: uppercase;
  color: #999; margin: 0;
}

/* ================================================================
   NEWS
================================================================ */
.as-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.as-news-card { display: block; text-decoration: none; }
.as-news-img {
  aspect-ratio: 16/9;
  overflow: hidden; background: #e0e0de;
  margin-bottom: 12px;
}
.as-news-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .6s ease;
}
.as-news-card:hover .as-news-img img { transform: scale(1.04); }
.as-news-title {
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px; font-weight: 600;
  line-height: 1.6; color: #111;
  margin: 0 0 8px;
}
.as-news-date {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1px; color: #999; margin: 0;
}
.as-news-footer { text-align: center; }

/* ================================================================
   DEALER / CONTACT
================================================================ */
.as-dc-section {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid #eee;
}
.as-dc-inner {
  max-width: var(--top-max-w);
  margin: 0 auto;
  padding: 0 var(--top-pad);
}
.as-dc-head { text-align: center; margin-bottom: 60px; }
.as-dc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.as-dc-card {
  display: flex; flex-direction: column;
  align-items: center; text-align: center;
  text-decoration: none;
  padding: 40px 20px;
  border: 1px solid #eee;
  transition: opacity .2s;
}
.as-dc-card:hover { opacity: .6; text-decoration: none; }
.as-dc-icon {
  width: 36px; height: 36px;
  margin-bottom: 18px; color: #111;
}
.as-dc-icon svg { width: 100%; height: 100%; fill: currentColor; }
.as-dc-name {
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #111; margin-bottom: 6px;
}
.as-dc-desc {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1px; color: #999;
}

/* ================================================================
   FOOTER
================================================================ */
.as-footer {
  background: #111111;
  padding: 60px 0 0;
}
.as-footer-inner {
  max-width: var(--top-max-w);
  margin: 0 auto;
  padding: 0 var(--top-pad);
}
.as-footer-logo {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 40px;
  opacity: .8;
  transition: opacity .2s;
}
.as-footer-logo:hover { opacity: 1; text-decoration: none; }
.as-footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.as-footer-primary {
  display: flex; gap: 40px; flex-wrap: wrap;
  margin-bottom: 32px;
}
.as-footer-primary a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  color: #ccc; text-decoration: none; transition: color .2s;
}
.as-footer-primary a:hover { color: #fff; text-decoration: none; }

.as-footer-divider {
  height: 1px; background: rgba(255,255,255,.1); margin-bottom: 24px;
}

.as-footer-secondary {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.as-footer-secondary a {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1px; text-transform: uppercase;
  color: rgba(204,204,204,.5); text-decoration: none; transition: color .2s;
}
.as-footer-secondary a:hover { color: #ccc; text-decoration: none; }

.as-footer-copy {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.as-footer-copy p {
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px; font-weight: 400;
  letter-spacing: 1px; color: rgba(204,204,204,.4); margin: 0;
}

/* ================================================================
   レスポンシブ
================================================================ */
@media screen and (max-width: 1024px) {
  :root { --top-pad: 32px; }
  .as-sec { padding: 80px 0; }
}

@media screen and (max-width: 767px) {
  :root { --top-pad: 20px; }
  .as-sec         { padding: 60px 0; }
  .as-sec-head    { margin-bottom: 36px; }
  .as-pickup-grid,
  .as-lineup-grid,
  .as-products-grid,
  .as-brand-grid,
  .as-news-grid   { grid-template-columns: 1fr; gap: 30px; }
  .as-dc-grid     { grid-template-columns: repeat(2, 1fr); }
  .as-footer-primary   { gap: 24px; }
  .as-footer-secondary { gap: 16px; }
}

/* ================================================================
   ドロワー：アコーディオンメニュー
================================================================ */
.as-drawer-item {
  border-bottom: 1px solid #eee;
}
.as-drawer-toggle {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  text-align: left;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.as-drawer-toggle--link {
  display: block;
  text-decoration: none;
  padding: 18px 0;
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
}
.as-drawer-arrow {
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  transition: transform .3s;
  display: inline-block;
}
.as-drawer-item.is-open .as-drawer-arrow {
  transform: rotate(45deg);
}
.as-drawer-sub {
  list-style: none;
  margin: 0;
  padding: 0 0 10px 12px;
  display: none;
}
.as-drawer-item.is-open .as-drawer-sub {
  display: block;
}
.as-drawer-sub li a {
  display: block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  text-decoration: none;
  padding: 10px 0;
  transition: color .2s;
}
.as-drawer-sub li a:hover { color: #111; }
/* ================================================================
   COMPLETE PROGRAM ページ専用スタイル
   cp- プレフィックスで既存クラスと分離
================================================================ */

/* HERO
================================================================ */
.cp-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #0a0a0a;
}
.cp-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    opacity: 1.0;
}
.cp-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0) 100%
    );
    z-index: 1;
    pointer-events: none;
}
.cp-hero-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 0 60px 72px;
}
/* 左上 */
.cp-hero--tl .cp-hero-inner {
    align-items: flex-start;
    padding: clamp(110px, 11vw, 160px) clamp(24px, 4.2vw, 60px) 0;
}
/* 左下（デフォルトのままなのでクラス不要だが明示用） */
.cp-hero--bl .cp-hero-inner {
    align-items: flex-end;
    padding: 0 60px 72px;
}
/* 右上 */
.cp-hero--tr .cp-hero-inner {
    align-items: flex-start;
    justify-content: flex-end;
    padding: 150px 60px 0;
    text-align: right;
}
/* 右下 */
.cp-hero--br .cp-hero-inner {
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 60px 72px;
    text-align: right;
}
.cp-hero-text { color: #fff; }
.cp-hero-label {
    display: block;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: clamp(11px, 1vw, 14px);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: clamp(12px, 1.5vw, 22px);
}
.cp-hero-h1 {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(26px, 3.4vw, 46px);
    letter-spacing: clamp(2px, 0.3vw, 4px);
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 clamp(12px, 1.5vw, 22px);
    color: #fff;
}
.cp-hero-h1-carbon {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: clamp(20px, 3.4vw, 40px);
    letter-spacing: clamp(2px, 0.3vw, 4px);
    text-transform: uppercase;
    line-height: 1.15;
    margin: 0 0 clamp(12px, 1.5vw, 22px);
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.cp-hero-h3-carbon {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-weight: 600;
    font-size: clamp(14px, 2.0vw, 24px);
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0 0 clamp(12px, 1.5vw, 22px);
    color: #fff;
    text-shadow: 0 1px 6px rgba(0,0,0,.4);
}
.cp-hero-sub {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: clamp(24px, 1.6vw, 30px);
    font-weight: 700;
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    color: rgba(255,255,255,0.75);
    margin: 30px 0 0;
}
.cp-hero-sub-complete {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 500;
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    color: rgba(255,255,255,0.75);
    margin: 30px 0 0;
}
.cp-hero-sub-about{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(16px, 1.6vw, 22px);
    font-weight: 500;
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    color: rgba(255,255,255,0.75);
    line-height: 1.75;
    margin: 30px 0 0;
    text-shadow: 0 1px 12px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.8);
}
.cp-hero-sub-carbon{
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: clamp(15px, 1.6vw, 20px);
    font-weight: 500;
    letter-spacing: clamp(1.5px, 0.2vw, 2.5px);
    color: rgba(255,255,255,1.0);
    line-height: 1.9;
    margin: 30px 0 0;
    text-shadow: 0 1px 5px rgba(0,0,0,.4);
}
/* CARBON HERO 専用：テキストのある右上を集中的に暗くして白文字の可読性を確保 */
/* （.cp-hero-h1-carbon を含むヒーローのみ＝carbonページ限定。about等には不適用） */
/* 上方向＋右方向の二重グラデーションで、右上コーナーが最も暗く、 */
/* 中央〜左・下方向（クルマ）へ向けて透明にフェードする */
.cp-hero:has(.cp-hero-h1-carbon)::after{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 30%, rgba(0,0,0,0) 50%),
        linear-gradient(to left,   rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.15) 50%, rgba(0,0,0,0) 70%);
    z-index:1;
    pointer-events:none;
}
@media screen and (max-width: 1024px) {
    .cp-hero-inner { padding: 0 32px 60px; }
    .cp-hero--tl .cp-hero-inner,
    .cp-hero--tr .cp-hero-inner { padding: 120px 32px 0; }
    .cp-style-inner,
    .cp-current-inner { padding: 0 32px; }
}
@media screen and (max-width: 767px) {
    /* SP: HEROは横長・テキスト非表示（トップページ同様） */
    .cp-hero {
        height: auto;
        min-height: 0;
        aspect-ratio: 3/2;
    }
    .cp-hero-inner { display: none; }
}

/* INTRO
================================================================ */
.cp-intro {
    background: #fff;
    padding: 90px 20px;
    text-align: center;
}
.cp-intro-inner {
    max-width: 760px;
    margin: 0 auto;
}
.cp-intro-en {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    display: block;
    margin-bottom: 48px;
    text-transform: uppercase;
}
.cp-intro-body {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: clamp(14px, 1.6vw, 20px);
    line-height: 2.0;
    color: #222;
    margin: 20px 0 0;
}
.cp-intro-body em {
    font-style: normal;
    font-weight: 700;
}

/* CURRENT PROGRAM
================================================================ */
.cp-current {
    background: #f8f8f8;
    padding: 100px 20px;
}
.cp-current-inner {
    max-width: var(--top-max-w);
    margin: 0 auto;
    padding: 0 var(--top-pad);
}
.cp-sec-head {
    text-align: center;
    margin-bottom: 56px;
}
.cp-sec-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 30px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 8px;
}
.cp-sec-title-m {
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 8px;
}
.cp-sec-subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin: 0 0 20px;
}
.cp-sec-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #333;
    margin: 30px 0 0;
}
.cp-vehicle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.cp-vehicle-card {
    display: block;
    text-decoration: none;
    background: #fff;
    overflow: hidden;
}
.cp-vehicle-card:hover .cp-vehicle-img img { transform: scale(1.04); text-decoration: none; }
.cp-vehicle-card:hover { text-decoration: none; }
.cp-vehicle-img {
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #111;
}
.cp-vehicle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}
.cp-vehicle-info { padding: 28px 28px 32px; }
.cp-vehicle-name {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 6px;
}
.cp-vehicle-style {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 16px;
}
.cp-vehicle-status {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 1px;
    color: #222;
    border-top: 1px solid #e8e8e8;
    padding-top: 16px;
    margin: 0;
}
.cp-current-note {
    text-align: center;
    margin-top: 56px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.cp-current-note p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 2;
    color: #111;
    margin: 0;
}
@media screen and (max-width: 767px) {
    .cp-sec-title {
    font-size: 24px;
    }
    .cp-sec-title-m {
    font-size: 20px;
    }
    .cp-current-note p {
        font-size: 11px;
    }
}

/* PROGRAM STYLE
================================================================ */
.cp-style {
    background: #fff;
    padding: 100px 0;
}
.cp-style-inner {
    max-width: var(--top-max-w);
    margin: 0 auto;
    padding: 0 var(--top-pad);
}
.cp-style-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
}
.cp-style-main {
    grid-column: 1 / -1;   /* 全幅 */
    aspect-ratio: 2/1;  /* 横長メイン */
    overflow: hidden;
    background: #111;
}
.cp-style-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}
.cp-style-sub {
    overflow: hidden;
    background: #111;
    aspect-ratio: 3 / 2;
}
.cp-style-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.cp-style-desc { margin-top: 52px; }
.cp-style-desc-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin: 0 0 28px;
}
.cp-style-points {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}
.cp-style-points li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #222;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}
.cp-style-points li::before {
    content: '—';
    margin-right: 12px;
    color: #bbb;
    font-size: 11px;
}
.cp-style-tagline {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    line-height: 2;
    color: #333;
    margin: 0 0 56px;
}
.cp-style-note {
    border-top: 1px solid #e8e8e8;
    padding-top: 48px;
    text-align: center;
}
.cp-style-note p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 2;
    color: #111;
    margin: 0;
}
@media screen and (max-width: 767px) {
    .cp-style-note p {
        font-size: 11px;
    }
}

/* ORDER STYLE
================================================================ */
.cp-order {
    background: #f8f8f8;
    padding: 100px 0;
}
.cp-order-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--top-pad);
}
.cp-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
}
.cp-order-card {
    background: #fff;
    padding: 52px 48px;
}
.cp-order-num {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 20px;
    display: block;
}
.cp-order-title {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 20px;
    letter-spacing: 2px;
    text-align: center;
    color: #111;
    margin: 0 0 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8e8e8;
}
.cp-order-body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    line-height: 2.2;
    color: #333;
    margin: 0;
}
.cp-order-note {
    text-align: center;
    margin-top: 40px;
}
.cp-order-note p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 2;
    color: #111;
    margin: 0;
}
@media screen and (max-width: 767px) {
    .cp-order-note p {
        font-size: 11px;
    }
}


/* FLOW
================================================================ */
.cp-flow {
    background: #fff;
    padding: 100px 0;
}
.cp-flow-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 var(--top-pad);
}
.cp-flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}
.cp-flow-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: calc(12.5% + 10px);
    right: calc(12.5% + 10px);
    height: 1px;
    background: #e0e0e0;
}
.cp-flow-step {
    text-align: center;
    padding: 0 16px;
}
.cp-flow-dot {
    width: 50px;
    height: 50px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
    z-index: 1;
}
.cp-flow-dot span {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 1px;
    color: #333;
}
.cp-flow-step-en {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 10px;
}
.cp-flow-step-ja {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #333;
}

/* FACTORY LINK
================================================================ */
.cp-factory-link {
    background: #111;
    padding: 80px 20px;
    text-align: center;
}
.cp-factory-link-inner {
    max-width: 640px;
    margin: 0 auto;
}
.cp-factory-link p {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 2.2;
    color: rgba(255,255,255,0.6);
    margin: 30px 0 40px;
}
.cp-factory-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 18px 40px;
    transition: all 0.3s;
}
.cp-factory-btn:hover {
    background: #fff;
    color: #111;
    border-color: #fff;
    text-decoration: none;
}

.cp-factory-link--light { background: #fff; }
.cp-factory-link--light p { color: #666; }
.cp-factory-link--light .cp-factory-btn { color: #111; border-color: rgba(0,0,0,0.28); }
.cp-factory-link--light .cp-factory-btn:hover { background: #111; color: #fff; border-color: #111; }

/* CONTACT
================================================================ */
.cp-contact {
    background: #f8f8f8;
    padding: 120px 20px;
}
.cp-contact-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.cp-contact-body {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    line-height: 2.2;
    color: #666;
    margin: 0 0 64px;
}
.cp-contact-links {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 420px;
    margin: 0 auto 2px;
}
.cp-contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    padding: 24px 32px;
    text-decoration: none;
    color: #111;
    transition: background 0.3s, color 0.3s;
}
.cp-contact-link:hover {
    background: #111;
    color: #fff;
    text-decoration: none;
}
.cp-contact-link-label {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.cp-contact-link-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 1px;
    color: #999;
    transition: color 0.3s;
}
.cp-contact-link:hover .cp-contact-link-sub { color: rgba(255,255,255,0.6); }
.cp-contact-link-arrow {
    font-size: 12px;
    color: #ccc;
    transition: color 0.3s;
}
.cp-contact-link:hover .cp-contact-link-arrow { color: #fff; }
.cp-tel-block {
    background: #fff;
    padding: 28px 32px;
    max-width: 420px;
    margin: 2px auto 0;
}
.cp-tel-num {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
    font-size: 24px;
    letter-spacing: 2px;
    color: #111;
    display: block;
    margin-bottom: 6px;
}
.cp-tel-hours {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #aaa;
}

/* BREADCRUMB
================================================================ */
.cp-breadcrumb {
    background: #fff;
    padding: 16px var(--top-pad);
    border-bottom: 1px solid #f0f0f0;
}
.cp-breadcrumb ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: var(--top-max-w);
    margin: 0 auto;
}
.cp-breadcrumb li {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #bbb;
}
.cp-breadcrumb li a { color: #bbb; text-decoration: none; }
.cp-breadcrumb li a:hover { color: #555; text-decoration: none; }
.cp-breadcrumb li.current { color: #555; }
.cp-breadcrumb-sep { color: #ddd; }

/* レスポンシブ
================================================================ */
@media screen and (max-width: 1024px) {
    .cp-hero-inner { padding: 0 32px 60px; }
    .cp-style-inner,
    .cp-current-inner { padding: 0 32px; }
}
@media screen and (max-width: 767px) {
    .cp-hero-inner { padding: 0 20px 48px; }
    .cp-intro { padding: 72px 20px; }
    .cp-vehicle-grid { grid-template-columns: 1fr; gap: 1px; }
    .cp-style-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .cp-style-main {
        grid-column: 1;
        grid-row: 1;
        aspect-ratio: 3/2;
    }
    .cp-order-grid { grid-template-columns: 1fr; }
    .cp-order-card { padding: 36px 24px; }
    .cp-flow-steps {
        grid-template-columns: 1fr 1fr;
        gap: 40px 0;
    }
    .cp-flow-steps::before { display: none; }
    .cp-factory-link { padding: 60px 20px; }
    .cp-contact { padding: 80px 20px; }
}




/* 2カラム（左:画像 / 右:テキスト）— SECTION 02 / 05 / 06 */
.ab-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.ab-split-img {
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e6e6e4;
}
.ab-split-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .8s cubic-bezier(.25,.46,.45,.94);
}
.ab-split:hover .ab-split-img img { transform: scale(1.03); }
.ab-split-text { max-width: 540px; }
.ab-split-text .as-view-all { margin-top: 36px; }

/* CRAFTSMANSHIP（上段:L / 下段:S+S）— SECTION 04 */
.ab-craft-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 2vw, 30px);
}
.ab-craft-main {
  grid-column: 1 / -1;
  aspect-ratio: 3 / 2;
  overflow: hidden; background: #e6e6e4;
}
.ab-craft-sub {
  aspect-ratio: 3 / 2;
  overflow: hidden; background: #e6e6e4;
}
.ab-craft-main img,
.ab-craft-sub img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* スクロール・イン演出（全セクション共通） */
.ab-reveal {
  opacity: 0; transform: translateY(42px);
  transition: opacity .9s cubic-bezier(.16,1,.3,1),
              transform .9s cubic-bezier(.16,1,.3,1);
}
.ab-reveal.is-inview { opacity: 1; transform: none; }

/* レスポンシブ */
@media screen and (max-width: 767px) {
  .ab-split { grid-template-columns: 1fr; gap: 28px; }
  .ab-split-img { aspect-ratio: 3 / 2; }
  .ab-split-text { max-width: none; text-align: center; }
  .ab-craft-main { aspect-ratio: 16 / 10; }
}
@media screen and (max-width: 479px) {
  .ab-craft-grid { grid-template-columns: 1fr; }
}

/* セクション見出し下のサブラベル（CFRP（PRESS）等） */
.cp-carbon .cp-sec-label{
  display:block; margin-top:12px;
  font-family:"Nunito Sans",sans-serif;
  font-size:14px; letter-spacing:.08em; color:#707070;
}
/* 画像グリッド（about.html の as-sec-inner 幅を継承） */
.cp-carbon .cp-figset{ margin-top:40px; display:grid; gap:20px; }
.cp-carbon .cp-figset--1{ grid-template-columns:1fr; }
.cp-carbon .cp-figset--2{ grid-template-columns:1fr 1fr; }
.cp-carbon .cp-figset a{ display:block; }
.cp-carbon .cp-figset img{ display:block; width:100%; height:auto; }
/* SPでのみ改行する br */
.cp-carbon .br-sp{ display:none; }
@media (max-width:767px){
  .cp-carbon .cp-figset{ margin-top:26px; gap:14px; }
  .cp-carbon .cp-figset--2{ grid-template-columns:1fr; }
  .cp-carbon .cp-sec-label{ font-size:12px; }
  .cp-carbon .br-sp{ display:inline; }
}

/* ================================================================
   COMPANY ページ専用（company.html）
   ・他ページへ影響させないため全ルールを .cp-company 配下にスコープ
================================================================ */
/* HERO：中央配置（COMPANY / Since 1997） */
.cp-company .cp-hero-inner{
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: clamp(160px, 18vh, 340px) 60px 0;
}
/* HERO 可読性：上半分を上から暗くするグラデーション（カメラのNDフィルター風／ネイビー） */
.cp-company .cp-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom,
              rgba(26,72,150,0.60) 0%,
              rgba(26,72,150,0.44) 18%,
              rgba(26,72,150,0.22) 38%,
              rgba(26,72,150,0) 54%);
  z-index:1;
  pointer-events:none;
}
/* SP：ヒーロー文字は非表示のため、陰（フィルター）も外してクリーンな写真に */
@media screen and (max-width: 767px){
  .cp-company .cp-hero::after{ display: none; }
}

/* COMPANY PROFILE：会社概要（定義リスト・中央配置） */
.cp-company .cp-profile{
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px 1fr;
}
.cp-company .cp-profile dt,
.cp-company .cp-profile dd{
  padding: 22px 0;
  border-bottom: 1px solid #e3e3e3;
}
.cp-company .cp-profile dt{
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a8a8a;
}
.cp-company .cp-profile dd{
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 15px;
  line-height: 1.85;
  color: #222;
}

/* BUSINESS：ビジュアル2枚 */
.cp-company .cp-figset{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.cp-company .cp-figset figure{ margin: 0; }
.cp-company .cp-figset img{
  display: block;
  width: 100%;
  height: auto;
}

/* BUSINESS：6事業 2列 */
.cp-company .cp-biz-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  border-top: 1px solid #eaeaea;
}
.cp-company .cp-biz-item{
  padding: 28px 4px;
  border-bottom: 1px solid #eaeaea;
}
.cp-company .cp-biz-en{
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 8px;
}
.cp-company .cp-biz-ja{
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* COMPANY ページ SP */
@media screen and (max-width: 767px){
  .cp-company .cp-profile{ grid-template-columns: 1fr; max-width: 420px; }
  .cp-company .cp-profile dt{
    padding: 18px 0 4px;
    border-bottom: none;
  }
  .cp-company .cp-profile dd{
    padding: 0 0 18px;
    border-bottom: 1px solid #e3e3e3;
  }
  .cp-company .cp-profile dt:first-of-type{ padding-top: 0; }
  .cp-company .cp-figset{ grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
  .cp-company .cp-biz-grid{ grid-template-columns: 1fr; }
}


/* ================================================================
   COMPANY ページ専用 — SECTION 04 FACILITY / SECTION 05 ACCESS
================================================================ */
/* FACILITY：工程プロセス（設計→出荷） */
.cp-company .cp-process{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 28px 0 0;
}
.cp-company .cp-process span{
  font-family: "Nunito Sans", "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  color: #333;
}
.cp-company .cp-process span:not(:last-child)::after{
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 1px;
  background: #cfcfcf;
  margin: 0 18px;
}

/* FACILITY：画像 左L／右S×2 */
.cp-company .cp-facility-grid{
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.cp-company .cp-facility-main{
  grid-row: 1 / span 2;
  overflow: hidden;
  background: #e6e6e4;
}
.cp-company .cp-facility-sub{
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e6e6e4;
}
.cp-company .cp-facility-main img,
.cp-company .cp-facility-sub img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ACCESS：Google Map */
.cp-company .cp-map{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #eaeaea;
}
.cp-company .cp-map iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.cp-company .cp-access-info{
  text-align: center;
  margin-top: 40px;
}
.cp-company .cp-access-addr{
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .04em;
  color: #222;
  margin: 0;
}
.cp-company .cp-access-note{
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: 13px;
  line-height: 1.9;
  color: #777;
  margin: 14px 0 0;
}
.cp-company .cp-access-btn{ margin-top: 32px; }

/* SECTION 04 / 05 SP */
@media screen and (max-width: 767px){
  .cp-company .cp-process span:not(:last-child)::after{ width: 18px; margin: 0 10px; }
  .cp-company .cp-facility-grid{ grid-template-columns: 1fr; }
  .cp-company .cp-facility-main{ grid-row: auto; aspect-ratio: 3 / 2; }
  .cp-company .cp-map{ aspect-ratio: 4 / 3; }
}


/* ================================================================
   VEHICLE SALES ページ専用（販売車両詳細：GX550 Ver L 等で共通利用）
   ・全ルール .cp-vehicle 配下にスコープ（他ページ非影響）
   ・セクション枠は as-sec / as-bg-* と cp-sec-head を流用
================================================================ */

/* ② VEHICLE INFORMATION ------------------------------------- */
.cp-vehicle .cp-vi-photo{
  margin: 0 auto 48px;
  overflow: hidden;
  background: #e6e6e4;
}
.cp-vehicle .cp-vi-photo img{
  display: block;
  width: 100%;
  height: auto;
}

/* 価格 */
.cp-vehicle .cp-price{
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
  max-width: 1100px;
}
.cp-vehicle .cp-price-label{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  letter-spacing: .12em;
  color: #666;
}
.cp-vehicle .cp-price-value{
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  letter-spacing: .04em;
  color: #111;
  line-height: 1;
}

/* 情報テーブル（2列） */
.cp-vehicle .cp-vi-tables{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.cp-vehicle .cp-vi-cat{
  font-family: "Nunito Sans", "游ゴシック体", YuGothic, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #111;
  margin: 28px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
}
.cp-vehicle .cp-vi-col > .cp-vi-cat:first-child{ margin-top: 0; }

/* 定義リスト */
.cp-vehicle .cp-spec-dl{
  display: grid;
  grid-template-columns: 160px 1fr;
  margin: 0;
}
.cp-vehicle .cp-spec-dl dt,
.cp-vehicle .cp-spec-dl dd{
  padding: 12px 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 14px;
  line-height: 1.7;
}
.cp-vehicle .cp-spec-dl dt{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  color: #777;
  letter-spacing: .04em;
}
.cp-vehicle .cp-spec-dl dd{
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  color: #222;
}

/* 箇条書きリスト */
.cp-vehicle .cp-spec-ul{
  list-style: none;
  margin: 0;
  padding: 0;
}
.cp-vehicle .cp-spec-ul li{
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 1px solid #eaeaea;
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
}
.cp-vehicle .cp-spec-ul li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 6px;
  height: 6px;
  background: #999;
  border-radius: 50%;
}

/* 画像2枚セット（③④共通） ----------------------------------- */
.cp-vehicle .cp-figset2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 56px;
}
.cp-vehicle .cp-figset2 figure{ margin: 0; overflow: hidden; background: #e6e6e4; }
.cp-vehicle .cp-figset2 img{ display: block; width: 100%; height: auto; }

/* ③ COMPLETE SPECIFICATION ---------------------------------- */
.cp-vehicle .cp-spec-cats{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 64px;
  max-width: 1100px;
  margin: 0 auto;
}
.cp-vehicle .cp-spec-cat--wide{ grid-column: 1 / -1; }
.cp-vehicle .cp-spec-cat-label{
  font-family: "Nunito Sans", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #111;
  margin: 18px 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
}
.cp-vehicle .cp-spec-item-title{
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin: 14px 0 4px;
}
.cp-vehicle .cp-spec-item-desc{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px;
  line-height: 1.8;
  color: #666;
  margin: 0;
}

/* ④ VEHICLE HIGHLIGHTS -------------------------------------- */
.cp-vehicle .cp-hl-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 64px;
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid #e2e2e2;
}
.cp-vehicle .cp-hl-item{
  padding: 26px 4px;
  border-bottom: 1px solid #e2e2e2;
}
.cp-vehicle .cp-hl-en{
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: #111;
  margin: 0 0 8px;
}
.cp-vehicle .cp-hl-ja{
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #555;
  margin: 0;
}

/* ⑤ IMAGE GALLERY ------------------------------------------- */
.cp-vehicle .cp-gallery{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.cp-vehicle .cp-gallery-item{
  position: relative;
  grid-column: span 2;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e6e6e4;
  display: block;
}
.cp-vehicle .cp-gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cp-vehicle .cp-gallery-l{ grid-column: span 3; aspect-ratio: 3 / 2; }
/* プレースホルダー（画像未手配スロット） */
.cp-vehicle .cp-gallery-ph{
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(45deg, #ececec 0, #ececec 12px, #e4e4e4 12px, #e4e4e4 24px);
}
.cp-vehicle .cp-gallery-ph span{
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.cp-vehicle .cp-gallery-note{
  text-align: center;
  margin: 24px 0 0;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 12px;
  color: #999;
}

/* ⑥ PURCHASE INFORMATION ------------------------------------ */
.cp-vehicle .cp-info-blocks{
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 36px;
}
.cp-vehicle .cp-info-block{
  padding: 28px 30px;
  background: #fff;
  border: 1px solid #e6e6e6;
}
.cp-vehicle .cp-info-label{
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e6e6e6;
}
.cp-vehicle .cp-info-body{
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.95;
  color: #444;
  margin: 0 0 14px;
}
.cp-vehicle .cp-info-block .cp-spec-ul{ margin: 0 0 6px; }
.cp-vehicle .cp-info-block .cp-spec-ul li:last-child{ border-bottom: none; }
.cp-vehicle .cp-info-body:last-child{ margin-bottom: 0; }

/* SP ---------------------------------------------------------- */
@media screen and (max-width: 767px){
  .cp-vehicle .cp-vi-photo{ margin-bottom: 32px; }
  .cp-vehicle .cp-price{ margin-bottom: 40px; gap: 12px; }
  .cp-vehicle .cp-vi-tables{ grid-template-columns: 1fr; gap: 0; }
  .cp-vehicle .cp-vi-col + .cp-vi-col{ margin-top: 8px; }
  .cp-vehicle .cp-spec-dl{ grid-template-columns: 110px 1fr; }
  .cp-vehicle .cp-figset2{ grid-template-columns: 1fr; gap: 14px; margin-bottom: 36px; }
  .cp-vehicle .cp-spec-cats{ grid-template-columns: 1fr; gap: 0; }
  .cp-vehicle .cp-hl-grid{ grid-template-columns: 1fr; }
  .cp-vehicle .cp-gallery{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cp-vehicle .cp-gallery-item{ grid-column: span 1; }
  .cp-vehicle .cp-gallery-l{ grid-column: span 2; aspect-ratio: 3 / 2; }
  .cp-vehicle .cp-info-block{ padding: 22px 20px; }
}


/* ================================================================
   CONTACT ページ専用（contact.html／ルート直下）
   ・全ルール .cp-contactpage 配下にスコープ（他ページ非影響）
================================================================ */

/* HERO（上寄せ中央＋ネイビーNDフィルター：COMPANYと同調） */
.cp-contactpage .cp-hero-inner{
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  padding: clamp(120px, 18vh, 240px) 60px 0;
}
.cp-contactpage .cp-hero::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(to bottom,
              rgba(26,72,150,0.58) 0%,
              rgba(26,72,150,0.42) 18%,
              rgba(26,72,150,0.20) 38%,
              rgba(26,72,150,0) 54%);
  z-index:1;
  pointer-events:none;
}
@media screen and (max-width: 767px){
  .cp-contactpage .cp-hero::after{ display:none; }
}

/* INTRO リード */
.cp-contactpage .cp-ct-lead-sec{
  background:#fff;
  padding: clamp(56px, 9vw, 96px) 24px;
}
.cp-contactpage .cp-ct-lead{
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: clamp(14px, 2.4vw, 16px);
  line-height: 2.1;
  color: #444;
}

/* ② CONTACT INFORMATION ------------------------------------- */
.cp-contactpage .cp-ci-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.cp-contactpage .cp-ci-card{
  display: flex;
  flex-direction: column;
  padding: 32px 30px;
  background: #fff;
  border: 1px solid #e6e6e6;
}
.cp-contactpage .cp-ci-label{
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #999;
}
.cp-contactpage .cp-ci-title{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 10px 0 12px;
}
.cp-contactpage .cp-ci-desc{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #666;
  margin: 0 0 18px;
  flex: 1 0 auto;
}
.cp-contactpage .cp-ci-value{
  display: inline-block;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: #111;
  text-decoration: none;
}
a.cp-contactpage .cp-ci-value:hover,
.cp-contactpage a.cp-ci-value:hover{ color:#b08a3e; }
.cp-contactpage .cp-ci-note{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  color: #666;
  margin: 8px 0 0;
}
.cp-contactpage .cp-ci-qr{
  width: 140px;
  height: 140px;
  background: #f4f4f4;
  border: 1px solid #e6e6e6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* LINEカードのみ：左にテキスト・右側にQRを配置 */
.cp-contactpage .cp-ci-card:has(.cp-ci-qr){
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 24px;
  align-items: start;
}
.cp-contactpage .cp-ci-card:has(.cp-ci-qr) > .cp-ci-label,
.cp-contactpage .cp-ci-card:has(.cp-ci-qr) > .cp-ci-title,
.cp-contactpage .cp-ci-card:has(.cp-ci-qr) > .cp-ci-desc{
  grid-column: 1;   /* テキスト3要素は左カラムに縦積み */
}
.cp-contactpage .cp-ci-card:has(.cp-ci-qr) > .cp-ci-qr{
  grid-column: 2;       /* 右カラム */
  grid-row: 1 / span 3; /* テキスト全体の高さの右側に配置 */
  align-self: center;   /* 縦位置は中央。上寄せにするなら start */
}
.cp-contactpage .cp-ci-qr img{ width: 100%; height: 100%; object-fit: contain; }
.cp-contactpage .cp-ci-pdf{
  display: inline-flex;
  align-items: center;
  align-self: center;
  margin-top: 12px;
  padding: 10px 20px;
  border: 1px solid #1a1a1a;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px;
  color: #1a1a1a;
  text-decoration: none;
  transition: background .2s, color .2s;
}
.cp-contactpage .cp-ci-pdf:hover{ background:#1a1a1a; color:#fff; }

.cp-contactpage .cp-ci-send{ align-self: center; margin-top: 16px; }

.cp-contactpage .cp-ci-hours{
  max-width: 1000px;
  margin: 20px auto 0;
  padding: 28px 30px;
  background: #fff;              /* #1a1a1a → #fff */
  border: 1px solid #e6e6e6;     /* ← 追加（カードと統一） */
  color: #1a1a1a;                /* #fff → #1a1a1a */
  text-align: center;
}
.cp-contactpage .cp-ci-hours-label{
  font-family: "Nunito Sans", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #999;                
}
.cp-contactpage .cp-ci-hours-main{
  font-family: "Nunito Sans", sans-serif;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 700;
  letter-spacing: .06em;
  color: #111;                   /* ← 追加（白地で見えるように）*/
  margin: 8px 0 6px;
}
.cp-contactpage .cp-ci-hours-sub{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px;
  color: #666;                   /* #bbb → #666 */
  margin: 0;
}

/* ③ CONTACT FORM -------------------------------------------- */
.cp-contactpage .cp-form-intro{
  max-width: 820px;
  margin: 0 auto 36px;
  text-align: center;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
}
.cp-contactpage .cp-form{
  max-width: 820px;
  margin: 0 auto;
}
.cp-contactpage .cp-fieldset{
  border: 0;
  margin: 0 0 36px;
  padding: 0;
}
.cp-contactpage .cp-legend{
  display: block;
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid #1a1a1a;
}
.cp-contactpage .cp-badge{
  display: inline-block;
  margin-left: 10px;
  padding: 2px 8px;
  font-family: "Nunito Sans", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #888;
  background: #efefef;
  border-radius: 2px;
  vertical-align: middle;
}
.cp-contactpage .cp-badge--req{ color:#fff; background:#c0392b; }
.cp-contactpage .cp-field-note{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 12px;
  color: #999;
  margin: -8px 0 16px;
}

/* 選択肢グリッド（ラジオ・チェック） */
.cp-contactpage .cp-choice-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.cp-contactpage .cp-radio,
.cp-contactpage .cp-check{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e0e0e0;
  background: #fafafa;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.cp-contactpage .cp-radio:hover,
.cp-contactpage .cp-check:hover{ border-color:#b08a3e; background:#fff; }
.cp-contactpage .cp-radio input,
.cp-contactpage .cp-check input{ width:17px; height:17px; accent-color:#b08a3e; flex:none; }
.cp-contactpage .cp-radio-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}
.cp-contactpage .cp-radio-row .cp-radio{ min-width: 150px; }

/* 入力フィールド */
.cp-contactpage .cp-field-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.cp-contactpage .cp-field{ display: flex; flex-direction: column; }
.cp-contactpage .cp-field--full{ grid-column: 1 / -1; }
.cp-contactpage .cp-field-label{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #444;
  margin-bottom: 8px;
}
.cp-contactpage .cp-input,
.cp-contactpage .cp-textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 15px;
  color: #1a1a1a;
  border-radius: 0;
  transition: border-color .2s;
}
.cp-contactpage .cp-input:focus,
.cp-contactpage .cp-textarea:focus{ outline:none; border-color:#b08a3e; }
.cp-contactpage .cp-textarea{ resize: vertical; line-height: 1.7; }
.cp-contactpage .cp-file{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  color: #444;
}

/* 送信ボタン */
.cp-contactpage .cp-form-submit{ text-align: center; margin-top: 8px; }
.cp-contactpage .cp-submit-btn{
  appearance: none;
  border: 0;
  cursor: pointer;
  min-width: 280px;
  padding: 20px 48px;
  background: #1a1a1a;
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: background .25s;
}
.cp-contactpage .cp-submit-btn:hover{ background:#b08a3e; }

/* 社外エアロの場合はメーカー名（チェック群の直後のフィールド）*/
.cp-contactpage .cp-choice-grid + .cp-field{ margin-top: 25px; }

/* お届け先の 個人／業者・法人（住所グリッドの直後のラジオ行）*/
.cp-contactpage .cp-field-grid + .cp-radio-row{ margin-top: 25px; }

/* ④ INTERNATIONAL ------------------------------------------- */
.cp-contactpage .cp-intl{
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.cp-contactpage .cp-intl-body{
  font-family: "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN", "メイリオ", sans-serif;
  font-size: 14px;
  line-height: 2;
  color: #444;
  margin: 0 0 18px;
}
.cp-contactpage .cp-intl-tel{
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin: 26px 0 0;
}
.cp-contactpage .cp-intl-tel span{
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  letter-spacing: 0;
  margin-top: 6px;
}
.cp-contactpage .cp-intl-btn{ margin-top: 32px; }

/* ⑤ ACCESS（COMPANYのcp-mapを当ページ用に再定義） ----------- */
.cp-contactpage .cp-map{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: #eaeaea;
}
.cp-contactpage .cp-map iframe{
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}
.cp-contactpage .cp-access-info{ text-align: center; margin-top: 40px; }
.cp-contactpage .cp-access-addr{
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 16px; line-height: 1.9; letter-spacing: .04em; color: #222; margin: 0;
}
.cp-contactpage .cp-access-note{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px; line-height: 1.9; color: #777; margin: 14px 0 0;
}
.cp-contactpage .cp-access-btn{ margin-top: 32px; }

/* ⑥ FAQ ------------------------------------------------------ */
.cp-contactpage .cp-faq-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.cp-contactpage .cp-faq-card{
  display: flex;
  flex-direction: column;
  padding: 30px 28px;
  background: #fff;
  border: 1px solid #e6e6e6;
}
.cp-contactpage .cp-faq-en{
  font-family: "Nunito Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #1a1a1a;
  margin: 0 0 4px;
}
.cp-contactpage .cp-faq-ja{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 14px;
  color: #999;
  margin: 0 0 14px;
}
.cp-contactpage .cp-faq-desc{
  font-family: "游ゴシック体", YuGothic, "メイリオ", sans-serif;
  font-size: 13px;
  line-height: 1.85;
  color: #333;
  margin: 0;
}
.cp-contactpage .cp-faq-more{
  text-align: center;
  margin-top: 40px;
}

/* SP ---------------------------------------------------------- */
@media screen and (max-width: 767px){
  .cp-contactpage .cp-ci-grid{ grid-template-columns: 1fr; }
  .cp-contactpage .cp-field-grid{ grid-template-columns: 1fr; gap: 16px; }
  .cp-contactpage .cp-choice-grid{ grid-template-columns: 1fr; }
  .cp-contactpage .cp-submit-btn{ min-width: 0; width: 100%; }
  .cp-contactpage .cp-faq-grid{ grid-template-columns: 1fr; }
  .cp-contactpage .cp-map{ aspect-ratio: 4 / 3; }
}
