@charset "UTF-8";

/* ------------------------------------------------------------
 独自リセット・共通スタイル
------------------------------------------------------------ */

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

  .font-size-S {
      font-size: 14px;
  }
  .font-size-M {
      font-size: 16px;
  }
  .font-size-L {
    font-size: 18px;
  }
  .font-size-LL {
      font-size: 20px;
  }




body {
  /* 游ゴシック体 */
  font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック",sans-serif;
  background-image: url("../img/back.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: cover;
  background-attachment: fixed;
  color: #423e3a;
}

a {
  text-decoration: none;
  transition-duration: 0.2s;
}
@media (min-width: 960px) {
  a:hover {
    transition-duration: 0.2s;
  }
}

@media (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
p {
  line-height: 1.5em;
}
.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;
  }
}

.topic {
  background:linear-gradient(transparent 50%, #ff6 70%);
  font-weight: bold;
}

.red {
  color: #fa4141;
  font-weight: bold;
}

.star5_rating{
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: #CCCCCC; /* グレーカラー 自由に設定化 */
  font-size: 12px;
}

.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: #ffcf32; /* イエローカラー 自由に設定化 */
}

.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; /* sticky を機能させるために必要 */
  background: #fff;
  max-width: 430px;
  margin: auto;
  box-shadow: 0 0 30px rgba(62, 35, 48, 0.1);
}

.inner {
  width: 95%;
  margin: auto;
}
/* ------------------------------------------------------------
  header
------------------------------------------------------------ */
/* Header Container */
.header {
  background-color: #fff;
  width: 100%;
  height: 52px;
  display: flex; /* フレックスボックスで要素を整列 */
  justify-content: space-between; /* ロゴとハンバーガーメニューを左右に配置 */
  align-items: center; /* 縦方向の中央揃え */
  padding: 0 10px; /* ヘッダーの左右に余白 */
  box-sizing: border-box;
  position: relative; /* メニューの位置制御のために追加 */
}

/* Logo Container */
.logo-container {
  display: flex; /* フレックスボックスで調整可能 */
  align-items: center;
}

/* Logo */
.logo {
  max-height: 40px; /* ロゴがヘッダーに収まるように高さを調整 */
  height: auto;
  max-width: 210px;
}

/* ------------------------------------------------------------
  fv
------------------------------------------------------------ */
.fv {
  position: relative;
  background-color: #f7f5de;
}

.time {
  position: absolute;
  width: 72%;
  top: 45%;
  right: 1%;
}

.time p {
  text-align: center;
  background-color: #333333;
  color: #fff;
  padding: 10px 5px;
}

.time p span {
  color: #ffdd17;
  font-weight: bold;
  text-decoration: underline;
  margin: 0 5px;
}

.blinking-text {
  animation: blink 2s infinite;
}

@keyframes blink {
  0% { opacity: 1; }   /* 開始時は完全に表示 */
  40% { opacity: 1; }   /* 開始時は完全に表示 */
  50% { opacity: 0.2; }  /* 中間点で非表示（点滅） */
  60% { opacity: 1; }   /* 開始時は完全に表示 */
  100% { opacity: 1; } /* 終了時は完全に表示に戻る */
}

.shindan {
  position: relative;
  margin-top: -35px;
  background-color: #edf6ec;
  border: #44beba 2px solid;
  border-radius: 10px;
  z-index: 10;
  text-align: center;
}

.shindan h2 {
  text-align: center;
  background-color: #44beba;
  color: #fff;
  width: 90%;
  margin: -20px auto 0;
  border-radius: 30px;
  padding: 2px 5px;
}

.shindan_box {
  margin: 10px 5px;
}

.shindan h3 span {
  color: #f57e53;
  margin-right: 5px;
}

.radio_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 10px;
}

#popupContent .radio_box {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.radio_box input {
  display: none;
}

.radio_box label {
  background-color: #fff;
  border: #f57e53 1.5px solid;
  border-radius: 5px;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 0;
  box-shadow: 0 3px rgba(0, 0, 0, 0.2);
}

.radio_box input:checked+label {
  background-color: #f57e53;
  color: #fff;
}

.radio_box label img {
  width: 50px;
  margin: auto;
}

.popup-overlay {
  display: none;
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup {
  background-color: #edf6ec;
  border: #44beba 2px solid;
  margin: auto;
  padding: 10px 20px;
  width: 95%;
  max-width: 500px;
  border-radius: 10px;
  position: relative;
}

.close-button {
  color: #fff;
  background-color: #44beba;
  position: absolute;
  top: -35px;
  right: 0px;
  font-size: 20px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
}

.result-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: #44beba;
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  box-shadow: 0 3px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* ------------------------------------------------------------
  TOP3
------------------------------------------------------------ */
.top3 {
  margin: 20px auto;
}

.top3 h2 {
 text-align: center;
 border-top: #44beba 1.5px solid;
 border-bottom: #44beba 1.5px solid;
 color: #44beba;
}

.top3 table {
 border-collapse: collapse;
 margin-top: 10px;
}

.top3 table tr td {
  border: none;
  border-bottom: #cccccc 1px solid;
}

.top3 table tr td:nth-child(1) {
  width: 25%;
  padding: 10px 0;
}

.top3 table tr td:nth-child(1) img {
  box-shadow: 0 0 4px gray;
}

.top3 table tr td:nth-child(2) {
  width: 70%;
  text-align: left;
  vertical-align: top;
  padding: 10px 5px;
}

.top3 table tr td h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  background-image: url(../img/rank1.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.top3 table tr:nth-child(2) td h3::before {
  background-image: url(../img/rank2.webp);
}
.top3 table tr:nth-child(3) td h3::before {
  background-image: url(../img/rank3.webp);
}

.top3 table tr td h3 a {
  color: #423e3a;
}

.top3 table tr td p {
  color: #ff6c80;
  font-weight: bold;
  margin-top: 8px;
  margin-left: 5px;
}

.detail {
  color: #423e3a !important;
  border: #CCCCCC 1px solid;
  padding: 2px 2px 2px 0;
  width: 55%;
  font-size: 12px;
}
.detail span {
  background-color: #e6e6e6;
  padding: 2px 3px;
  margin-right: 5px;
}

.campaign {
  background-color: #f7f5de;
  border: #f3d368 2px solid;
  margin-top: 5px;
  padding: 5px;
}

.campaign h3 {
  text-align: center;
  text-decoration: underline;
}

.campaign h3 a {
  color: #423e3a;
}

.campaign table {
  margin-top: 0;
  background-color: #fff;
}

.campaign h4 {
  text-align: center;
  height: auto !important;
}

.campaign .recommend_list {
  background-color: #fff;
  margin-top: 10px;
}
/* ------------------------------------------------------------
  おすすめ
------------------------------------------------------------ */
.recommend {
  margin: 30px auto;
}

.recommend h2 {
  position: relative;
  background-color: #f3d368;
  color: #FFF;
  font-weight: bold;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding: 2%;
}
.recommend h2 img {
  position: absolute;
  bottom: -5%;
  right: 2%;
  width: 50px;
  height: auto;
}

.recommend_body {
  border: #f3d368 2px solid;
  background-color: #f7f5de;
  border-radius: 5px;
}
.recommend_body ul li {
  border-bottom: #f3d368 1px solid;
  padding: 3% 0 3% 2%;
}
.recommend_body ul li:last-child {
  border-bottom: none;
}
.recommend span {
  color: #ff6c80;
  text-decoration: underline;
  font-weight: bold;
}
.recommend_body ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background-image: url(../img/check.webp);
  background-size: contain; /* 画像を要素に合わせて調整 */
  background-repeat: no-repeat;
}

/* ------------------------------------------------------------
  ランキング
------------------------------------------------------------ */
.ranking {
  background-color: #f7f5de;
  padding: 20px 0;
}

.balloon {
  position: relative;
  display: block;
  padding: 3px 10px;
  max-width: 250px;
  margin: auto;
  text-align: center;
  color: #fff;
  background-color: #ff6c80;
  border-radius: 30px;
  font-style: normal;
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border: 5px solid transparent;
  border-top: 5px solid #ff6c80;
}
@keyframes floating-y {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}

.ranking h2 {
  position: relative;
  text-align: center;
  margin-top: 10px;
}
.ranking h2:before {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #ff6c80;
}

.ranking h2 span {
  color: #ff6c80;
  font-size: 26px;
}

.rank_content {
  width: 95%;
  margin: 30px auto 0;
  background-color: #fff;
  border-top: #f7931e 5px solid;
  padding: 10px 5px;
  box-shadow: 0px 2px 4px rgb(185, 185, 185);
}
.rank_content h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 50px;
  height: 50px;
  background-image: url(../img/rank1.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.rank_content:nth-child(4) h3::before {
  background-image: url(../img/rank2.webp);
}
.rank_content:nth-child(5) h3::before {
  background-image: url(../img/rank3.webp);
}
.rank_content:nth-child(6) h3::before {
  background-image: url(../img/rank4.webp);
}
.rank_content:nth-child(7) h3::before {
  background-image: url(../img/rank5.webp);
}

.rank_content h3 a {
  color: #44beba;
  text-decoration: underline;
}

.copy {
  margin: 10px 0 0 10px;
  font-weight: bold;
}

.rank_inner {
  display: flex;
  gap: 5px;
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.bn_img {
  width: 40%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}

.rank_inner table {
  border-collapse: collapse;
  width: 60%;
  border: #cccccc 1px solid;
  height: auto;
}

.rank_inner table tr::before {
	content: "";
	vertical-align: middle;
	display: inline-block;
}

.rank_inner table th,.rank_inner table td {
  border: #cccccc 1px solid;
  padding: 3px 0;
  font-size: 12px;
  vertical-align: middle;
  box-sizing: border-box;
}

.rank_inner table th {
  background-color: #e6e6e6;
  width: 42%;
  text-align: center;
}

.rank_inner table td {
  text-align: left;
  padding: 3px 8px;
  background-image: url(../img/doble_circle.svg);
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-size: 18px;
  border-bottom: #cccccc 1px solid;
}

.circle {
  background-image: url(../img/circle.svg) !important;
}

.rank_inner table td span {
  color: #fa4141;
  font-weight: bold;
  font-size: 1.4em;
}

.rank_inner table tr:nth-child(5) td {
  text-align: center;
  background-image: none;
}

.recommend_list {
  margin-top: 30px;
  border: #f3d368 2px solid;
}

.recommend_list h4 {
  background-color: #f3d368;
  position: relative;
  height: 4vh;
}

.recommend_list h4 img {
  position: absolute;
  bottom: 0;
}

.recommend_list ul {
  padding: 15px 10px;
}

.recommend_list ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 20px;
  height: 20px;
  background-image: url(../img/check.webp);
  background-size: contain; /* 画像を要素に合わせて調整 */
  background-repeat: no-repeat;
}

.recommend_list ul li {
  margin-bottom: 8px;
}

.recommend_list ul li:last-child {
  margin-bottom: 0;
}

.recommend_list ul li span {
  color: #ff6c80;
  text-decoration: underline;
  font-weight: bold;
}

.review_content {
  margin-top: 10px;
}

.tab-wrap {
  display: flex;
  flex-wrap: wrap;
}

.tab-label {
  color: #fff;
  background: #cccccc;
  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;
  font-size: 14px;
}

.tab-label:not(:last-of-type) {
  margin-right: 5px;
}

.tab-label::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/exchange.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.tab-label:nth-child(5):before {
  background-image: url(../img/speed.webp);
}

.tab-label:nth-child(8):before {
  background-image: url(../img/heart.webp);
}

.tab-content {
  width: 100%;
  overflow: hidden;
  opacity: 0;
  border: #44beba 2px solid;
}

.tab-content.is-hidden { /* 新しいクラス名を追加 */
  height: 0;
  overflow: hidden;
  opacity: 0;
  display: none;
}

.tab-content.is-active { /* 新しいクラス名を追加 */
  display: block;
  height: auto;
  overflow: auto;
  padding: 15px 5px;
  opacity: 1;
  transition: 0.5s opacity;
}

/* アクティブなタブ */
.tab-switch:checked+.tab-label {
  background: #44beba;
}
.tab-switch:checked+.tab-label+.tab-content {
  display: block;
  height: auto;
  overflow: auto;
  padding: 15px 5px;
  opacity: 1;
  transition: .5s opacity;
}
.tab-switch:checked+.tab-label:nth-child(2):before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/exchange2.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.tab-switch {
  display: none;
}

.review {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.review:not(:last-of-type) {
  margin-bottom: 20px;
}

.star {
  width: 20%;
}

.review p {
  font-size: 12px;
  background-color: #f7f5de;
  border-radius: 5px;
  padding: 5px;
}

.ranking .timer_in_box {
  background-color: #333333;
  border-radius: 5px;
  text-align: center;
  position: relative;
  margin-top: 10px;
}
.ranking .timer_in_box:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -8px;
  border: 8px solid transparent;
  border-top: 8px solid #333333;
}
.ranking .time-p {
  background-color: #ffff73;
  font-size: 16px;
  font-weight: bold;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  padding-top: 5px;
}
.ranking .time-p::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  background-image: url(../img/clock.webp);
  background-size: contain;
  background-repeat: no-repeat;
}
.ranking .timerbox {
  color: #fff;
  font-size: 16px;
  padding: 10px 0 5px;
}
.ranking .timer span {
  font-size: 24px;
}
.ranking .timer .end {
  color: #fff;
  font-size: 16px;
}

.timer {
  color: #fff;
}
.h {
  color: #fdf405;
  font-weight: bold;
}
.m {
  color: #fdf405;
  font-weight: bold;
}
.s {
  color: #fdf405;
  font-weight: bold;
}

.cta_web {
  text-align: center;
}

.shiny-btn {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 20px auto 0;
  padding: 15px 5px;
  width: 100%;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  background-color: #fa4141;
  border-radius: 5px;
  border-bottom: solid 5px #d82525;
  overflow: hidden;
}

.shiny-btn::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 0.2s;
  animation: shiny-btn 4s ease-in-out infinite;
}
@-webkit-keyframes shiny-btn {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}

.cta_web small {
  font-size: 12px;
  font-weight: 100;
}

.cta_tel {
  text-align: center;
}

.tell {
  position: relative;
  display: inline-block;
  justify-content: space-around;
  align-items: center;
  margin: 10px auto 0;
  padding: 8px 15px;
  min-width: 250px;
  color: #FFF;
  font-weight: bold;
  background: #f39800;
  border-radius: 50px;
  border-bottom: solid 5px #dd7e00;
  overflow: hidden;
  line-height: 1.2rem;
}

.cta_tel small {
  font-weight: 100;
}

/* ------------------------------------------------------------
  選び方
------------------------------------------------------------ */
.choice {
  margin: 30px auto;
}

.choice h2 {
 text-align: center;
 border-top: #44beba 1.5px solid;
 border-bottom: #44beba 1.5px solid;
 color: #44beba;
}

.accordion_header {
  padding: 10px;
  width: 100%;
  /*cursor: pointer;*/
  background-color: #44beba;
  color: #fff;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.accordion_content {
  display: none;
  background-color: #fff;
  border: #cccccc solid 1px;
  padding: 10px 5px 20px;
}

/*.accordion_header::before{
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 15px;
  height: 2px;
  background-color:#fff;
  transform: rotate(180deg);
  transition: all .3s ease-in-out;
}

.accordion_header::after{
  position: absolute;
  content: '';
  top: 50%;
  right: 15px;
  width: 15px;
  height: 2px;
  background-color:#fff;
  transition: all .3s ease-in-out;
}

.accordion_header.open::before {
  transform: rotate(90deg);
}
*/

.profile {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.profile img {
  width: 18%;
}

.profile ul li {
  position: relative; /* 子要素の絶対配置の基準にする */
  padding-left: 15px; /* マーカー分のスペースを確保する（調整が必要） */
}

.profile ul li:not(:last-of-type) {
  margin-bottom: 5px;
}

.profile ul li::before {
  content: "•"; /* ドットをコンテンツとして挿入 */
  color: #b3b3b3;
  font-size: 1.8em;
  position: absolute;
  left: 0; /* 左端に配置 */
  top: 50%; /* 上端に配置（必要に応じて調整） */
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  line-height: inherit; /* 親要素の行の高さを継承 */
}

.top2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
  width: 95%;
  margin: 10px auto 0;
}

.top2 a {
  font-size: 12px;
  text-align: center;
  color: #44beba;
  text-decoration: underline;
  font-weight: bold;
}

.top2 a img {
  border: #cccccc 1px solid;
}

.accordion_content p {
 background-color: #f7f5de;
 border-radius: 5px;
 padding: 10px;
 margin-top: 10px;
}

/* ------------------------------------------------------------
  一押し
------------------------------------------------------------ */
.most_recommend {
  background-color: #f3d368;
  padding: 30px 0;
}

.most_recommend .inner {
  background-color: #fff;
  border: #f57e53 2px solid;
  border-radius: 7px;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
  position: relative;
  min-height: 200px;
  text-align: center;
  padding: 25px 10px 10px;
}

.most_recommend h2 {
  width: 70%;
  min-height: 35px;
  text-align: center;
  color: #fff;
  padding-top: 4px;
  background-image: url(../img/ribbon.webp);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  position: absolute;
  top: -3%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.most_recommend h3 a {
  color: #44beba;
  font-weight: bold;
  text-decoration: underline;
}

.most_recommend img {
  width: 50%;
  margin-top: 10px;
}

.most_recommend .timer_in_box {
  display: flex;
  align-items: center;
  background-color: #f7f5de;
  border: #f57e53 1px solid;
  margin-top: 10px;
}

.most_recommend .time-p {
  width: 30%;
  background-color: #f57e53;
  color: #fff;
  padding: 5px 0;
}

.most_recommend .timerbox {
  width: 70%;
}

.most_recommend .timer {
  color: #423e3a;
  text-align: center;
  font-weight: bold;
}

.most_recommend .h,.most_recommend .m,.most_recommend .s {
  color: #f57e53;
  font-size: 20px;
}

.most_recommend table {
  border-collapse: collapse;
  width: 100%;
  text-align: left;
  border: #cccccc 1.5px solid;
  border-top: none;
}

.most_recommend table tr th,.most_recommend table tr td {
  border: none;
  border-bottom: #cccccc 1.5px solid;
  padding: 5px 10px;
}

.most_recommend table tr th {
  color: #44beba;
  width: 55%;
  font-size: 14px;
}

.most_recommend table tr th::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  margin-right: 5px;
  width: 20px;
  height: 20px;
  background-image: url(../img/exchange3.webp);
  background-size: contain;
  background-repeat: no-repeat;
}

.most_recommend table tr:nth-child(2) th::before {
  background-image: url(../img/speed2.webp);
}

.most_recommend table tr td {
  font-size: 14px;
}

.most_recommend table tr td span {
  color: #ff6c80;
  font-weight: bold;
  font-size: 1.5em;
}

/* ------------------------------------------------------------
  よくあるご質問
------------------------------------------------------------ */
.qa {
  padding: 20px 0;
}

.qa h2 {
  position: relative;
  text-align: center;
  margin: 10px auto 20px;
}
.qa h2:before {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #ff6c80;
}

.qa h2 span {
  color: #ff6c80;
  font-size: 26px;
}

.accordion-item {
  border: 1px solid #44beba;
  border-radius: 5px;
  overflow: hidden;
}

.accordion-item:not(:last-of-type) {
  margin-bottom: 10px;
}

.accordion-button {
  width: 100%;
  padding: 15px 40px 15px 40px; /* 左右に余白を追加 */
  text-align: left;
  color: #423e3a;
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s;
  position: relative; /* Qマークとトグルアイコンの位置調整用 */
}

.q-mark {
  position: absolute;
  left: 5px; /* 左端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  color: #44beba; /* Qの文字色 */
  width: 30px; /* Qの幅 */
  height: 30px; /* Qの高さ */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  font-family: 'Inter', sans-serif;
  font-display: swap;
}

.accordion-button::after {
  content: "+"; /* 初期状態のアイコン */
  position: absolute;
  right: 15px; /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 垂直方向の中央揃え */
  background-color: #44beba; /* 初期状態の背景色 */
  color: white; /* アイコンの色 */
  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: "-"; /* 開いた状態のアイコン */
  background-color: #666666; /* 開いた状態の背景色 */
}

.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;
}

/* ------------------------------------------------------------
  コラム
------------------------------------------------------------ */
.column {
  background-color: #f7f5de;
  padding: 20px 0;
}

.column h2 {
  position: relative;
  text-align: center;
  margin: 10px auto 20px;
}
.column h2:before {
  position: absolute;
  bottom: -8px;
  left: calc(50% - 30px);
  width: 60px;
  height: 3px;
  content: '';
  border-radius: 3px;
  background: #ff6c80;
}

.column h2 span {
  color: #ff6c80;
  font-size: 26px;
}

.column__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.column-item a {
  box-shadow: 0 0 2px gray;
  color: #423e3a;
  display: flex;
  border: 1px solid #dbeafe;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 10px 15px 10px 5px;
  background: #fff;
  position: relative;
  min-height: 55px;
}

.column-item a p {
  font-weight: bold;
  line-height: 1.2
}

@media screen and (max-width: 600px) {
  .column-item a p {
      font-size:13px
  }
}

/* ------------------------------------------------------------
  運営者情報
------------------------------------------------------------ */
.administrator {
  padding: 15px 0;
}
.administrator .inner {
  border-top: #333333 1px solid;
  border-bottom: #333333 1px solid;
  padding: 10px;
}
.administrator h3 {
  margin-top: 10px;
}
.administrator p {
  font-size: 12px;
}

/* ------------------------------------------------------------
  footer
------------------------------------------------------------ */
.footer {
  padding: 1rem;
  font-size: 12px;
  color: #fff;
  background: #423e3a;
  text-align: center;
}

.footer__navi {
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 1rem;
}


.footer__navi li {
  display: inline-block;
  margin-bottom: 10px;
}

.footer__navi li:not(:last-child) {
  margin-right: 16px;
}
/* ------------------------------------------------------------
  column
------------------------------------------------------------ */
.column_page {
  padding: 5%;
}

.column_page h2 {
  padding: 1rem;
  border-left: 5px solid #44beba;
  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 #44beba;/*上線*/
  border-bottom: solid 3px #44beba;/*下線*/
  font-size: 16px;
}
.column_page h4 {
  position: relative;
  padding: 0.5rem;
  border-bottom: 2px solid #cccccc;
  margin-top: 50px;
  text-align: left;
  font-size: 16px;
}
.column_page h4:before {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 10%;
  height: 2px;
  content: '';
  background: #44beba;
}
.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: 20px;
  text-align: center;
  margin: auto;
  margin-bottom: 30px;
}

.admin_page {
  width: 90%;
  margin: auto;
  text-align: center;
  padding-bottom: 50px;
}

.admin_page h3 {
  padding: 0.5rem 1rem;
  border-left: 5px solid #000;
  background: #f4f4f4;
  margin-top: 20px;
  text-align: left;
  font-size: 16px;
}

.admin_page p {
  text-align: left;
  margin-top: 10px;
  font-size: 16px;
}

.privacy_text {
  margin-top: 20px;
  border: solid 1px gray;
  padding: 10px;
  text-align: left;
  font-size: 12px;
}

.privacy_text p {
  font-size: 12px;
}

.privacy_text ol {
  list-style: decimal;
  padding-left: 20px;
  margin-top: 10px;
}

.privacy_text ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 10px;
}
/* ------------------------------------------------------------
  ポップアップ
------------------------------------------------------------ */
#campaign-overlay {
  /* ポップアップを画面全体に固定 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex; /* 子要素を中央に配置するためにflexboxを使用 */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  /* 修正: 初期状態では非表示にする */
  display: none;
}

#campaign-overlay.is-visible {
  /* is-visibleクラスが付いたときに表示 */
  display: flex;
}

#campaign-content {
  position: relative;
  width: 80%;
  max-width: 400px;
  max-height: 80%;
}

.campaign-image {
  max-width: 100%;
  height: auto;
}




