@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;
  height: 300vh;
}

@media screen and (min-width: 750px) {
  .body-inner {
    max-width: 750px;
    box-shadow: 0 1px 20px rgb(0 0 0 / 30%);
    background: #fff;
    margin-left: auto;
    margin-right: auto;
  }
}

img {
  width: 100%;
  margin-top: -1px;
  /*--隙間調整--*/
}

h2 {
  font-size: 1.4rem;
  padding: 1rem;
  margin-top: 1rem;
  background: #222;
  color: #fff;
}

/* フローティングバナー */
/* ============================================ */
.float-bnr {
  height: 0;
  opacity: 0;
  transition: 1s;
  pointer-events: none;
}

.float-bnr.show {
  display: block;
  height: auto;
  opacity: 1;
  transition: 1s;
  pointer-events: painted;
  position: fixed;
  bottom: 0;
  z-index: 9997;
}

/* フローティングバナー ここまで */
/* ============================================ */

/* コンテンツの横幅 */
/* ============================================ */
.contents-inner {
  width: 100%;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* コンテンツの横幅 ここまで */
/* ============================================ */

.Headline{
  position: absolute;
  top: 0;
}

/* スライダー */
/* ============================================ */
.slider {
  width: 100%;
  margin: 0 auto;
}

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

.slider .pagination {
  text-align: center;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  margin: 2px;
}


.swiper-pagination-bullet-active {
  background: #999999;
  /*スライダーのドットの色*/
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  width: 30px;
  height: 30px;
  background-size: 100%;
  margin-top: -24px;
}

.swiper-button-next {
  background-image: url(../images/arrow.png);
  margin-right: -10px;
}

.swiper-button-prev {
  background-image: url(../images/arrow.png);
  margin-left: -10px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
}

/* スライダー ここまで*/
/* ============================================ */

/* QA */
/* ============================================ */
.faq {
  background-color: #ffffff;
  padding-bottom: 40px;
}

.faq__title {
  padding-bottom: 20px;
}

.faq__toggle-contents {
  margin-bottom: 3px;
  /*padding: 0 20px;*/ /*Qの幅*/
}

.faq__toggle-title {
  position: relative;
  cursor: pointer;
  padding: 10px 0 5px;
}

.faq__toggle-btn {
  position: absolute;
  top: 52%;
  right: 7%; /*ボタンを開く＋の位置*/
  transform: translateY(-50%);
  display: block;
  width: 24px;
  height: 24px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  border-radius: 50%;
}

.faq__toggle-btn:before,
.faq__toggle-btn:after {
  display: block;
  content: "";
  background-color: #ffffff;
  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__toggle-contents dd {
  display: none;
  background: #fff;
  font-size: 14px;
  padding: 10px;
  line-height: 1.8;
  margin-bottom: 20px;
}

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

  .faq__toggle-contents {
    padding: 0 130px;
  }

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

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

  .faq__toggle-contents dd {
    font-size: 18px;
    padding: 20px;
  }
}

/* QA ここまで */
/* ============================================ */

/* video */
/* ============================================ */
.video {
  position: relative;
}

.video__item img {
  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: inline-block;
  margin: 0 5px 0 0;
  border-right: #000 solid thin;
  font-size: 13px;
}

.footer_nav li:nth-child(2) {
  border-right: none;
}

.footer_nav li a {
  text-decoration: none;
  padding: 0 10px 0 0;
  color: #000;
}

.footer_nav li:last-child {
  border: none;
}

footer .copyright {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  padding-bottom: 10px;
}

/* footer ここまで */
/* ============================================ */

.floating-banner {
  position: fixed; /* バナーを追従させる */
  z-index: 99999; /* 他の要素の下に隠れないように */
  bottom: 0; /* バナーの上下の位置 */
  right: 0; /* バナーの左右の位置 */
  width: 350px; /* バナーの横幅 */
}
.floating-banner__image {
  max-width: 100%; /* 画像の最大幅 */
}
@media screen and (max-width: 990px) { /* タブレット用のブレイクポイントを指定 */
  .floating-banner {
    display: none; /* タブレットサイズ以下でPC用のバナーを非表示に */
  }
}
@media screen and (max-width: 560px) { /* スマホ用のブレイクポイントを指定 */
  .floating-banner {
    display: block;/* 消していたバナーを表示させる */
    width: 100vw; /* スマホの画面幅いっぱいにバナーを表示 */
  }
}

/*特商法*/
@media screen and (min-width: 481px){
table {
    font-size: 13px;
    line-height: 1.5;
}
}

th, td {
  border: 1px solid #CCC;
  padding: 10px 15px;
}


h1 {
  margin: 10px;
  padding: 10px;
  font-size: 24px;
}

.mt50 {
  margin: 50px 0 !important;
  text-align: center;
}

.mt50 img {
  width: auto;
}