@charset "UTF-8";
/*=======================
    変数定義・関数
========================*/
* {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.7;
  letter-spacing: 1px;
  min-width: 0;
  min-height: 0;
  color: #002f57;
}
@media screen and (max-width: 1024px) {
  * {
    font-size: 14px;
  }
}

.sp_only {
  display: none;
}
@media screen and (max-width: 1024px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media screen and (max-width: 1024px) {
  .pc_only {
    display: none;
  }
}

img {
  width: 100%;
}

main {
  overflow: hidden;
}

section {
  padding: 80px 5%;
}
@media screen and (max-width: 1024px) {
  section {
    padding: 64px 5%;
  }
}
section .section__title {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  section .section__title {
    font-size: 20px;
    margin-top: 8px;
  }
}

body {
  background-color: rgba(220, 251, 253, 0.231372549);
}

header .header {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 15px 20px;
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 760px) {
  header .header {
    justify-content: center;
  }
}
header .header__logo img {
  width: 111px;
}

.main__inner {
  max-width: 400px;
  margin: 0 auto;
}

.section__questionnaire {
  background-color: #ffffff;
  padding: 0 0 40px 0;
  text-align: center;
}
.section__questionnaire .questionnaire__wrapper {
  padding-top: 2rem;
}
.section__questionnaire .questionnaire__title {
  color: #18a2ac;
  font-size: 2rem;
  font-weight: bold;
}
.section__questionnaire .questionnaire__text {
  font-size: 1.25rem;
  font-weight: bold;
}
.section__questionnaire .questionnaire__list__wrapper {
  margin-top: 1rem;
}
.section__questionnaire .questionnaire__list {
  width: 90%;
  margin: 0 auto;
}
.section__questionnaire .questionnaire__list .questionnaire__list__item {
  width: 100%;
  color: #A6C1C7;
  font-weight: bold;
  margin-top: 1rem;
  border: 2px solid #A6C1C7;
  padding: 0.5rem 0;
  border-radius: 6px;
  cursor: pointer;
}
.section__questionnaire .questionnaire__list .questionnaire__list__item:hover {
  border: 2px solid #59C2CA;
  background-color: #59C2CA;
  color: #ffffff;
}
.section__questionnaire .questionnaire__list .questionnaire__list__item.selected {
  border: 2px solid #59C2CA;
  background-color: #59C2CA;
  color: #ffffff;
}
.section__questionnaire .questionnaire__list .questionnaire__list__item.none {
  display: none;
}

.section__cta {
  position: relative;
  padding: 0;
}
.section__cta .cta__button {
  position: absolute;
  width: 90%;
  bottom: 27%;
  left: 5%;
  -webkit-animation: scaleAnimation 1.5s infinite ease-in-out;
          animation: scaleAnimation 1.5s infinite ease-in-out;
}

.section__cta__short {
  position: relative;
  padding: 0;
}
.section__cta__short .cta__button {
  position: absolute;
  width: 90%;
  bottom: 10%;
  left: 5%;
  -webkit-animation: scaleAnimation 1.5s infinite ease-in-out;
          animation: scaleAnimation 1.5s infinite ease-in-out;
}

@-webkit-keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.section-faq {
  margin: 0 auto;
  padding: 0 0 40px 0;
  background-color: #ffffff;
}
.section-faq summary {
  position: relative;
  display: block;
  list-style: none;
  cursor: pointer;
}
.section-faq summary:before {
  content: "＋";
  top: 4px;
  right: 0;
  position: absolute;
  font-size: 16px;
  font-weight: bold;
  color: #18a2ac;
  opacity: 0.6;
}
.section-faq details[open] summary:before,
.section-faq summary details[open] summary:before {
  content: "−";
  position: absolute;
  top: 4px;
  right: 0;
  font-size: 18px;
  font-weight: bold;
  color: #18a2ac;
  opacity: 0.6;
}
.section-faq summary::-webkit-details-marker {
  display: none;
}
.section-faq .faq-item-box__wrapper {
  width: 90%;
  max-width: 1000px;
  margin: 20px auto 0 auto;
}
.section-faq .faq-item-box {
  padding: 12px;
  border-bottom: 1px solid #dceff0;
}
.section-faq .faq-item-box .faq-item__title__wrapper {
  display: flex;
  align-items: baseline;
}
.section-faq .faq-item-box .faq-item-ttl {
  color: #18a2ac;
  font-size: 20px;
  font-weight: bold;
}
.section-faq .faq-item-box .faq-item-Q {
  font-size: 18px;
  font-weight: 500;
  margin: 0 16px;
}
@media screen and (max-width: 1024px) {
  .section-faq .faq-item-box .faq-item-Q {
    font-size: 16px;
    margin-right: 24px;
  }
}
.section-faq .faq-item-box .faq-item-txt-box {
  display: flex;
  align-items: baseline;
  margin-top: 1rem;
}
.section-faq .faq-item-box .faq-item-txt-box .faq-item-answer {
  color: #18a2ac;
  font-size: 20px;
  font-weight: bold;
  opacity: 0.4;
  margin-right: 1rem;
}

.footer {
  max-width: 400px;
  margin: 0 auto;
  background-color: #18a2ac;
  color: #ffffff;
  padding: 20px 0 120px 0;
}
.footer .footer-nav {
  max-width: 480px;
  width: 90%;
  margin: 0 auto;
}
.footer .footer-nav .footer-nav-item {
  color: #ffffff;
  padding: 10px 0;
  font-weight: 500;
}
.footer .footer-nav .footer-nav-item:hover {
  opacity: 0.7;
}
.footer .footer-copy {
  text-align: center;
  color: #ffffff;
  margin-top: 10px;
}
.footer .fixed-footer {
  position: fixed;
  bottom: 0;
  z-index: 5;
  text-align: center;
  background-color: #fff;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 10px 0 14px 0;
}
.footer .fixed-footer img {
  width: 96%;
  max-width: 400px;
}
/*# sourceMappingURL=style.css.map */