@charset "UTF-8";
.bg_section{
  position: relative;
  overflow: clip;
  isolation: isolate;
  z-index: 0;
}

/* 背景レイヤー */
.bg_section .bg_fixed{
  position: sticky;
  top: 0;
  height: 0;
  padding-top: 100vh;
  margin-bottom: -100vh;
  z-index: -1;
  pointer-events: none;
  transform: translateZ(0);
  will-change: transform;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg_section .bg_blueradical01{
  background-image: url(/sinryo/img/blueradical/bg_blueradical01.jpg);
}

/* 中身は前面へ（重ねて表示） */
.bg_section > *:not(.bg_blueradical01){
  position: relative;
  z-index: 1;
}

.bg_blueradical01_margin{
margin-top: 300px !important;
}
@media screen and (max-width:640px){
.bg_blueradical01_margin{
margin-top: 150px !important;
}
}


/* =========================
   Circle List (Impact)
   PC: 4 cols / Tab: 2 cols / SP: 1 col
   ========================= */

.circlelist{
  width: 100%;
}

/* サイズは一括で調整できるように変数化 */
.circlelist{
  --circle_size: clamp(200px, 16vw, 300px); /* 円の直径：大きめ */
  /*--circle_border: 3px;*/                    /* 線：太め */
  --gap: 26px;                             /* 余白：広め */
}

.circlelist_list{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* PC 4列 */
  gap: var(--gap);
}

/* 4列でも崩れにくいよう、円→本文の縦積み */
.circlelist_item{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  justify-items: center;
}

.circlelist_circle{
  width: var(--circle_size);
  aspect-ratio: 1 / 1;
  border-radius: 9999px;
  /*border: var(--circle_border) solid currentColor;*/
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 14px;
  box-sizing: border-box;

  /* インパクト：影＋少しだけ立体感（色指定なしの中立影） */
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
}

/* 番号：大きく */
.circlelist_num{
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1;
  margin-bottom: 8px;
  color: #42b9d0;
}

/* タイトル：2行まで */
.circlelist_title{
  font-weight: 800;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.25;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 説明文：読みやすく（LPなので少し大きめ） */
.circlelist_desc{
  margin: 10px 0 0 0;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}

/* hover（任意）：LPっぽい動き。不要なら消してOK */
.circlelist_item:hover .circlelist_circle{
  transform: translateY(-2px);
  transition: transform .2s ease;
}

/* タブレット：2列 */
@media (max-width: 900px){
  .circlelist_list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .circlelist{
    --circle_size: clamp(200px, 28vw, 260px); /* 2列なので大きくしてもOK */
  }
}

/* スマホ：1列 */
@media (max-width: 640px){
  .circlelist_list{
    grid-template-columns: 1fr;
  }
  .circlelist{
    --circle_size: 220px; /* スマホは固定でも見栄え良い */
  }
  .circlelist_desc{
    font-size: 15px;
  }
}



/* =========================
   Card Grid (generic)
   ========================= */
.cardgrid{
  width: 100%;
  --gap: 22px;
  --radius: 18px;
  --pad: 28px;
}

.cardgrid_list{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}

/* card */
.cardgrid_item{
  background: #fff;
  border-radius: var(--radius);
  padding: var(--pad);
  box-sizing: border-box;
  width: calc((100% - (var(--gap) * 2)) / 3);

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);

  display: flex;
  flex-direction: column;
  min-height: 240px; /* 高さ揃え（任意） */
}

/* small label like "point.01" */
.cardgrid_kicker{
  margin: 0 0 14px;
  font-size: 13px;
  letter-spacing: .08em;
  opacity: .75;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
}

.cardgrid_kicker::after{
  content: "";
  display: block;
  width: 56px;
  height: 2px;
  background: currentColor;
  margin: 10px auto 0;
  opacity: .55;
}

/* title */
.cardgrid_title{
  margin: 0 0 14px;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.35;
  text-align: center;
  font-weight: 700;
}

/* body */
.cardgrid_desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
  opacity: .9;
}

/* Tablet: 2 cols */
@media (max-width: 900px){
  .cardgrid_list{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cardgrid_item{
    width: calc((100% - var(--gap)) / 2);
  }
}

/* SP: 1 col */
@media (max-width: 640px){
  .cardgrid{
    --pad: 22px;
  }
  .cardgrid_list{
    grid-template-columns: 1fr;
  }
  .cardgrid_item{
    width: 100%;
  }
}

/* =========================
   Card Grid + Background layer (div)
   ========================= */

.cardgrid_wrap{
  position: relative;
  overflow: hidden;
  padding: 60px 0 80px;
}

/* 見出し（任意） */
.cardgrid_heading{
  position: relative;
  z-index: 2;
  margin: 0 0 34px;
  text-align: center;

  font-weight: 800;
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.25;
  letter-spacing: .02em;
}

.cardgrid_heading::after{
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: currentColor;
  margin: 14px auto 0;
  opacity: .6;
  border-radius: 9999px;
}
/* 背景レイヤー（div） */
.cardgrid_bg{
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);

  width: min(1200px, 100%);
  height: 320px;
  z-index: 1;
  pointer-events: none;

  opacity: 0.7;       /* ここで全体の薄さを調整 */
  width: 100%;
}

/* 背景画像の表示 */
.cardgrid_bg img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* カードは上に */
.cardgrid_wrap .cardgrid{
  position: relative;
  z-index: 2;
  width: 90%;
  margin: 0 auto;
}

/* SP調整 */
@media (max-width: 640px){
  .cardgrid_wrap{
    padding: 44px 0 60px;
  }
  .cardgrid_bg{
    height: 260px;
    /*opacity: .18;*/
  }
}

/* =========================
   Card Grid Key (highlight) - overflow visible version
   ========================= */

.cardgrid_keywrap{
  width: 100%;
  padding: 40px 0;
  --gap: 28px;
  --radius: 24px;
  --pad: 30px;
}

/* 見出し：強め */
.cardgrid_keyheading{
  margin: 0 0 22px;
  text-align: center;
  /*font-weight: 900;*/
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.2;
  letter-spacing: .02em;
  position: relative;
}

.cardgrid_keyheading::after{
  content: "";
  display: block;
  width: 96px;
  height: 4px;
  background: #42b9d0;
  margin: 14px auto 0;
  opacity: .65;
  border-radius: 9999px;
}

/* 外枠（幅を少し絞って主役ブロックに） */
.cardgrid_key{
  width: min(1300px, 92%);
  margin: 60px auto 10px auto;
}

.cardgrid_keylist{
  margin: 0;
  padding: 0;
  list-style: none;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: var(--gap);

  /* はみ出し演出を殺さないために */
  overflow: visible;
}

/* カード */
.cardgrid_keyitem{
  position: relative;
  overflow: visible; /* ←はみ出しOK */
  background: #fff;
  border-radius: var(--radius);
  padding: var(--pad);
  box-sizing: border-box;

  /*border: 2px solid rgba(0,0,0,.14);*/
  box-shadow: 0 18px 40px rgba(0,0,0,.05);

  display: block;
  min-height: 170px;
}

/* 巨大で薄い数字（カードからはみ出す） */
.cardgrid_keynum{
  position: absolute;

  /* ←ここをマイナスにすると、カード外へ“はみ出す” */
  left: -22px;
  top: -28px;

  margin: 0;
  font-weight: 900;
  font-size: clamp(56px, 5vw, 150px);
  line-height: 1;
  /*letter-spacing: .02em;*/

  opacity: .3;
  pointer-events: none;
  user-select: none;
  color: #42b9d0;
  /*font-style: italic;*/
}

/* （任意）数字の下線 */
/*.cardgrid_keynum::after{
  content: "";
  display: block;
  width: 140px;
  height: 2px;
  background: currentColor;
  opacity: .35;
  margin-top: 10px;
}*/

/* タイトル：数字と重なるので余白を確保 */
.cardgrid_keytitle{
  position: relative;
  z-index: 1;

  margin: 0;
  padding-top: 32px;
  font-weight: 900;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.28;
  color: #2f2e2e;
}

/* 説明文を入れる場合（任意） */
.cardgrid_keydesc{
  position: relative;
  z-index: 1;

  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.9;
}

/* 注釈（任意） */
.cardgrid_keynote{
  width: min(1100px, 92%);
  margin: 14px auto 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: .75;
}

/* タブ〜スマホ */
@media (max-width: 640px){
  .cardgrid_keywrap{
    --pad: 24px;
  }
  .cardgrid_key{
    width: 94%;
  }
  .cardgrid_keylist{
    grid-template-columns: 1fr;
  }

  /* スマホははみ出しが強く見えるので、少しだけ控えめに */
  .cardgrid_keynum{
    left: -16px;
    top: -22px;
    /*opacity: .12;*/
  }
}



/* =========================
   Compare (table + pros/cons) generic
   ========================= */

.compare_wrap{
  width: 100%;
  --gap: 22px;
  --radius: 18px;
  --pad: 26px;
}

.compare_head{
  /*text-align: center;*/
  margin: 0 0 18px;
}

.compare_title{
  position: relative;
  display: inline-block;
  margin: 0 0 8px;
  font-weight: 800;
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1.25;
  letter-spacing: .02em;
  padding-bottom: 12px;
}

.compare_title::after{
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 84px;
  height: 3px;
  background: currentColor;
  opacity: .6;
  border-radius: 9999px;
}

/*.compare_lead{
  margin: 0 auto 8px;
  max-width: 900px;
  font-size: 15px;
  line-height: 1.8;
  opacity: .92;
}*/

/*.compare_note{
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  opacity: .75;
}*/

/* ---- table ---- */
.compare_tablewrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 0 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  background: #fff;
}

.compare_table{
  width: 100%;
  border-collapse: collapse;
  min-width: 820px; /* スマホは横スクロール */
}

.compare_th,
.compare_table td,
.compare_rowhead{
  padding: 16px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}

.compare_th{
  font-weight: 800;
  text-align: center;
  background: rgba(0,0,0,.03);
}

.compare_th_item{
  text-align: left;
}

.compare_rowhead{
  width: 22%;
  font-weight: 800;
  background: rgba(0,0,0,.02);
  text-align: left;
}

.compare_table td{
  width: 39%;
  font-size: 14px;
  line-height: 1.8;
}

.compare_table tbody tr:last-child td,
.compare_table tbody tr:last-child .compare_rowhead{
  border-bottom: none;
}

/* ---- pros/cons cards ---- */
.compare_cards{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.compare_card{
  background: #fff;
  border-radius: var(--radius);
  padding: var(--pad);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
}

.compare_cardtitle{
  margin: 0 0 12px;
  font-weight: 800;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.35;
  text-align: center;
}

.compare_list{
  margin: 0;
  padding-left: 1.2em;
  font-size: 14px;
  line-height: 1.9;
}

.compare_smallnote{
  margin: 10px 0 0;
  font-size: 13px;
  opacity: .75;
}

/* Tablet */
@media (max-width: 900px){
  .compare_cards{
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 640px){
  .compare_wrap{
    --pad: 22px;
  }
}

/* =========================
   blueradical_feature (BEST3)
   ========================= */

.blueradical_feature{
  position: relative;
  padding: 56px 0 64px;
  overflow: hidden;
  background: #fff;
}

/* 背景の薄い巨大文字（Blue Radical） */
.blueradical_feature::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  width: 100%;
  height: 320px;
  background: url("/sinryo/img/blueradical/blueradical_feature_midasi_bg_blueradical.png") no-repeat center center;
  background-size: contain;
  pointer-events: none;
  z-index: 0;
}

/* 見出し */
.blueradical_feature_head{
  position: relative;
  z-index: 1;
  text-align: center;
  width: min(1100px, 92%);
  margin: 0 auto 32px;
  padding-top: 22px;
}

.blueradical_feature_crown img{
  display: block;
  width: clamp(64px, 10vw, 100px);
  height: auto;
  margin: 0 auto 10px;
}

.blueradical_feature_title{
  margin: 0 0 12px;
  /*font-weight: 700;*/
  font-size: clamp(27px, 3.6vw, 56px);
  letter-spacing: .02em;
  line-height: 1.25;
  position: relative;
  z-index: 2;
  color: #595959;
}

/* BEST3 画像 */
.blueradical_feature_bestimg img{
  display: block;
  width: min(450px, 60%);
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* カード群 */
.blueradical_feature_cards{
  position: relative;
  z-index: 1;

  width: min(1500px, 92%);
  margin: 26px auto 0;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

/* 各カード */
.blueradical_feature_card{
  position: relative;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 7px 15px rgba(0,0,0,0.05);
  overflow: visible;
  display: flex;
  flex-direction: column;
  height: 100%; /* グリッドの行内で同じ高さに */
}

/* 上の画像 */
.blueradical_feature_photo{
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f2f2f2;
  position: relative; /* ラベルの基準 */
  overflow: visible; /* ←はみ出しを許可（重要） */
}

.blueradical_feature_photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 吹き出し本体 */
.blueradical_feature_tag{
  position: absolute;
  left: 14px;
  top: -14px;
  z-index: 2;
  margin: 0;
  padding: 10px 12px;
  border-radius: 9999px;
  background: #fff;
  box-shadow: 0 12px 26px rgba(0,0,0,.16);
  font-family: 'Futura', 'Century Gothic', 'CenturyGothic', 'Helvetica Neue', 'Arial' , 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'Yu Gothic Medium', '游ゴシック Medium', 'YuGothic', '游ゴシック体', 'Meiryo', sans-serif;
}

/* しっぽを“影なしの三角”で */
.blueradical_feature_tag::after{
  content: "";
  position: absolute;
  left: 20px;
  bottom: -8px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #fff;
}
/* 03用：見せないが高さは確保 */
.blueradical_feature_tag.is_empty{ opacity: 0; }

/* 下のテキスト領域 */
.blueradical_feature_body{
  padding: 22px 22px 24px;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.6;
  letter-spacing: .01em;
  display: flex;
  justify-content: center; /* 横中央 */
  align-items: center;     /* 縦中央 ←ここが重要 */
  flex: 1;                 /* 残り高さを埋める */
}

/* 右上の丸番号 */
.blueradical_feature_badge{
  position: absolute;
  right: -16px;
  top: -16px;
  width: 70px;
  height: 70px;
  border-radius: 9999px;

  /* 45度グラデ（指定色） */
  background: linear-gradient(45deg,
    #00469b 0%,
    #016ebd 55%,
    #36479a 100%
  );

  color: #fff;
  /*font-weight: 800;*/
  font-size: 30px;
  line-height: 70px;
  text-align: center;

  box-shadow: 0 12px 26px rgba(0,0,0,.18);
  z-index: 3;
  overflow: hidden; /* ツヤを綺麗に切る */
  font-family: 'Futura', 'Century Gothic', 'CenturyGothic', 'Helvetica Neue', 'Arial' , 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'BIZ UDPGothic', 'Yu Gothic Medium', '游ゴシック Medium', 'YuGothic', '游ゴシック体', 'Meiryo', sans-serif;
}


/* タブレット */
@media (max-width: 1000px){
  .blueradical_feature_cards{
    /*grid-template-columns: repeat(3, minmax(0, 1fr));*/
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

/* スマホ */
@media (max-width: 640px){
  .blueradical_feature{
    padding: 44px 0 52px;
  }

  .blueradical_feature::before{
    top: 10px;
    height: 240px;
    /*opacity: .10;*/
  }

  .blueradical_feature_cards{
    /*grid-template-columns: 1fr;*/
    /*gap: 18px;*/
    margin-top: 18px;
  }
  .blueradical_feature_tag{
    left: -5px;
    top: -12px;
    padding: 8px 10px;
    font-size: 13px;
  }
  .blueradical_feature_tag::after{
    left: 14px;
    bottom: -8px;
    width: 12px;
    height: 12px;
  }
  .blueradical_feature_badge{
    right: -10px;
    top: -10px;
    width: 58px;
    height: 58px;
    font-size: 20px;
    line-height: 58px;
  }

  .blueradical_feature_body{
    padding: 20px 18px 22px;
  }
}

/* =========================
   Media label (image badge + text)
   ========================= */

.medialabel{
  position: relative;
  background: #fff;
   padding: 28px 30px 26px 150px; /* 左のバッジ分の余白 */
  box-sizing: border-box;
  overflow: visible;
  /* 角丸や影はお好みで */
  /* border-radius: 10px; */
  /* box-shadow: 0 12px 28px rgba(0,0,0,.08); */
}

/* 左上の丸画像（バッジ） */
.medialabel_badge{
  position: absolute;
  left: -26px;
  top: -26px;              /* 少しはみ出す */
  width: 150px;
  height: 150px;
  border-radius: 9999px;
  overflow: hidden;
  background: #fff;
  /*box-shadow: 0 14px 30px rgba(0,0,0,.16);*/
}

.medialabel_badge img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.medialabel_body{
  /*font-size: 16px;
  line-height: 1.9;*/
}

.medialabel_body p{
  margin: 0 0 10px;
}
.medialabel_body p:last-child{
  margin-bottom: 0;
}

/* タブレット：バッジを少し小さく、左余白も縮める */
@media (max-width: 900px){
  .medialabel{
    padding-left: 120px;
  }
  .medialabel_badge{
    width: 120px;
    height: 120px;
    left: -18px;
    top: -18px;
  }
}

/* スマホ：上中央にはみ出し */
@media (max-width: 640px){
  .medialabel{
    padding: 78px 18px 18px;
  }

  .medialabel_badge{
    left: 50%;
    top: -26px;
    transform: translateX(-50%);
    width: 96px;
    height: 96px;
  }
}

