/* ==============================
   ベースリセット
============================== */

html {
  -webkit-text-size-adjust: 100%;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}
@media (max-width: 960px) {
  html, body { overflow-x: hidden; }
}

body {
  font-family: "Noto Sans JP", "Noto Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.8;
}

/* twentytwentyfive の余白を消す */
.wp-site-blocks,
.site-main {
  margin: 0 !important;
  padding: 0 !important;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

/* ==============================
   全体ラッパー
============================== */
.wrapper {
  background: #fff;

}

.page-wrapper {
  max-width: 100%;
  margin: 0;
  background: transparent;
  box-shadow: none;
}

/* セクション共通 */
.section {
  padding: 80px 40px;
}
@media (max-width: 960px) {
  .section {
    padding: 64px 20px;
  }
}

.section--pale {
  background: #E5F1FF;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-inner#left {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.section-inner#download {
  max-width: 1000px;
  margin: 0 auto;
  margin-top:80px;
}
@media (max-width: 960px) {
.section-inner#download {
    margin-top:50px;
    max-width: 100%;
  }
}

.sec-label {
  font-family: poppins;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #073CD8;
  margin-bottom: 10px;
  text-align: center;
}

.sec-label#left {
  font-family: poppins;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #073CD8;
  margin-bottom: 10px;
  text-align: left;
}

.sec-label#white {
  font-family: poppins;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 960px) {
  .section-inner,
  .section-inner#left,
  .promise-cards,
  .about-money,
  .feature-grid,
  .section#download {
    width: 100%;
    max-width: 1100px;
  }
}

.sec-title {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 26px;
  text-align: center;
}
@media (max-width: 960px) {
  .sec-title
   { font-size: 28px; }
}

.sec-title#left {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 26px;
  text-align: left;
}
@media (max-width: 960px) {
  #left .sec-title { font-size: 28px !important; }
}

.sec-lead {
  font-size: 16px;
  margin-bottom: 32px;
}

/* ボタン共通 */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  border-radius: 999px;
  background: #073CD8;
  color: #fff !important;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(46, 99, 232, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 5px rgba(46, 99, 232, 0.45);
  opacity: 0.95;
}

.btn-primary a {
  color: #fff !important;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  background: #E5F1FF;
  color: #073CD8;
  margin-bottom: 10px;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: #fff;
  backdrop-filter: blur(16px);
}

.header-inner {
  max-width: 1300px;
  height:80px;
  margin: 0 auto;
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
}
@media (max-width: 960px) {
  .header-inner {
    height:50px;
    padding: 8px 16px;
  }
}


.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-logo-img {
  height: 53px; /* ← ロゴの高さに合わせて調整してOK */
  width: auto;
  display: block;
}
@media (max-width: 960px) {
.header-logo-img {
  height: 33px; 
  }
}


.header-right {
  display: flex;
  align-items: center;
  gap: 26px;
}
@media (max-width: 960px) {
  .header-right {
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e3e9ff;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


.header-nav {
  display: flex;
  align-items: center;
  gap: 35px;
}
@media (max-width: 960px) {
  .header-nav {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
}

.header-nav a {
  color: #000;
  font-size:18px;
  font-weight:bold;
  position: relative;
  padding-bottom: 4px;
}
@media (max-width: 960px) {
  .header-nav a {
    padding: 4px 0;
    font-size:16px;
  }
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 4px;
  background: #073CD8;
  transition: width 0.2s ease;
}

.header-nav a:hover::after {
  width: 100%;
}

.header-cta {
  font-size: 20px;
  font-weight: normal;
  padding: 15px 40px;
  box-shadow: none;
  margin-left:20px;
}
@media (max-width: 960px) {
  .header-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

/* ハンバーガーボタン（PCでは非表示） */
.header-menu-toggle {
  display: none; /* SPでだけ表示するのでデフォルトは非表示 */
  width: 32px;
  height: 32px;
  padding: 6px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
  background: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}
@media (max-width: 960px) {
  .header-menu-toggle {
    display: flex;
  }
}


.header-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #000;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* 開いている時の×印アニメーション */
.header.is-open .header-menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.header.is-open .header-menu-toggle span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header-menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width: 960px) {
  .header.is-open .header-right {
    display: flex;
  }
}



/* ==============================
   ヒーロー（メインビジュアル）
============================== */
html, body {
  width: 100%;
  height: 100%;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;

 padding: 200px 600px 80px 20px; /* ← 左右を狭く */
  /*  上    右   下   左  */

  background: url('../img/hero-main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 960px) {
  .hero {
    padding: 120px 20px 64px;
    background-position: center;
  }
}

.hero-inner {
  max-width: 550px;
  margin: 0 auto;
  gap: 48px;
  align-items: center;
}
@media (max-width: 960px) {
  .hero-inner {
    max-width: 600px;
    margin: 0;
    grid-template-columns: minmax(0, 1fr);
  }
}


.hero-copy-main {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.7;
  margin-bottom: 25px;
}
@media (max-width: 960px) {
  .hero-copy-main { font-size: 26px; }
}
@media (max-width: 676px) {
  .hero-copy-main { font-size: 20px; }

}

.hero-copy-sub {
  font-size: 18px;
    line-height: 2;
  margin-bottom: 70px;
  color: #000;
  text-align: justify;
}
@media (max-width: 960px) {
  .hero-copy-sub  { font-size: 15px; margin-bottom: 32px; }
}
@media (max-width: 676px) {
  .hero-copy-sub  { font-size: 14px; }
}

.hero-copy-sub span {
  display: block;
}
@media (max-width: 676px) {
.hero-copy-sub span { display: inline; }
}

.hero-cta {
  font-size: 20px;
  font-weight: normal;
  padding: 15px 100px;
  box-shadow: none;
  margin-left:20px;
}
@media (max-width: 960px) {
  .hero-cta {
    width: 100%;
    margin-left: 0;
    padding: 16px 0;
    font-size: 18px;
  }
}
@media (max-width: 676px) {
  .header-cta { font-size: 16px; padding: 12px 16px; }
}


/* ==============================
   こんな方におすすめ
============================== */
.trouble-center {
  display: flex;
  justify-content: center; /* ← 中央配置 */
  margin-top: 80px;
}

.trouble-list {
  max-width: 720px; 
  width: 100%;
  padding: 0;
  margin: 0;
}

.trouble-item {
  position: relative;              /* ← 基準 */
  display: flex;
  align-items: flex-start;
  gap: 20px;

  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;

  padding-bottom: 12px;
  margin-bottom: 12px;

  border-bottom: 2px solid #E5F1FF;
}
@media (max-width: 960px) {
  .trouble-item { font-size: 16px; gap: 14px; }
}

/* 四角い枠 */
.trouble-item::before {
  content: "";
  width: 26px;
  height: 26px;

  border: 1px solid #000;
  background: #fff;

  flex-shrink: 0;
  margin-top: 5px;
}

/* はみ出すチェックマーク */
.trouble-item::after {
  content: "✔";

  position: absolute;
  left: 4px;        /* ← 枠の左に合わせる */
  top: -6px;        /* ← 枠の上にはみ出させる */

  font-size: 38px;
  font-weight: 700;
  color: #073CD8 !important;
  line-height: 1;

  pointer-events: none;
}

@media (max-width: 960px) {

  /* 文字✔を消す */
  .trouble-item::after {
    content: "";
  }

  /* スマホ用：チェック線 */
  .trouble-item::after {
        content: "";
        position: absolute;
        left: 14px;
        top: -5px;
        width: 12px;
        height: 30px;
        border-right: 5px solid #073CD8;
        border-bottom: 5px solid #073CD8;
        transform: rotate(45deg);
  }
}


/* ==============================
   ご契約事例（グラフ）
============================== */
.wrap {
  overflow: hidden;
}

.section--pale#cases {
  background: #E5F1FF;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height:auto;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top:150px;

  border-top-left-radius:  1000px 200px;
  border-top-right-radius:  1000px 200px;
  height:auto;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom:250px;
}
@media (max-width: 960px) {
  .section--pale#cases {
    padding-top: 100px;
    border-bottom-left-radius: 1000px 400px;
    border-bottom-right-radius: 1000px 400px;
    border-top-left-radius:  1000px 400px;
    border-top-right-radius:  1000px 400px;
    padding-bottom:150px;
  }
}

/* --- cards layout --- */
.cases-grid {
  max-width: 1100px;
  margin: 0 auto;
  margin-top:80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 70px;
  padding: 0 24px; /* 両端の余白 */
}
@media (max-width: 960px) {
  .cases-grid {
    margin-top:50px;
    grid-template-columns: minmax(0, 1fr);
    gap: 50px;
  }
}

.case-card {
  background: #fff;
  border-radius: 30px;
  padding: 90px 100px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* --- header row (icon + text) --- */
.case-header {
  display: grid;
  grid-template-columns: 240px 1fr; /* 左:人物 / 右:説明 */
  gap: 36px;
  align-items: start;
}

.case-avatar {
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  width: 250px;
}
@media (max-width: 960px) {
.case-avatar {
  width: 100%;
  }
}

.case-avatar img {
  width: 160px;
  height: auto;
  object-fit: contain;
}

.case-avatar span {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
}
@media (max-width: 960px) {
.case-avatar span {
  font-size: 14px;
  }
}

/* --- right text block --- */
.case-title {
  display: block;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.5;
  margin: 6px 0 14px;
  color: #073CD8;
  margin-bottom:20px;
      text-align: justify;
}

/* pills row */
.case-pills {
  display: flex;
  flex-direction: column; /* ← 縦に積む */
  gap: 6px;              /* 行間 */
  margin-bottom: 14px;
}
@media (max-width: 960px) {
  .case-pills {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* pill base */
.case-pill {
  display: flex;
  align-items: center;
  gap: 10px;      /* ラベルと数値の間 */
}
@media (max-width: 960px) {
  .case-pill {
    flex-wrap: wrap;
    row-gap: 6px;
  }
}

/* label: blue capsule */
.case-pill-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: #073CD8;
  color: #fff;
  font-size: 18px;
  width:150px;
  font-weight: normal;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .case-pill-label {
    width: 100px;
    font-size: 14px;
    height: 28px;
    padding: 0 12px;
  }
}

/* value: bold black */
.case-pill-value {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  white-space: nowrap;
}
@media (max-width: 960px) {
  .case-pill-value { font-size: 16px; }
}

.case-desc {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.9;
  color: #000;
  margin: 0;
      text-align: justify;
}
@media (max-width: 960px) {
  .case-desc { 
      font-size: 14px;
      line-height: 1.7;
        font-weight: bold;
   }
}

/* --- graph area --- */
.graph-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.graph-inner {
  min-width: 820px; /* 添付は横長なので少し広め */
}

.graph-inner .graph-img {
  width: 100%;
  height: auto;
  display: block;
}

/* note */
.graph-scroll-note {
  font-size: 15px;
  color: #000;
  margin-top:20px;
  line-height: 1.6;
      text-align: justify;
}
@media (max-width: 960px) {
.graph-scroll-note { font-size: 14px; margin-top:10px; }
}

/* --- responsive --- */
@media (max-width: 900px) {
  .case-card {
    padding: 40px 20px;
    border-radius: 20px;
  }

  .case-header {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .case-avatar {

    text-align: center;
    grid-template-columns: unset;
    align-items: center;
    column-gap: 14px;
  }

  .case-avatar img {
    width: 72px;
  }

  .case-title {
    font-size: 18px;
    margin: 0 0 12px;
  }

  .graph-inner {
    min-width:550px; /* SPは横スクロール前提 */
  }
}


/* ==============================
   ご契約までの流れ
============================== */

.section#flow {
  position: relative;
  overflow: hidden; /* ← 画面からはみ出た分を非表示 */
  padding-top:150px;
  padding-bottom:120px;
}
@media (max-width: 960px) {
.section#flow {
  padding-top:80px;
  padding-bottom:150px;
  }
}

.flow-layout {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;

  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  margin-top:80px;
  padding-left:50px;
}
@media (max-width: 960px) {
  .flow-layout {
    grid-template-columns: 1fr;
     margin-top:50px;
    padding-left: 0;
  }
}

.flow-list{
  list-style: none; 
  padding-left: 0;
  margin: 0;
  counter-reset: flow;
}

.flow-item{
  position: relative;
  padding-left: 110px;
  margin-bottom: 70px; 
    display: flex;  
  align-items: center;  
  font-size: 20px;
  font-weight: 700;
  line-height: 1.7;
}
@media (max-width: 960px) {
  .flow-item { padding-left: 70px; font-size: 16px; margin-bottom: 44px; }
}


/* 青丸（01/02…） */
.flow-item::before{
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);

  width: 74px;
  height:74px;
  border-radius: 999px;
  background: #073CD8;
  color: #fff;

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

  font-size:29px;
}
@media (max-width: 960px) {
  .flow-item::before { width: 56px; height: 56px; font-size: 20px; }
}

/* 縦線 */
.flow-item::after{
  content: "";
  position: absolute;

  left: 36px;        /* 丸のど真ん中（56px / 2） */
  top: 30px;         /* 丸の下端からスタート */

  width:6px;
  height: calc(100% + 40px); /* ← margin-bottom と同じ値 */
  background: #073CD8;
  border-radius: 999px;
}
@media (max-width: 960px) {
  .flow-item::after  { left: 27px; width: 5px; top: 40px; height: calc(100% + 26px); }
}

/* 最後だけ線を消す */
.flow-item:last-child::after{
  display: none;
}


.flow-image {
  position: absolute;

  /* 中央基準で固定 */
  left: 55%;
  top: 30%;

  /* 中央から右下へずらす量（デザイン基準） */
  transform: translate(120px, 120px);

  width: 730px;
  height: 730px;

  background-image: url('../img/flow-img.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;

  pointer-events: none; /* 操作に影響させない */
}
@media (max-width: 960px) {
  .flow-image {
    left: 34%;
    top: 72%;
    transform: none;
    width: 100%;
    height: 250px;
    margin: 24px auto 0;
    margin-top: 24px;
  }
}


/* ==============================
   資料を見て得られること
============================== */
.section#promise {
  padding-top:150px;
  padding-bottom:180px;
}
@media (max-width: 960px) {
.section#promise {
  padding-top:90px;
  padding-bottom:100px;
  }
}

.promise-cards {
  width:1100px;
  margin:0 auto;
  margin-top:80px;
}
@media (max-width: 960px) {
  .promise-cards{
    width: 100%;
    padding: 0;
    margin-top:50px;
  }
}

.promise-card {
  background: #fff;
  padding: 40px 120px;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 50px;

  border-radius: 0;          /* ← デフォルトは角丸なし */
  box-shadow: none;          /* ← 影もなし */
}
@media (max-width: 960px) {
  .promise-card {
    grid-template-columns: 1fr;   /* 2列→1列 */
    gap: 12px;
    padding: 20px 16px;
    text-align: justify;
  }
}

.promise-card + .promise-card {
  border-top: 4px solid #E5F1FF;
}

.promise-card:first-child {
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.promise-card:last-child {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}

/* 右側テキストブロック */
.promise-content {
  padding-left: 24px;                 /* 線と文字の間隔 */
}
@media (max-width: 960px) {
  .promise-content{
    padding-left: 0;              /* 左の余白リセット */
  }
}

/* アイコン */
.promise-icon {
  height: 90px;
  width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
  .promise-icon{
    width: 56px;
    height: 56px;
    justify-self: center;
    margin-top:10px;
  }
}

.promise-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* テキスト */
.promise-title {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 6px;
  color: #073CD8;
}
@media (max-width: 960px) {
  .promise-title { font-size: 18px; margin-bottom: 4px; line-height: 1.7; }
}

.promise-text {
  font-size: 18px;
  line-height: 1.8;
  font-weight: bold;
  color: #000;
}
@media (max-width: 960px) {
  .promise-text  { font-size: 14px; margin-bottom:10px; }
}


/* ==============================
   香港保険とは？
============================== */
.section#about-money {
  position: relative;
  overflow: hidden;
  padding-top:150px;
  padding-bottom:180px;
}
@media (max-width: 960px) {
  .section#about-money {
  padding-top:100px;
  padding-bottom:80px;
  }
}

.about-money-image{
  position: absolute;

  left: 65%;
  top: -10%;

  width: 750px;
  height: 750px;

  background-image: url('../img/about-img.png');
  background-size: contain; 
  background-position: center;
  background-repeat: no-repeat;

  z-index: 0;
}
@media (max-width: 960px) {
  .about-money-image {
    left: 55%;
    top: -5%;
    width: 310px;
    height:310px;
    margin: 24px auto 0;
  }
}

.about-money{
  width:1100px;
  margin:80px auto 0;
  position: relative;
  z-index: 1;         /* テキストを前面に */
}
@media (max-width: 960px) {
  .about-money {
    width:100%;
      margin:50px auto 0;
    grid-template-columns: minmax(0, 1fr);
  }
}

.about-money-text{
  position: relative;
  z-index: 1;

  width: 58%;
  font-size: 18px;
  font-weight: bold;
  line-height: 2.1;
  text-align: justify;
}
@media (max-width: 960px) {
  .about-money-text {
    width: 100%;
    font-size: 15px;
    line-height: 2.0;
  }
}


/* 比較表 */
.about-money-badge {
  display: inline-flex;
  margin-top:100px;
  background-color: #E5F1FF;
  padding:15px 40px;
  font-size: 20px;
  color: #000;
  border-radius: 999px;
}
@media (max-width: 960px) {
.about-money-badge {
    margin-top:50px;
    padding:10px 20px;
    font-size: 16px;
  }
}


/* テーブル画像 */

.compare-table-wrapper{
  margin-top: 60px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;

  padding: 0;
  background: transparent;
  box-shadow: none;
}

.compare-table-img{
  display: block;
  height: auto;

  width: 1100px; 
  max-width: none; 
}
@media (max-width: 960px) {
.compare-table-img {
      width: 800px; 
  }
}

/* 表下部の文章 */
.compare-table-note {
  font-size: 20px;
  width:90%;
  margin:0 auto;
    margin-top:40px;
      text-align: justify;
}
@media (max-width: 960px) {
.compare-table-note {
      font-size: 15px;
      width:100%;
  }
}

.compare-table-note span {
  font-weight: bold;
}


/* ==============================
   香港保険の主な特徴
============================== */

.wrap {
  overflow: hidden;
}

.section--pale#features {
  background: #E5F1FF;
  border-bottom-left-radius: 1000px 200px;
  border-bottom-right-radius: 1000px 200px;
  height:auto;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-top:150px;

  border-top-left-radius:  1000px 200px;
  border-top-right-radius:  1000px 200px;
  height:auto;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom:250px;
}
@media (max-width: 960px) {
  .section--pale#features {
    padding-top: 100px;
    border-bottom-left-radius: 1000px 400px;
    border-bottom-right-radius: 1000px 400px;
    border-top-left-radius:  1000px 400px;
    border-top-right-radius:  1000px 400px;
    padding-bottom:100px;
  }
}

.feature-grid {
  width:1100px;
  margin:80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center; 
  gap: 25px;
}
@media (max-width: 960px) {
  .feature-grid { 
      width:90%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
        margin: 50px auto 0;
  }
}

.feature-grid > * {
  width: calc((1100px - 25px * 2) / 3);
}
@media (max-width: 960px) {
  .feature-grid > * { width: 100%; }
}


.feature-card {
  background: #fff;
  border-radius: 15px;
  padding: 40px 40px;
  text-align: center;
}
@media (max-width: 960px) {
  .feature-card { padding:15px 15px 25px 15px;  }
}

.feature-icon {
  width: 200px;  
  height: auto;
  margin: 0 auto 16px;

  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 960px) {
 .feature-icon {   width: 150px;   }
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
    margin-bottom: 10px;
}
@media (max-width: 960px) {
.feature-icon img  {  margin-bottom: 0px; }
}

.feature-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.4;
  color: #073CD8;
}
@media (max-width: 960px) {
  .feature-title { font-size: 18px; }
}

.feature-text {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  text-align: justify;
}
@media (max-width: 960px) {
  .feature-text  { font-size: 14px; }
}




/* ==============================
   選ばれる3つの理由
============================== */

.section#reasons{
  max-width: none;
  margin: 0;
  padding-top:150px;
  padding-bottom:180px;
  overflow: hidden; /* はみ出した画像は切る（横スクロール防止） */
}
@media (max-width: 960px) {
  .section#reasons {
  padding-top:80px;
  padding-bottom:80px;
  }
}

.section#reasons .section-inner{
  max-width: 1100px;
  margin: 0 auto;
}

/* 共通：左テキスト / 右画像 */
.reason-block{
  display: grid;
  grid-template-columns: 510px minmax(0,1fr);
  align-items: center;
  gap: 40px;
  padding: 48px 0;
  position: relative;
}
@media (max-width: 960px) {
  .reason-block {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }
}


.reason-block:first-of-type{
  border-top: none;
}


.reason-block:first-of-type{
  border-top: none;
}

/* 01・03（デフォルト） */
.reason-block > div:first-child{
  order: 2; /* テキストを右 */
}
@media (max-width: 960px) {
  .reason-block > div:first-child {
    order: 1 !important; /* テキスト */
  }
}

.reason-block .reason-image{
  order: 1; /* 画像を左 */
}
@media (max-width: 960px) {
  .reason-block .reason-image {
    order: 2 !important; /* 画像 */
    margin-top: 12px;
  }
}

/* 02だけ通常順に戻す */
.reason-block.is-reverse > div:first-child{
  order: 1; /* テキスト左 */
}

.reason-block.is-reverse .reason-image{
  order: 2; /* 画像右 */
}


.reason-number {
  font-family: "poppins";
  font-size:80px;
  font-weight:bold;
  color:#073CD8;
}
@media (max-width: 960px) {
  .reason-number { font-size: 45px; }
}

.reason-title {
  font-size:28px;
  font-weight:bold;
  color:#073CD8;
  margin-bottom:20px;
}
@media (max-width: 960px) {
  .reason-title  { font-size: 18px; margin-bottom:10px; }
}


.reason-text {
  font-size:18px;
  font-weight:bold;
  color:#000;
  text-align: justify;
}
@media (max-width: 960px) {
  .reason-text   { font-size: 14px; }
}


/* ===== 画像 ===== */
.reason-image{
  height: 380px;
  width: 670px;              /* ここが基準幅 */
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
@media (max-width: 960px) {
  .reason-image {
    width: 100%;
    height: 200px;
    margin: 0 !important;
    margin-bottom: 30px !important;
    order: -1;
    grid-column: auto !important;
    order: 2 !important;
    background-size: contain !important;
  }
}

/* 01/03（画像が左）＝左端まで引っ張る */
.reason-block:not(.is-reverse) .reason-image{
  grid-column: 1;
  margin-left: calc(50% - 50vw); /* 画面の左端まで */
}

.reason-block:not(.is-reverse) .reason-image{
  margin-left: -180px;   /* ← 画像みぎ */
}
.reason-block.is-reverse .reason-image{
  margin-right: -180px;  /* ← 画像ひだり */
}

.reason-block.is-reverse > div:first-child{
  grid-column: 1; /* テキスト左 */
}

.reason-block.is-reverse .reason-image{
  grid-column: 2; 
  margin-right: calc(50% - 50vw); /* 画面の右端まで */
  margin-left: 0;
}

@media (max-width: 960px) {
  .reason-block:not(.is-reverse) .reason-image,
  .reason-block.is-reverse .reason-image {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}



/* 画像パス（消さない） */
.reason-image--01{
  background-image: url('../img/reason01.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reason-image--02{
  background-image: url('../img/reason02.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.reason-image--03{
  background-image: url('../img/reason03.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* ==============================
   FAQ
============================== */

.section#faq {
  background: #E5F1FF;
  padding-top:150px;
  padding-bottom:300px;

  border-bottom-left-radius:  1000px 200px;
  border-bottom-right-radius:  1000px 200px;
  height:auto;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom:350px;
}
@media (max-width: 960px) {
  .section#faq {
    padding-top: 80px;
    border-bottom-left-radius: 1000px 400px;
    border-bottom-right-radius: 1000px 400px;
    padding-bottom:200px;
  }
}


.faq-list {
  max-width: 1100px;
  margin: 80px auto 0;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 24px;
}
@media (max-width: 960px) {
  .faq-list {
    margin-top: 0px;
    padding-top: 30px;
    width:90%;
    max-width:90%;
  }
}

.faq-item{
  background:#fff;
  border-radius:30px;
  padding:25px 50px;
}
@media (max-width: 960px) {
  .faq-item { padding: 18px 18px; border-radius: 20px; }
}


.faq-question{
  font-weight:700;
  font-size:25px;
  color: #073CD8;
  line-height: 1.2;
}
@media (max-width: 960px) {
  .faq-question { font-size: 16px; line-height: 1.7; }
}

.faq-q-label {
  font-size:40px;
  margin-right:15px;
}
@media (max-width: 960px) {
  .faq-q-label  { font-size: 28px; margin-right: 10px; display: block; }
}

.faq-answer{
  font-weight:700;
  margin-left:50px;
  font-size:18px;
  color:#000;
    line-height: 1.2;
}
@media (max-width: 960px) {
  .faq-answer   { margin-left: 0; font-size: 14px; line-height: 1.6; }
}

.faq-answer span{
  font-size:40px;
  margin-right:15px;
  color: #073CD8;
}
@media (max-width: 960px) {
  .faq-answer span { font-size: 28px; margin-right: 10px; display: block; }
}




/* ==============================
   資料ダウンロード
============================== */
.section#download {
  width:1200px;
  margin:0 auto;
  background: #073CD8;
  border-radius: 100px;
  padding: 120px 50px;
  color: #fff;
  text-align: left;
  margin-top:-300px;
}
@media (max-width: 960px) {
  .section#download {
    width:100%;
    border-radius: 30px;
    padding: 56px 15px;
    margin-top:-200px;
  }
}

.download-form p {
  margin: 0;
}



.download-title {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}

.download-form {
  background: #fff;
  border-radius: 30px;
  padding: 70px;
  color: #222;
  display: grid;
  gap: 14px;
}
@media (max-width: 960px) {
  .download-form { padding: 24px 16px; border-radius: 20px; }
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
}

.form-row label {
  font-weight: 700;
  color:#073CD8;
  font-size: 16px;
}

.form-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 56px;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 8px;
}

.form-row span.required {
  color: #e03c3c;
  font-size: 11px;
  margin-left: 6px;
}

.form-row input,
.form-row select,
.form-row textarea {
  border-radius: 10px;
  border: 2px solid #E5F1FF;
  padding: 15px 15px;
  font-size: 13px;
  font-family: inherit;
  width:100%;
}


.form-note {
  font-size: 11px;
  color: #666;
}

.download-submit {
  text-align: center;
  margin-top: 8px;
}
@media (max-width: 960px) {
  .download-submit {  margin-top:0px; }
}

.btn-download {
  width: 400px;
  padding: 20px 0;
  border-radius: 999px;
  border: none;
  background: #073CD8;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  margin-top:40px;
}
@media (max-width: 960px) {
  .btn-download  { width: 100%;  margin-bottom:30px; font-size: 18px; }
}

.download-form .wpcf7-checkbox .wpcf7-list-item label{
  display: inline-flex;
  align-items: center;
  gap: 10px;            /* ボックスと文字の間 */
  font-weight: 400;     /* 太字解除 */
      color: #000 !important;
}

/* CF7が持ってる変な余白を消す */
.download-form .wpcf7-checkbox .wpcf7-list-item{
  margin: 0 24px 0 0;
}
.download-form .wpcf7-checkbox .wpcf7-list-item label span{
  margin: 0;
}

/* チェックボックスを大きく＆色指定 */
.download-form .wpcf7-checkbox input[type="checkbox"]{
  width: 20px;          /* ←大きさ */
  height: 20px;
  margin: 0;
  accent-color: #073CD8; /* チェック色を青に */
  background: #fff;      /* 箱を白に（対応ブラウザで反映） */
}

.download-form .wpcf7-checkbox {
  margin-top: 10px;
}


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

.footer {
  padding: 24px 16px 15px;
  text-align: center;
  font-size: 11px;
  color: #000;
}

.footer-logo {
  display: flex;
  justify-content: center; /* 中央配置 */
  margin-top:50px;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 255px;
    height: auto;  
  display: block;
}
@media (max-width: 960px) {
 .footer-logo-img { width:200px; }
}

.footer-moji-1 {
  color:#4C4C4D;
  font-size:9px;
  margin-top:40px;
}

.footer-moji-2 {
    color:#4C4C4D;
  font-size:12px;
}
@media (max-width: 960px) {
.footer-moji-2 { font-size:14px;  }
}

.footer-moji-3 {
    color:#4C4C4D;
  font-size:16px;
  display: inline-block;
  margin:5px;
    margin-top:30px;
}
@media (max-width: 960px) {
.footer-moji-3 { font-size:14px; }
}

.footer-moji-3 a:hover {
   opacity: 0.7;
}






html {
  overflow-x: clip;           /* 横はみ出しを見せない（新しめ） */
  scrollbar-gutter: stable;   /* 縦スクロールバー領域を固定 */
}




/* ================================================================
   サンクスページ
================================================================ */
.thanks#thanks {
  padding-top:200px;
  padding-bottom:150px;
  background:#E5F1FF;
  height:auto;
}
@media (max-width: 960px) {
.thanks#thanks { 
    padding-top:150px;
    padding-bottom:100px;
 }
}


.thanks-inner {
  text-align: center;
  padding-top:50px;
}
@media (max-width: 960px) {
.thanks-inner { 
  width:90%;
  margin:0 auto;
  padding-top:30px;
 }
}

.thanks-copy-main {
  font-size:25px;
  color: #073CD8;
  font-weight: bold;
}
@media (max-width: 960px) {
.thanks-copy-main { 
  text-align: justify;
    font-size:22px;
  line-height:1.7;
 }
}

.thanks-copy-sub {
  font-size:18px;
  color: #000;
  font-weight: bold;
  padding-top:30px;
  padding-bottom:50px;
}
@media (max-width: 960px) {
.thanks-copy-sub { 
  text-align: justify;
  font-size:16px;
  line-height:1.7;
    padding-top:20px;
  padding-bottom:30px;
 }
}

.thanks-size {
  font-size:14px;
  color: #000;
  padding-top:10px;
}





/* ================================================================
   個人情報保護方針・利用規約
================================================================ */
.privacy#privacy {
  padding-top:200px;
  padding-bottom:150px;
  background:#E5F1FF;
  height:auto;
}
@media (max-width: 960px) {
.privacy#privacy { 
    padding-top:150px;
    padding-bottom:100px;
 }
}


.privacy-inner {
  padding-top:50px;
  width:90%;
  max-width:1100px;
  margin:0 auto;
}
@media (max-width: 960px) {
.privacy-inner { 
  width:90%;
  padding-top:30px;
 }
}


.privacy-moji-1 {
  font-size:18px;
  color: #000;
  text-align: justify;
}
@media (max-width: 960px) {
.privacy-moji-1 { 
  font-size:16px;
  line-height:1.7;
 }
}

.privacy-moji-2 {
  font-size:23px;
  color: #073CD8;
  font-weight: bold;
  text-align: justify;
  padding-top:40px;
  padding-bottom:10px;
}
@media (max-width: 960px) {
.privacy-moji-2 { 
  text-align: justify;
  font-size:22px;
  line-height:1.7;
 }
}

.privacy-moji-3 {
  font-size:18px;
  color: #000;
  text-align: justify;
}
@media (max-width: 960px) {
.privacy-moji-3 { 
  font-size:16px;
  line-height:1.7;
 }
}

.privacy-moji-4 {
  font-size:18px;
  color: #000;
  padding-top:50px;
  text-align: justify;
}
@media (max-width: 960px) {
.privacy-moji-4 { 
  font-size:16px;
  line-height:1.7;
    padding-top:20px;
  padding-bottom:30px;
 }
}