@charset "utf-8";
/* CSS Document */

html{
  font-size: 10px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.025em;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', serif;
  height:100vh;
}

@media screen and (max-width: 1000px) { html{ font-size: 10px; } }

body{
  position: relative;
  min-height: 100vh;
  background-color: #F5F8FF;
  color:#000;
  font-size:22px;
  margin:0;
  padding:0;
  background-image: url("../img/bg0.png");
  background-size:cover;
  background-position: center;
  background-attachment: fixed;
}

img{ max-width: 100%; vertical-align: middle; }

.wrap{
  position: relative;
  max-width: 600px;
  width:100%;
  margin:0 auto;
  box-sizing: border-box;
  box-shadow: 0 0 10px 0 #aaa;
}
.center{
  text-align: center;
}

.pb{
  padding-bottom: 5rem;
}

header{
  display: flex;
  justify-content: space-between;
  padding:2rem;
  background-image:  url("../img/bg.png");
  background-size: cover;
}

.header-img,
header>a,header>p{
  max-width: 45%;
  height: auto;
  max-height: auto;
}

.bg1{
  background-image: url("../img/003.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:0rem 0;
}

.bg2{
  background-image: url("../img/bg2.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:6rem 2rem;
}

.bg3a{
  background-image: url("../img/bg3.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:4rem 2rem;
}

.swiper-button-next:after, .swiper-button-prev:after {
    background-color: #000000aa;
    padding: 10px;
    color: #fff;
}


.bg3{
  position: relative;
}


.bg3 .btn{
  position: absolute;
  margin: 0 auto;
  display: block;
  width: 100%;
  bottom: 20px;
  left:0;
}


.bg4{
  background-image: url("../img/037.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:5rem 2rem;
}

.bg5{
  background-image: url("../img/021.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:2rem 0;
}
.bg6{
  background-image: url("../img/bg4.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding:4rem 0;
}

.fixed{
  display: block;
  position: fixed;
  max-width: 600px;
  margin:0 auto;
  width: 100%;
  bottom:0;
  z-index: 99;
}

.fixed-top{
  background-color: #AAACE6;
  color:#fff;
}
.fixed-flex{
  background-color: #E6EAFF;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding:2rem;
  box-sizing: border-box;
}

.fixed-flex>div{
  padding:1rem;
}


footer{
  background: #F2F2F2;
  color:#555;
  padding:3rem;
  padding-bottom:140px;
}


.footer a{
  color: #555;
}

.swiper-pagination{
  position: relative !important;
}

.swiper-pagination-bullet{
  background:#FFF !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active{
  background:#A2CDDE !important;
}

.h2img{
  max-width:50%;
}

.accordion{
  padding:0 2rem;
}

/* 必須 */
.accordion-content {
  display: none;
}

.accordion-wrap{
  background-color: #E1EDF2;
  border-radius: 10px;
  padding-bottom:10px;
}

.accordion-header {
  text-align: left;
  color:#595959;
  font-weight: 700;
  padding: 12px 45px 10px 20px;
  margin: 10px 0 0;
  transition: background .3s ease;
  cursor: pointer;
  position: relative;
}

.accordion-header::before,
.accordion-header::after{
  position:absolute;
  content:'';
  top:1px;
  right:20px;
  bottom:0;
  width:12px;
  height:2px;
  margin:auto;
  background:#595959;
}
.accordion-header::after{
  transform:rotate(-90deg);
  transition:transform 0.3s;
}
.accordion-header.active::after{transform:rotate(0deg);}

.accordion-content {
  text-align: left;
  padding: 12px 20px 10px 45px;
  background-color: #fff;
  border-radius: 10px;
  margin:10px;
}

.accordion-header span{
  padding-left: 40px;
  position: relative;
}

.accordion-content span{
  padding-left: 0px;
  position: relative;
}


.accordion-header span::before{
  position: absolute;
  content:"Q.";
  top: 0;
  left: 0;
  color: #595959;
}


.accordion-content span::before{
  position: absolute;
  content:"";
  top: 0;
  left: -25px;
}



.pc{display: block;}
.sp{display: none;}
@media screen and (max-width: 1000px) {
  .pc{display: none;}
  .sp{display: block;}
  body{ font-size:30px; }
  
}

.btn img{
  transition: all .5s;
  -webkit-animation: anime_pulse 1.5s infinite;
  animation: anime_pulse 1.5s infinite;
}
/*アニメーション*/
@-webkit-keyframes anime_pulse {
  0% { -webkit-transform: scale(0.9);
    transform: scale(0.9); }
  70% { -webkit-transform: scale(1);
    transform: scale(1);}
  100% { -webkit-transform: scale(0.9);
    transform: scale(0.9);}
}