/*▽▽▽初期設定▽▽▽*/
body {
  width: 720px;
  margin: 0 auto;
  font-family:
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", YuGothic, "游ゴシック",
    Meiryo, メイリオ, verdana, Osaka, "ＭＳ Ｐゴシック", "MS PGothic",
    sans-serif;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
}
#wrapper {
  width: 720px;
  height: 100%;
  overflow: hidden;
  margin: 0 auto;
}
.fv_area,
#form_area {
  position: relative;
}

.fixed_btn_bg {
  position: fixed;
  z-index: 2;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: linear-gradient(
    to top,
    transparent,
    #000 0,
    #000 10%,
    transparent
  );
  padding: 50px 100px;
  width: 720px;
}
.fixed_btn {
  position: fixed;
  z-index: 2;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: auto;
  width: 620px;
}

/*▽▽▽form_area▽▽▽*/
#form_area {
  top: -45px;
}
form {
  width: 90%;
  margin: 0 auto;
  box-shadow: 0px 5px 10px rgb(0 0 0 / 20%);
  position: absolute;
  top: 33%;
  left: 0;
  right: 0;
}
form .ttl {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 45px;
  font-weight: 800;
  color: #fff;
  background-color: #08284d;
  padding: 40px 0;
  text-align: center;
  letter-spacing: 2px;
  position: relative;
}
.form_wrapper {
  box-shadow: 10px 10px 20px rgb(0 0 0 / 20%);
  padding: 35px 20px;
  background: #fff;
  text-align: center;
}
form dl {
  text-align: left;
  padding-bottom: 10px;
  display: flex;
  flex-flow: row wrap;
  padding-bottom: 0px;
  justify-content: center;
}
form dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  width: 33%;
  font-size: 27px;
  line-height: 1;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
form dd {
  width: 340px;
  margin-bottom: 25px;
}
form input,
form select {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  border: none;
  outline: none;
  box-sizing: border-box;
}

form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  display: block;
  font-family: inherit;
  line-height: 1.5;
  font-size: 20px;
  background-color: #efefef;
  padding: 17px 20px;
  box-sizing: border-box;
}
form input[type="text"]::placeholder,
form input[type="email"]::placeholder,
form input[type="tel"]::placeholder {
  font-size: 18px;
}

form select {
  width: 100%;
  display: block;
  box-sizing: border-box;
  background-color: #efefef;
  font-size: 20px;
  padding: 17px 50px 17px 20px;
  line-height: 1.3;
}

.select_box {
  position: relative;
}

.select_box::after {
  position: absolute;
  content: "▼";
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
form .pv {
  font-size: 20px;
  margin: 20px 0 10px;
  text-align: center;
}
form .pv a {
  color: #296dcc;
}
form .pv a[target="_blank"] {
  background: url(../img/icon_new_window.svg) no-repeat right center;
  padding-right: 15px;
  margin-right: 3px;
}
form .pv a:hover {
  text-decoration: underline;
}
form .nav #button {
  border: none;
  background: none;
  cursor: pointer;
}

.case {
  margin-top: -130px;
  position: relative;
}
.support,
.case02,
.qa_area {
  margin-top: -5px;
}
.message {
  margin-top: -30px;
}
.voice {
  margin-top: -125px;
}

.qa_area {
  background-color: #0a203e;
}
.qa_area h1 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-align: center;
  padding: 55px;
}
.accordion {
  width: 85%;
  margin: 0 auto 25px;
}
summary {
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.accordion_q {
  position: relative;
  list-style: none;
  margin-bottom: -4px;
}
.accordion_q::-webkit-details-marker {
  display: none;
}

/* 矢印アイコン（閉：下向き） */
.accordion_q::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("../img/mingcute_down-fill.png") no-repeat center / contain;
  pointer-events: none;
  transition: transform 0.2s ease;
}
/* 開：上向き（回転） */
details[open] .accordion_q::after {
  transform: translateY(-50%) rotate(180deg);
}

footer {
  width: 100%;
  text-align: right;
  padding: 70px 0px 180px 0px;
  background-color: #0a203e;
  margin-top: -27px;
}
footer ul {
  width: 580px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 auto;
  padding-right: 50px;
}
.footer-items {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  text-decoration: underline;
  padding-left: 50px;
}

/* thanks */
.thanksfv_area {
  width: 85%;
  margin: 0 auto;
}
.thanksfv_area p {
  text-align: left;
  margin-bottom: 40px;
}
.thanksfv_area a {
  color: #168bce;
  text-decoration: none;
}
.logo {
  width: 70%;
  margin: 70px auto 50px;
}
h1 {
  color: #d1091e;
  font-size: 43px;
}

.breakdown {
  position: relative;
  top: 105px;
  z-index: 1;
}

.sride_area01 {
  position: relative;
}

.swiper01 {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}

.sride_area01 {
  top: -10px;
}

.swiper01 {
  top: 410px;
}

.swiper-pagination {
  margin-top: 30px;
}
.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 0 0 0 20px !important;
  background: #bba363 !important;
}
.swiper-pagination-bullet-active {
  background: #3f311d !important;
}
.swiper-pagination-bullet:first-child {
  margin: 0 !important;
}

.why {
  margin-top: 50px;
}

.supportThx {
  margin: 70px 0;
}

.footerThx {
  margin-top: -35px;
  position: relative;
  bottom: 30px;
  text-align: center;
  background: none;
  padding: 0;
}
.footerThx a {
  text-decoration: none;
  color: #989898;
  margin: 0 30px;
  font-size: 22px;
}
