@charset "UTF-8";

@import url('https://fonts.googleapis.com/css?family=Asap+Condensed:600');

/*additional reset
---------------------------------------------------*/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

body.safari #content,
body.safari #footer {
    /*サファリでリンク先から戻った時文字が拡大する対応*/
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: "Helvetica Neue",
        Arial,
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        Meiryo,
        sans-serif;
    margin: 0;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}
html {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

p {
    font-size: 17px;
    line-height: 1.7;
}

/** link **/
a:link {
    text-decoration: underline;
    display: inline-block;
}

a:visited {
    color: #fff;
}

a:hover,
a:active {
    text-decoration: none;
}

/*初期設定
----------------------------------------------------*/
#wrapper {
    width: 510px;
    /* overflow: hidden; */
    margin: auto;
    font-family: "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
}

@media screen and (max-width:640px) {
    #wrapper {
        width: 100%;
    }
}

/*layout
----------------------------------------------------*/
img{
    width: 100%;
    vertical-align: bottom;
}

  header{
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    margin:1% auto;
  }
  header .logo{
    max-width: 300px;
    width: 50%;
  }
  .cta{
    display: flex;
  }
  .cta a{
    margin: 2% 1%;
  }



  .ba_slider img{
    width:100%;
    padding: 10px 10px 20px;
  }
  .ba_slider{
    margin-top: -219px;
  }
  @media screen and (max-width:640px) {
    .ba_slider{
      margin-top: -43%;
    }
}


.cta_area{
    margin: 0;
    position: relative;
}
.cta_con{
    position: absolute;
    top: 90px;
    text-align: center;
}
.cta_con a{
    width: 90%;
}
@media screen and (max-width:640px) {
    .cta_con{
        top: 43%;
    }
}

/*---------- 口コミ ----------*/
.container{
    margin-top: -115px;
}
@media screen and (max-width:640px) {
    .container{
        margin-top: -90px;
    }
}

.slider {
    margin: 30px auto 0;
    max-width: 500px;
    width: 80%;
  }
  .slick-img img {
    height: auto;
    width: 100%;
  }

  .slide-arrow {
    background-color: #333;
    bottom: 0;
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 0;
  }
  .prev-arrow {
    border-bottom: 30px solid #fff;
    border-left: 0;
    border-right: 30px solid #018168;
    border-top: 30px solid #fff;
    left: -40px;
  }
  .next-arrow {
    border-bottom: 30px solid #fff;
    border-left: 30px solid #018168;
    border-right: 0;
    border-top: 30px solid #fff;
    right: -40px;
  }
  .slider button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    padding: 0;
  }

  .slick-dotted.slick-slider{
    margin-bottom: 65px !important;
  }

  @media screen and (max-width:640px) {
    .prev-arrow {
      border-bottom: 25px solid #fff;
      border-left: 0;
      border-right: 25px solid #018168;
      border-top: 25px solid #fff;
      left: -30px;
    }
    .next-arrow {
      border-bottom: 25px solid #fff;
      border-left: 25px solid #018168;
      border-right: 0;
      border-top: 25px solid #fff;
      right: -30px;
    }
}


  /*---------- アコーディオン ----------*/
  .accordion {
    margin-left: auto;
    margin-right: auto;
    margin-top: -190px;
    margin-bottom: 50px;
    max-width: 450px;
    position: absolute;
    position: relative;
    width: 100%;
  }
  .accordion-title {
    color: #fff;
    background-color: #018168;
    cursor: pointer;
    font-size: 25px;
    font-weight: bold;
    padding: 20px 25px;
    border-radius: 10px 10px 0 0;
  }
  .accordion-item{
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  }
  .accordion-content {
    padding: 20px 25px;
    position: relative;
  }
  .back{
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 100px;
  }
  .accordion-content p {
    font-size: 20px;
    line-height: 1.5;
  }
  /* 矢印 */
  .accordion-title {
    position: relative;
  }
  .accordion-title::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
    border-top: 0;
    content: "";
    display: block;
    height: 8px;
    position: absolute;
    right: 25px;
    top: 33%;
    transition: transform .3s ease-in-out, top .3s ease-in-out;
    width: 8px;
  }
  .accordion-title.open::after {
    top: 38%;
    transform: rotate(-180deg);
  }
  .accordion-title.open {
    border-radius: 10px;
  }

  @media screen and (max-width:640px) {
    .accordion {
        margin-top: -35%;
        max-width: 90%;
      }
}

 /*---------- qa アコーディオン ----------*/
 .qa .accordion {
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px !important;
    max-width: 450px;
    position: absolute;
    position: relative;
    width: 100%;
  }
  .qa .accordion-title span{
    color: #ff7a2b;
    margin-right: 7px;
  }
  .qa .accordion-title {
    display: flex;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    font-size: 20px;
    line-height: 1.3;
    font-weight: bold;
    padding: 15px;
    border-radius: 10px 10px;
  }
  .qa .accordion-content {
    padding: 0px 25px 18px 45px;
    display: none;
  }
  /* 矢印 */
  .qa .accordion-title::after {
    display: none;
  }

  @media screen and (max-width:640px) {
    .qa .accordion {
        margin-top: 0;
        max-width: 90%;
      }
      .qa .accordion-title {
        font-size: 18px;
      }
      .qa .accordion-content p{
        font-size: 18px;
      }
}


/*---------- 追従CTA ----------*/
#page-top {
    position: fixed;
    z-index: 100;
    opacity: 0;
    transform: translateY(100px);
    background-color: #ccf0be;
    text-align: center;
    width: 510px;
    display: flex;
    padding: 20px;
}
#page-top a {
    display: flex;
    text-decoration: none;
    transition: all 0.3s;
    margin: 5px;
}

@media screen and (max-width:600px) {
    #page-top {
        width: 100%;
        padding: 10px;
    }

    #page-top a {
        display: flex;
        text-decoration: none;
        transition: all 0.3s;
        margin: 5px;
    }
}

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
}


@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#page-top.DownMove {
    animation: DownAnime 0.9s forwards;
}

@keyframes DownAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }

    to {
        opacity: 1;
        transform: translateY(200px);
    }
}






/*問い合わせ
---------------------------------------------------*/
#form{
    background:#EAF7FD;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    padding-bottom:3%;
}
#form h2{
    color: #133061;
    background: none;
    padding: 110px 0 40px;
    text-align:center;
    font-weight:900;
    font-size:4rem;
}
.form_inner{
    background: #fff;
    border-radius: 15px;
    max-width: 840px;
    margin: 0 auto;
    padding: 50px;
}
.form_inner table{
    width:100%;
}
#form th, #form td{
    display:block;
    text-align: left;
    padding: 7px 0;
}
#form th{
    font-weight:600;
}
.must {
    background: #e7370d;
    color: #fff;
    font-size: 13px;
    border-radius: 10px;
    display: inline-block;
    line-height: 1em;
    padding: 5px 10px;
    margin-left: 10px;
    vertical-align: middle;
}
.adress .fsS{
    font-size:12px;
}
input,textarea {
    border-radius:0;
    line-height: 1em;
}
input[type="text"],textarea,input[type="tel"],input[type="email"],input[type="number"]{
  padding:10px;
  margin:0;
  display: block;
  border: 1px solid #ccc;
  background: #f3f3f3;
  font-family: inherit;
  -webkit-appearance: none;
  font-size: inherit;
  width: 100%;
  border-radius: 5px;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
    -moz-appearance:textfield;
}
input[type="submit"] {
  -webkit-appearance: none;
}
textarea {
  height: 14em;
  width: 100%;
  display: block;
  resize: vertical;
}
button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}
input[type="submit"] {
  -webkit-appearance: none;
}
input[type="submit"] {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  background: #F62A2A;
  color: #fff;
  text-align: center;
  font-size: 28px;
  width: 70%;
  padding: 25px;
  margin: 0 auto;
  display: block;
  font-weight: 600;
  border-radius: 20px;
  margin-top:10px;
}
.confirmation th{
    border-bottom: #133061 solid 1px;
}
.confirmation td{
    padding-bottom: 20px!important;
}
.confirmation .submitbtn{
    display:flex;
    justify-content: center;
    margin-top: 5%;
}
.confirmation input[type="submit"]{
    width:43%;
    margin:0;
}
.confirmation #footer p{
    text-align: center;
    line-height: 1;
    font-size: 12px;
    margin-top:20px;
}
.confirmation #footer a{
    color: #999;
}
.footercta{
   display: flex;
    justify-content: space-evenly;
    padding-bottom: 2%;
}
.footercta a{
    width: 45%;
}
.backbtn{
    background: #585f63;
    width: 43%;
    margin: 40px auto 0;
    text-align: center;
    font-size: 28px;
    display: block;
    font-weight: 600;
    border-radius: 20px;
    padding: 25px;
}
.backbtn a{
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width:640px) {
    #form{
        padding-bottom: 12%;
    }
    #form h2{
        font-size: 2.5rem;
        line-height: 1.3;
        padding:7% 0;
    }
    .form_inner{
        padding: 8% 20px;
        width: 90%;
    }
    .adress .fsS{
        font-size:12px;
    }
    input[type="submit"],.backbtn{
        padding: 14px;
        font-size: 20px;
    }
    .backbtn {
        width:80%;
    }
}

/*footer
---------------------------------------------------*/
footer{
    background-color: #c4c4c4;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    font-size: 13px;
    line-height: 1.4;
}

/*プラポリ
---------------------------------------------------*/
.mb-2{
    text-align: center;
    font-size: 30px;
    font-weight: bold;
    margin: 5% 0;
}
.pp_box {
    background: #f3f3f3;
    padding: 20px;
    overflow: auto;
    font-size: 14px;
    width: 90%;
    margin: auto;
    max-width: 750px;
}