@charset "UTF-8";

/* =========================
   全体設定
========================= */

/* ページ全体の文字・背景・行間を設定 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #243040;
  background-color: #f7f9fc;
  line-height: 1.8;
}

/* リンクの下線を消す */
a {
  color: inherit;
  text-decoration: none;
}

/* リストの黒い点を消す */
ul {
  list-style: none;
}


/* =========================
   ヘッダー
========================= */

.header {
  width: 100%;

  /* 上に固定する */
  position: fixed;
  top: 0;
  z-index: 10;

  /* 半透明の白にする */
  background-color: rgba(255, 255, 255, 0.85);

  /* 背景をぼかして今っぽくする */
  backdrop-filter: blur(12px);

  /* 下にうっすら線を入れる */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* ヘッダーの中身を横並びにする */
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.logo {
  font-size: 20px;
  font-weight: 700;
  color: #174c7c;
  letter-spacing: 0.04em;
}

/* ナビを横並びにする */
.nav ul {
  display: flex;
  gap: 28px;
}

/* ナビの文字 */
.nav a {
  font-size: 14px;
  font-weight: 500;
}

/* マウスを乗せた時 */
.nav a:hover {
  color: #2b7fc3;
}


/* =========================
   メインビジュアル
========================= */

.hero {
  padding: 100px 24px 90px;

  /* 丸い光＋グラデーション背景 */
  background:
    radial-gradient(circle at top right, #d8ebff 0%, transparent 35%),
    linear-gradient(135deg, #f7fbff 0%, #eef5fb 100%);
}

/* メインビジュアルの中身を横並びにする */
.hero-inner {
  max-width: 1120px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  gap: 60px;
}

/* 左側テキスト */
.hero-text {
  flex: 1;
}

/* 小さいラベル */
.hero-label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 6px 16px;

  background-color: #e3f1ff;
  color: #2b7fc3;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
}

/* メインコピー */
.hero h2 {
  margin-bottom: 24px;

  font-size: 46px;
  line-height: 1.35;
  color: #12395c;
}

/* メイン説明文 */
.hero-lead {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: 17px;
  color: #526274;
}

/* ボタン2つを横並びにする */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* メインボタン */
.btn {
  display: inline-block;
  padding: 14px 32px;

  background: linear-gradient(135deg, #2b7fc3, #174c7c);
  color: #fff;
  border-radius: 999px;

  font-weight: 700;
  box-shadow: 0 12px 24px rgba(43, 127, 195, 0.25);
}

/* ボタンにマウスを乗せた時 */
.btn:hover {
  transform: translateY(-2px);
}

/* サブボタン */
.btn-sub {
  display: inline-block;
  padding: 14px 32px;

  background-color: #fff;
  color: #174c7c;
  border-radius: 999px;

  font-weight: 700;
  border: 1px solid #d7e4ef;
}

/* 右側まとめ */
.hero-right {
  width: 360px;
}

/* メイン画像 */
.hero-image img {
  width: 100%;
  height: 240px;

  /* はみ出た部分をトリミング */
  object-fit: cover;

  border-radius: 28px;
  margin-bottom: 14px;

  box-shadow: 0 24px 60px rgba(31, 78, 121, 0.15);
}

/* 右側のお悩みカード */
.hero-card {
  width: 360px;
  padding: 36px;

  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 28px;

  box-shadow: 0 24px 60px rgba(31, 78, 121, 0.15);
}

/* カード内の小さいラベル */
.card-label {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;

  background-color: #fff4d8;
  color: #a86b00;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
}

.hero-card h3 {
  margin-bottom: 18px;
  color: #12395c;
}

/* お悩みリスト */
.hero-card li {
  margin-bottom: 10px;
  padding-left: 24px;
  position: relative;
}

/* リストの前にチェックマークをつける */
.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2b7fc3;
  font-weight: bold;
}


/* =========================
   共通セクション
========================= */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 90px 24px;
}

/* 英語の小見出し */
.section-label {
  text-align: center;
  color: #2b7fc3;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* セクションタイトル */
.section-title {
  margin: 8px 0 16px;
  text-align: center;
  font-size: 34px;
  color: #12395c;
}

/* セクション説明文 */
.section-lead {
  margin-bottom: 44px;
  text-align: center;
  color: #526274;
}


/* =========================
   サービス
========================= */

.service-list {
  display: grid;

  /* 横3列にする */
  grid-template-columns: repeat(3, 1fr);

  gap: 24px;
}

/* サービスカード */
.service-card {
  padding: 34px;

  background-color: #fff;
  border-radius: 24px;

  box-shadow: 0 16px 40px rgba(31, 78, 121, 0.08);
}

/* 01、02、03の四角 */
.icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  background-color: #e3f1ff;
  color: #2b7fc3;
  border-radius: 16px;

  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 14px;
  color: #12395c;
}

.service-card p {
  color: #526274;
}


/* =========================
   選ばれる理由
========================= */

.reason-section {
  max-width: none;
  background-color: #ffffff;
}

/* 選ばれる理由の中身 */
.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

.reason-title-box {
  text-align: center;
  margin-bottom: 48px;
}

.reason-title-box .section-label {
  text-align: center;
  color: #2b7fc3;
}

/* 左側だけ英語見出しを左寄せ */
.reason-title-box p {
  color: #526274;
}

/* 選ばれる理由の画像 */
.reason-image {
  max-width: 900px;
  margin: 40px auto 48px;
}

.reason-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(31, 78, 121, 0.12);
}

/* 理由カード */
.reason-item {
  min-height: 160px;
  padding: 34px;

  background-color: #fff;
  border-radius: 24px;

  box-shadow: 0 16px 40px rgba(31, 78, 121, 0.08);
}

.reason-item h3 {
  margin-bottom: 8px;
  color: #12395c;
}

.reason-item p {
  color: #526274;
}


/* =========================
   料金
========================= */

.price-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* 料金カード */
.price-card {
  position: relative;
  padding: 36px 28px;
  text-align: center;

  background-color: #fff;
  border-radius: 24px;
  border: 1px solid #e6edf5;

  box-shadow: 0 16px 40px rgba(31, 78, 121, 0.08);
}

.price-card h3 {
  color: #12395c;
}

/* 料金の文字 */
.price {
  margin: 20px 0 12px;
  font-size: 26px;
  font-weight: 700;
  color: #2b7fc3;
}

/* おすすめカードだけ青い線をつける */
.popular {
  border: 2px solid #2b7fc3;
}

/* おすすめラベル */
.popular-label {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);

  padding: 5px 18px;

  background-color: #2b7fc3;
  color: #fff;
  border-radius: 999px;

  font-size: 13px;
  font-weight: 700;
}

/* 各説明文 */
.price-text {
  margin-top: 16px;
  color: #526274;
  line-height: 1.7;
  font-size: 14px;
}


/* =========================
   お問い合わせ
========================= */

.contact {
  margin: 40px 24px 0;
  padding: 80px 24px;
  text-align: center;

  background: linear-gradient(135deg, #174c7c, #2b7fc3);
  color: #fff;
  border-radius: 36px 36px 0 0;
}

/* Contactの小さい文字 */
.contact-label {
  font-weight: 700;
  letter-spacing: 0.08em;
}

.contact h2 {
  margin: 8px 0 16px;
  font-size: 34px;
}

.contact p {
  margin-bottom: 32px;
}

/* お問い合わせボタン */
.contact-btn {
  display: inline-block;
  padding: 14px 36px;

  background-color: #fff;
  color: #174c7c;
  border-radius: 999px;

  font-weight: 700;
}


/* =========================
   フッター
========================= */

.footer {
  padding: 32px 24px;
  text-align: center;

  background-color: #12395c;
  color: #fff;
}

.footer p {
  font-weight: 700;
}


/* =========================
   スマホ対応   ・768px以下
========================= */

@media screen and (max-width: 768px) {

  /* ヘッダーを縦並びにする */
  .header-inner {
    flex-direction: column;
    gap: 12px;
  }

  /* ナビを折り返せるようにする */
  .nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  /* 固定ヘッダーと重ならないように余白を増やす */
  .hero {
    padding-top: 190px;
  }

  /* 幅100% */
  .hero-right {
    width: 100%;
  }

  /* メインビジュアルを縦並びにする */
  .hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  /* スマホでは見出しを小さくする */
  .hero h2 {
    font-size: 32px;
  }

  /* 右側カードを画面幅いっぱいにする */
  .hero-card {
    width: 100%;
  }

  /* サービスと料金を1列にする */
  .service-list,
  .price-list,
  .reason-list {
    grid-template-columns: 1fr;
  }

  /* スマホでは左寄せタイトルを中央に戻す */
  .reason-title-box .section-label {
    text-align: center;
    color: #2b7fc3;
  }

  /* お問い合わせエリアの余白調整 */
  .contact {
    margin: 20px 16px 0;
    border-radius: 28px 28px 0 0;
  }

  .contact h2 {
    font-size: 28px;
  }
}