body {
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important
  }
}

@media screen and (max-width: 768px) {
  .displaySp .close,
  .displaySp .open {
    display: block;
    width: 48px;
  }
}

.wrap {
  background-image: url(../images/bg_pc.webp);
  background-size: 100% auto;
  background-position: 0 0;
  background-repeat: repeat;
  padding: 100px 0px 80px;
  color: #000
}

.bg-top, .bg-bottom {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
}

.question {
  width: 90%;
  max-width: 1030px;
  margin: 0 auto;
  background-image: url(../images/white_bg_middle_pc.png);
  background-position: 0 0;
  background-size: contain;
  background-repeat: repeat;
  /* background-color: #fff; */
  /* border: #b20c28 solid 2px; */
  padding: 90px 0 113px;
}

.question-ttl {
  width: 27.666%;
  margin: 0 auto;
}

.q-subttl {
  background-image: linear-gradient(90deg, #b91c22, #e60013 50%, #b91c22);
  color: #fff;
  display: inline-block;
  padding: 5px 19px 7px;
  margin: 74px auto 15px;
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.q-wrap {
  width: 66.99%;
  text-align: left;
  margin: 34px auto 0;
  border-bottom: 1px #959595 solid;
  padding-bottom: 36px
}

.q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  font-size: 20px;
  letter-spacing: 0.02em;
  font-weight: 500;
  vertical-align: middle;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 30px 0 14px;
  cursor: pointer
}

.arrow {
  display: block;
  width: 18px;
  height: 9px;
  margin-left: auto
}

.arrow.open {
  display: block;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  width: 18px;
  height: 9px;
  margin-left: auto
}

.qbtn {
  width: 40px;
  height: 40px;
  vertical-align: middle;
  margin-right: 34px
}

.a-box {
  padding: 15px 30px 0 14px;
}

.a {
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400
}

.totop-btn {
  background-color: #000;
  color: #fff !important;
  display: block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.4;
  width: 27.766%;
  margin: 85px auto 0;
  padding: 12px 42px 17px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}

.totop-btn:hover {
  color: #fff;
  opacity: 0.8;
}


@media screen and (max-width: 768px) {
  .-pc {
    display: none
  }

  .-sp {
    display: block
  }

.bg-top, .bg-bottom {
  width: 91%;
}

  .wrap {
    padding: 58px 0px 60px
  }

  .question {
    background-image: url(../images/white_bg_middle_sp.png);
    position: relative;
    width: 77%;
    padding: 44px 7% 56px
  }

  .question-ttl {
    width: 68.166%;
    margin: 0 auto
  }

  .q-subttl {
    margin: 65px auto 29px;
    font-size: 16px
  }

  .q-wrap {
    width: 100%;
    margin: 28px auto 0;
    /* border-bottom: 1px #d60011 solid; */
    padding-bottom: 23px;
  }

  .q-wrap.first {
    margin-top: 0;
  }

  .q {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    font-size: 16px;
    vertical-align: middle;
    -webkit-box-align: start;
    -ms-flex-align: start;
    /* align-items: flex-start; */
    padding: 0 5px 0 0;
    cursor: pointer
  }

  .moji {
    width: 70%
  }

  .arrow {
    display: block;
    width: 18px;
    height: 9px;
    margin-left: auto;
    margin-top: 5px
  }

  .arrow.open {
    display: block;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    width: 17px;
    height: 10px;
    margin-left: auto
  }

  .qbtn {
    width: 35px;
    height: 35px;
    vertical-align: middle;
    margin-right: 15px
  }

  .a-box {
    padding: 8px 0px 0
  }

  .a {
    font-size: 14px;
    line-height: 1.6;
    font-weight: 300
  }
/* 
  .totop {
    width: 100%;
    margin: 90px auto 0
  } */

  .totop-btn {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    margin: 59px auto 0;
    padding: 14px 0 16px;
  }
}

/* animation */

.wow {
  visibility: hidden;
}

.blur {
  animation-name: blur;
  animation-duration: 1.3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes blur {
  from {
    filter: blur(50px);
    -webkit-filter: blur(50px);
  }
  to {
    filter: blur(0);
    -webkit-filter: blur(0);
    opacity: 1;
  }
}

@keyframes blur {
  from {
    filter: blur(50px);
    -webkit-filter: blur(50px);
  }
  to {
    filter: blur(0);
    -webkit-filter: blur(0);
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUpSmall {
  -webkit-animation-name: fadeInUpSmall;
  animation-name: fadeInUpSmall;
}

/* header調整 */
@media screen and (max-width: 768px) {
  #pan ul {
    width: 201px;
    padding: 0 11px;
  }
  #pan ul li {
    font-size: 10px;
  }
}