@charset "UTF-8";
/* CSS Document */

*, *:before, *:after {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #fff;
  background-color: #000;
  background-position: center;
  font-size: 1.6rem;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
#wrapper {
  overflow: hidden;
}
:root{
  --header-h: 100px;
  --black: #000;
  --white: #fff;
  --gap: 15px;
  --btn-grad-top: #c3262c;
  --btn-grad-btm: #ff0000;
}
section {
  padding: 60px 0 80px;
}
.mv {
  padding: 0;
}
@media (max-width: 1000px) {
  section {
    padding: 50px 4%;
  }
    .mv {
    padding: 0 0 3vw 0;
  }
}
@media (max-width: 500px) {
  section {
    padding: 40px 6%;
  }
    .mv {
     padding: 0 0 3vw 0;
  }
}
h2 {
  font-family: "Roboto", sans-serif; font-weight: 900; font-size: 10rem; font-style: italic; color: #ff0000; line-height: 1;
}
h2 .txt-big {
  font-size: 16rem;
  margin-right: -7px;
}
.ttl-ja {font-size: 2.6rem; font-weight: 600;}

@media (max-width:768px) {
 h2 {
  font-size: 6rem;
  }
  h2 .txt-big {
    font-size: 10rem;
    margin-right: -5px;
  }
  .ttl-ja {font-size: 2rem;}
}

@media (max-width:500px) {
 h2 {
  font-size: 4.8rem;
  }
  h2 .txt-big {
    font-size: 8rem;
    margin-right: -5px;
  }
  .ttl-ja {font-size: 1.8rem;}
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
img {
  width: 100%;
}
a:hover {
  transition: .3s;
}
.btn { background:linear-gradient(to bottom, var(--btn-grad-top), var(--btn-grad-btm));filter: drop-shadow(0px 4px 5px #333);
  color:#fff; text-decoration:none; font-weight:600; display:flex; align-items:center;
  justify-content:center; border-radius:999px; padding: 15px 5px; max-width: 400px; position: relative; font-size: 3rem;
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    filter: none;
    transform: translate3d(0, 5px, 0);
    transition-duration: 0.2s;
  }
}
@media (max-width: 768px) {
  .btn {
    filter: none;
    font-size: 2rem;
  }
}
/* 白い三角を追加 */
.btn::after {
  content: "";
  position: absolute;
  right: 25px;   /* 右端から25px */
  width: 0;
  height: 0;
  border-top: 10px solid transparent;   /* 高さ20pxなので半分ずつ */
  border-bottom: 10px solid transparent;
  border-left: 14px solid #fff;         /* 横幅14px、白い三角 */
}

.pc-only { display: block; }
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: block; }
}
.br-450 {
  display: none;
}
@media screen and (max-width: 450px) {
  .br-450 {
    display: block;
  }
}
.br-540 {
  display: none;
}
@media screen and (max-width: 540px) {
  .br-540 {
    display: block;
  }
}
.br-768 {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-768 {
    display: block;
  }
}
.br-770 {
  display: none;
}
@media screen and (max-width: 770px) {
  .br-770 {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}



/* SP(≤800px)でヘッダー高さ80pxに */
@media (max-width:800px){
  :root{ --header-h: 80px; }
  .header__inner{ height: var(--header-h); }
}

/* ===== header base ===== */
.header{ position: fixed; top:0; z-index:1000; background:var(--black); color:var(--white); width: 100%;}
.header__inner{
  height:var(--header-h);
  display:flex; align-items:center; justify-content:space-between;
  width:100%; max-width:1200px; margin-inline:auto; padding-inline:24px;
}
.header__logo img{ width:270px; height:auto; display:block; }

/* PCナビ */
.header__nav{ margin-left:auto; }
.header__list{ display:flex; gap:var(--gap); list-style:none; padding:0; margin:0 24px 0 0; }
.header__item a{ color:var(--white); font-size:16px; text-decoration:none; }

/* CTAボタン */
.header__btn{
  width:180px; height: 44px; padding: 1% 5px; font-size: 1.6rem;
}
.header__btn::after {
  content: none; /* ← 擬似要素を削除する最も簡単な方法 */
}

/* ハンバーガー（PCでは非表示） */
.header__toggle{
  display:none; position:relative; width:48px; height:34px; border:0; background:transparent; cursor:pointer; z-index: 1100;
}
.header__bar{ position:absolute; left:0; right:0; height:3px; background:#fff; transition:.25s ease; }
.header__bar--1{ width:48px; top:0; }
.header__bar--2{ width:36px; top:50%; transform:translateY(-50%); }
.header__bar--3{ width:24px; bottom:0; }

/* ドロワー本体（右スライド） */
.header__drawer{
  position:fixed; inset-block:0; inset-inline-end:-40vw; z-index: 900; /* 初期は画面外 */
  width:40vw; max-width:460px; background:#000; transition:transform .3s ease, inset .3s ease;
  display:flex; align-items:flex-start; justify-content:flex-start; padding:24px; overflow:auto;
  transform:translateX(0);display: flex; justify-content: center; align-items: center; flex-direction: column; height: 100vh;  
}
.header__drawer-nav{ width:100%; }
.header__drawer-list{ list-style:none; padding:0; margin:0; display:flex; flex-direction:column; gap:18px; }
.header__drawer-item a{ color:#fff; text-decoration:none; font-size:18px; }
.header__drawer-cta{ width:200px; margin:40px auto 0; }

/* 半透明の背面（≤800pxのみ使う） */
.header__backdrop{
  position:fixed; inset:0; background:#000; opacity:0; pointer-events:none; transition:opacity .3s ease; z-index: 800;
}

/* ===== 1200px未満：ハンバーガー導入 ===== */
@media (max-width:1199px){
  .header__nav, .header__cta{ display:none; }
  .header__toggle{ display:block; margin-left:auto; }

  /* open状態 */
  .header.is-open .header__drawer{ inset-inline-end:0; } /* 右から出現（40vw） */

  /* 1199〜801pxは背面を暗くしない（画面は黒で埋めない） */
  .header__backdrop{ display:none; }

  .header__drawer-list{ gap:25px; }
}

/* 1199〜801px：右40%がドロワー。残り60%を透明のクリック領域にする */
@media (max-width:1199px) and (min-width:801px){
  .header__backdrop{
    display:block;
    position:fixed;
    inset:0 40vw 0 0; /* 右40vw（ドロワー分）を避けて、左側60vwを覆う */
    background: transparent;   /* 透明（見た目は黒くしない） */
    opacity: 1;                /* 見た目に影響なし。クリック用 */
    pointer-events: none;      /* 初期は無効 */
    z-index: 850;              /* drawer(900)より下、ページより上 */
  }
  .header.is-open .header__backdrop{
    pointer-events: auto;      /* 開いたときだけクリックを受ける */
  }
}


/* ===== 800px以下：全画面オーバーレイ ===== */
@media (max-width:800px){
  .header__drawer{ inset-inline-end:-100vw; width:100vw; max-width:none; }
  .header.is-open .header__drawer{ inset-inline-end:0; } /* 全面黒 */

  .header__backdrop{ display:block; }
  .header.is-open .header__backdrop{ opacity:1; pointer-events:auto; }
  .header__logo img { max-width: 180px;}
}

/* ===== ハンバーガー → × 変形 ===== */
.header.is-open .header__bar--1{
  top:50%; transform:translateY(-50%) rotate(45deg); width:48px;
}
.header.is-open .header__bar--2{
  opacity:0; transform:translateY(-50%) scaleX(0);
}
.header.is-open .header__bar--3{
  bottom:auto; top:50%; transform:translateY(-50%) rotate(-45deg); width:48px;
}



/* ===== mv ===== */
.mv {
  position: relative;
  overflow: hidden;
}
/* 動画を画面幅100%に */
.mv__video {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9; /* 好みの比率に調整可 */
  overflow: hidden;
}
/* 縦横比を守りつつ中央にフィット */
.mv__video video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 縦横比を維持して埋める */
  object-position: center;
  display: block;
}
/* --- rentalエリア（動画に少し被せる） --- */
.rental {
  position: relative;
  margin-top: -120px; /* ←被せたい分だけマイナスに */
  z-index: 2;
  padding: 0 2%;
}
.rental__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.rental__img {
  max-width: 538px;
}
.rental__right {
  max-width: 530px;
}
.rental__txt {
  padding-bottom: 5px;
  margin-bottom: 5px;
  border-bottom: 2px solid #fff;
  max-width: 530px;
}
.rental__note {
  text-align: right;
}
.rental__btn {
  max-width: 530px;
  margin-top: 40px;
}

@media (max-width: 1100px) {
  .rental__img {
    width: 45%;
  }
  .rental__right {
    width: 55%;
  }
}

/* スマホ：高さを指定してトリミング */
@media (max-width: 768px) {
  body {
      padding-top: 80px;
  }
  .mv__video {
    aspect-ratio: auto;                    /* 固定比率を解除 */
    height: clamp(360px, 55dvh, 520px);    /* 推奨：最小/理想/最大をまとめて指定 */
    /* 代替（固定pxが良ければ）： height: 460px; */
  }
  .mv__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .rental { 
    margin-top: -60px;
    padding: 0 4%;
  }  
  .rental__img {
    width: 50%;
  }
  .rental__inner {
    gap: 10px;
  }
  .rental__right {
    width: 50%;
  }
  .rental__note {
    font-size: 1.3rem;
  }
  .rental__btn {
	font-size: clamp(0.99rem, 3.12vw, 2.4rem);
    margin-top: 20px;
  }
	.rental__btn::after{
		content: "";
		position: absolute;
        right: 0.75em;
        width: 0;
        height: 0;
        border-top: 1.3vw solid transparent;
        border-bottom: 1.3vw solid transparent;
        border-left: 1.82vw solid #fff;
	}
      
    
}

@media (max-width: 690px) {
	.mv__video { height: 75.3vw; }
}

/* さらに狭い端末で少し浅くする（任意） */
@media (max-width: 480px) {
  .mv__video { height: 72vw; }
  /*.mv__video { height: clamp(320px, 50dvh, 480px); }*/
  .rental { margin-top: -48px; }
}

@media (max-width: 429px) {
  .rental__note {
    font-size: 1.1rem;
	letter-spacing: -0.02em;
  }
}

@media (max-width: 359px) {
  .rental__note {
    font-size: 1.0rem;
  }
}


/* ===== use ===== */

/* ===== 共通スタイル（全デバイス）===== */
.use__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 768px以下でも2列 */
  justify-content: center;
  gap: 25px;
  max-width: 1000px;
  margin: 80px auto 0;
}
.use__track {
  display: contents; /* wrapperの影響を消す */
}
.use__item {
  height: 100%;
  border: 2px solid #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.use__ttl-ja {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}
.use__ttl-ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #fff;
}

/* ===== PC/タブレット用（769px以上）===== */
@media (min-width: 769px) {
  .use__list {
    grid-template-columns: repeat(auto-fit, 300px); /* 自動詰め */
    justify-content: center;
    gap: 25px;
    max-width: 1000px;
    margin: 80px auto 0;
    padding: 0;
  }
}

/* ===== 1000px以下（横2×縦3）===== */
@media (max-width: 1000px) and (min-width: 769px) {
  .use__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ===== アイコン・テキスト類 ===== */
.use__cat {
  color: #ff0000;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  margin-bottom: 4px;
}
.use__subttl {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #fff;
}
.use__icon {
  height: 95px;
  margin-bottom: 20px;
}
.use__icon-circuit { max-width: 105px; }
.use__icon-parts { max-width: 96px; }
.use__icon-dealer { max-width: 111px; }
.use__icon-mall { max-width: 146px; }
.use__icon-shop { max-width: 105px; }
.use__icon-event { max-width: 118px; }
.use__txt {
  line-height: 1.4;
  color: #fff;
  font-size: 1.6rem;
}

/* ===== 装飾非表示（Swiperなどの余分なUIが残っている場合に保険で消す）===== */
.use__nav,
.use__pagination {
  display: none !important;
}

@media (max-width: 768px) {
  .use__list {
    gap: 15px;
    margin: 60px auto 0;
  }
  .use__item {
    padding: 20px 15px;
  }
  .use__cat {
    font-size: 1.6rem;
    margin-bottom: 0px;
}
  .use__subttl {
    font-size: 2.2rem;
    line-height: 1.3;
  }
  .use__icon {
    margin-bottom: 0px;
}
  .use__icon-circuit { max-width: 85px; }
  .use__icon-parts { max-width: 80px; }
  .use__icon-dealer { max-width: 90px; }
  .use__icon-mall { max-width: 118px; }
  .use__icon-shop { max-width: 85px; }
  .use__icon-event { max-width: 100px; }
}


/* ===== features ===== */

.features {
  background-image: url(../img/bg_features.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.features__ttlArea {
  display: flex;
  align-items: baseline;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 100px;
}
.feature__ttl-en {
  position: relative;
}
.feature__ttl-en::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 70%;
    height: 2px;
    background: #fff;
}
.features__item {
  display: flex;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 100px;
}
.features__item:nth-child(even) {
  flex-direction: row-reverse;
}
.features__ttl {
  margin: -20px 0 20px;
}
.features__item:nth-child(even) .features__ttl {
  transform: translateX(-40px);
  z-index: 2;
  position: relative;
}
.features__item:nth-child(even) .features__txt {
  transform: translateX(10px);
  margin-right: 40px;
}
.features__item:nth-child(odd) .features__ttl, .features__item:nth-child(odd) .features__txt{
  transform: translateX(40px);
  z-index: 2;
  position: relative;
}
.features__item:nth-child(odd) .features__txt {
  margin-right: 80px;
}
.features__ttl-real {
  max-width: 665px;
}
.features__ttl-circuit {
  max-width: 795px;
}
.features__ttl-simulation {
  max-width: 702px;
}
.features__ttl-raceMode {
  max-width: 622px;
}
.features__ttl-cockpit {
  max-width: 753px;
}
.features__ttl-assettoCorsa {
  max-width: 770px;
}
.features__txt {
  max-width: 470px;
  text-align: justify
}
.features__img {
  max-width: 627px;
}

/* 外枠だけ傾けて“平行四辺形”を作る */
.skew-wrap{
  /* 好きなサイズに調整 */
  width: min(640px, 100%);
  /* 動画/GIFがはみ出す分をカット */
  overflow: hidden;

  /* ← ここで枠を傾ける（角度はお好みで） */
  transform: skew(-8deg);
  transform-origin: top left;

  /* 余計な遠近効果や継承を無効化（台形化防止） */
  perspective: none !important;
  transform-style: flat !important;

  /* 端のにじみ軽減（任意） */
  backface-visibility: hidden;
  will-change: transform;
  position: relative;
  z-index: 0;
}
/* 内側は逆方向に傾けて中身を水平に補正 */
.skew-inner{
  position: relative;
  z-index: 1;
  transform: skew(8deg); /* 疑似要素(背景)より前に出す */
  transform-origin: top center;
}
.skew-inner img{
  width: 113%;
  margin-left: -9%;
}
/* GIF */
.skew-gif{
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 700px) {
  .features__ttlArea {
    margin: 0 auto 60px;
  }
  .features__item {
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto 80px;
  }
  .features__item:nth-child(even) {
  flex-direction: column;
  }
  .features__item:nth-child(odd) .features__ttl, .features__item:nth-child(odd) .features__txt {
      transform: translateX(0);
  }
  .features__item:nth-child(even) .features__ttl {
      transform: translateX(0);
  }
  .skew-wrap {
    max-width: 500px;
  }
  .features__img {
    /*margin-left: 10px;*/
	width: 95%;
    margin: 0 0 0 6.5%;
  }
  .features__ttl {
    margin: 0 0 15px;
  }
  .features__item:nth-child(odd) .features__txt {
    margin: 0 auto 20px;
  }
  .features__item:nth-child(even) .features__txt {
    transform: translateX(0);
    margin: 0 auto 20px;
  }
}



/* ===== demoVideo ===== */
.demoVideo {
  background-image: url(../img/bg_demoVideo_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.demoVideo__youtube {
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 40px auto 0;
}
.demoVideo__youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.demoVideo__ttl-ja {
	position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.demoVideo__ttl-ja::after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200%;
    height: 3px;
    background-color: #FFF;
}

.demoVideo__ttl-ja,
.availableDates__ttl-ja{
	position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.demoVideo__ttl-ja::after,
.availableDates__ttl-ja::after{
	content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 4em);
    height: 3px;
    background-color: #FFF;
}



@media screen and (max-width: 700px) {
.demoVideo__youtube {
  max-width: 500px;
  margin: 40px auto 0;
 }
}


/* ===== installation ===== */

.installation {
  background: #e6e6e6;
  color: #000;
}
.installation__ttl-ja {
  position: relative; 
  display: inline-block;    /* テキスト幅に合わせたい場合 */
  padding-bottom: 15px;
}
.installation__ttl-ja::after {
  content: ""; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); /* 中央寄せ */
  width: 200%; height: 3px; background-color: #000;
}
.installation__list {
  max-width: 1000px;
  margin: 80px auto 40px;
  background: #fff;
}

/* 追記：見た目とレイアウト */
.installation__list{
  list-style: none;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* PC：横2列 */
  gap: 28px 48px;               /* 行・列の間隔 */
  align-items: start;
}
.installation__list > li{
  display: grid;
  grid-template-columns: 111px 1fr; /* 左：アイコン、右：テキスト */
  column-gap: 16px;
  align-items: center;
}
.installation__list img{
  width: 111px;
  height: 111px;
  object-fit: contain;
}
.installation__txtArea h3{
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 800;
  text-align: left;
}
.installation__txtArea p{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  text-align: left;
}
.installation__txt-under {
  font-size: 2.8rem;
  line-height: 1.4;
}
.installation__btn {
  margin: 40px auto 0;
  max-width: 530px;
}

/* 幅が狭まったら：縦1列に落とす */
@media (max-width: 768px){
  .installation__list{
    grid-template-columns: 1fr; /* 1列 */
    gap: 20px;
    padding: 20px;
    margin: 50px auto 30px;
  }
  .installation__list > li{
    grid-template-columns: 72px 1fr; /* 少し詰める */
  }
  .installation__list img{
    width: 72px; height: 72px; 
  }
  .installation__txtArea h3{ font-size: 20px; }
  .installation__txtArea p{ font-size: 15px; }
  .installation__txt-under {
    font-size: 2rem;
  }
}


/* ===== price ===== */
.price {
  margin: 0 auto;
  text-align: center;
  color: #fff;
  background-image: url(../img/bg_price_pc.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.price__ttl-ja {
  margin-bottom: 40px;
  position: relative;
}
.price__ttl-ja::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  background: #fff;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* 赤帯 */
.price__banner {
  background: linear-gradient(to bottom, #c3262c, #ff0000);
  color: #fff;
  padding: 15px 0;
  margin: 60px auto 40px;
  max-width: 1000px;
}
.price__banner-main {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}
.price__banner-sub {
  font-size: 1.6rem;
  font-weight: 500;
}

/* 料金カード */
.price__list {
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 40px;
  gap: 2%; /* カード間の隙間を2% */
}
.price__item {
  flex: 1 1 calc(33.333% - 2%); /* 3等分 */
  position: relative;
  color: #000;
  overflow: hidden;
  min-height: 200px;
}
.price__item h3 {
  position: relative;
  color: #fff;
  background: #555;
  font-size: 2.8rem;
  font-weight: 700;
  z-index: 1;
}

.price__amount {
  background: #fff;
  font-size: 3.2rem;
  font-weight: 600;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price__amount span {
  font-size: 2rem;
  vertical-align: middle;
}

/* リード文 */
.price__lead {
  font-size: 2.8rem;
  margin-bottom:  20px;
  padding-bottom: 10px;
  display: block;
  position: relative;
  line-height: 1.3;
}
.price__lead::before,.price__lead::after {
  content: "";
  position: absolute;
  max-width: 1000px;
  width: 100%;
  height: 2px;
  background: #fff;
}
.price__lead::before {
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.price__lead::after {
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
}
.price__lead-note {
  font-size: 1.4rem;
}

/* 注意書き */
.price__notes {
  list-style: none;
  margin: 0 auto 40px;
  font-size: 1.4rem;
  text-align: left;
  max-width: 1000px;
  line-height: 1.8;
}
.price__btn {
  margin: 0 auto;
  max-width: 530px;
}

@media (max-width: 768px) {
  .price {
    padding: 60px 4%;
  }
  .price__banner {
    padding: 10px 0;
  }
  .price__banner-main {
    font-size: 2.6rem;
}
  .price__list {
    gap: 1.5%;
  }
  .price__item {
    flex: 1 1 calc(33.333% - 1.5%);
    min-height: 160px;
  }
  .price__item h3 {
    font-size: 2.6rem;
  }
  .price__amount {
    font-size: 2.8rem;
    min-height: 100px;
  }
  .price__lead {
    font-size: 2.2rem;
  }
}

@media (max-width: 550px) {
  .price__banner {
    margin: 50px auto 30px;
  }
  .price__banner-main {
    font-size: 2.2rem;
}
  .price__item h3 {
    font-size: 2.2rem;
  }
.price__amount {
    font-size: 2.2rem;
    min-height: 60px;
  }
  .price__list {
    margin: 0 auto;
  }
  .price__lead {
    font-size: 2rem;
  }
}
@media (max-width: 400px) {
  .price__item h3 {
    font-size: 1.8rem;
  }
.price__amount {
    font-size: 1.8rem;
    min-height: 50px;
  }
}


/* ===== option ===== */

.option__ttlArea {
  display: flex;
  align-items: baseline;
  max-width: 1000px;
  margin: 0 auto 60px;
  gap: 20px;
}
.option__ttl-en {
  position: relative;
}
.option__ttl-en::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -15px;
  width: 90%;
  height: 2px;
  background: #fff;
}


/* ==============================スライダー全体============================== */
.option__slider {
  max-width: 1000px;
  margin: 0 auto 40px;
  position: relative;
}

/* Swiper本体 */
.option__viewport {
  overflow: hidden; /* ← カードチラ見え防止 */
  width: 100%;
}

/* リスト・スライド */
.option__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.option__viewport .swiper-wrapper {
  align-items: stretch;
}
.option__viewport .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

/* ==============================カード============================== */
.option__item {
  background: #fff;
  color: #111;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* ← 中央寄せ */
  gap: 14px;
  height: 100%; /* 全カード高さを揃えるための基礎 */
}
.option__item h3 {
  font-size: 2.2rem;
  font-weight: 800;
  margin: 0;
  text-align: center;
}
.txt-red {
  color: #ff0000;
}
.option__item img {
  height: auto;         /* ← 縦比率は自動で保つ */
  display: block;
  margin: 0 auto;
  object-fit: contain;  /* ← はみ出し防止（中に収める） */
}
.option__img1 {
  max-width: 232px;
}
.option__img2 {
  max-width: 171px;
}
.option__img3 {
  max-width: 92px;
}
.option__img4 {
  max-width: 92px;
}
.option__img5 {
  max-width: 162px;
}
.option__img6 {
  max-width: 200px;
}

.option__item p {
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}

/* ==============================矢印============================== */
.option__nav {
  position: absolute;
  top: 40%; /* 完全中央 */

  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 5;
}
.option__prev {
  left: 10px;
}
.option__next {
  right: 10px;
}
.option__nav::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  margin: auto;
  border-top: 4px solid #ff0000;
  border-right: 4px solid #ff0000;
  transform: rotate(225deg);
}
.option__next::before {
  transform: rotate(45deg);
}

@media (max-width: 768px) {
  .option__nav {
    top: 35%;
  }
}

/* ==============================ドット（ページネーション）============================== */
:root {
  --dot-pink: #ff9fb0;
  --dot-red: #ff0000;
}
.option__pagination {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 25px;
  height: 10px;
}
.option__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dot-pink);
  opacity: 1;
  transform: scale(1);
  transition: transform 0.2s, background 0.2s;
}
.option__pagination .swiper-pagination-bullet-active {
  background: var(--dot-red);
  transform: scale(1.5);
}
.option__btn {
  margin: 0 auto;
  max-width: 530px;
}

@media (max-width: 768px) {
  .option__slider {
    padding: 0 40px 80px; /* SPは少し下余白を多めに */
  }
}



/* =========================
   Contact section
   ========================= */

/* （任意）セクションの薄グレー背景と余白 */
.contact{
  background:#e9e9e9;
  padding: 80px 0;
}
.contact__ttl-ja{
  margin: 0 0 60px;
  color: #000;
  position: relative;
}
.contact__ttl-ja::after{
  content:"";
  display:block;
  width: 220px;
  height: 2px;
  background:#111;
  margin: 12px auto 0;
}

/* コンテンツ幅（1000px / サイド3%余白） */
.contact__main,
.contact__links{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 3%;
}

/* ========== 電話CTA ========== */
:root{
  --contact-grad-top: var(--btn-grad-top, #c3262c);
  --contact-grad-btm: var(--btn-grad-btm, #ff0000);
}
.contact__tel{
  display:flex;
  align-items:center;
  gap: clamp(14px, 2.5vw, 28px);
  width: 100%;
  color:#fff;
  text-decoration:none;
  border-radius: 999px;
  padding: clamp(16px, 2.6vw, 22px) clamp(20px, 3.6vw, 28px);
  background: linear-gradient(to bottom, var(--contact-grad-top), var(--contact-grad-btm));
  position: relative;
  overflow: hidden;
}

/* 右端の三角（▶） */
.contact__tel::after{
  content:"";
  position:absolute;
  right: clamp(16px, 3vw, 24px);
  top: 50%;
  transform: translateY(-50%);
  border-left: 12px solid #fff;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* 電話アイコンの白い円 */
.contact__tel-icon{
  flex: 0 0 auto;
  width: clamp(48px, 6.5vw, 68px);
  height: clamp(48px, 6.5vw, 68px);
  display:grid;
  place-items:center;
}
.contact__tel-icon img{
  max-width: 50px;
  height: auto;
}

/* ラベルと番号 */
.contact__tel-label{
  font-weight: 600;
  font-size: 22px;
  opacity:.95;
}
.contact__tel-number{
  margin-left: auto;
  margin-right: clamp(36px, 6vw, 60px); /* ▶ の手前まで */
  font-size: clamp(24px, 4.8vw, 36px);
  letter-spacing: .02em;
}

/* ========== サブボタン（メール/LINE/SNS） ========== */

.contact__links{
  margin-top: clamp(28px, 5vw, 10px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.4vw, 24px);
}

/* PCは2カラム */
@media (min-width: 900px){
  .contact__links{
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    row-gap: 24px;
  }
}

.contact__btn{
  display:flex;
  align-items:center;
  gap: clamp(14px, 2.4vw, 20px);
  width: 100%;
  text-decoration:none;
  color:#000;
  background:#fff;
  border-radius: 999px;
  padding: clamp(16px, 2.6vw, 22px) clamp(20px, 3.6vw, 28px);
  transition: transform .15s ease, box-shadow .15s ease;
  position: relative;
}
/* ベース：影あり・アニメーション許可 */
.contact__tel,
.contact__btn{
  transition: transform .2s ease, filter .2s ease;
  will-change: transform, filter;  /* 任意：描画を滑らかに */
}

/* 影（ベース）— 数値は好みで */
.contact__tel{
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}

/* ホバー時：影を消して、少し沈める */
@media (hover: hover) and (pointer: fine) {
  .contact__tel:hover,
  .contact__btn:hover{
    /* none でも OK。補間を滑らかにしたいなら透明の drop-shadow に */
    filter: drop-shadow(0 0 0 rgba(0,0,0,0));
    transform: translateY(5px);
  }
}

/* モバイルでホバー演出を切りたいなら（任意） */
@media (max-width: 768px){
  .contact {
    padding: 50px 0 80px;
}
.contact__ttl-ja {
    margin: 0 0 40px;
}
  .contact__tel,
  .contact__btn{
    transition: none;
    /* 演出を完全オフにするなら filter: none; も */
  }
  .contact__tel {
      padding: 13px 3%;
  }
  .contact__btn {
    padding: 5px 3%;
  }
  .contact__tel-icon {
    max-width: 30px;
  }
  .contact__btn-icon {
    max-width: 50px;
  }
}


.contact__btn::after {
  content: "";
  position: absolute;
  right: 25px;   /* 右端から25px */
  width: 0;
  height: 0;
  border-top: 10px solid transparent;   /* 高さ20pxなので半分ずつ */
  border-bottom: 10px solid transparent;
  border-left: 14px solid #ff0000;         /* 横幅14px、白い三角 */
}

.contact__btn-icon{
  flex:0 0 auto;
  width: clamp(67px, 4.8vw, 44px);
  height: clamp(67px, 4.8vw, 44px);
  display:grid;
  place-items:center;
  border-radius:50%;
}
.contact__btn-icon img{
  width: 70%;
  height: auto;
}

/* テキストは折り返しOK＋余白を食べて中央寄せ気味に */
.contact__btn-label{
  font-size: clamp(18px, 3.4vw, 22px);
  font-weight: 600;
  letter-spacing: .02em;
}



/* スマホ時に「電話ボタン内のレイアウトを縦寄せ気味」に（スクショ準拠） */
@media (max-width: 600px){
  .contact__tel{
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
  }
  .contact__tel-number{
    width: 100%;
    text-align: center;
    margin: 0 0 2px;
    line-height: 1.2;
  }
}

/* ===== footer ===== */
.footer {
  padding: 40px 2% 30px;
}
.footer__logo {
  max-width: 315px;
  margin: 0 auto 20px;
}