@charset "UTF-8";
/* CSS Document */
/*----------よくある質問セクション----------*/
.wave1 {
  width: 100%;
  margin: 10px 0 80px 0;
}
.faq-title1 {
  display: flex;
  justify-content: center;
  font-family: Kiwi Maru;
  color: #2a9eb8;
  font-size: 1.8rem;
}
.faq-title1 p {
  padding-left: 5px;
}
.faq-title2 {
  font-family: Kiwi Maru;
  font-size: 3.6rem;
}
.section-faq h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.section-faq ul li {
  margin: 0 15vw 30px 15vw;
  padding-left: 10px;
  border-left: solid 5px #2a9eb8;
}
.question {
  display: flex;
  font-size: 2.0rem;
  color: #fd6800;
  margin-bottom: 10px;
}
.question p {
  padding-left: 10px;
}
.question img {
    width: 50px;
    height: 100%;
  }
.answer {
  display: flex;
}
.answer img {
  width: 28px;
  height: 28px;
  margin-left: 20px;
}
.answer p {
  padding-left: 10px;
  letter-spacing: 0.02em;
}
.wave2 {
  width: 100%;
  margin: 80px 0 80px 0;
}
/*----------モバイル版よくある質問セクション----------*/
@media (max-width:768px) {
  .wave1 {
    margin: 10px 0 50px 0;
  }
  .faq-title1 {
    font-size: 1.6rem;
  }
  .faq-title2 {
    font-size: 2.4rem;
  }
  .section-faq h2 {
    margin-bottom: 50px;
  }
  .section-faq ul li {
    margin: 0 7vw 30px 7vw;
    padding-left: 7px;
    border-left: solid 5px #2a9eb8;
  }
  .question {
    font-size: 1.5rem;
  }
  .question img {
    width: 33px;
    height: 100%;
  }
  .question p {
    padding-left: 7px;
  }
  .answer {
    font-size: 1.4rem;
  }
  .answer img {
    width: 26px;
    height: 26px;
    margin-left: 10px;
  }
  .wave2 {
    width: 100%;
    margin: 50px 0 50px 0;
  }
  /*アコーディオン全体*/
  .accordion-area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
  }
  .accordion-area li {
    margin: 10px 0;
  }
  /*アコーディオンタイトル*/
  .question {
    position: relative; /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-weight: normal;
    padding: 3% 50px 3% 3%;
    transition: all .5s ease;
  }
  /*アイコンの＋と×*/
  .question::before, .question::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: #2a9eb8;
    border-radius: 20px;
  }
  .question::before {
    top: 48%;
    right: 15px;
    transform: rotate(0deg);
  }
  .question::after {
    top: 48%;
    right: 15px;
    transform: rotate(90deg);
  }
  /*　closeというクラスがついたら形状変化　*/
  .question.close::before {
    transform: rotate(45deg);
    background-color: #035589;
  }
  .question.close::after {
    transform: rotate(-45deg);
    background-color: #035589;
  }
  /*アコーディオンで現れるエリア*/
  .answer {
    display: none; /*はじめは非表示*/
    background: #f8f3e5;
    border-radius: 20px;
    margin: 0 3% 3% 3%;
    padding: 3%;
  }
}
/*----------お問い合わせセクション----------*/
.tel-title {
  font-size: 2.4rem;
  color: #333;
  font-family: Kiwi Maru;
  text-align: center;
  margin: 0 4vw 40px;
}
.tel-title span {
  font-size: 3.0rem;
  text-decoration: underline;
  text-decoration-color: #f3d485;
}
.pc-hidden {
  display: none;
}
.tel-information {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  margin-bottom: 70px;
}
.tel-information img {
  width: 95px;
  height: 100%;
}
.tel-number {
  font-family: Kiwi Maru;
  font-size: 2.8rem;
  color: #2a9eb8;
  letter-spacing: 0.15em;
}
.tel-time {
  font-family: Kiwi Maru;
  text-align: right;
  letter-spacing: 0.1em;
}
form {
  width: 80%;
  text-align: center;
}
.inquiry {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 40px 0;
  margin: 0 15vw 130px;
  border-top: solid 2px #7bdcab;
}
.inquiry p {
  font-size: 2.8rem;
  font-family: Kiwi Maru;
  padding-top: 10px;
  margin-bottom: 50px;
}
.wrapper {
  overflow: hidden;
}
.inquiry-contents {
  margin: 0 auto 30px;
  text-align: left;
}
.inquiry-title {
  display: inline-block;
  font-size: 1.5rem;
  width: 30%;
}
.inquiry-details {
  background-color: #caedf5;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  width: 100%;
}
.inquiry-btn {
  width: 150px;
  background-color: #edc14f;
  color: #035589;
  font-family: Kiwi Maru;
  font-size: 1.8rem;
  border-radius: 24px;
  font-weight: bold;
  letter-spacing: 0.7em;
  text-align: center;
  padding-left: 11px;
}
.pc-hidden {
  display: none;
}
/*----------モバイル版お問い合わせセクション----------*/
@media (max-width:880px) {
  .tel-title {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
  .tel-title span {
    font-size: 2.0rem;
  }
  .pc-hidden {
    display: block;
  }
  .tel-information {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
  }
  .tel-number {
    font-size: 2.2rem;
  }
  .tel-time {
    font-size: 1.5rem;
  }
  .inquiry {
    padding: 60px 0 40px 0;
    margin: 0 7vw 30px;
    border-top: solid 2px #7bdcab;
  }
  .inquiry-title {
    width: 100%;
  }
  .inquiry-details {
    width: 100%;
  }
  .pc-hidden {
    display: block;
  }
}