@charset "UTF-8";
body {
  /* background-image: url(../images/body-bg.jpg);
  background-size: cover;
  background-attachment: fixed;
  background-position: bottom; */
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体",
    "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

.body-inner {
  max-width: 1200px;
  box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
  background: #fff;
  margin-left: auto;
  margin-right: auto;
}
img {
  width: 100%;
  margin-top: -1px; /*--隙間調整--*/
}

/* pictureタグ用の追加CSS */
/* ============================================ */
picture {
  display: block; /* pictureタグはインライン要素なのでblock要素に変更 */
}

picture img {
  width: 100%;
  margin-top: -1px; /* 元のimgと同じ設定を適用 */
}

picture source {
  width: 100%;
}
/* pictureタグ用の追加CSS ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.o-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/* コンテンツの横幅 ここまで */
/* ============================================ */

/* CTA */
.cta-area {
  position: relative;
}

.cta__btn {
  position: absolute;
  width: 82%;
  bottom: 5.4%;
  left: 0;
  right: 0;
  margin: auto;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2))
}

@media screen and (min-width: 750px) {
  .cta__btn {
    width: 45%;
    bottom: 11%;
  }
}
/* CTA ここまで */

/* QA */
/* ============================================ */
.faq {
  /* background-image: url(../images/qa__bg.jpg);
  background-size: cover; */
  padding-bottom: 40px;
}

/* .faq__title {
  padding-bottom: 20px;
} */

.faq__toggle-contents {
  margin-bottom: 3px;
  padding: 0 20px;
}

.faq__toggle-title {
  position: relative;
  cursor: pointer;
  padding: 8px 20px;
  background: #dd8d38;
  color: #fff;
  font-size: 18px;
}

.faq__toggle-contents + .faq__toggle-contents .faq__toggle-title {
  margin-top: 20px;
}

.faq__q-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq__q-label {
  font-family: "din-1451-lt-pro-engschrift", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.faq__q-label::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 40px;
  background: #fff;
  margin-left: 20px;
}

.faq__toggle-btn {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translateY(-50%) rotate(135deg);
  transition: transform 0.3s;
}

.faq__toggle-title.selected .faq__toggle-btn {
  transform: translateY(-25%) rotate(-45deg);
}

/* .faq__toggle-btn:before,
.faq__toggle-btn:after {
  display: block;
  content: "";
  background-color: #fff;
  position: absolute;
  width: 10px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq__toggle-btn:before {
  width: 2px;
  height: 10px;
}

.faq__toggle-title.selected .faq__toggle-btn:before {
  content: normal;
} */

.faq__a-content {
  display: none;
  background: #fff;
  border: 1px solid #dd8d38;
  padding: 20px;
  margin: 0 0 20px;
  line-height: 1.8;
  background-image:
    linear-gradient(#f7f7f7 1px, transparent 1px),
    linear-gradient(90deg, #f7f7f7 1px, transparent 1px);
  background-size: 10px 10px;
  text-align: justify;
}

@media screen and (min-width: 1024px) {
  .faq {
    padding-bottom: 100px;
  }

  .faq__toggle-contents {
    padding: 0 80px;
    max-width: 870px;
    margin: auto;
  }

  /* .faq__toggle-btn:before {
    height: 15px;
  }

  .faq__toggle-btn:after {
    width: 15px;
  } */

  .faq__toggle-contents dd {
    font-size: 16px;
    padding: 20px 30px;
  }
}
/* QA ここまで */
/* ============================================ */

/* video */
/* ============================================ */
.video {
  position: relative;
}
.video__item img,
.video__item picture img { /* pictureタグ用に追加 */
  width: 86%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
/* video ここまで */
/* ============================================ */

/* CTAボタン */
/* ============================================ */

/* CTAボタン ここまで */
/* ============================================ */

/* footer */
/* ============================================ */
footer {
  display: block;
  padding-top: 10px;
  border-top: 3px solid #ddd;
  background: #fff;
}
ul {
  list-style: none;
}
.footer_nav {
  text-align: center;
  padding: 10px 0;
}
.footer_nav li{
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
.footer_nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #000;
}
.footer_nav li:last-child {
  border: none;
}
@media screen and (min-width: 1024px) {
  .footer_nav li {
    display: inline-block;
    border-right: #000 solid thin;
    margin: 0 10px 0 0;
  }
}

footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
}
/* footer ここまで */
/* ============================================ */