@charset "UTF-8";

/* =========================
  base
========================= */

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  margin: 0;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.7;
  position: relative;
  font-size: 1.2em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* =========================
  common wrap
========================= */

/*
  全体幅：1420px
  左右padding：50px
  実質コンテンツ幅：1320px
*/
.wrap {
  width: 100%;
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 50px;
}

/* =========================
  header
========================= */

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}

.header__wrap {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  margin: 0;
  width: 200px;
}

.header__logo img {
  width: 100%;
  display: block;
}

.header__nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  border-radius: 0 0 0 15px;
  padding-left: 0.5em;
}

.header__nav ul {
  display: flex;
}

.header__nav li {
  margin: 0;
  position: relative;
}

.header__nav li:not(:last-child):after{
  content: "";
  display: block;
  width: 1px;
  height: 80%;
  background-color: #707070;
  position: absolute;
  top:10%;
  right:-1px;
}

.header__nav a {
  font-size: 1em;
  font-weight: 500;
  display: block;
  padding: 10px;
  width: 120px;
}

.header__nav a img {
  width: 100%;
  display: block;
}

/* =========================
  contents
========================= */

.contents {
  width: 100%;
}

/* 
  section自体は画面いっぱい
  section__wrapで中身だけ幅制限
*/
.section {
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}



.section h2 {
  margin: 0 0 1.8em;
  font-size: 2.4em;
  line-height: 1.4;
}

.section p {
  margin: 0;
}

/* コンテンツごとの背景 */

.section--mainvisual {
  background: #f7f7f7;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  padding: 0;
}

.section--mainvisual .section__wrap {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
}

.section--mainvisual .section__wrap .wrap{
  text-align: center;
}

.section--mainvisual .section__wrap h2{
  color: #fff;
  font-size: 3em;
  line-height: 1.4;
  font-weight: 700;
  margin-bottom: 12px;
}

.section--mainvisual .section__wrap p{
  color: #fff;
  font-size: 1.5em;
  line-height: 1.4;
  font-weight: 700;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.section--mainvisual .section__wrap p strong{
  display: block;
  width: 250px;
  background-color: #63A298;
  text-align: center;
  padding: 0.1em 0;
  border-radius: 5px;
}

.contactbtn{
  display: block;
  max-width: 450px;
  background-color: #F15A24;
  text-align: center;
  padding: 0.1em 0;
  border-radius: 5px;
  color: #fff;
  font-size: 1.6em;
  line-height: 1.4;
  font-weight: 700;
  margin: 0.5em auto 0;
}

.section--mainvisual .section__wrap .contactbtn{
  margin-top: 2em;
}

.contactbtn span{
  display: block;
  font-size: 0.8em;
  line-height: 1.4;
  font-weight: 700;
}

.section__title {
  font-size: 3.5em;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}

.section .section__title1{
  margin-bottom: 12px;
}

.section__title span{
  position: absolute;
  left: 50%;
  top: -20px;
  margin-left: -660px;
  z-index: -1;
  width: 1320px;
  height: 200px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}

.section--2{
  text-align: center;
}


.section--about {
  background: #fff;
}

.section--service {
  background: #f2f2f2;
}

.section--contact {
  background: #faf5f8;
}

.checklist {
  width: fit-content;
  margin: 0 auto;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li p{
  font-size: 1.5em;
}

.checklist li img{
  width: 1.5em;
}

.supportlist {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1em;
  position: relative;
  z-index: 1;
}

.supportlist:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -100px;
  margin-left: -660px;
  z-index: -1;
  width: 1320px;
  height: 200px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/support.svg);
}


.supportlist li {
  width: calc(25% - 15px);
  margin: 0 0 30px;
  border:solid #63A298 2px;
}

.supportlist li figure{
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.supportlist li figure img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.supportlist li figure figcaption{
  font-weight: 700;
  text-align: center;
  margin-top: -10px;
  background-color: #63A298;
  color: #fff;
  padding: 0.5em 0 0.8em;
  width: calc(100% + 4px);
  margin-left: -2px;
  position: relative;
  z-index: 2;
  line-height: 1;
}

#house {
  display: block;
  width: 350px;
  margin: 1em auto;
  position: relative;
  z-index: 10;
}

.section--2 .supportcatch{
  color: #63A298;
  font-weight: 700;
  text-align: center;
  font-size: 1.6em;
}


.section--3,
.section--faq {
  background-color: #63A298;
  color: #fff;
}

.section--3 h2,
.section--faq h2{
  color: #fff;
}

.pointlist {
  margin-top: 4em;
}

.pointlist li{
  display: flex;
  gap: 10px;
  margin-bottom: 2em;
}

.pointlist li:nth-child(2){
  flex-direction: row-reverse;
}

.pointlist li section h3{
  font-weight: 400;
  font-size: 1.3em;
  line-height: 1;
}

.pointlist li section h3 span{
  display: block;
  font-weight: 700;
  font-size: 2em;
  margin-top: 0.2em;
  margin-bottom: 0.4em;
}

.pointlist li img{
  display: block;
  width: 322px;
}

.pointcatch {
  text-align: center;
}

.pointcatch strong{
  font-size: 2.6em;
  font-weight: 700;
  display: inline-block;
  border: #fff 1px solid;
  padding: 0.2em 1em 0.3em;
  line-height: 1;
}


.section--4 .section--4_text {
  text-align: center;
  margin: 2em 0;
}

.section--4 .section--4_text strong{
  font-weight: 600;
  font-size: 1.8em;
  color: #63A298;
}


/* =========================
  review
========================= */

.section--review{
  background-size: cover;
  background-position: center;
  position: relative;
}

.section--review::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #63A298;
  opacity: 0.85;
}

.section--review .section__wrap{
  position: relative;
  z-index: 2;
}

.section--review h2{
  color: #fff;
}




/* slider */

.review-slider {
  position: relative;
  overflow: visible;
  padding-bottom: 60px;
}

.review-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-item {
  width: auto;
  height: auto;
}

/* card */

.review-card {
  height: 100%;
  padding: 1.5em;
  background: #fff;
  border-radius: 1em;
  color: #000;
}

.review-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card__avatar {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #27b978;
}

.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section--review .review-card__name {
  margin: 0;
  font-weight: 400;
  line-height: 1.2;
  color: #000;
  font-size: 1.2em;
}

.section--review .review-card__date {
  margin: 10px 0 0;
  font-size: 0.8em;
  line-height: 1.3;
  color: #666;
}

.review-card__stars {
  display: flex;
  gap: 5px;
  margin-top: 18px;
  color: #f7a72c;
  font-size: 1.2em;
  line-height: 1;
}

.section--review .review-card__text {
  margin: 1em 0 0;
  font-weight: 400;
  line-height: 1.58;
  letter-spacing: 0.04em;
  color: #000;
}

/* swiper pagination */

.review-slider__pagination {
  bottom: 0 !important;
}

.review-slider__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.review-slider__pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* swiper button */

.review-slider__button {
  width: 48px;
  height: 48px;
  margin-top: 0;
  color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 10;

  top: calc((100% - 60px) / 2);
  transform: translateY(-50%);
}

.review-slider__button::after {
  display: none;
  content: "";
}

.review-slider__button--prev {
  left: -24px!important;
  background-image: url("../img/arrow-left.svg");
}

.review-slider__button--next {
  right: -24px!important;
  background-image: url("../img/arrow-right.svg");
}

.review-slider__button:hover {
  opacity: 0.8;
}

.review-slider.swiper {
  overflow: visible !important;
}

.review-slider {
  overflow: visible;
}

/* =========================
  responsive
========================= */

@media screen and (max-width: 768px) {


  .review-slider {
    padding-bottom: 48px;
  }

  .review-item {
    width: calc(100vw - 40px);
  }

  .review-card {
    padding: 28px 24px 34px;
    border-radius: 28px;
  }

  .review-card__head {
    gap: 20px;
  }

  .review-card__avatar {
    width: 3em;
    height: 3em;
  }

  .review-card__name {
    font-size: 2em;
  }

  .review-card__date {
    margin-top: 6px;
    font-size: 1.5em;
  }

  .review-card__stars {
    gap: 8px;
    margin-top: 18px;
    font-size: 1.5em;
  }

  .review-card__text {
    margin-top: 24px;
    font-size: 1em;
    line-height: 1.7;
  }

  .review-slider__button {
    display: none;
  }
}




/* =========================
  faq
========================= */



.faq-list {
  display: grid;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.faq-item {
  overflow: hidden;
  border-radius: 8px;
}

.faq-item__question {
  width: 100%;
  min-height: 48px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border-radius: 8px;
  color: #000;
  font-size: 1.2em;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-item__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background: url("../img/icon-plus.svg") center center / contain no-repeat;
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  padding: 20px 32px 26px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
}

.faq-item__answer-inner p {
  margin: 0;
}

/* 開いた時に質問部分の下角をなくす */
.faq-item.is-open .faq-item__question {
  border-radius: 8px 8px 0 0;
}

/* =========================
  responsive
========================= */

@media screen and (max-width: 768px) {
  .faq-list {
    gap: 16px;
  }

  .faq-item__question {
    min-height: 56px;
    padding: 12px 14px 12px 18px;
    font-size: 1em;
  }

  .faq-item__icon {
    width: 20px;
    height: 20px;
  }

  .faq-item__answer-inner {
    padding: 16px 18px 20px;
    font-size: 15px;
  }
}




.section--8 h2{
  margin-bottom:0.5em;
}

.section--8 p{
  text-align: center;
  color: #fff;
  margin-bottom: 1.5em;
}


.section--contact > div > p{
  text-align: center;
}






/* =========================
  contact form
========================= */


.contact-form {
  background: #6ea79d;
  border-radius: 12px;
  padding: 2em;
  margin-top: 1em;
}

.contact-form__row {
  padding-bottom: 24px;
  margin-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.contact-form__row--textarea {
  margin-bottom: 18px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.4;
}

.required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5em;
  height: 1.5em;
  border-radius: 9999px;
  background: #ff1d1d;
  color: #fff;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1;
}

.contact-form__field--md {
  max-width: 640px;
}

.contact-form input,
.contact-form textarea {
  display: block;
    width: 100%;
    background: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 1em;
    color: #333;
    font-size: 18px;
    line-height: 1.5;
}

.contact-form input {
  height: 2em;
}

.contact-form textarea {
  min-height: 280px;
  resize: vertical;
}

.contact-form__address {
  display: flex;
  gap: 16px;
}

.contact-form__zip {
  width: 225px;
  flex-shrink: 0;
}

.contact-form__address-main {
  flex: 1;
}

.contact-form__submit {
  text-align: center;
}

.contact-form__submit button {
  padding: 0.2em 2em 0.4em;
    border: none;
    border-radius: 9999px;
    background: #fff;
    color: #6ea79d;
    font-size: 1em;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.contact-form__submit button:hover {
  opacity: 0.8;
}

/* =========================
  responsive
========================= */

@media screen and (max-width: 768px) {

  .contact-form {
    padding: 28px 20px 30px;
    border-radius: 10px;
  }

  .contact-form__row {
    padding-bottom: 18px;
    margin-bottom: 20px;
  }

  .contact-form__label {
    gap: 8px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .required {
    min-width: 54px;
    height: 28px;
    padding: 0 10px;
    font-size: 14px;
  }

  .contact-form__field--md {
    max-width: 100%;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 16px;
  }

  .contact-form input {
    height: 52px;
  }

  .contact-form textarea {
    min-height: 220px;
  }

  .contact-form__address {
    flex-direction: column;
    gap: 12px;
  }

  .contact-form__zip {
    width: 100%;
  }

  .contact-form__submit button {
    width: 100%;
    max-width: 260px;
    height: 48px;
    font-size: 18px;
  }
}

/* =========================
  form hidden
========================= */

.form-hidden {
  display: none !important;
}

/* =========================
  form modal
========================= */

.form-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.45);
  z-index: 9999;
}

.form-modal.is-show {
  display: flex;
}

.form-modal__box {
  width: 100%;
  max-width: 460px;
  padding: 36px 28px 30px;
  background: #fff;
  border-radius: 16px;
  text-align: center;
  color: #333;
}

.form-modal__title {
  margin: 0 0 16px;
  color: #63A298;
  font-size: 28px;
  font-weight: 700;
}

.form-modal__text {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.8;
}

.form-modal__button {
  min-width: 160px;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 9999px;
  background: #63A298;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.form-modal__button:hover {
  opacity: 0.8;
}






/* =========================
  footer
========================= */

.footer {
  background: #7da9a2;
  color: #fff;
  padding: 28px 0 22px;
}

.footer__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer__logo {
  flex-shrink: 0;
  width: 170px;
}

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

.footer__info {
  flex: 1;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.footer__company {
  margin: 0 0 4px;
  font-weight: 700;
}

.footer__info p {
  margin: 0;
}

.footer__copyright {
  margin: 0;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.4;
  white-space: nowrap;
}


.contact-form__message {
  display: none;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.contact-form__message.is-success {
  display: block;
  color: #fff;
}

.contact-form__message.is-error {
  display: block;
  color: #ffdddd;
}

/* =========================
  responsive
========================= */

@media screen and (max-width: 768px) {
  .footer {
    padding: 24px 0 20px;
  }

  .footer__wrap {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer__logo {
    width: 130px;
  }

  .footer__info {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.04em;
  }

  .footer__copyright {
    font-size: 13px;
    white-space: normal;
  }
}

/* =========================
  responsive
========================= */

@media screen and (min-width: 769px) {
  .sp{
    display: none!important;
  }
}
@media screen and (max-width: 768px) {
  body{
    font-size: 1rem;
  }
  .wrap{
    padding: 0 1em;
  }
  .section h2{
    font-size: 1.4em;
  }
  .section__title span{
    width: 130vw;
    margin-left: -65vw;
    height: 50px;
    top: 14px;
  }
  .section--mainvisual {
    height: 150vw;
  }
  .supportlist:after{
    width: 130vw;
    margin-left: -65vw;
    height: 50px;
    bottom: 14px;
  }
  .section--mainvisual .section__wrap h2{
    font-size: 1.3em;
  }
  .section--mainvisual .section__wrap p{
    font-size: 1em;
    display: block;
  }
  .section--mainvisual .section__wrap p strong{
    display: block;
    margin: 0 auto 1em;
    padding: 0.5em 0;
  }
  .header__nav a{
    width: 80px;
  }
  .checklist li{
    margin-bottom: 0.5em;
  }
  .checklist li p {
    font-size: 1.2em;
  }
  .supportlist{
    flex-wrap: wrap;
  }
  .supportlist li{
    width: calc(50% - 15px);
  }
  #house{
    width: 100%;
  }
  .pointlist li{
    flex-wrap: wrap;
  }

  .pointlist li,
  .pointlist li:nth-child(2){
    flex-direction: column-reverse;
  }

  .pointlist li img{
    display: block;
    width: 40%;
    margin: 0 auto 1em;
  }
  .pointlist li section h3{
    font-size: 1em;
    text-align: center;
  }
  .pointcatch strong{
    font-size: 1.2em;
  }
  .section--4 .section--4_text strong{
    font-size: 1.4em;
  }
  .contactbtn{
    font-size: 1.5em;
  }
  .pc{
    display: none!important;
  }
  .header__logo {
    width: 140px;
  }
}