@charset "utf-8";
/* =====================================================================
   AISEOブースト 紹介ページ 専用スタイル
   - css/index.css の後に読み込む追加スタイル
   - 既存サイトのトーンに統一：ネイビー #236eb1 / シアン #00ACEE / 薄青 #f7fbfe / 罫線 #e3eef6
   - PC = 複数カラム / スマホ（960px以下）= 1カラム
   ===================================================================== */

/* 読みやすい本文幅 */
.aiseo-inner { max-width: 1040px; margin: 0 auto; }

.aiseo-lead {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
  font-size: 16px;
  color: #333;
}
.aiseo-lead strong { color: #236eb1; }

/* セクション内の青い小見出し */
.aiseo-h3 {
  color: #236eb1;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin: 0 auto 28px;
  max-width: 880px;
  line-height: 1.7;
}

/* カードグリッド（強み・流れ・2方式） */
.aiseo-grid {
  display: grid;
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
}
.aiseo-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.aiseo-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.aiseo-card {
  background: #f7fbfe;
  border: 1px solid #e3eef6;
  border-radius: 10px;
  padding: 30px 28px;
  line-height: 1.9;
  font-size: 15px;
  color: #333;
}
.aiseo-card__num {
  color: #00ACEE;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
  margin-bottom: 12px;
}
.aiseo-card__ttl {
  color: #236eb1;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.aiseo-card__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  color: #00ACEE;
  border: 1px solid #00ACEE;
  border-radius: 4px;
  padding: 2px 12px;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

/* 実証ケース（PROOF） */
.aiseo-proof {
  max-width: 1040px;
  margin: 0 auto;
  background: #f7fbfe;
  border: 1px solid #e3eef6;
  border-radius: 12px;
  padding: 44px 48px;
  text-align: center;
}
.aiseo-proof__ttl {
  color: #236eb1;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 18px;
}
.aiseo-proof p {
  line-height: 2;
  font-size: 15px;
  color: #333;
  max-width: 760px;
  margin: 0 auto;
}

/* データ保護の注記ボックス */
.aiseo-note {
  max-width: 920px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #236eb1;
  border-radius: 12px;
  padding: 34px 38px;
  line-height: 2;
  font-size: 15px;
  color: #333;
}
.aiseo-note__ttl {
  color: #236eb1;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 14px;
}

/* CTA手前のリード文 */
.aiseo-cta-lead {
  text-align: center;
  line-height: 2;
  font-size: 16px;
  max-width: 760px;
  margin: 0 auto;
  color: #333;
}

/* スマホ */
@media only screen and (max-width: 960px) {
  .aiseo-grid.cols-3,
  .aiseo-grid.cols-2 { grid-template-columns: 1fr; }
  .aiseo-lead { font-size: 15px; line-height: 1.9; }
  .aiseo-proof { padding: 32px 22px; }
  .aiseo-proof__ttl { font-size: 20px; }
  .aiseo-note { padding: 24px 20px; }
  .aiseo-card { padding: 26px 22px; }
}

/* 余白ユーティリティ */
.aiseo-mt { margin-top: 40px; }

/* =====================================================================
   画面イメージ カルーセル（横スライド）
   PC = 左右ボタン / スマホ = フリック（スワイプ）
   ===================================================================== */
.aiseo-carousel { position: relative; max-width: 1040px; margin: 0 auto; }

.aiseo-carousel__viewport { position: relative; }

.aiseo-carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  scrollbar-width: none;          /* Firefox */
}
.aiseo-carousel__track::-webkit-scrollbar { display: none; } /* Chrome/Safari */

.aiseo-carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
}
.aiseo-carousel__slide img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #e3eef6;
  border-radius: 10px;
  box-shadow: 0 6px 24px rgba(31, 58, 95, .10);
}

/* 左右ボタン（PCのみ表示） */
.aiseo-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #236eb1;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(31, 58, 95, .25);
  transition: background .2s, opacity .2s;
}
.aiseo-carousel__btn:hover { background: #1d5d97; }
.aiseo-carousel__btn:disabled { opacity: .3; cursor: default; }
.aiseo-carousel__btn.prev { left: -22px; }
.aiseo-carousel__btn.next { right: -22px; }

/* キャプション */
.aiseo-carousel__cap {
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #236eb1;
  margin-top: 18px;
  line-height: 1.6;
}

/* ドット（現在地） */
.aiseo-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.aiseo-carousel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #c9dcec;
  cursor: pointer;
}
.aiseo-carousel__dot.is-active { background: #236eb1; }

.aiseo-carousel__hint {
  text-align: center;
  font-size: 12px;
  color: #999;
  margin-top: 12px;
}

@media only screen and (max-width: 960px) {
  .aiseo-carousel__btn { display: none; }   /* スマホはフリックで操作 */
}
@media only screen and (min-width: 961px) {
  .aiseo-carousel__hint { display: none; }   /* PCはボタンがあるため非表示 */
}

/* =====================================================================
   料金ブロック（最低料金プラン）
   ===================================================================== */
.aiseo-price {
  max-width: 760px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid #236eb1;
  border-radius: 14px;
  padding: 0 0 34px;
  overflow: hidden;
  text-align: center;
}
.aiseo-price__badge {
  background: #236eb1;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 2px;
  padding: 14px 20px;
}
.aiseo-price__rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 30px;
}
.aiseo-price__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6px 16px;
}
.aiseo-price__rows .aiseo-price__item + .aiseo-price__item {
  border-left: 1px solid #e3eef6;
}
.aiseo-price__label {
  font-size: 14px;
  font-weight: bold;
  color: #666;
  margin-bottom: 8px;
}
.aiseo-price__amount {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  color: #236eb1;
  letter-spacing: 1px;
}
.aiseo-price__yen {
  font-size: 20px;
  font-weight: bold;
  margin-left: 3px;
}
.aiseo-price__from {
  font-size: 24px;
  color: #00ACEE;
  margin-left: 4px;
}
.aiseo-price__tax {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}
.aiseo-price__spec {
  display: flex;
  justify-content: center;
  max-width: 520px;
  margin: 28px auto 0;
  border-top: 1px solid #e3eef6;
}
.aiseo-price__spec > div {
  flex: 1;
  padding: 20px 10px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.aiseo-price__spec > div + div {
  border-left: 1px solid #e3eef6;
}
.aiseo-price__spec-label {
  font-size: 13px;
  color: #666;
}
.aiseo-price__spec-val {
  font-size: 20px;
  font-weight: bold;
  color: #236eb1;
}
.aiseo-price__notes {
  list-style: none;
  padding: 0;
  margin: 26px auto 0;
  max-width: 580px;
  text-align: left;
}
.aiseo-price__notes li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: #555;
  line-height: 1.9;
}
.aiseo-price__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: #00ACEE;
}

@media only screen and (max-width: 960px) {
  .aiseo-price__rows { grid-template-columns: 1fr; }
  .aiseo-price__rows .aiseo-price__item + .aiseo-price__item {
    border-left: none;
    border-top: 1px solid #e3eef6;
    margin-top: 6px;
    padding-top: 22px;
  }
  .aiseo-price__amount { font-size: 36px; }
  .aiseo-price__spec { flex-direction: column; max-width: 320px; }
  .aiseo-price__spec > div { padding: 16px 10px 0; }
  .aiseo-price__spec > div + div { border-left: none; border-top: 1px solid #e3eef6; }
  .aiseo-price__notes { padding: 0 8px; }
}

/* CTAと締めの黒エリアの間の余白（トップと統一） */
.inline-style-index-032 { margin-top: 90px; }
@media only screen and (max-width: 960px) {
  .inline-style-index-032 { margin-top: 60px; }
}
