@charset "UTF-8";

body {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  margin-bottom: 30px;
}

a {
  text-decoration: none;
}

.wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
  background-color: #fff;
  padding-bottom: 50px;
}

.thanks_wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 50px;
}

.fade-in {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.fade-out {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

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

.form__inner {
  margin: 0 auto;
}

section#form {
  margin-bottom: 50px;
}

.preference_date {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

input {
  background-color: white;
  line-height: 1.5;
}

select {
  background-color: white;
}

select#store_selection {
  width: 50%;
}

.sticky-footer {
  max-width: 900px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: auto;
  margin: 0 auto 15px;
  background-color: rgba(0,0,0,0);
  z-index: 1;
}

.img-03__inner, .img-07__inner, .img-10__inner, .img-13__inner {
  position: relative;
}

.cta-btn_1 {
  position: absolute;
  bottom: 9%;
  left: 50%;
  transform: translate(-50%);
  width: 80%;
  z-index: 0;
}

.zoom {
  animation: scale-up-down 2s infinite;
}

@keyframes scale-up-down {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* フォームデザインここから */
.form {
  padding: 0 14px;
}

.form_row {
  border-bottom: 2px solid #E4EEEE;
  padding: 14px 8px;
}

.form_row .note {
  margin-top: 8px;
  font-size: 12px;
  color: #142850;
}

.form_label {
  margin-bottom: 8px;
  color: #142850;
}

.form_wrap input[type=text],
.form_wrap input[type=tel],
.form_wrap input[type=email],
.form_wrap textarea,
.form_wrap input[type=date] {
  width: 100%;
  height: 45px;
  margin: 0;
  padding: 10px;
  border: none;
  background: #F4F8F9;
  border: 1px solid #E4EEEE;
  border-radius: 3px;
  box-shadow: none;
  color: #142850;
  font-size: 16px;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.form_wrap input[type=date] {
  margin-bottom: 4px;
}

.form_wrap select {
  padding: 6px 17px 6px 9px;
  width: 100%;
  height: 45px;
  color: #142850;
  font-size: 14px;
  letter-spacing: 0.12em;
  border-radius: 3px;
  box-sizing: border-box;
  border: 1px solid #E4EEEE;
  background-color: #F4F8F9;
}

.radio_wrap {
  margin-left: 20px;
  color: #142850;
}

.form__label label {
  position: relative;
}

.form_wrap.confirm .form_label label::after,
.form_wrap.confirm .form_label.is-required label::after {
  display: none;
}

.form_label label::after {
  content: "任意";
  display: inline-block;
  padding: 3px 7px;
  background-color: #FFF;
  border: 1px solid #142850;
  color: #142850;
  font-size: 11px;
  text-align: center;
  border-radius: 3px;
  right: 0;
  position: absolute;
  margin-right: 24px;
}

input.fm_age {
  width: 10%;
  height: 30px;
  margin: 0;
  padding: 10px;
  background: #F4F8F9;
  border: 1px solid #E4EEEE;
  border-radius: 3px;
  box-shadow: none;
  color: #142850;
  font-size: 16px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 753px) {
  .form_label label::after {
      right: unset;
      margin-left: 8px;
  }
}

.form_label.is-required label::after {
  content: "必須";
  display: inline-block;
  background-color: #F00029;
  color: #fff;
  border: none;
}

.form_center_row {
  text-align: center;
  margin-top: 24px;
}

.form_center_row button {
  color: var(--main-color);
}

::placeholder {
  color: #bdbcbc;
  font-size: 14px;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--main-color);
}

.acceptance {
  font-size: 14px;
  line-height: 28px;
  text-align: center;
  letter-spacing: 1.68px;
  color: #142850;
}

.acceptance a {
  color: #0078DC;
  text-decoration: none;
}

.form_row.submit {
  display: block;
  text-align: center;
  margin-bottom: 48px;
  border-bottom: none;
}

.noborder {
  border-bottom: none;
}

.btn_send {
  display: inline-block;
  width: 250px;
  max-width: 100%;
  padding: 13px;
  box-shadow: none;
  border: none;
  border-radius: 5px;
  background-color: #DA534F;
  color: #fff;
  font-size: 16px;
  text-align: center;
  box-sizing: border-box;
  transition: all .25s;
  margin-top: 20px;
}

.btn_send:hover {
  opacity: 0.7;
}

.confirm_message {
  margin-bottom: 32px;
  text-align: center;
  max-width: 90%;
  margin: 0 auto;
}

/* フォームデザインここまで */

footer {
  display: none;
  font-size: 0.7rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 0px 0;
  margin-top: 50px;
}

div.policy {
  font-size: 1rem;
  text-align: center;
}

div.policy a {
  text-decoration: none;
}


/* 特定商取引法ページのスタイル */
table {
  font-size: 13px;
  text-align: left;
  background-color: #999999;
  border-collapse: collapse;
  width: 100%;
}

table th, table td {
  background-color: #FFFFFF;
  padding: 9px;
  border: 1px solid #EEEEEE;
}

table th {
  background-color: #EEEEEE;
}

.tokusho__inner {
  max-width: 800px;
  margin: 50px auto 0;
  background-color: #fff;
  padding: 20px;
  text-align: center;
}

#tokusho .tokusho__inner h1 {
  margin: 30px 0;
}

/*特商法ページのスタイルここまで*/

/* FAQデザイン */
.faq_title {
  margin: 0 auto 20px;
  width: 70%;
}

.faq_wrap {
  background: #e4eef0;
  padding: 20px;
}

.faq_inner {
  padding: 20px;
}

.faq_toggle {
  background: #000000;
  border-radius: 10px;
  padding: 16px 31px 16px 20px;
  position: relative;
  transition: all 0.2s ease 0s;
  margin: 0 auto;
  margin-top: 8px;
}

.faq_toggle p {
  color: #FFF;
  font-size: 16px;
  text-align: left;
  padding-left: 15px;
}

.faq_toggle::before {
  content: "+";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  transition: transform 0.3s ease;
}

.faq_toggle:hover {
  opacity: 0.8;
}

.faq_toggle_content {
  padding: 14px;
  text-align: left;
  display: none;
  color: #142850;
}

.faq_toggle.active::before {
  content: "-";
  transform: translateY(-50%) rotate(180deg);
}


/*サンクスページのスタイル*/

.thanks_headline {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  font-family: 'Roboto';
  text-align: center;
  letter-spacing: 2.52px;
  color: #14C878;
  margin-bottom: 28px;
}

.thanks_title {
  font-size: 14px;
  color: #142850;
  font-weight: normal;
  text-align: center;
}

.thanks_txt {
  font-size: 14px;
  color: #142850;
  text-align: center;
}

.btn_back {
  background-color: #14C878;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  outline: none;
  color: #fff;
  appearance: none;
  margin-top: 30px;
  border-radius: 5px;
}

.thanks .thanks_logo {
  width: 20%;
  margin: 10% auto;
}

.contact.thanks {
  width: 90%;
  margin: 0 auto;
}

.header_container.thanks {
  text-align: center;
}

.footer_container {
  text-align: center;
  margin: 20px auto;
}

/*サンクスページのスタイルここまで*/




/* メディアクエリ */
@media (max-width: 787px) {
  .sticky-footer {
    max-width: 100%;
  }



h2.thanks {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  margin: 100px 0 30px;
}

p.thanks_message {
  text-align: center;
  font-size: 0.7rem;
  margin-bottom: 100px;
}

.hidden {
  display: none;
}

input, textarea, select {
  font-size: 16px;
}

.linebutton__inner {
  display: block;
  margin: 20px auto;
  width: 250px;
}

.img-06__inner {
  position: relative;
}

@keyframes blink-animation {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}

.offer-button {
  position: absolute;
  bottom: -2%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 86%;
  z-index: 0;
  animation: blink-animation 1s infinite;
}

/* 各セクションのフェードインアニメーション */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation-name: fadeInUp;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

section#thanks_message {
  background-color: #FFFFFF;
}


p.footer__text {
  text-align: center;
}
}