@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
/*for SP*/
@media screen and (max-width:750px) {
  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-M2 {
    font-size: 20px;
  }
  .font-size-L {
      font-size: 24px;
  }
}

/*for PC*/
@media screen and (min-width:750px) {
  .font-size-S {
      font-size: 18px;
  }
  .font-size-M {
      font-size: 20px;
  }
  .font-size-M2 {
    font-size: 24px;
  }
  .font-size-L {
      font-size: 32px;
  }
}

body {
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background-image: url("../img/back.jpg");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-attachment: fixed;
  color: #333333;
}
a {
  text-decoration: none;
  transition-duration: 0.2s;
}
p {
  line-height: 1.6em;
}
.bold {
  font-weight: bold;
}
ul, ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
section img {
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  max-width: 750px;
  height: auto;
}
*:focus {
  outline: none;
}
/*PCでは無効（改行しない）*/
.br-sp{
  display: none;
}
/*スマートフォンでは有効（改行する）*/
@media screen and (max-width:768px) {
  .br-sp{
      display: block;
  }
}

.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC; /* グレーカラー 自由に設定化 */
  /*font-size: 30px; フォントサイズ 自由に設定化 */
}
.star5_rating:before, .star5_rating:after{
  content: '★★★★★';
}
.star5_rating:after{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: #f15a24; /* イエローカラー 自由に設定化 */
}
.star5_rating[data-rate="5"]:after{ width: 100%; } /* 星5 */
.star5_rating[data-rate="4.5"]:after{ width: 90%; } /* 星4.5 */
.star5_rating[data-rate="4"]:after{ width: 80%; } /* 星4 */
.star5_rating[data-rate="3.5"]:after{ width: 70%; } /* 星3.5 */
.star5_rating[data-rate="3"]:after{ width: 60%; } /* 星3 */
.star5_rating[data-rate="2.5"]:after{ width: 50%; } /* 星2.5 */
.star5_rating[data-rate="2"]:after{ width: 40%; } /* 星2 */
.star5_rating[data-rate="1.5"]:after{ width: 30%; } /* 星1.5 */
.star5_rating[data-rate="1"]:after{ width: 20%; } /* 星1 */
.star5_rating[data-rate="0.5"]:after{ width: 10%; } /* 星0.5 */
.star5_rating[data-rate="0"]:after{ width: 0%; } /* 星0 */

small {
  font-size: 0.8em;
}
/* ------------------------------------------------------------
  body-wrapper
------------------------------------------------------------ */
.body-wrapper {
  position: relative;
  overflow: visible;
  background: #fff;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
}
/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
header {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  transform: translateX(-50%);
  margin: 0 auto;
  background-color: #feffe3;
  color: #fff;
  padding: 10px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 5px;
}

.logo img {
  width: auto;
  height: 30px;
}

.header-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0px;
  flex-grow: 1;
  justify-content: center;
}
.header-link {
  color: #333;
  text-decoration: none;
  font-size: 10px;
  transition: color 0.3s;
  position: relative;
  text-align: center;
  line-height: 1.4rem;
  font-weight: bold;
}
.header-link:nth-child(2) {
  padding: 0 5px;
}
.header-link:nth-child(2)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 40px;
  background-color: #999999;
}
.header-link:nth-child(2):after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5px;
  height: 40px;
  background-color: #999999;
}

/* ハンバーガーメニューのスタイル */
.hamburger-overlay {
  position: relative;
  z-index: 10000;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
.hamburger-overlay__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #808080;
  transition: all .6s;
}
.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #fff;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #a67c52;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}
.nav-overlay__content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding: 0 5%;
}
.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all .6s;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
  border-bottom: #fff 1.5px solid;
}
.nav-overlay__item::before {
  content: "●";
  position: absolute;
  top: 50%;
  left: 0%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  color: orange;
  font-size: 32px;
  line-height: 1;
}
.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }

.nav-overlay__link {
  display: inline-block;
  padding: 20px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  transition: color .1s;
  font-weight: bold;
}
/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
.fv {
  position: relative;
  margin-top: 68px;
}
.timerbox {
  position: absolute;
  top: 70%;
  right: 7.5%;
  font-size: 12px;
  text-align: center;
}
.timer {
  color: #8c6239;
  font-weight: bold;
  letter-spacing: -1.5px;
}
.h {
  color: #39b54a;
  font-weight: bold;
  font-size: 32px;
}
.m {
  color: #39b54a;
  font-weight: bold;
  font-size: 32px;
}
.s {
  color: #39b54a;
  font-weight: bold;
  font-size: 16px;
}
.end {
  color: #8c6239;
  font-size: .9rem;
}

@media screen and (min-width:410px) {
  .timerbox {
    right: 8.5%;
  }
  .end {
    font-size: 1rem;
  }
}
@media screen and (min-width:600px) {
  .timerbox {
    right: 14%;
    font-size: 1rem;
  }
  .end {
    font-size: 1.4rem;
  }
}
/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.ranking {
  background-color: #fff9c2;
  padding: 3% 0 0;
}
.ranking .gradient-line {
  background: linear-gradient(to right, #f7931e 50%, #ffea6e 50%);
}
.rank_content {
  width: 95%;
  margin: 5% auto 0;
  background-color: #fff;
  border-top: #fbb03b 10px solid;
  border-bottom: #fbb03b 10px solid;
  padding: 2% 1% 3%;
}
.rank_content h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
}
.rank-1 h3::before {
  background-image: url(../img/rank1.webp);
}
.rank-2 h3::before {
  background-image: url(../img/rank2.webp);
}
.rank-3 h3::before {
  background-image: url(../img/rank3.webp);
}
.hidden-view .rank_content h3::before {
  content: none;
  display: none;
}
.rank_content h3{
  border-bottom: #fbb03b 3px dashed;
}
.hidden-view .rank_content h3 {
  margin-left: 10px;
}
.evaluation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 3%;
  font-weight: bold;
}
.evaluation .star {
  background-color: #f15a24;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 5px;
  padding: 0 5px;
}
.rank_inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  margin: 3% 0;
}
.rank_inner table {
  border-collapse: collapse;
}
.rank_inner table tr::before {
	content: "";
	vertical-align: middle;
	display: inline-block;
}
.rank_inner table th {
  border: #fbb03b 1.5px solid;
  padding: 3px 0;
  font-size: 13px;
  text-align: center;
  border-left: none;
  border-right: none;
}
.rank_inner table td {
  border: #cccccc 1.5px solid;
  padding: 3px 0;
  font-size: 13px;
  text-align: center;
  border-left: none;
  border-right: none;
}
.rank_inner table th {
  color: #e28437;
}
.rank_inner table td span {
  color: #fa4141;
  font-weight: bold;
}

.recommend_list {
  border: #fbae17 2px solid;
}
.recommend_list h4 {
  background-color: #fbae17;
  color: #fff;
  text-align: center;
  padding: 3px;
}
.recommend_list ul {
  padding: 10px;
}
.recommend_list ul li {
  margin-bottom: 8px;
}
.recommend_list ul li:last-child {
  margin-bottom: 0;
}
.recommend_list ul li span {
  color: #fa4141;
  text-decoration: underline;
  font-weight: bold;
}
.recommend_list ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/check.webp);
  background-size: contain; /* 画像を要素に合わせて調整 */
  background-repeat: no-repeat;
}

.form_btn {
  display: flex;
  justify-content: center;
  text-align: center;
  width: 280px;
  margin: 5% auto;
  background-color: #3ead49;
  color: #fff;
  box-shadow: 0 2px 2px gray;
  border-radius: 5px;
  padding: 5px 0;
  font-weight: bold;
}

.review_content {
  margin: 5% 0 0;
  border-top: #fbb03b 3px dashed;
  padding-top: 5%;
}
.review_content h4 {
  text-align: center;
  color: #fff; /* テキストの中の色 */
  text-shadow:
    -1px -1px 0 #754c24,
    1px -1px 0 #754c24,
    -1px 1px 0 #754c24,
    1px 1px 0 #754c24;
}
.review_content h4 span {
  background: linear-gradient(transparent 50%, #9ce7a3 50%);
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0;
}
.tab-label {
  color: #fff;
  background: #b3b3b3;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
.tab-label:not(:last-of-type) {
  margin-right: 5px;
}
.tab-content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #f7931e;
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  border: #fbb03b 2px solid;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}

.review_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.profile {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap; /* 必要に応じて折り返し */
  gap: 8px;
}
.profile img {
  width: 60px; /* 適切なサイズに固定 */
  height: 60px;
  flex-shrink: 0;
}
.review_box h5 {
  margin: 0 0 5px 3px;
  color: #42210b;
}
.review_box p {
  position: relative;
  display: inline-block;
  padding: 7px 10px;
  background-color: #fffdb0;
  border-radius: 5px;
  color: #42210b;
}
.review_box p:before {
  content: "";
  position: absolute;
  top: 20%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid #fffdb0;
}
.more {
  text-align: center;
  color: #42210b;
  background-color: #cccccc;
  font-weight: bold;
  cursor: pointer;
  border-radius: 30px;
  width: 60%;
  margin: 20px auto 0;
  padding: 5px;
}
.modal {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 半透明の背景 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-content {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  height: 70vh;
  position: relative;
  overflow-y: auto;
}
.modal-content .review_box {
  margin-bottom: 5%;
}
.close {
  position: absolute;
  top: -5px;
  right: 5px;
  font-size: 24px;
  cursor: pointer;
}
.modal-content .tab-wrap {
  margin: 0;
}
.modal-content .tab-label {
  color: #fff;
  background: #b3b3b3;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px;
  flex: 1;
}
.modal-content .tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 20px 0;
  opacity: 1;
  border: none;
}
.modal-content .review_box {
  border-bottom: #fbb03b 1px solid;
  padding-bottom: 20px;
}


.campaign_box {
  background-color: #fff8ee;
  border: #f15a24 1.5px solid;
  border-radius: 10px;
  text-align: center;
  padding: 3%;
}
.campaign_box h4 {
  display: inline-block;
  position: relative;
  height: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 20px;
  background: #f15a24;
  color: #FFF;
  box-sizing: border-box;
}
.campaign_box h4:before, .campaign_box h4:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}
.campaign_box h4:before {
  top: 0;
  left: 0;
  border-width: 15px 0px 15px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}
.campaign_box h4:after {
  top: 0;
  right: 0;
  border-width: 15px 10px 15px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}
.campaign_box ul {
  text-align: left;
  margin-top: 10px;
  font-weight: bold;
}
.campaign_box ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  margin-top: -2px;
  width: 20px;
  height: 20px;
  background-image: url(../img/check.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.ranking .timer_in_box {
  background-color: #e6e6e6;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 30px;
  padding: 3px 10px;
  margin-top: 2px;
}
.ranking .time-p {
  font-size: 12px;
  font-weight: bold;
  color: #754c24;
}
.ranking .timerbox {
  position: static;
  font-size: 16px;
  padding: 8px 5px 5px;
  background-color: #fff;
  border-radius: 30px;
}
.ranking .timer {
  color: #333333;
  font-size: 10px;
  letter-spacing: normal;
}
.ranking .timer span {
  font-size: 16px;
  color: #fa4141;
}
.ranking .timer .end {
  font-size: 14px;
  font-weight: bold;
}

.cta {
  width: 70%;
  margin: 3% auto 0;
}

.hidden-view{
  display: none;
  padding-bottom: 3%;
}
.hidden-view.open{
  display: block;
}
.button::before{
  content: "4位以下を見る ▼";
}
.button.open::before {
  content: "閉じる ▲";
}
.hidden-view.open ~ .button::before {
  content: "閉じる ▲";
}
.button {
  display: block;
  margin: 5% auto;
  background-color: #e6e6e6;
  border: #999999 1.5px solid;
  border-radius: 30px;
  width: 80%;
  padding: 5px;
  color: #333333;
}

/* ------------------------------------------------------------
  選ぶポイント
------------------------------------------------------------ */
.point {
  background-image: url(../img/point_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top; /* 画像を中央に配置 */
  background-color: #ffffee;
  margin-top: 5%;
}
.gradient-line {
  width: 100%;
  height: 8px; /* 線の高さ */
  background: linear-gradient(to right, #c69c6d 50%, #a67c52 50%);
}
.point h2 {
  margin: 3% auto;
}
.point_txt {
  text-align: center;
  width: 90%;
  margin: auto;
}
.carousel-container {
  position: relative;
  width: 85%;
  margin: 10% auto;
}
.carousel-slide {
  display: none;
  width: 100%;
}
.carousel-slide.active {
  display: block;
}
.point_box {
  position: relative;
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  border: 2px solid #999;
  text-align: center;
  padding: 8% 5% 5%;
  min-height: 260px;
}
@media screen and (min-width: 600px) {
  .point_box {
    min-height: 300px;
  }
}
.number {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 20px;
  color: #333;
  background-color: transparent;
  font-size: 56px;
  font-weight: bold;
  color: #c7b299;
  letter-spacing: -2px;
}
.number span {
  color: #c69c6d;
}
.point_box h3 {
  border-bottom: #b3b3b3 4px dashed;
}
.point_box p {
  text-align: left;
  margin-top: 5%;
}
.point_box p span {
  color: #f15a24;
  font-weight: bold;
}
.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: #c69c6d;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
}
.carousel-prev {
  left: -25px;
}
.carousel-next {
  right: -25px;
}
/* ------------------------------------------------------------
  比較表
------------------------------------------------------------ */
.table {
  background-image: url(../img/table_bg.webp);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
  padding: 5% 0;
}
.table_content {
  background-color: #fff;
  border: #333333 1px solid;
  box-shadow: 0 2px 3px rgb(180, 180, 180);
  width: 95%;
  margin: -4% auto 0;
  padding: 3% 1% 1%;
}
.table_content .tab-wrap:after {
  content: '';
  width: 100%;
  height: 3px;
  background: #cccccc;
  display: block;
  order: -1;
}
.table_content .tab-label {
  background: #f2f2f2;
  color: #333333;
  font-weight: bold;
  white-space: nowrap;
  text-align: center;
  padding: 5px;
  order: -1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  border-radius: 5px 5px 0 0;
  flex: 1;
}
/* アクティブなタブ */
.table_content .tab-switch:checked+.tab-label {
  background: #8cc63f;
}
.table_content .tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 10px 0 0;
  opacity: 1;
  border: none;
}
/* ラジオボタン非表示 */
.tab-switch {
  display: none;
}
.table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 5px;
  background: #fff;
  border-top: none;
  table-layout: fixed;
}
.table table th{
  text-align: center;
  background-color: #cccccc;
  padding: 5px 0;
  font-weight: bold;
  font-size: 0.9rem;
  border-top: none;
  border-right: none;
  border-left: none;
}
.table table td{
  text-align: center;
  padding: 10px 0;
  border: none;
  border-bottom: #808080 dashed 2px;
}
.table table th:nth-child(2) {
  width: 40%;
}
.table table td:nth-child(2) {
  background-color: #fffff0;
}
.link {
  color: #1a73e8;
  text-decoration: underline;
  font-size: 10px;
  font-weight: bold;
}
.shiny-btn1 {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 8px;
  min-width: 60px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  font-size: 14px;
  background: #f7931e;
  box-shadow: 3px 3px #9e9e9e;
  border-radius: 5px;
  line-height: 1.5rem;
}
.dashed_line {
  border: #808080 dashed 1.5px;
}

/* ------------------------------------------------------------
  よくあるご質問
------------------------------------------------------------ */
.qa {
  background-color: #f9f8e1;
  padding: 8% 0;
  text-align: center;
}
.balloon {
  position: relative;
  display: inline-block;
  padding: 3px 10px;
  min-width: 200px;
  max-width: 100%;
  color: #fff;
  background: #f7931e;
  border-radius: 30px;
  font-weight: bold;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #f7931e;
}
.qa h2 {
  color: #f15a24;
  margin: 10px 0;
}
.qa h2 span {
  font-size: 1.6em;
}

.qa_inner {
  width: 95%;
  margin: auto;
}
.accordion-item {
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-button {
  width: 100%;
  padding: 15px 30px 15px 10px; /* 左右に余白を追加 */
  text-align: left;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  position: relative; /* Qマークとトグルアイコンの位置調整用 */
  color: #333333;
}

.accordion-button::after {
  content: "+"; /* 初期状態のアイコン */
  position: absolute;
  right: 15px; /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  color: #333333; /* アイコンの色 */
  width: 20px; /* アイコンの幅 */
  height: 20px; /* アイコンの高さ */
  border-radius: 50%; /* 円形にする */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s, content 0.3s; /* 背景色とアイコンの変化を滑らかに */
}

.accordion-button.active::after {
  content: "-"; /* 開いた状態のアイコン */
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 15px;
  background-color: #fff;
  text-align: center;
}

.accordion-content p {
  margin: 15px 0;
  text-align: left;
}
/* ------------------------------------------------------------
  検索
------------------------------------------------------------ */
#search {
  padding: 5% 0;
}

.form__body {
  background-color: #ff962e;
  width: 95%;
  margin: auto;
  border-radius: 5px;
  padding: 3%;
}
.form__inner {
  background-color: #ffffdc;
  margin-top: 5%;
  padding-bottom: 5%;
}
.select-box {
  padding: 5% 3% 0;
}
.search_content {
  display: none;
  animation: fadeIn 0.3s ease;
}
.search_content.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.radio-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 5% 0;
  padding-bottom: 3%;
  border-bottom: #999999 1.5px dashed;
}
.radio {
  border: solid 1px #999999;
  border-radius: 5px;
  background-color: #fff;
  color: #999999;
  padding: 5px;
  font-weight: bold;
  min-height: 40px;
  display: flex;
  align-items: center;
}
.radio-content input {
  margin: 0;
  margin-right: 5px;
}
/* 選択済みの場合、色を濃くする */
.radio:has(> .radio-input:checked) {
  background-color: #e4fcbe;
  border-color: #4CAF50;
  color: #333;
}
.radio-input {
  appearance: none; /* デフォルトスタイルを無効化 */
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #b3b3b3; /* 未選択時のボーダー色 */
  border-radius: 50%;
  margin-right: 8px;
  position: relative;
  cursor: pointer;
}

/* チェック時のスタイル */
.radio-input:checked {
  border-color: #8cc63f; /* 緑のボーダー */
  background-color: #8cc63f; /* 緑の背景 */
}

/* 中に白い丸を表示 */
.radio-input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: white; /* 白い丸 */
  border-radius: 50%;
}
.card_bland label span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
}
.radio-content label img {
  width: 40px;
  height: auto;
}

input[type="checkbox"] {
  accent-color: #8cc63f; /* チェックボックスの色を緑に */
}
/* チェック時のスタイル */
.radio:has(.check-input:checked) {
  background-color: #e4fcbe;
  color: #333333;
}

.form_button {
  text-align: center;
  margin-top: 5%;
}
.form__body button {
  background-color: #8cc63f;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  min-width: 300px;
  padding: 3%;
  cursor: pointer;
  position: relative;
}
.form__body button::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 8px;
  border-color: transparent transparent transparent #fff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}


/* ------------------------------------------------------------
  検索結果ページ
------------------------------------------------------------ */
.result_box {
  background: #fff;
  border: 2px solid #42210b;
  color: #42210b;
  border-radius: 5px;
  width: 95%;
  margin: 3% auto;
  font-size: 0.9rem;
  padding: 10px;
}
.result_box span {
  color: #ea1e1e;
}
.result_box2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  width: 95%;
  margin: auto;
}
.result_box2 a {
  border: #42210b solid 1px;
  padding: 8px;
  text-align: center;
  font-weight: bold;
  color: #42210b;
}

.bottom-menu {
  position: fixed;
  bottom: -100%;
  left: 50%;
  width: 100%;
  max-width: 600px;
  margin: 0 auto; /* max-width がある場合は中央寄せに有効 */
  transform: translateX(-50%); /* 自身の幅の半分だけ左に移動 */
  background: #ffffdc;
  border-radius: 16px 16px 0 0;
  transition: bottom 0.3s ease;
  z-index: 1000;
  color: #42210b;
  text-align: center;
}
.bottom-menu h3 {
  margin-bottom: 3%;
}

/* 表示時 */
.bottom-menu.active {
  bottom: 0;
}
.menu-content {
  padding: 20px;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  background: none;
  border: none;
  background-color: #f7931e;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.menu-item {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  display: block;
  width: 100%;
  padding: 12px 0;
  border-bottom: 1px solid #999999;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 999;
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* ------------------------------------------------------------
  コラム
------------------------------------------------------------ */
.column{
  background-color: #eff4c9;
  padding: 8% 0;
}
.column h2 {
  text-align: center;
  color: #288e40;
  text-shadow: -1px -1px 0 #fbb03b, 1px -1px 0 #fbb03b, -1px 1px 0 #fbb03b, 1px 1px 0 #fbb03b;
  font-size: 36px;
}

.column__list {
  width: 95%;
  margin: -6% auto 0;
  background-color: #fff;
  padding: 8% 2% 3%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.column-item a {
  display: flex;
  border: 2px solid #f7931e;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 2px;
  border-radius: 4px;
  background: #fff;
  position: relative;
  min-height: 55px;
  color: #333333;
  text-align: center;
}

.column-item a p {
  font-weight: bold;
  line-height: 1.2
}

@media screen and (max-width: 600px) {
  .column-item a p {
      font-size:13px
  }
}
@media screen and (min-width: 600px) {
  .column-item a {
    min-height: 65px;
  }
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  padding: 2rem 0 0;
  font-size: 15px;
  color: #603813;
  background: #feffe3;
  text-align: center;
}

.footer__navi {
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.footer__navi li {
  display: inline-block;
}
.footer__navi li a {
  color: #603813;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}

.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.copyright {
  font-size: 12px;
  background-color: #333333;
  color: #fff;
  padding: 5px 0;
}
/* ------------------------------------------------------------
  column
------------------------------------------------------------ */
.column_page {
  padding: 22% 5% 5%;
}

.column_page h2 {
  padding: 1rem;
  border-left: 5px solid #ff962e;
  background: #f4f4f4;
  font-size: 18px;
}
.column_page p {
  padding: 2%;
  margin-bottom: 5%;
  line-height: 1.5rem;
  font-size: 14px;
}
.column_page h3 {
  padding: 0.5em 0;/*上下の余白*/
  border-top: solid 3px #ff962e;/*上線*/
  border-bottom: solid 3px #ff962e;/*下線*/
  font-size: 16px;
}
.column_page h4 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 2px solid #cccccc;
  text-align: left;
  font-size: 16px;
}
.column_page h4:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10%;
  height: 2px;
  content: '';
  background: #ff962e;
}
.column_page ul {
  padding: 0 5% 5%;
}

@media screen and ( min-width:600px) {
  .column_page p {
    line-height: 1.8rem;
  }
}

/* ------------------------------------------------------------
  以下運営者情報ページ
------------------------------------------------------------ */
.admin {
  max-width: 800px;
  padding-top: 15%;
  text-align: center;
  margin: 10% auto 30px;
}

@media screen and (min-width: 768px) {
  .admin {
  padding-top: 80px;
}
}
.admin_page {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.admin_page h3 {
  padding: 0.5rem 2rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
  margin-top: 30px;
  text-align: left;
}

.admin_page p {
  text-align: left;
  margin-top: 10px;
  padding-left: 10px;
  font-size: 16px;
}

.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  font-size: 12px;
  text-align: left;
}




/*アコーディオン*/
.lp-accordion-container {
  width: 95%;
  margin: 0 auto;
  background-color: #ffffdc;
  font-family: Arial, sans-serif;
  text-align: left;
  padding: 20px;
  margin-top: 5%;
}
.lp-accordion-header {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #f15a24;
  text-align: center;
}
span.highlight {
  background: linear-gradient(transparent 70%, #fce277 70%);
}
.lp-accordion-item {
  margin: 10px 0;
  border-radius: 10px;
  background-color: #ffffff;
}
.lp-accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  color: #e28437;
}
/* .lp-accordion-title:hover {
  background-color: #ffe4e1;
} */
.lp-accordion-content {
  display: none;
  padding: 15px;
  border-top: 1px solid #f15a24;
  color: #333;
}
.content-title {
  text-align:center;
  font-weight:bold;
  margin: 10px 0 20px 0;
  color: #e28437;
}
.content-title span {
  border-bottom: 1px solid #e28437;
}

.lp-highlight-box-wrapper {
position: relative;
border: 3px solid #ef856e;
padding: 20px;
border-radius: 5px;
margin: 20px auto;
background-color: #ffffff;
margin-top: 40px;
}

.lp-highlight-box-header {
position: absolute;
top: -30px;
left: 50%;
transform: translateX(-50%);
padding: 0 10px;
width: 300px;
}

.lp-highlight-box-text {
margin-top: 20px;
text-align: center;
color: #333;
font-size: 16px;
line-height: 1.8;
font-weight: bold;
}

.lp-highlight-text {
display: inline-block;
background-color: #ffff8d;
padding: 0 5px;
}

.ossusume-wrapper {
color:#f15a24;
}

.lp-accordion-icon {
font-size: 16px;
}

.anshin-wrapper{
border: 3px solid #ef856e;
padding: 20px;
border-radius: 5px;
background-color: #ffffff;
color:#ef856e;
font-weight: bold;
text-align:center;
}

.button_solid016{
  text-align: center;
  margin-top: 5%;
}
.shiny-btn3 {
  text-decoration: none;
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  padding: 8px 15px;
  color: #FFF;
  transition: 0.3sease-in-out;
  font-weight: 600;
  font-size: 20px;
  background: #f39800;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-radius: 50px;
  line-height: 1.5rem;
  border-bottom: solid 5px #dd7e00;
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}