@charset "utf-8";
/* CSS Document */
.titlebox1.titlebox2 > div {
  position: relative;
  display: inline-flex; /* ← inline-block から変更 */
  align-items: center;
  gap: 10px;
}
.cate1 .boxwrap1 {
  max-width: 1280px;
}
.cate1 .boxwrap1 .imgbox {
  display: flex;
  align-items: flex-end; /* 下揃え */
  position: relative;
}
/* メイン画像 */
.cate1 .boxwrap1 .imgbox .img1 {
  width: 70%;
  max-height: 500px;
  aspect-ratio: 4 / 6;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
  z-index: 1;
}
/* サブ画像（relativeのまま） */
.cate1 .boxwrap1 .imgbox .img2 {
  width: 46%;
  aspect-ratio: 12 / 13;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .35);
  background: #fff;
  /* ← ここが肝 */
  margin-left: -18%;
  margin-bottom: -20%;
  z-index: 2;
}
@media (max-width: 1080px) {
  .cate1 .boxwrap1 {
    flex-direction: column;
  }
  .cate1 .boxwrap1 .imgbox .img1 {
    width: 70%;
    max-height: 450px;
  }
}
.cate2 {
  background: #4F97C8;
}
.cate2 .titlebox1 .section_en_title {
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.15);
}
.cate2 .boxwrap1 .imgbox {
  position: relative;
  flex: 0 0 30%;
  max-width: 400px;
}
.cate2 .boxwrap1 .imgbox img {
  aspect-ratio: 1/ 1;
}
.cate2 .boxwrap1 {
  gap: clamp(24px, 3vw, 60px);
  background: #fff;
  padding: clamp(28px, 4vw, 40px) clamp(24px, 5vw, 44px);
  border-radius: 10px;
  max-width: 1280px;
}
.use_wrap {
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(40px, 8vw, 80px);
  background: #FFF;
  border-radius: 10px;
  max-width: 1280px;
  margin: auto;
}
.use_wrap .use_inner {
  max-width: 1000px;
}
/* 上段：左（ラベル）＋右（画像） */
.use_wrap .use_top {
  display: flex;
  gap: 30px;
  align-items: center;
}
.use_wrap .use_left {
  width: clamp(200px, 26vw, 260px);
  position: relative;
}
.use_wrap .use_right {
  flex: 1;
}
/* ラベル＋線＋点 */
.use_wrap .use_label_item {
  position: relative;
  padding-right: 40px;
  z-index: 5;
}
.use_wrap .use_label_item + .use_label_item {
  margin-top: 10px;
}
.use_wrap .use_label {
  border-radius: 16px;
  padding: 22px 18px;
  text-align: center;
  background: #01418E;
  color: #fff;
}
/* 線の長さ（画像側まで伸ばす） */
.use_wrap .use_label_item {
  --line_len: 180px;
}
/* 点線（スクショっぽく） */
.use_wrap .use_line {
  position: absolute;
  top: 50%;
  left: calc(100% - 50px);
  width: var(--line_len);
  transform: translateY(-50%);
  border-top: 2px dotted #01418E;
}
/* 画像上の丸点 */
.use_wrap .use_dot {
  position: absolute;
  top: 50%;
  left: calc(100% - 50px + var(--line_len) - 6px);
  width: 12px;
  height: 12px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: #01418E;
}
/* imgbox */
.use_wrap .imgbox {
  width: 100%;
}
.use_wrap .imgbox img {
  width: 100%;
  display: block;
  border-radius: 12px;
}
/* 下段テキスト */
.use_wrap .use_bottom {
  margin-top: 26px;
}
.use_wrap .txtbox {
  max-width: 900px;
}
.use_wrap .txtbox .default_txt2 {
  margin-top: 14px;
  line-height: 1.9;
  text-align: left;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
/* レスポンシブ */
@media (max-width: 1080px) {
  .use_wrap .use_left {
    display: none;
  }
}
.cate4 .lead_badge p {
  text-align: center;
}
.cate4 .step_row {
  display: flex; /* 保険 */
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  flex-wrap: nowrap;
}
/* カード */
.cate4 .step_row .merit_card {
  width: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* STEP表示 */
.cate4 .step_row .num {
  text-align: center;
  margin-bottom: 10px;
}
.cate4 .step_row .num .ubuntu {
  line-height: 1.1;
}
/* 画像 */
.cate4 .step_row .imgbox {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.cate4 .step_row .imgbox img {
  width: 100%;
  display: block;
}
/* テキスト */
.cate4 .step_row .merit_txt {
  margin-top: 10px;
  text-align: center;
  line-height: 1.6;
}
/* 矢印 */
.cate4 .step_row .compare_arrow {
  margin-top: 150px; /* STEP＋画像中央に合わせる */
  line-height: 1;
  user-select: none;
  color: #01418E;
}
.cate4 .step_row .merit_card:nth-of-type(1) {
  animation-delay: 0s;
}
.cate4 .step_row .merit_card:nth-of-type(2) {
  animation-delay: 0.2s;
}
.cate4 .step_row .merit_card:nth-of-type(3) {
  animation-delay: 0.4s;
}
.cate4 .step_row .merit_card:nth-of-type(4) {
  animation-delay: 0.6s;
}
.cate4 .step_row .merit_card:nth-of-type(5) {
  animation-delay: 0.8s;
}
@media (max-width: 1080px) {
  .cate4 .step_row {
    flex-wrap: wrap;
  }
  .cate4 .step_row .merit_card {
    width: calc(33.333% - 12px);
  }
  .cate4 .step_row .compare_arrow {
    display: none;
  }
  .cate4 .step_row .merit_card:nth-of-type(4) {
    animation-delay: 0s;
  }
  .cate4 .step_row .merit_card:nth-of-type(5) {
    animation-delay: 0.2s;
  }
}
@media (max-width: 576px) {
  .cate4 .step_row .imgbox {
    max-width: 300px;
    width: 90%;
  }
  .cate4 .step_row {
    flex-direction: column;
    align-items: center;
  }
  .cate4 .step_row .merit_card {
    width: 100%;
    max-width: 360px; /* 広がりすぎ防止（不要なら消してOK） */
  }
  /* 矢印を縦向きに回転 */
  .cate4 .step_row .compare_arrow {
    display: block; /* 768で消してた場合の復帰 */
    transform: rotate(90deg);
    margin: 12px 0;
  }
  .cate4 .step_row .merit_card:nth-of-type(2) {
    animation-delay: 0s;
  }
  .cate4 .step_row .merit_card:nth-of-type(3) {
    animation-delay: 0s;
  }
  .cate4 .step_row .merit_card:nth-of-type(4) {
    animation-delay: 0s;
  }
  .cate4 .step_row .merit_card:nth-of-type(5) {
    animation-delay: 0s;
  }
}
.cate5 {
  background: #EDEFF2;
}
.cate5 .spec_wrap {
  background: #fff;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
}
.cate5 .spec_scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x pan-y; /* ← スマホで横スクロールしやすく */
}
.cate5 .spec_table {
  min-width: 900px;
  background: #fff;
  border-radius: 6px;
}
/* 行：左見出し＋3列 */
.cate5 .spec_row {
  display: grid;
  grid-template-columns: 90px 1fr 1fr 1fr 1fr 1fr;
  /*
  grid-template-columns: 180px 1fr 1fr 1fr 1fr 1fr;
  grid-template-columns: 180px 1fr 1fr 1fr;
  */
}
/* セル */
.cate5 .spec_cell {
  border-right: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
  padding: 0px;
  /*
  padding: 18px 14px;
  */
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cate5 .spec_cell:not(.head) {
  min-width: 160px;
}
/*
.cate5 .spec_cell:not(.head) {
  min-width: 327px;
}
*/
.cate5 .spec_cell.head {
  position: sticky;
  left: 0;
  z-index: 5; /* ← 白セルの上に来るように */
  background: #4f95c9; /* ← 透け防止（必須） */
  color: #fff;
  font-weight: 700;
  border-right: 1px solid #e3e6ea; /* 固定列の右罫線を維持 */
}
.cate5 .spec_cell:last-child {
  border-right: none;
}
/* 左見出し */
.cate5 .spec_cell.head {
  background: #4f95c9;
  color: #fff;
  font-weight: 700;
}
/* img */
.cate5 .imgbox img {
  width: auto;
  height: 90px;
  display: block;
  margin: 0 auto;
}
/* p */
.cate5 .spec_cell p {
  margin: 0;
  text-align: center;
  line-height: 1.6;
}
.cate5 .spec_cell p + p {
  margin-top: 4px;
}
/* セル内 2カラム（900 / 1200） */
.cate5 .spec_split {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.cate5 .spec_split_cell {
  padding: 12px 2px;
  /*
  padding: 14px 10px;
  */
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #e3e6ea;
}
.cate5 .spec_split_cell:first-child {
  border-left: none;
}
.cate5 .spec_cell.span3 {
  grid-column: span 3;
}
/* 中央寄せ */
.cate5 .spec_cell.center {
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 576px) {
  .cate5 .spec_row {
    grid-template-columns: 110px 1fr 1fr 1fr 1fr 1fr;
  }
  .cate5 .spec_cell:not(.head) {
    min-width: 250px;
  }
}
.cate6 .boxwrap1 {}
.cate6 .boxwrap1 .imgbox {
  flex: initial;
}
.cate6 .imgbox img {
  max-height: 600px;
  width: auto;
}
/* 左：文章ブロック */
.cate6 .boxwrap1 .txtbox {
  line-height: 2;
  min-width: 360px;
}
/* 段落間の余白 */
.cate6 .boxwrap1 .txtbox p {
  margin: 0;
}
.cate6 .boxwrap1 .txtbox p + p {
  margin-top: 18px;
}
/* span強調（クラス無し条件） */
.cate6 .boxwrap1 .txtbox span {
  color: #0A3F8F;
  font-weight: 800;
}
/* 白い引用ボックス（見本の中央白枠） */
.cate6 .boxwrap1 .quote_box {
  background: #fff;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 26px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.cate6 .boxwrap1 .quote_box p {
  margin: 0;
  font-weight: 800;
  color: #0A3F8F;
}
/* 右画像を少し“紙っぽく”見せたい場合（任意） */
.cate6 .boxwrap1 .imgbox img {
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
/* SP時：引用ボックス余白だけ最適化 */
@media (max-width: 1080px) {
  .cate6 .boxwrap1 .txtbox {
    min-width: 340px;
    max-width: 500px;
  }
  .cate6 .boxwrap1 .quote_box {
    padding: 18px 18px;
    margin: 18px 0;
  }
}
@media (max-width: 576px) {
  .cate6 .imgbox img {
    max-height: 500px;
  }
  .cate6 .boxwrap1 .txtbox {
    min-width: 300px;
  }
}
.cate7 {}
.cate7 .step_row {
  flex-wrap: wrap;
  gap: clamp(18px, 2.5vw, 28px);
  align-items: flex-start;
}
/* カード */
.cate7 .step_row .merit_card {
  width: calc(100% / 3 - (clamp(18px, 2.5vw, 28px) * 2 / 3));
  display: flex;
  flex-direction: column;
  align-items: center;
}
/* 画像 */
.cate7 .step_row .merit_card .imgbox {
  width: 100%;
  aspect-ratio: 4 / 3; /* 必要なら 16/9 に変更 */
  overflow: hidden;
  border-radius: 4px;
  background: #f2f4f7;
}
.cate7 .step_row .merit_card .imgbox img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* 下の青いラベル */
.cate7 .step_row .merit_card .merit_txt {
  margin: 12px 0 0;
  padding: 10px 18px;
  border-radius: 999px;
  background: #01418E;
  color: #fff;
  font-weight: 800;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 92%;
  white-space: normal;
  line-height: 1.3;
}
/* 1080px以下：2列 */
@media (max-width: 1080px) {
  .cate7 .step_row .merit_card {
    width: calc(100% / 2 - (clamp(18px, 2.5vw, 28px) / 2));
  }
}
@media (max-width: 576px) {
  .cate7 .step_row .merit_card {
    width: 100%;
    max-width: 520px;
  }
}
.cate8 {
  background: #EDEFF2;
}
.cate8 .txtbox {
  max-width: 1280px;
  margin: 0 auto;
}
.info_box {
  max-width: 1280px;
  margin: 22px 0;
  margin-right: auto;
  margin-left: auto;
  padding: 28px 40px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}
.info_box p {
  font-weight: 500;
}
/* =========================
  Responsive
========================= */
@media (max-width: 768px) {
  .cate8 .txtbox {
    padding: 0px;
    margin: 0px;
  }
  .cate8 .txtbox p + p {
    margin-top: 14px;
  }
  .info_box {
    padding: 16px;
  }
}
.cate9 .spec_wrap > * {
  position: relative;
}
.cate9 .spec_table {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 auto;
}
.cate9 .spec_table.type_result .spec_row {
  display: grid;
  grid-template-columns: 200px 1fr 1fr;
}
.cate9 .spec_table.type_result .spec_cell {
  padding: 18px 18px;
  border-right: 1px solid #d9e2ea;
  border-bottom: 1px solid #d9e2ea;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #fff;
}
.cate9 .spec_table.type_result .spec_cell:last-child {
  border-right: none;
}
.cate9 .spec_table.type_result .spec_cell p {
  margin: 0;
  line-height: 1.6;
}
/* header */
.cate9 .spec_table.type_result .spec_cell.head {
  background: #4f95c9;
  color: #fff;
  font-weight: 700;
}
/* 左上は薄い背景（見本の空白感） */
.cate9 .spec_table.type_result .spec_cell.head_left {
  background: transparent;
  color: inherit;
}
/* 左項目列 */
.cate9 .spec_table.type_result .spec_cell.row_head {
  background: #eef2f6;
  justify-content: flex-start;
  text-align: left;
  font-weight: 700;
}
/* 強調 */
.cate9 .strong {
  font-weight: 800;
}
.cate9 .blue {
  color: #1c5aa8;
}
/* 注釈 */
.cate9 .spec_note {
  margin-top: 10px;
}
.cate9 .spec_note p {
  margin: 0;
  font-size: 0.9em;
}
.cate9 .imgboxwrap .imgbox {
  width: 50%;
}
@media (max-width: 768px) {
  .cate9 .spec_wrap {
    padding: 14px;
  }
  .cate9 .spec_table.type_result {}
  .cate9 .spec_table.type_result .spec_row {
    grid-template-columns: 180px 1fr 1fr; /* 左列を細く */
  }
  .cate9 .spec_table.type_result .spec_cell {
    padding: 14px 12px;
  }
  .cate9 .spec_note p {
    font-size: 0.85em;
  }
}
/* 576px以下：さらに詰める（スクロール前提） */
@media (max-width: 576px) {
  .cate9 .spec_wrap {
    padding: 12px;
  }
  .cate9 .spec_table.type_result {}
  .cate9 .spec_table.type_result .spec_row {
    grid-template-columns: 100px 1fr 1fr;
  }
  .cate9 .spec_table.type_result .spec_cell {
    padding: 12px 10px;
  }
  /* 左項目が長い時に折り返し */
  .cate9 .spec_table.type_result .spec_cell.row_head p {
    word-break: break-word;
  }
}
.cate10 {
  background: #FBFBFB;
}
.cate11 {
  background: #EDEFF2;
}
.cate11 .usebox {
  align-items: stretch;
  gap: clamp(18px, 4vw, 30px);
}
.cate11 .usebox .boxwrap2 {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: clamp(16px, 2.6vw, 40px) clamp(10px, 4vw, 40px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, .10);
  flex: 1;
  max-width: 500px;
  min-width: 0;
  flex-direction: column;
  align-items: stretch;
}
/* 上の青ラベル */
.cate11 .usebox .boxwrap2 .cap {
  margin: 0 auto 18px;
  width: fit-content;
  padding: 6px 18px;
  border-radius: 999px;
  background: #0A3F8F;
  color: #fff;
  letter-spacing: .02em;
  text-align: center;
  white-space: nowrap;
}
/* 手順リスト */
.cate11 .usebox .step_list {
  margin-top: 6px;
}
.cate11 .usebox .step_item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e9edf2;
  border-radius: 8px;
  padding: 12px 14px;
}
.cate11 .usebox .step_item + .step_item {
  margin-top: 10px;
}
/* 番号丸 */
.cate11 .usebox .step_num {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #0A3F8F;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cate11 .usebox .step_num p {
  margin: 0;
  color: #fff;
  font-weight: 400;
  line-height: 1;
}
/* テキスト */
.cate11 .usebox .step_txt {
  flex: 1;
  min-width: 0;
}
.cate11 .usebox .step_txt p {
  margin: 0;
  line-height: 1.6;
  font-weight: 700;
}
/* 条件メモ */
.cate11 .usebox .case_note {
  margin-top: 16px;
}
.cate11 .usebox .case_note p + p {
  margin-top: 6px;
}
/* 所要時間 */
.cate11 .usebox .time_box {
  margin-top: auto;
  padding-top: 18px;
  text-align: center;
}
.cate11 .usebox .time_box p {
  margin: 0;
  color: #0A3F8F;
  font-weight: 800;
  line-height: 1.4;
}
.cate11 .usebox .time_box span {
  font-weight: 900;
}
/* 中央矢印 */
.cate11 .usebox .compare_arrow {
  color: #0A3F8F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 35px;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, .25);
}
/* =========================
  Responsive
========================= */
@media (max-width: 880px) {
  .cate11 .usebox {
    flex-direction: column;
  }
  .cate11 .usebox .compare_arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  .cate11 .usebox .boxwrap2 {
    margin: auto;
    width: 100%;
  }
}
.cate12 .txtbox {
  text-align: left;
}
.cate12 .store_price {
  margin: 18px 0 12px;
  font-size: 28px;
  font-weight: 800;
  color: #0A3F8F;
}
.cate12 .store_price span {
  font-size: 0.6em;
  margin-left: 4px;
}
/* 注記 */
.cate12 .store_note p {
  margin: 0;
  line-height: 1.8;
}
.cate5 .spec_cell p{font-size: 10px;}
/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {
  .cate1 .boxwrap1 .imgbox .img2 {
    margin-bottom: -15%;
  }
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}