@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  color: #333;
  font-size: 16px;
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  background-color: #2D2A2A;
}

a {
  color: #333;
  text-decoration: none;
}

img {
  vertical-align: top;
}

a:hover {
  opacity: 0.8;
}

.container {
  width: 100%;
  max-width: 415px;
  margin: 0 auto;
  
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .container {
    margin: 0 auto;
  }
}

.header{
  position: relative;
}

.bg-back {
  background: url(../img/bg.png) center no-repeat;
  background-size: cover;
  position: fixed;
  height: 100vh;
  width: 100%;
  padding: 50px;
  background-attachment: fixed;
  z-index: -1;
}

.cta_container {
  position: fixed;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  z-index: 5;

  width: 100%;
  max-width: 415px;
}

.cta_img{
  width: 92%;
  margin: 0 auto;
}

.material_5_container{
  position: relative;
}

.l_material_5_slider{
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 94%;
}

.slick-dots li button:before{
  color: #EEDF90!important;
}

.material_7_container{
  position: relative;
}

.l_material_7_slider{
  position: absolute;
  top: 31%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 84%;
}

.material_12_container{
  position: relative;
}

.l_material_12_slider{
  position: absolute;
  top: 16%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 94%;
}

.material_13_container{
  background-color: #263248;
  padding-bottom: 48px;
}

.faq-body {
  width: 90%;
  height: auto;
  margin: 0 auto;
}

.faq-list {
  width: 100%;
  height: auto;
}
.faq-item {
  width: 100%;
  height: auto;
  background: #fff;
}
.faq-item:not(:first-child) {
  margin-top: 10px;
}
.faq-item-head {
  width: 100%;
  height: 80px;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 24px 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: url(../../img/faq-close.svg) right 15px center no-repeat;
  background-size: 14px auto;
}

.faq-item-head img {
  width: 25px;
  margin-right: 10px;
  margin-top: 5px;
}

.faq-item-head h3 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: bold;
}
.faq-item-head.open {
  background: url(../../img/faq-open.svg) right 15px center no-repeat;
}
.faq-item-body {
  display: none;
  width: 100%;
  height: auto;
  padding: 0 15px 15px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.faq-item-description {
  width: 100%;
  height: auto;
  border-top: 1px #D9D9D9 solid;
  display: -ms-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 15px;
}
.faq-item-description img {
  width: 25px;
  margin-top: 5px;
  margin-right: 13px;
}
.faq-item-description p {
  font-size: 13px;
  line-height: 1.4;
  color: #151515;
}

/* =====================
  アニメーション
===================== */

.fadein {
  /* 最初は非表示 */
  transform: translateY(0);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadeinUp {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadeinUp {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadeinDown {
  /* 最初は非表示 */
  transform: translateY(-30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン時に入るクラス */
.is-fadeinDown {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.fadeinLeft {
  /* 最初は非表示で左にスライド */
  transform: translateX(-20%);
  opacity: 0;
  visibility: hidden;
  transition: transform 1.5s, opacity 1.5s, visibility 1.5s;
}

/* フェードイン＋左からスライド時に入るクラス */
.is-fadeinLeft {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}