@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  letter-spacing: 0.2em;
  background: #ebebeb;
  position: relative;
}

body a {
  text-decoration: none;
}

body header .header {
  position: fixed;
  top: -130px;
  /* 「○○px」には要素の半分の数値を指定 */
  left: calc(50% - 580px);
  /* 「○○px」には要素の半分の数値を指定 */
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 1160px;
  height: 64px;
  border-radius: 10px;
  background: #3f4e4a;
  -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
  list-style: none;
  padding: 20px 150px;
}

body header .header.page {
  top: 20px;
}

@media screen and (max-width: 1200px) {
  body header .header {
    width: 1000px;
    left: calc(50% - 500px);
  }
}

@media screen and (max-width: 1100px) {
  body header .header {
    width: 700px;
    left: calc(50% - 350px);
    padding: 20px 10px;
  }
}

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

body header .header li {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  font-weight: 200;
  font-size: 16px;
  letter-spacing: 0.2em;
  text-align: left;
}

@media screen and (max-width: 1100px) {
  body header .header li {
    font-size: 14px;
  }
}

body header .header li a {
  color: #c8c8c8;
}

body header .header li a:hover,
body header .header li a.on {
  color: #5bb585;
}

body header .header li a:hover::after,
body header .header li a.on::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -22px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #5bb585;
  height: 5px;
  width: 100%;
}

body header .header li a .mail-svg:hover {
  fill: #5bb585;
}

body header .sp_header {
  display: none;
}

@media screen and (max-width: 768px) {
  body header .sp_header {
    display: block;
    position: fixed;
    top: 2%;
    right: 3%;
    height: 27px;
    width: 35px;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    background: #3f4e4a;
    -webkit-box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.16);
    padding: 0 15px;
  }
  body header .sp_header.active .top {
    -webkit-transform: translateY(8px) translateX(0) rotate(45deg);
    transform: translateY(8px) translateX(0) rotate(45deg);
    background: #c8c8c8;
  }
  body header .sp_header.active .middle {
    opacity: 0;
    background: #c8c8c8;
  }
  body header .sp_header.active .bottom {
    -webkit-transform: translateY(-8px) translateX(0) rotate(-45deg);
    transform: translateY(-8px) translateX(0) rotate(-45deg);
    background: #c8c8c8;
  }
  body header .sp_header span {
    background: #c8c8c8;
    border: none;
    top: 17px;
    height: 2px;
    width: 20px;
    position: absolute;
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    cursor: pointer;
  }
  body header .sp_header span:nth-of-type(2) {
    top: 25px;
  }
  body header .sp_header span:nth-of-type(3) {
    top: 33px;
  }
}

body header .overlay {
  display: none;
}

@media screen and (max-width: 768px) {
  body header .overlay {
    position: fixed;
    background-color: #3f4e4a;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 0%;
    z-index: 1;
    overflow: hidden;
  }
  body header .overlay.open {
    height: 100%;
  }
  body header .overlay.open li {
    -webkit-animation: fadeInRight 0.5s ease forwards;
    animation: fadeInRight 0.5s ease forwards;
    -webkit-animation-delay: 0.35s;
    animation-delay: 0.35s;
  }
  body header .overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
  }
  body header .overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
  }
  body header .overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
  }
  body header .overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: 0.55s;
    animation-delay: 0.55s;
  }
  body header .overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
  }
  body header .overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: 0.65s;
    animation-delay: 0.65s;
  }
  body header .overlay ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
    width: 278px;
  }
  body header .overlay ul li {
    display: block;
    text-align: left;
    height: 25%;
    height: calc(100% / 7);
    min-height: 60px;
    position: relative;
    opacity: 0;
    border-bottom: solid 1px #c8c8c8;
    font-family: "Noto Sans JP", sans-serif;
    line-height: 3.75;
  }
  body header .overlay ul li:nth-of-type(7) {
    border-bottom: 0;
    -webkit-margin-before: 37px;
    margin-top: 37px;
    line-height: 1;
  }
  body header .overlay ul li a {
    display: block;
    position: relative;
    color: #c8c8c8;
    text-decoration: none;
    overflow: hidden;
  }
  body header .overlay ul li a:hover {
    color: #58de97;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      left: 20%;
    }
    100% {
      opacity: 1;
      left: 0;
    }
  }
}

body .whatsimg {
  width: 100%;
  height: 380px;
  background: url(../images/faq/q_a_heading01.jpg) center center/cover no-repeat;
  position: relative;
}

@media screen and (max-width: 768px) {
  body .whatsimg {
    height: 250px;
  }
}

body .whatsimg .block_title {
  background: #fff;
  padding: 35px 0;
  width: 800px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -120px;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 1100px) {
  body .whatsimg .block_title {
    width: 750px;
  }
}

@media screen and (max-width: 768px) {
  body .whatsimg .block_title {
    width: 90%;
    bottom: -75px;
    padding: 16px 0;
  }
}

body .whatsimg .block_title h1.pagetitle {
  font-size: 38px;
  letter-spacing: 0.2em;
  font-weight: 400;
  text-align: center;
  color: #5bb585;
}

@media screen and (max-width: 768px) {
  body .whatsimg .block_title h1.pagetitle {
    font-size: 21px;
    letter-spacing: 0.1rem;
  }
}

body .whatsimg .block_title p {
  letter-spacing: 0.2em;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  body .whatsimg .block_title p {
    font-size: 11px;
  }
}

body .q_a_page {
  background: #ebebeb;
  -webkit-margin-before: 190px;
  margin-top: 190px;
  -webkit-padding-after: 158px;
  padding-bottom: 158px;
}

@media screen and (max-width: 768px) {
  body .q_a_page {
    -webkit-margin-before: 110px;
    margin-top: 110px;
    -webkit-padding-after: 99px;
    padding-bottom: 99px;
  }
}

body .q_a_page .q_a_main {
  margin: 0 auto;
  width: 937px;
}

@media screen and (max-width: 1100px) {
  body .q_a_page .q_a_main {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  body .q_a_page .q_a_main {
    width: 90%;
  }
}

body .q_a_page .q_a_main label {
  position: relative;
  background: #ebebeb;
  display: block;
  -webkit-padding-before: 25px;
  padding-top: 25px;
  -webkit-padding-after: 25px;
  padding-bottom: 25px;
  border-bottom: solid 1px #333;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  body .q_a_page .q_a_main label {
    -webkit-padding-before: 12px;
    padding-top: 12px;
    -webkit-padding-after: 12px;
    padding-bottom: 12px;
  }
}

body .q_a_page .q_a_main label.on {
  border-bottom: none;
}

body .q_a_page .q_a_main label:first-of-type {
  border-top: solid 1px #333;
}

body .q_a_page .q_a_main label .question_name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

body .q_a_page .q_a_main label .question_name h3 {
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.2em;
  line-height: 30px;
  text-align: left;
  color: #000;
}

@media screen and (max-width: 768px) {
  body .q_a_page .q_a_main label .question_name h3 {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 2;
    width: 80%;
  }
}

body .q_a_page .q_a_main label .question_name .q {
  font-family: Museo;
  font-weight: normal;
  font-size: 30px;
  letter-spacing: 0.2em;
  line-height: 30px;
  color: #000;
  -webkit-margin-end: 32px;
  margin-right: 32px;
}

@media screen and (max-width: 768px) {
  body .q_a_page .q_a_main label .question_name .q {
    font-size: 23px;
    -webkit-margin-end: 15px;
    margin-right: 15px;
  }
}

body .q_a_page .q_a_main label:after {
  content: url(../images/plus.svg);
  position: absolute;
  right: 5px;
  top: 35%;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transition: all 0.4s;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
}

body .q_a_page .q_a_main label.on:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

body .q_a_page .q_a_main .accordion_text {
  display: none;
  margin-right: 0;
  margin-left: auto;
  padding: 20px 22px;
  margin-bottom: 30px;
  width: 95%;
  background: #fff;
  position: relative;
  color: #646464;
}

@media screen and (max-width: 1100px) {
  body .q_a_page .q_a_main .accordion_text {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  body .q_a_page .q_a_main .accordion_text {
    width: 100vw;
    padding: 5%;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

body .q_a_page .q_a_main .accordion_text:before {
  position: absolute;
  bottom: -30px;
  right: 0;
  width: 105%;
  height: 1px;
  content: "";
  background: #333;
  -webkit-margin-before: 30px;
  margin-top: 30px;
}

@media screen and (max-width: 1100px) {
  body .q_a_page .q_a_main .accordion_text:before {
    width: 100%;
  }
}

@media screen and (max-width: 400px) {
  body .q_a_page .q_a_main .accordion_text:before {
    width: 90vw;
    left: auto;
    right: auto;
  }
}

body .q_a_page .q_a_main .more {
  color: #333;
  display: block;
  text-align: center;
  -webkit-margin-before: 45px;
  margin-top: 45px;
}

body footer {
  color: #c8c8c8;
  background: #3f4e4a;
  -webkit-padding-before: 57px;
  padding-top: 57px;
  -webkit-padding-after: 28px;
  padding-bottom: 28px;
}

@media screen and (max-width: 768px) {
  body footer {
    -webkit-padding-after: 25px;
    padding-bottom: 25px;
  }
}

body footer .contact_address {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address {
    display: block;
    width: 100%;
  }
}

body footer .contact_address .address {
  -webkit-margin-after: 108px;
  margin-bottom: 108px;
}

body footer .contact_address .address .sp {
  display: none;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .address {
    text-align: center;
    -webkit-margin-after: 33px;
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 768px) {
  body footer .contact_address .address {
    font-size: 14px;
    width: 90%;
    margin: 0 auto;
    line-height: 2;
  }
  body footer .contact_address .address .sp {
    display: block;
  }
}

body footer .contact_address .address img {
  -webkit-padding-after: 24px;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  body footer .contact_address .address img {
    width: 250px;
    -webkit-padding-after: 0px;
    padding-bottom: 0px;
  }
}

@media screen and (max-width: 768px) {
  body footer .contact_address .address p {
    -webkit-margin-after: 54px;
    margin-bottom: 54px;
  }
}

body footer .contact_address .contact {
  color: #fff;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .contact {
    -webkit-margin-after: 73px;
    margin-bottom: 73px;
    text-align: center;
  }
}

body footer .contact_address .contact .contact_btn {
  color: #fff;
  width: 400px;
  height: 110px;
  border-radius: 20px;
  background: #5bb585;
  padding: 34px 65px;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
  font-weight: 400;
  font-size: 28px;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1100px) {
  body footer .contact_address .contact .contact_btn {
    margin: 0 auto;
    font-size: 22px;
    width: 325px;
    padding: 39px 0;
  }
}

body footer .contact_address .contact .contact_btn img {
  margin: -6px 0 -6px 19px;
}

body footer .contact_address .contact p {
  font-weight: 400;
  font-size: 20px;
  line-height: 37px;
  text-align: center;
  -webkit-margin-before: 23px;
  margin-top: 23px;
}

body footer .contact_address .contact .tel_number {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}

body footer .contact_address .contact .tel_number span {
  color: #58de97;
}

@media screen and (max-width: 768px) {
  body footer .contact_address .contact .tel_number {
    pointer-events: all;
    cursor: pointer;
  }
}

body footer .contact_address .contact .privacy {
  display: none;
}

@media screen and (max-width: 768px) {
  body footer .contact_address .contact .privacy {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    color: #c8c8c8;
    border-bottom: solid #c8c8c8 1px;
    padding-bottom: 5px;
    font-size: 11px;
    -webkit-margin-before: 31px;
    margin-top: 31px;
  }
}

body footer .copyright {
  width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 1100px) {
  body footer .copyright {
    width: 100%;
    text-align: center;
  }
}

body footer .copyright a {
  -webkit-text-decoration: #c8c8c8 1px;
  text-decoration: #c8c8c8 1px;
  color: #c8c8c8;
  -webkit-margin-end: 38px;
  margin-right: 38px;
  font-weight: 400;
  font-size: 11px;
  text-align: left;
}

@media screen and (max-width: 768px) {
  body footer .copyright a {
    display: none;
  }
}

body footer .copyright small {
  font-weight: normal;
  font-size: 11px;
  letter-spacing: 0.2em;
  line-height: 37px;
  text-align: left;
  color: #c8c8c8;
}

body footer .copyright small br {
  display: none;
}

@media screen and (max-width: 1100px) {
  body footer .copyright small {
    font-size: 10px;
    text-align: center;
    line-height: 1.7;
  }
  body footer .copyright small br {
    display: block;
  }
}
/*# sourceMappingURL=q_a.css.map */
