.faq {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item+.faq-item {
  margin-top: 10px;
}

.faq-q {
  width: 100%;
  background: #f1f1f1;
  border: none;
  padding: 25px 56px 25px 25px;
  font-size: 18px;
  text-align: left;
  cursor: pointer;
  position: relative;
  font-family: serif;
}

.faq-q .arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-q .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

.faq-a {
  display: none;
  background: #f1f1f1;
  padding: 0 20px 20px;
  font-size: 16px;
  line-height: 1.7;
}

.faq-a p {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}

.faq-item.active .faq-a {
  display: block;
}






.wrap {
  background: #f8f4f478;
  padding-top: 40px;
}

/* =========================
  FutureShop お問い合わせフォーム
========================= */

.fs-contact {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 16px;
  box-sizing: border-box;
  font-family: inherit;
}

/* 1行 */
.fs-contact__row {
  margin-bottom: 20px;
}

/* ラベル */
.fs-contact__label {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* 必須 */
.fs-contact__label .req {
  margin-left: 6px;
  font-size: 12px;
  color: #c00;
}

/* input / textarea 共通 */
.fs-contact__input,
.fs-contact__textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 16px;
  line-height: 1.6;
  border: 0px solid #ccc;
  border-radius: 3px;
  background: #fff;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

/* フォーカス */
.fs-contact__input:focus,
.fs-contact__textarea:focus {
  outline: none;
  border-color: #7aa23f;
  /* サイトカラーに合わせて調整OK */
  box-shadow: 0 0 0 1px rgba(122, 162, 63, 0.3);
}

/* textarea */
.fs-contact__textarea {
  resize: vertical;
  min-height: 120px;
}

/* 送信ボタン */
.fs-contact__submit {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 32px auto 0;
  padding: 14px 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: #333;
  border: none;
  border-radius: 1px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

/* hover */
.fs-contact__submit:hover {
  background: #6a9136;
}

/* active */
.fs-contact__submit:active {
  transform: translateY(1px);
}

/* =========================
  ラジオボタン
========================= */

.fs-contact__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.fs-contact__radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* デフォルトのラジオを消す */
.fs-contact__radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin: 0 8px 0 0;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}

/* 中の● */
.fs-contact__radio input[type="radio"]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #7aa23f;
  /* メインカラー */
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
}

/* checked */
.fs-contact__radio input[type="radio"]:checked {
  border-color: #7aa23f;
}

.fs-contact__radio input[type="radio"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

/* hover */
.fs-contact__radio:hover input[type="radio"] {
  border-color: #7aa23f;
}


/* スマホ微調整 */
@media screen and (max-width: 768px) {
  .fs-contact {
    margin: 24px auto;
  }

  .fs-contact__submit {
    font-size: 15px;
  }
}



/* =========================
  プルダウン（select）
========================= */

.fs-contact__select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.6;
  border: 0px solid #ccc;
  border-radius: 3px;
  background-color: #fff;

  /* 矢印をカスタム */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;

  appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  cursor: pointer;
}

/* focus */
.fs-contact__select:focus {
  outline: none;
  border-color: #7aa23f;
  box-shadow: 0 0 0 1px rgba(122, 162, 63, 0.3);
}

/* disabled（使う場合） */
.fs-contact__select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}








.mv {
  /* background: #000; */
  padding-top: 20px;
}

.w1000 {
  max-width: 1000px;
  width: 90%;
  margin: 0 auto;
}

.w900 {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.w800 {
  max-width: 800px;
  width: 90%;
  margin: 0 auto;
}

.w600 {
  max-width: 600px;
  width: 90%;
  margin: 0 auto;
}

.ptpb {
  padding: 80px 0;
}

.mt40 {
  margin-top: 40px;
}

.mt80 {
  margin-top: 80px;
}

.mb50 {
  margin-bottom: 50px;
}

.pb40 {
  padding-bottom: 40px;
}

.bg_g {
  background: #EBEAEA;
}

.bg_b {
  background: #000;
}

.product {
  background: #000;
}

.product_item {
  margin-bottom: 60px;
}

header .second-nav {
  background: #F1F1F1;
}

header .second-nav ul li {
  color: #333;
}

.link_btn {
  background: #b71c25;
  font-family: sans-serif;
  font-size: 29px;
  font-weight: bold;
  color: #fff;
  display: block;
  text-align: center;
  padding: 30px 0;
}

.btn_above {
  font-family: sans-serif;
  font-size: 22px;
  font-weight: bold;
  color: #000;
  padding: 0 0 10px 0;
  text-align: center;
}

.btn_below {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #594f53;
  line-height: 30px;
  padding: 0 20px;
}

.form_above {
  font-family: sans-serif;
  font-size: 20px;
  font-weight: bold;
  color: #000;
  padding: 0 0 20px 0;
  max-width: 720px;
  margin: 0 auto;
}

.text_r {
  font-size: 22.5px;
  font-weight: bold;
  color: #B61C2A;
  text-align: center;
  line-height: 35px;
}

.thanks_contents {
  height: 50vh;
  text-align: center;
  padding-top: 40px;
}

.thanks_contents h1 {
  font-size: 30px;
}

.thanks_contents p {
  margin-top: 20px;
  font-size: 18px;
}

.sp_only {
  display: none;
}

@media screen and (max-width:768px) {
  .pc_only {
    display: none;
  }

  .sp_only {
    display: block;
  }

  .ps20 {
    padding-left: 20px;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .ptpb {
    padding: 10px 0;
  }


  .product_item {
    padding: 0 20px;
  }

  .link_btn {
    font-size: 15.5px;
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
  }

  .btn_above {
    font-size: 14px;
  }

  .btn_below {
    font-size: 13px;
    line-height: 20px;
  }

  .form_above {
    font-size: 14px;
    padding: 0 10px 10px 10px;
  }

  .text_r {
    font-size: 14.5px;
    line-height: 27px;
  }
}