@charset "utf-8";

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


.tac {
  text-align: center;
}

#wrapper {
  margin: auto;
  background-color: #fff;
  padding: 0px;
  box-shadow: 0 4px 20px rgb(203 209 210);
}

p {
  color: #444;
}

@media screen and (min-width:768px) {
  #wrapper {
    margin: auto;
    background-color: #fff;
    padding: 17px;
    box-shadow: 0 4px 20px rgb(203 209 210);
  }
}

@media only screen and (max-width: 766px) {
  #wrapper {
    margin: 0;
  }

  p {
    font-size: 15px !important;
    line-height: 1.5;
    padding: 10px;
    color: #444;
  }

  .sp {
    display: block;
  }

  .pc {
    display: none;
  }
}

/* Font Awesome を使う要素だけ指定 */
.fa,
.fa-solid,
.fa-magnifying-glass,
.searchBtn_box i {
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

html {
  scroll-behavior: smooth;
}

body {
  font: 15px/1.5 "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  background-color: #edfdff;
  /* box-shadow:0px 5px 22px 0px rgb(0 0 0 / 25%); */
  position: relative;
  /* padding: 0 1.5%; */
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media only screen and (max-width:700px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }
}

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

h2 {
  margin: 0% 0 2% 0;
}

h4 {
  position: relative;
  text-align: center;
  color: #165e6b;
  font-size: 22px;
  font-weight: bold;
  background: #eef9fb;
  padding: 14px 20px;
  margin: 40px auto 30px;
  width: 92%;
  line-height: 1.5;

  border-top: 2px solid #3d9dae;
  border-bottom: 2px solid #3d9dae;
  margin-bottom: 30px;
}

/* 下の折れ線 */
h4::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%) rotate(45deg);

  width: 22px;
  height: 22px;
  background: #eef9fb;

  border-right: 2px solid #3d9dae;
  border-bottom: 2px solid #3d9dae;
}

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

  h4 {
    font-size: 18px;
    padding: 12px 10px;
    width: 94%;
    line-height: 1.4;
    margin-bottom: 13px;
  }

  h4::after {
    width: 18px;
    height: 18px;
    bottom: -11px;
  }

}

h3 {
  position: relative;
  display: inline-block;
  padding: 0.8rem 2.1rem 0.8rem 1rem;
  /* 右側に余白 */
  color: #fff;
  background: linear-gradient(90deg,
      #00253f 0%,
      #004461 85%,
      rgba(0, 68, 97, 0) 100%);
  width: 100%;
  margin-top: 6%;
  margin-bottom: 1%;
  padding-left: 40px;
}

h3:before {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  content: '';
  background: #fff;

  clip-path: polygon(50% 0%,
      65% 35%,
      100% 50%,
      65% 65%,
      50% 100%,
      35% 65%,
      0% 50%,
      35% 35%);
}

.red {
  color: #ff0000;
  font-weight: bold;
}

.orange {
  color: #ff7c00;
  font-weight: bold;
}

.blue {
  color: #0050ac;
  font-weight: bold;
}

.marker {
  background: linear-gradient(transparent 70%, #ffff89 0);
}

@media screen and (max-width:767px) {
  h2 {
    margin: 0% 0 4% 0;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }
}


.center {
  text-align: center;
  margin: 4% 0 0;
}

/* -----------------目次 ------------------*/

/* =========================
   アコーディオン目次（JS版）
========================= */
/* ベース（PC向け） */
.custom-toc-container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 60px;
  padding: 0 15px;
  box-sizing: border-box;
}

/* 目次の外枠ボックス */
.custom-toc-box {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 25px 30px 20px;
}

/* 目次の見出し */
.custom-toc-title {
  font-size: 20px;
  font-weight: bold;
  color: #555;
  margin-bottom: 10px;
}

/* 目次リストを包む枠（ここで高さを制限する） */
.custom-toc-list-wrap {
  position: relative;
  max-height: 60px;
  /* デフォルトの高さ */
  overflow: hidden;
  transition: max-height 0.5s ease;
}

/* 目次リスト本体 */
.custom-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-toc-list li {
  border-bottom: 1px dotted #ccc;
  font-weight: normal;
  margin-top: 0;
}

.custom-toc-list li:last-child {
  border-bottom: none;
}

.custom-toc-list a {
  display: block;
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  font-size: 15px;
}

/* 下部のグラデーション（もや） */
.custom-toc-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(to bottom, rgba(247, 247, 247, 0) 0%, rgba(247, 247, 247, 1) 100%);
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* ボタンエリア */
.custom-toc-btn-wrap {
  text-align: center;
  margin-top: -20px;
  position: relative;
  z-index: 2;
  transition: margin-top 0.5s ease;
}

/* ボタン本体のデザイン */
.custom-toc-btn {
  display: inline-block;
  background-color: #a8a8a8;
  color: #fff;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  letter-spacing: 0.05em;
  font-family: inherit;
}

.custom-toc-btn:hover {
  background-color: #999;
}

/* 閉じるテキストは最初は隠す */
.btn-text-close {
  display: none;
}

/* =========================
   JSで付与される .is-open クラスの挙動
========================= */
/* リストの高さを拡張して全て見せる */
.custom-toc-box.is-open .custom-toc-list-wrap {
  max-height: 1000px;
}

/* もやを消す */
.custom-toc-box.is-open .custom-toc-fade {
  opacity: 0;
}

/* ボタンの重なりを解除し、下に余白を作る */
.custom-toc-box.is-open .custom-toc-btn-wrap {
  margin-top: 15px;
}

/* テキストの切り替え */
.custom-toc-box.is-open .btn-text-open {
  display: none;
}

.custom-toc-box.is-open .btn-text-close {
  display: inline;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .custom-toc-box {
    padding: 20px 20px 15px;
  }

  .custom-toc-title {
    font-size: 18px;
  }

  .custom-toc-list a {
    font-size: 14px;
    padding: 10px 0;
  }
}


/* -----------------目次ここまで ------------------*/



video {
  width: 100%;
}

footer {
  background-color: #1a325b;
  padding: 7% 0;
  text-align: center;
  margin-top: 3%;
}

.floating_inner {
  position: fixed;
  bottom: 10px;
  z-index: 100;
  max-width: 300px;
  right: 250px;
}

footer a {
  color: #fff;
}

@media (min-width:768px) and (max-width:1600px) {
  .floating_inner {
    right: 3%;
  }
}

@media screen and (max-width:767px) {
  p.center.rinsyo {
    margin: 7% 0 0;
  }

  h4 {
    width: 88%;
    margin-top: 6%;
  }

  .pickup {
    padding: 0.7em 0.5em;
    width: 94%;
    margin: 11% auto 0;
    box-shadow: 0 1px 7px rgba(0, 0, 0, .3);
  }

  .chat_img {
    width: 22%;
  }

  .pickup::after {
    font-size: 1em;
  }

  .floating_inner {
    right: 0;
    width: 50%;
  }

  footer {
    margin-top: 0;
  }


  img.rank-star {
    padding: 2%;
    width: 96%;
    margin-top: 2%;
  }

  body .flex div {
    width: 100%;
  }

  html body .slick-dotted.slick-slider {
    margin-bottom: 50px;
  }
}

li {
  list-style: none;
  font-weight: bolder;
  margin-top: 5px;
}


label {
  line-height: 1.2;
}


/*装飾指示*/
.line {
  text-decoration: underline;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs14 {
  font-size: 14px;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.gray {
  color: #898989;
}

.bl {
  color: #356eb8;
}

.kiiro {
  color: #ff9900;
}

.pink {
  color: #eb59a4;
}

.taC {
  text-align: center;
}

.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.marker {
  background: linear-gradient(to bottom, transparent 0%, transparent 65%, #fff59c 40%, #fff492 100%);
}

/*装飾指示ここまで*/



.column_box {
  padding: 10px;
}

.slider a {
  display: block;
}


.y_star {
  display: inline-flex;
  line-height: 1;
}

.y_star span {
  position: relative;
  display: inline-block;
  color: #ff9900;
  line-height: 1;
}

.y_star span.half {
  color: transparent;
}

.y_star span.half::before,
.y_star span.half::after {
  content: "★";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
}

.y_star span.half::before {
  color: #ff9900;
  width: 50%;
  overflow: hidden;
}

.y_star span.half::after {
  color: transparent;
  -webkit-text-stroke: 1px #ff9900;
}

.half {
  font-size: 9px;
  margin-top: 1.6px;
}

.bgBlue {
  background-color: #ebf1f8;
}

.bd-solid-left-bold {
  border-left: 5px solid;
  color: #102161;
}

#exitPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* --- ポップアップ --- */
.popup-content {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  width: 400px;
  max-width: 90%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* --- 閉じるボタン --- */
#closePopup {
  position: absolute;
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* --- 画像 --- */
.popup-img,
.popup-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  margin-bottom: 8%;
}

/* --- カウントダウン文字 --- */
#countdownText {
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  width: 100%;
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 2;
}

/* --- SP版調整 --- */
@media (max-width:600px) {
  .popup-content {
    width: 70%;
    padding: 12px;
  }

  #countdownText {
    font-size: 17px;
    top: 274px;
    white-space: pre-line;
  }
}


th:first-child,
td:first-child {
  border-left: none !important;
}


/* ボタンエリア */
.btn_area {
  position: absolute;
  bottom: 63px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  cursor: pointer;
  display: block;
  z-index: 5;
  line-height: 0;
  font-size: 0;
}

/* 2枚を完全に重ねる */
.btn_area .btn_open,
.btn_area .btn_close {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: block;
  transition: opacity .25s ease, transform .25s ease;
}

/* 初期状態 */
.btn_area .btn_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.btn_area .btn_close {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* 開いた時に切り替え */
.acc_trigger:checked+.acc_header .btn_area .btn_open {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.acc_trigger:checked+.acc_header .btn_area .btn_close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ホバー */
.btn_area:hover .btn_open,
.btn_area:hover .btn_close {
  transform: scale(1.05);
}

.acc_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  box-sizing: border-box;
}

.acc_trigger:checked~.acc_content {
  max-height: 2400px;
  border: 3px solid #00253f;
  background: #f5f5f5;
  padding: 16px;
  padding-bottom: 22px;
  box-sizing: border-box;
}



.point_text {
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 400;
}

.acc_content img {
  width: 100%;
  display: block;
}

@media (max-width:600px) {
  .btn_area {
    bottom: 37px;
    width: 146px;
  }
}



/* 3つ横並び位置 */
.cta1 {
  left: 18%;
}

.cta2 {
  left: 50%;
}

.cta3 {
  left: 82%;
}


/* SP調整 */
@media screen and (max-width:767px) {

  .cta1 {
    left: 18%;
  }

  .cta2 {
    left: 50%;
  }

  .cta3 {
    left: 82%;
  }

}


/* ハンバーガーメニュー */
.hea {
  width: 100%;
  max-width: 767px;
  margin: 0 auto;
  background-color: #0099c5;
  min-height: 45px;
  position: relative;
  /* fixedを解除 */
  top: auto;
  z-index: 10;
  box-sizing: border-box;
}

.menu-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  min-height: 45px;
  box-sizing: border-box;
}

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

.header-logo img {
  max-height: 23px;
  width: auto;
}

.hamburger {
  width: 30px;
  cursor: pointer;
  z-index: 300;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* 開閉メニュー */
.menu {
  display: none;
  width: 100%;
  background-color: #eee;
  padding: 20px 12px 40px;
  font-size: 13px;
  box-sizing: border-box;
}

.menu.open {
  display: block;
}

.form-content {
  margin: 0;
}

/* SP */
@media (max-width: 699px) {
  .hea {
    max-width: 100%;
  }

  .menu-container {
    padding: 8px 10px;
  }

  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    background-color: #fff;
  }
}

.point_ttl {
  margin-top: -25px;
  margin-bottom: 0px;
}



.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}



.info {
  max-width: 550px;
  display: block;
  margin: 8% auto 0%;
}

.info-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  font-family: sans-serif;
  line-height: 1.6;
  margin: 20px auto;
  border-width: 1px;
  border-style: solid;
  border-color: rgb(209, 209, 209);
  border-image: initial;
}

.info-table thead th {
  background-color: rgb(37, 37, 37);
  color: rgb(255, 255, 255);
  font-size: 18px;
  padding: 12px;
  border-bottom: 1px solid rgb(209, 209, 209);
}

.info-table th,
.info-table td {
  text-align: left;
  padding: 15px;
  border-bottom: 1px solid rgb(238, 238, 238);
}

.info-table th {
  background-color: rgb(92, 92, 92);
  width: 30%;
  color: rgb(255, 255, 255);
  font-weight: bold;
  white-space: nowrap;
}

@media (max-width: 600px) {

  .info-table th,
  .info-table td {
    font-size: 14px;
    padding: 10px;
  }
}

@media (max-width: 600px) {
  .info-table th {
    width: 35%;
  }
}



/* ========== 比較表（.rankTable〜） ========== */
.table-section {
  padding: 40px 20px 50px !important;
  background: linear-gradient(to bottom, #effafd 0%, #ccecf5 100%);
  margin-bottom: 0px;
}

.table-section h2.hikaku2 {
  margin-top: 10px;
  margin-bottom: 35px;
}

.table-wrap {
  background-color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  /* 画像のような浮き出る影 */
  border-radius: 4px;
  overflow: hidden;
  /* 角丸からはみ出ないようにする */
}

.rankTable {
  overflow-x: scroll;
  border: 3px solid #55c6e6;
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

.rankTable table {
  width: 880px;
  text-align: center;
  line-height: 1.2;
}

.rankTable th {
  position: sticky;
  width: 20px;
  padding: 4px 0px 4px;
  background-color: #55c6e6;
  color: #fff;
  left: 0;
  border-bottom: 1px solid #d0d0d0;
  /* 少し濃く */
  font-size: 9px;
}

.rankTable td {
  width: auto;
  border-bottom: 1px solid #d6d6d6;
  /* 少し濃く */
  border-top: none;
  padding: 8px 3px 8px;
  font-size: 14px;
  position: relative;
  vertical-align: middle;
  border-right: 1px dotted #ccc;
  background-color: #fff;
}

.rankTable td:last-child {
  border-right: none;
}

.rankTable tr th+td {
  background-color: #fdffe4;
}

.rankTable table th {
  width: 19.0%;
  font-size: 12px;
}

/* 横線（行境界）を実線＆少し濃く */
.rankTable table tr {
  border-top: 1px solid #bfbfbf;
}

.rankTable table tr:first-child {
  border-top: 1px solid #ffffff;
}

.rankTable tr {
  border-bottom: 1px solid #cfcfcf;
}

.rankTable tr:last-child {
  border-bottom: none;
}

.rankTable tr:last-child td {
  border-bottom: none;
  padding: 14px 1px 17px;
}



.crown {
  width: 30%;
  height: auto;
  margin: 20%;
  margin-left: 30%;
  margin-top: 0%;
  margin-bottom: 2px;
  position: absolute;
  top: 5%;
  right: -28%;
}

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 30px;
  /* 星の大きさ */
  color: #ccc;
  /* 空の星の色（グレー） */
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ffcc00;
  /* 塗りつぶす星の色（黄色） */
  white-space: nowrap;
  /* ↓ ここで評価を調整（4.7なら 4.7 / 5 = 94%） */
  width: 94%;
}

@media screen and (max-width:768px) {
  .table-section {
    padding: 30px 15px 40px !important;
  }

  .table-section h2.hikaku2 {
    margin-top: 6px;
    margin-bottom: 12px;
  }

  .rankTable table {
    width: 516px;
  }

  .rankTable {
    overflow-x: scroll;
  }

  .rankTable th {
    padding: 2px 0px 2px;
    font-size: 7px;
  }

  .rankTable td {
    padding: 8px 1px 8px;
    font-size: 11px;
  }
}

.rankTable table th {
  vertical-align: middle;
  width: 12%;
  z-index: 88;
}

img.table_icon {
  width: 100%;
  margin-top: 2px;
}

.sogood {
  font-size: 33px;
  color: #ff4a1d;
}

.good {
  font-size: 27px;
  color: #ff7b00;
  font-weight: normal;
}

.soso {
  font-size: 27px;
  color: #1bb3ff;
  font-weight: normal;
}

.bad {
  font-size: 27px;
  font-weight: 300;
  color: #747474;
}

a.tbl_a01 {
  color: #2b7af0;
  font-weight: bold;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}

a.t_btn {
  text-decoration: none;
  color: #fff;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #616161;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 6px 0 #303030;
  font-weight: bold;
}

td.pb10 {
  padding: 20px 0 25px;
}

a.t_btn02 {
  text-decoration: none;
  color: #fff;
  font: 11px/1.2 "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  background: #ff7b00;
  padding: 10px;
  border-radius: 10px;
  margin: 0 7%;
  box-shadow: 0 6px 0 #ad4500;
  display: block;
  font-weight: bold;
}

.star-rating {
  position: relative;
  display: inline-block;
  font-size: 16px;
  /* 表に合わせて少し小さめに調整 */
  color: #ccc;
  letter-spacing: 2px;
  /* 星の間隔を少し広げると見やすい */
}

.star-rating::before {
  content: "★★★★★";
}

.star-rating-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  color: #ff7b00;
  white-space: nowrap;
}

/* ========== 比較表ここまで ========== */

.anno,
p.anno {
  font-size: 12px !important;
  color: #666;
  line-height: 1.6;
  font-weight: normal;
  padding: 0 !important;
  margin: 0.5em 0 1em;
}

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

  .anno,
  p.anno {
    font-size: 9px !important;
    line-height: 1.5;
    padding: 0 !important;
  }
}

.anno2 {
  font-size: 12px !important;
  color: #ffffff;
}

@media only screen and (max-width: 766px) {
  .anno2 {
    font-size: 10px !important;
    color: #ffffff;
  }
}

.small {
  font-size: 10px;
}

.small2 {
  font-size: 12px;
}

@media only screen and (max-width: 766px) {
  .small {
    font-size: 8px;
  }

  .small2 {
    font-size: 10px;
  }
}



.mb0 {
  margin: 0;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.scroll_notice {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: #666;
  margin: 10px 0;
  position: relative;
  z-index: 10;
}


/* =========================
   注目ポイントセクション（うねうね背景）
========================= */
.special-care-wrapper {
  position: relative;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding: 60px 15px 100px;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
}



/* 白いカード部分 */
.special-care-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 40px 20px 20px;
  margin: 0 auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* 上部のバッジ */
.special-care-badge {
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #67c0d4;
  color: #fff;
  font-weight: bold;
  font-size: 19px;
  padding: 8px 30px;
  border-radius: 30px;
  white-space: nowrap;
}

/* 見出し */
.special-care-title {
  text-align: center;
  font-size: 22px;
  line-height: 1.4;
  color: #333;
  font-weight: bold;
  margin: 0 0 15px 0 !important;
}

/* 中央のグラデーションセパレーター */
.special-care-sep {
  width: 80%;
  height: 2px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #3d9dae 50%, rgba(255, 255, 255, 0) 100%);
}

/* テキスト部分 */
.special-care-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

/* 装飾用クラス */
.special-care-wrapper .text-orange {
  color: #ff8c00;
}

.special-care-wrapper .bold {
  font-weight: bold;
}

/* 画像配置エリア */
.special-care-img {
  margin: 25px 0px;
  text-align: center;
}

.special-care-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* SP（スマートフォン）向け調整 */
@media screen and (max-width: 767px) {
  .special-care-wrapper {
    padding: 50px 14px 70px;
  }

  .special-care-img {
    margin: 25px 14px;
    text-align: center;
  }

  .special-care-card {
    padding: 35px 1px 28px;
  }

  .special-care-badge {
    font-size: 18px;
    top: -18px;
    padding: 6px 20px;
  }

  .special-care-title {
    font-size: 22px;
  }

  .special-care-text {
    font-size: 14px;
    margin-bottom: -10px;
  }
}

/* =========================
   サプリの選び方コンテンツ
========================= */
/* ベース（PC向け）の設定 */
.guide-container {
  width: calc(100% - 30px);
  max-width: 700px;
  margin: 40px auto 40px; /* auto のおかげで常に中央に配置されます */
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guide-header-img img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-content {
  padding: 30px;
}

/* 各Pointの背景ボックス */
.guide-box {
  background-color: #eafbff;
  /* 薄い水色背景 */
  border-radius: 8px;
  padding: 25px 30px;
  margin-bottom: 20px;
}

.guide-box:last-child {
  margin-bottom: 0;
}

/* タイトルエリア（アイコン＋見出し） */
.guide-box-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

/* Pointアイコン */
.guide-icon {
  background-color: #0099c5;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  margin-right: 20px;
  line-height: 1.1;
}

.guide-icon-en {
  font-size: 11px;
  font-weight: bold;
}

.guide-icon-num {
  font-size: 20px;
  font-weight: bold;
}

/* 見出し（既存のh3と干渉しないようdivで構成） */
.guide-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  color: #333;
}

/* テキストエリア */
.guide-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 15px;
}

.guide-text:last-of-type {
  margin-bottom: 0;
}

/* 画像エリア */
.guide-img {
  text-align: center;
  margin: 15px 0;
}

.guide-img img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .guide-content {
    padding: 20px 15px;
  }

  .guide-box {
    padding: 20px 15px;
    margin-bottom: 15px;
  }

  .guide-icon {
    width: 55px;
    height: 55px;
    margin-right: 15px;
  }

  .guide-title {
    font-size: 17px;
  }

  .guide-text {
    font-size: 14px;
  }
}

/* =========================
   商品紹介カード（さよならグルテン）
========================= */
.item-card-wrapper {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 14px;
}

.item-card {
  position: relative;
  background-color: #fff;
  border: 3px solid #bce4ef;
  padding: 30px 23px 40px;
}

/* 左上のリボン（画像） */
.item-ribbon {
  position: absolute;
  top: -9px;
  left: 20px;
  width: 74px;
  z-index: 2;
}

.item-ribbon img {
  display: block;
  width: 100%;
  height: auto;
}

/* 商品名タイトル */
.item-title-wrap {
  text-align: center;
  margin: 0 0 25px;
}

.item-title {
  display: inline-block;
  font-size: 26px;
  font-weight: bold;
  color: #2b7af0;
  padding-bottom: 2px;
  line-height: 1.3;
}

/* 画像エリア */
.item-image {
  margin-bottom: 2px;
  text-align: center;
}

.item-image img {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

/* スペック表 */
.item-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  border: 1.5px solid #1a325b;
  text-align: center;
  margin-top: 17px;
}

/* 表の見出しセル */
.item-table th {
  background-color: #8ed3e9;
  color: #1a325b;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 5px;
  border-bottom: 1.5px solid #1a325b;
}

/* 見出しの間の縦線（白） */
.item-table th:first-child {
  border-right: 1.5px solid #1a325b;
}

/* 表のデータセル */
.item-table td {
  background-color: #fff;
  color: #333;
  font-size: 15px;
  line-height: 1.5;
  padding: 15px 5px;
  vertical-align: middle;
}

/* データセルの間の縦線（ネイビー） */
.item-table td:first-child {
  border-right: 1.5px solid #1a325b;
}

/* 上段のデータセルの下線 */
.item-table tr:nth-child(2) td {
  border-bottom: 1.5px solid #1a325b;
}

.item-table th,
.item-table td {
  width: 50%; /* ← 左右を50%ずつに固定 */
}

/* 赤太文字用のクラス */
.item-txt-red {
  color: #ff0000;
  font-weight: bold;
  font-size: 1.15em;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .item-card {
    padding: 25px 15px 20px;
    border-width: 2px;
  }

  /* リボンのSP調整 */
  .item-ribbon {
    width: 51px;
    left: 10px;
    top: -6px;
  }

  .item-title-wrap {
    margin: 5px 0 20px;
  }

  .item-title {
    font-size: 20px;
  }

  .item-image {
    margin-bottom: -4px;
  }

  .item-table th {
    font-size: 14px;
    padding: 8px 4px;
  }

  .item-table td {
    font-size: 13px;
    padding: 12px 4px;
  }

  .item-txt-red {
    font-size: 1.1em;
  }
}

/* =========================
   自社検証証明セクション
========================= */
/* ベース（PC向け）の設定 */
.proof-container {
  margin-top: 35px;
  position: relative;
}

/* 薄い黄色の見出しボックス */
.proof-header {
  position: relative;
  background-color: #fff9d6;
  border-radius: 6px;
  padding: 16px 15px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
  z-index: 2;
}

/* 左上のオレンジバッジ */
.proof-badge {
  position: absolute;
  top: -16px;
  left: -12px;
  width: 110px;
  height: auto;
  display: block;
}

/* 見出しテキスト */
.proof-title {
  font-size: 21px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.05em;
}

/* 画像エリア */
.proof-img {
  width: 100%;
  text-align: center;
}

.proof-img img,
.proof-img video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 画像と動画の両方に同じスタイルを適用 */
.proof-img img,
.proof-img video {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .proof-container {
    margin-top: 25px;
  }

  .proof-header {
    padding: 14px 10px;
    margin-bottom: 15px;
  }

  .proof-badge {
    font-size: 13px;
    padding: 3px 12px;
    top: -12px;
    left: -8px;
  }

  .proof-badge {
    top: -12px;
    left: -8px;
    width: 85px; /* スマホ表示時の画像の横幅 */
  }

  .proof-title {
    font-size: 16px;
    margin-top: 5px;
  }
}

/* =========================
   アワード・実績セクション
========================= */
/* ベース（PC向け）の設定 */
.award-section {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 40px;
  box-sizing: border-box;
}

/* 白背景のカード部分 */
.award-card {
  background-color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 35px 20px;
  border: 1px solid #eee;
}

/* 見出しエリア */
.award-header {
  text-align: center;
  margin-bottom: 20px;
  border-bottom: 3px solid #63bdd6;
  padding-bottom: 15px;
}

/* サブタイトル（オレンジ） */
.award-sub-title {
  display: block;
  color: #ff8c00;
  font-weight: bold;
  font-size: 19px;
  margin-bottom: 8px;
}

/* メインタイトル */
.award-main-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* 本文テキスト */
.award-text {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 15px;
}

/* 画像エリア */
.award-img {
  margin: 15px 0 25px;
  text-align: center;
}

.award-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 一番下のCTAボタン画像エリア */
.award-cta {
  text-align: center;
  margin-top: 10px;
}

.award-cta a {
  position: relative;
  display: inline-block; /* 画像のサイズに枠を合わせる */
  overflow: hidden; /* はみ出た光を隠す（重要） */
  /* 👇 ※重要：画像自体が角丸の場合、光が四隅からはみ出ないように同じ角丸を指定してください */
  /* border-radius: 10px; */ 
}

.award-cta img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* キラッと光るエフェクト本体（白い斜めの帯） */
.award-cta a::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* 初期位置は左の外側 */
  width: 50%; /* 光の幅 */
  height: 100%;
  
  /* 透明〜白半透明〜透明のグラデーションで光を表現 */
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  
  transform: skewX(-25deg); /* 帯を斜めにする */
  animation: shinyEffect 3s infinite; /* 3秒ごとに無限ループ（秒数で頻度を調整） */
  z-index: 10; /* 画像の上に重ねる */
}

@keyframes shinyEffect {
  0% {
    left: -100%;
  }
  40% {
    left: 200%;
  }
  100% {
    left: 200%;
  }
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .award-card {
    padding: 25px 10px;
  }

  .award-header {
    padding-bottom: 12px;
    margin-bottom: 15px;
  }

  .award-sub-title {
    font-size: 16px;
    margin-bottom: 5px;
  }

  .award-main-title {
    font-size: 18px;
  }

  .award-text {
    font-size: 14px;
  }

  .award-img {
    margin: 10px 0 20px;
  }
}

/* =========================
   編集部厳選ポイントセクション
========================= */
/* ベース（PC向け）の設定 */
.point-section {
  width: 100%;
  max-width: 700px;
  margin: 40px auto 40px;
  padding: 0px;
  box-sizing: border-box;
}

/* 上部バナー*/
.point-header {
  position: relative;
  background-color: #67c0d4;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  padding: 12px 10px;
  border-radius: 6px;
  margin-bottom: 25px;
  letter-spacing: 0.05em;
}

/* 吹き出しのしっぽ（下向きの三角形） */
.point-header::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 47%;
  border-top: 15px solid #67c0d4;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

/* コンテンツエリア */
.point-body {
  background-color: #eafbff;
  padding: 30px;
}

/* 白い見出しボックス */
.point-title-box {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  margin-top: 33px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.point-icon {
  color: #1a325b;
  font-size: 24px;
  margin-right: 15px;
}

/* =========================
   CSSで作るチェックマーク
========================= */
/* 丸い背景の枠 */
.css-check-icon {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: #1a325b;
  margin-right: 15px;
}

/* 白いチェックマーク本体 */
.css-check-icon::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 10px;
  width: 7px;
  height: 12px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(45deg);
}

/* テキスト */
.point-title-text {
  color: #1a325b;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
  text-align: left;
}

/* テキスト */
.point-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 1px;
}

/* 画像エリア */
.point-img {
  margin: 20px 0;
  text-align: center;
}

.point-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* セパレーター（一番下の点線） */
.point-separator {
  border-bottom: 1px dashed #a9c5c9;
  margin-top: 30px;
  margin-bottom: 27px;
}

/* セパレーター（一番下の点線） */
.point-separator2 {
  border-bottom: 1px dashed #8bd0da;
  margin-top: 5px;
  margin-bottom: 5px;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .point-header {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .point-header::after {
    border-top-width: 12px;
    border-left-width: 10px;
    border-right-width: 10px;
    left: 47%;
  }

  .point-body {
    padding: 20px 10px;
  }

  .point-title-box {
    padding: 12px 9px;
    margin-bottom: 6px;
    margin-top: 20px;
  }

  .point-icon {
    font-size: 20px;
    margin-right: 10px;
  }

  .point-title-text {
    font-size: 16px;
  }

  .point-text {
    font-size: 14px;
  }

  .point-separator {
    margin-top: 20px;
  }

  .point-separator2 {
    margin-top: 20px;
  }

  .css-check-icon {
    width: 22px;
    height: 22px;
    margin-right: 12px;
  }

  .css-check-icon::after {
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border-width: 2px;
  }
}


/* =========================
   愛用者のクチコミセクション
========================= */
/* ベース（PC向け）の設定 */
.user-reviews-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0px;
  box-sizing: border-box;
}

/* 上部 見出し枠 */
.user-reviews-header {
  background-color: #fff;
  border: 2px solid #dcdcdc;
  border-radius: 4px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
  color: #333;
  padding: 12px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-title-icon {
  color: #333;
  font-size: 1.3em;
  margin-right: 8px;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 400 !important;
}

/* 薄い黄色の背景エリア */
.user-reviews-body {
  background-color: #fdf3d1;
  border: 1px solid #ebd898;
  border-radius: 4px;
  padding: 25px 20px;
}

/* 白いクチコミカード */
.review-card {
  background-color: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 6px;
  margin-bottom: 20px;
}

/* 最後のカードの下の余白を消す */
.review-card:last-of-type {
  margin-bottom: 0;
}

/* カード上部（アイコン＋見出し＋星） */
.review-card-top {
  display: flex;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

/* アイコン画像枠 */
.review-icon {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  margin-right: 18px;
}

.review-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* テキストと星の枠 */
.review-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* クチコミの見出し */
.review-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
  margin-bottom: 6px;
}

/* 星マーク */
.review-stars {
  color: #f6b100;
  font-size: 15px;
  letter-spacing: 3px;
  line-height: 1;
}

/* カード下部（本文テキスト） */
.review-card-bottom {
  padding: 20px;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

/* 注釈テキスト */
.review-annotation {
  text-align: right;
  font-size: 11px;
  color: #666;
  margin-top: 10px;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .user-reviews-header {
    font-size: 19px;
    padding: 10px;
  }

  .user-reviews-body {
    padding: 20px 15px;
  }

  .review-card {
    margin-bottom: 15px;
  }

  .review-card-top {
    padding: 15px;
  }

  .review-icon {
    width: 45px;
    height: 45px;
    margin-right: 12px;
  }

  .review-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .review-stars {
    font-size: 13px;
  }

  .review-card-bottom {
    padding: 15px;
    font-size: 14px;
  }
}

/* =========================
   期間限定キャンペーン情報 セクション
========================= */
/* ベース（PC向け）の設定 */
.campaign-section {
  width: 100%;
  max-width: 700px;
  margin: 20px auto 40px;
  box-sizing: border-box;
  padding: 0px;
}

/* 赤い見出し枠 */
.campaign-header {
  background-color: #ff5f6d;
  /* 明るい赤色 */
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  padding: 15px 10px;
  border-radius: 4px 4px 0 0;
  letter-spacing: 0.05em;
}

/* 薄い黄色の背景エリア */
.campaign-body {
  background-color: #ffffe7;
  border: 1px solid #ffe49a;
  border-top: none;
  border-radius: 0 0 4px 4px;
  padding: 30px;
}

.campaign-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}

.campaign-text:last-of-type {
  margin-bottom: 0;
}

.campaign-bold-text {
  font-weight: bold;
}

.campaign-blue {
  color: #1a8ccf;
  font-weight: bold;
}

.campaign-img {
  margin: 0 0 20px;
  text-align: center;
}

.campaign-img img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .campaign-header {
    font-size: 18px;
    padding: 12px 10px;
  }

  .campaign-body {
    padding: 20px 15px;
  }

  .campaign-text {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .campaign-img {
    margin-bottom: 15px;
  }
}

/* =========================
   キャンペーン画像 タブ切り替え機能
========================= */
/* タブコンテナの余白設定 */
.campaign-tab-container {
  margin: 0 0 25px;
}

/* ラジオボタン自体は非表示にする */
.campaign-tab-container input[type="radio"] {
  display: none;
}

/* タブボタンを横並びにするエリア */
.camp-tab-labels {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  /* タブとタブの間の隙間 */
}

/* 各タブの基本デザイン（非アクティブ時：グレー） */
.camp-tab-label {
  flex: 1;
  background-color: #999999;
  color: #fff;
  text-align: center;
  padding: 12px 10px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
  /* 上の角だけ丸くする */
  cursor: pointer;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}

.camp-tab-label:hover {
  opacity: 0.8;
}

/* 選択されているタブのデザイン（水色グラデーション） */
#tab-capsule:checked~.camp-tab-labels label[for="tab-capsule"],
#tab-granule:checked~.camp-tab-labels label[for="tab-granule"],
#tab-capsule-2:checked~.camp-tab-labels label[for="tab-capsule-2"],
#tab-granule-2:checked~.camp-tab-labels label[for="tab-granule-2"] {
  background: linear-gradient(180deg, #81cce6 0%, #68b9d4 100%);
  opacity: 1;
}

/* 画像が入るコンテンツエリアの外枠（水色） */
.camp-tab-contents {
  border: 3px solid #68b9d4;
  background-color: #fff;
  padding: 10px;
}

/* 画像コンテンツの基本設定（最初はすべて非表示） */
.camp-tab-content {
  display: none;
  text-align: center;
}

.camp-tab-content img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* 選択されたタブに対応する画像を表示する */
#tab-capsule:checked~.camp-tab-contents .content-capsule,
#tab-granule:checked~.camp-tab-contents .content-granule,
#tab-capsule-2:checked~.camp-tab-contents .content-capsule,
#tab-granule-2:checked~.camp-tab-contents .content-granule {
  display: block;
}

/* =========================
   SP版（スマホ）のレイアウト調整
========================= */
@media screen and (max-width: 767px) {
  .camp-tab-label {
    font-size: 15px;
    padding: 10px 5px;
  }

  .camp-tab-contents {
    padding: 5px;
    border-width: 2px;
  }
}

.doctor {
  margin: 22px 0px;
  padding: 0 14px;
  margin-bottom: 2%;
}

.hikaku {
  margin: 10px 0px;
  padding: 0 14px;
}

/* =========================
   画像スライダー（3枚切り替え）
========================= */
/* スライダーの大枠（はみ出た部分を隠す） */
.award-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 15px 0 40px;
}

/* 画像が横に並ぶレール部分（ここでスライドの動きをつける） */
.award-slider-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* 個別のスライド画像枠 */
.award-slide {
  width: 100%;
  flex-shrink: 0;
  /* 縮むのを防止し、常に100%の幅を保つ */
}

.award-slide img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

/* ドットナビゲーションの枠 */
.award-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

/* 個別のドットデザイン（通常時：グレー） */
.award-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #dcdcdc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* 選択されているドットのデザイン（オレンジ） */
.award-dot.is-active {
  background-color: #525252;
}

/* SP版（スマホ）のレイアウト調整 */
@media screen and (max-width: 767px) {
  .award-slider-container {
    margin: 10px 0 20px;
  }

  .award-slider-dots {
    gap: 10px;
    margin-top: 10px;
  }

  .award-dot {
    width: 7px;
    height: 7px;
  }
}

/* =========================
   スライダーの左右矢印
========================= */
/* 矢印ボタン共通スタイル */
.slider-arrow {
  position: absolute;
  top: 45%;
  /* 画像の縦中央あたりに配置 */
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.7);
  /* 半透明の白背景 */
  border: 1px solid #ccc;
  border-radius: 50%;
  /* 丸くする */
  cursor: pointer;

  /* 👇 ここを変更：数値を大きくして確実に一番上にする */
  z-index: 100;

  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
  padding: 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.95);
  /* ホバーで濃くする */
}

/* 矢印の形（CSSの線でくの字を描画） */
.slider-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
}

/* 左矢印 */
.slider-prev {
  left: 10px;
}

.slider-prev::after {
  transform: rotate(-135deg);
  /* 左向きに回転 */
  margin-left: 4px;
  /* 中央に見えるよう位置を微調整 */
}

/* 右矢印 */
.slider-next {
  right: 10px;
}

.slider-next::after {
  transform: rotate(45deg);
  /* 右向きに回転 */
  margin-right: 4px;
  /* 中央に見えるよう位置を微調整 */
}

/* SP版（スマホ）のレイアウト調整 */
@media screen and (max-width: 767px) {
  .slider-arrow {
    width: 32px;
    height: 32px;
    top: 45%;
  }

  .slider-arrow::after {
    width: 8px;
    height: 8px;
    border-width: 2px;
  }

  .slider-prev {
    left: 5px;
  }

  .slider-next {
    right: 5px;
  }
}


/*============================
コラム
============================*/

.column{
  margin:40px 0;
}

.column h2{
  margin:0;
  padding:10px 14px;
  background:#e6e6e6;
  
  color:#333;
  font-size:18px;
  font-weight:bold;
  line-height:1.2;
}

.column_box{
  background:#fff;
  padding:8px 12px;
  border-top:none;
}

.column_box a{
  display:block;
  padding:10px 0;
  color:#2f73d9;
  font-size:16px;
  line-height:0.5;
  text-decoration:underline;
  transition:.2s;
}

.column_box a:last-child{
  border-bottom:none;
}

.column_box a:hover{
  color:#0d55c5;
}

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

.column h2{
  font-size:17px;
}

.column_box{
  padding:6px 10px;
}

.column_box a{
  font-size:15px;
  padding:9px 0;
}

}

.title07{
  margin: 9% 0% -6% 0%;
}

#page05{
  margin-top: 7%;
}



.tac {
  text-align: center;
}

footer p {
  font-size: 12px;
}

footer a:visited, footer a:link {
  color: #ffffff;
  display: block;
}

/* 追従 */
.ScrollTop {
  position: fixed;
  bottom: 20px;
  right: 10px;
  left: auto;
  transform: none;
  width: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.65s ease;
}

.ScrollTop.isActive{
  opacity: 1;
  visibility: visible;
}

.cta_follow {
  display: block;
  padding: 0;
}

.cta_follow img {
  display: block;
  width: 206px;
  max-width: none;
  margin: 0;
  height: auto;
}

@media screen and (min-width: 768px) {
  .ScrollTop{
    position:fixed;
    right:20px;
    bottom:40px;
    width:23%;
    min-width:140px;
  }

  .cta_follow img{
    display:block;
    width:100%;
    height:auto;
  }
}

.anno-container {
  margin: -5px 20px 25px 20px;
}