@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/* 色指定 */
/* フォント指定 */
.pc-block {
  display: block;
}

.tb-block {
  display: none;
}

.sp-block {
  display: none;
}

@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
  .tb-block {
    display: none;
  }
  .sp-block {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pc-block {
    display: block;
  }
  .tb-block {
    display: block;
  }
  .sp-block {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc-block {
    display: none;
  }
  .tb-block {
    display: none;
  }
  .sp-block {
    display: block;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  min-height: 100vh;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

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

a {
  text-decoration: none;
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 16px;
  padding-right: 16px;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease;
}
.header.is-scrolled {
  background: #fff;
}
.header__container {
  display: flex;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  height: 80px;
}
@media screen and (max-width: 767px) {
  .header__container {
    height: 58px;
  }
}
.header__container .logo {
  display: block;
  max-width: 109px;
}
@media screen and (max-width: 767px) {
  .header__container .logo {
    max-width: 74px;
  }
}
.header__container .send_form {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  max-width: 295px;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  color: #21272a;
  background-color: #ffd54f;
  transition: 0.25s;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header__container .send_form {
    max-width: 106px;
    font-size: 0.8rem;
  }
}
.header__container .send_form:hover {
  background-color: #ffe38b;
}
.header__container .send_form::before {
  content: "";
  display: block;
  width: 29px;
  height: 23px;
  background-image: url("../img/icon-mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .header__container .send_form::before {
    width: 12px;
    height: 10px;
  }
}
.header__container .back_top {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  max-width: 295px;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  color: #fff;
  background-color: #00acac;
  transition: 0.25s;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .header__container .back_top {
    max-width: 106px;
    font-size: 0.8rem;
  }
}
.header__container .back_top:hover {
  background-color: #00c5c5;
}
.header__container .back_top::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-arrow-b.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.footer {
  padding: 0 0 40px;
  background-color: #aeeeee;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-bottom: 80px;
  }
}
.footer {
  padding-left: 16px;
  padding-right: 16px;
}
.footer__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  font-size: 0.88rem;
  flex-flow: wrap;
  gap: 0.3rem 2rem;
}
@media screen and (max-width: 767px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__container ul {
  display: flex;
  flex-flow: wrap;
  list-style: none;
  gap: 0.2rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .footer__container ul {
    flex-direction: column;
  }
}
.footer__container ul a {
  color: #21272a;
}
.footer__container ul a:hover {
  text-decoration: underline;
}

.pagetop {
  position: fixed;
  right: 24px;
  bottom: 100px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: #00acac;
  color: #fff;
  font-size: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.pagetop.is-show {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 767px) {
  .pagetop {
    width: 64px;
    height: 40px;
    border-radius: 10px 10px 0 0;
    bottom: 0px;
  }
}

/*/////////////////////
  TOPビジュアル
/////////////////////*/
.top {
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  height: 798px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .top {
    height: 100dvh;
    max-height: 100dvh;
  }
}
.top__visual {
  width: 100%;
  height: 100%;
  position: absolute;
}
.top__visual picture {
  display: block;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .top__visual {
    top: -24px;
    right: -24px;
  }
  .top__visual img {
    height: 100%;
    object-fit: contain;
    object-position: top right;
  }
}
@media screen and (max-width: 1200px) {
  .top__visual {
    width: 100%;
    height: 90%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .top__visual img {
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.top__container {
  position: relative;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
}
@media screen and (max-width: 1200px) {
  .top__container {
    padding-top: 120px;
    height: 100%;
  }
}
.top__content {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .top__content {
    height: 100%;
    justify-content: space-between;
  }
}
.top__badge {
  font-size: 1.1rem;
  letter-spacing: 0.025em;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .top__badge {
    font-size: 0.72rem;
  }
}
.top__subCopy {
  width: fit-content;
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #04287e;
}
.top__subCopy span {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .top__subCopy {
    font-size: 1.2rem;
  }
  .top__subCopy span {
    font-size: 1rem;
  }
}
.top__title {
  font-size: 3.2rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin: 30px 0;
  text-shadow: -3px -3px 0 #fff, 0px -3px 0 #fff, 3px -3px 0 #fff, -3px 0px 0 #fff, 3px 0px 0 #fff, -3px 3px 0 #fff, 0px 3px 0 #fff, 3px 3px 0 #fff;
}
.top__title .color {
  color: #04287e;
  text-shadow: none;
  text-decoration: underline;
  text-decoration-thickness: 17px;
  text-underline-offset: -7px;
  text-decoration-skip-ink: none;
  text-decoration-color: #ffd54f;
}
@media screen and (max-width: 1200px) {
  .top__title .color {
    text-decoration-thickness: 9px;
    text-underline-offset: -2px;
  }
}
.top__title span:not([class]) {
  font-size: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .top__title {
    margin: 10px 0;
    font-size: 1.9rem;
  }
  .top__title span:not([class]) {
    font-size: 1.5rem;
  }
}
.top__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
}
@media screen and (max-width: 1200px) {
  .top__list {
    width: fit-content;
  }
}
.top__list li button {
  width: 100%;
  text-align: left;
  max-width: 456px;
  position: relative;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  background-color: #fff;
  padding: 10px 13px;
  padding-left: 56px;
  border-radius: 10px;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
}
.top__list li button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 1200px) {
  .top__list li button {
    font-size: 1.2rem;
  }
}
.top__list li button span {
  display: block;
  font-size: 0.9rem;
  line-height: 1.3;
  color: #00acac;
}
.top__list li button::before {
  content: "";
  position: absolute;
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #aeeeee;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
}
.top__list li button::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 8px;
  border: 2px solid #04287e;
  border-top: none;
  border-left: none;
  top: 48%;
  left: 22px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.2s ease-in-out;
}
.top__list li button:hover::after {
  top: 50%;
}

/*/////////////////////
  アバウトセクション
/////////////////////*/
.about {
  position: relative;
}
@media screen and (min-width: 1201px) {
  .about {
    padding: 160px;
  }
}
@media screen and (max-width: 1200px) {
  .about {
    margin-top: 80px;
  }
}
.about {
  padding-left: 16px;
  padding-right: 16px;
  overflow: hidden;
}
.about__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.about__img {
  max-width: 1280px;
  width: 100%;
  padding: 200px 0;
  z-index: 3;
}
@media screen and (min-width: 1201px) {
  .about__img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 1200px) {
  .about__img {
    position: relative;
    margin-top: 24px;
    padding: 120px 0;
  }
}
.about__img_01, .about__img_02, .about__text {
  opacity: 0;
}
.about__img_01, .about__img_02 {
  position: absolute;
  width: 258px;
  z-index: 5;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .about__img_01, .about__img_02 {
    border-radius: 30px;
    width: 178px;
  }
}
.about__img_01.is-show, .about__img_02.is-show {
  animation: fadeUp 0.8s ease forwards;
}
@media screen and (min-width: 1201px) {
  .about__img_01 {
    left: 0;
    bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .about__img_01 {
    left: 40%;
    top: 0;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 1201px) {
  .about__img_02 {
    right: 0;
    top: 0;
  }
}
@media screen and (max-width: 1200px) {
  .about__img_02 {
    right: 40%;
    bottom: 0;
    transform: translateX(50%);
  }
}
.about__text {
  max-width: 592px;
  margin: auto;
  position: relative;
  z-index: 10;
}
.about__text p {
  line-height: 2;
}
.about__text.is-show {
  animation: fadeUp 0.8s ease forwards;
}
.about__title {
  text-align: center;
}
.about__title h3 {
  font-size: 1.5rem;
  line-height: 1.5;
  margin: 10px 0 32px;
  color: #00acac;
}
@media screen and (max-width: 1200px) {
  .about__title h3 {
    margin-bottom: 24px;
  }
}
.about__title span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: fit-content;
  margin: auto;
}
.about__title span::before, .about__title span::after {
  content: "";
  display: block;
  width: 2px;
  height: 1.2rem;
  background-color: #ffd54f;
}
.about__title span::before {
  transform: rotate(-25deg);
}
.about__title span::after {
  transform: rotate(25deg);
}
.about::after {
  content: "";
  position: absolute;
  display: block;
  width: 120vw;
  height: 350px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 50% 50% 0 0;
  background-color: #f0f8f8;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .about::after {
    width: 200vw;
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
  }
}
/*/////////////////////
  研修ラインナップ
/////////////////////*/
.training {
  padding: 80px;
  background-color: #f0f8f8;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 0;
}
.training__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.training .tabs__content {
  background-color: #fff;
  padding: 80px 70px;
}
@media screen and (max-width: 767px) {
  .training .tabs__content {
    padding: 1rem;
    margin: 1.5rem 0;
  }
}
.training .tabs__title {
  display: flex;
  align-items: center;
  font-weight: bold;
  gap: 1rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .training .tabs__title {
    flex-direction: column;
    justify-content: center;
  }
}
.training .tabs__title h3 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .training .tabs__title h3 {
    font-size: 1.5rem;
  }
}
.training .tabs__title span {
  width: fit-content;
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  line-height: 1.3;
  padding-left: 40px;
  padding: 12px 20px;
  padding-left: 3rem;
  border-radius: 10px;
  color: #fff;
  background-color: #00acac;
}
@media screen and (max-width: 767px) {
  .training .tabs__title span {
    padding: 12px 10px;
    justify-content: center;
    width: 100%;
  }
}
.training .tabs__title span::before {
  content: "";
  position: absolute;
  display: block;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background-color: #aeeeee;
  top: 50%;
  left: 13px;
  transform: translateY(-50%);
}
.training .tabs__title span::after {
  content: "";
  position: absolute;
  display: block;
  width: 8px;
  height: 13px;
  border: 2px solid #04287e;
  border-top: none;
  border-left: none;
  top: 48%;
  left: 22px;
  transform: translateY(-50%) rotate(45deg);
}
.training .tabs__text {
  margin: 24px 0;
}
.training .tabs__notes {
  display: flex;
  gap: 10px;
  width: fit-content;
  font-size: 13px;
  padding: 12px 22px;
  border: 1px solid #00d0d0;
}
.training .tabs__notes span {
  display: inline-block;
  width: calc(100% - 33px);
}
.training .tabs__notes::before {
  content: "";
  display: block;
  width: 23px;
  height: 23px;
  background-image: url("../img/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .training .tabs__notes {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .training .tabs__notes span {
    width: 100%;
  }
}
.training .tabs__panel {
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.training .tabs__panel.is-active {
  display: block;
  opacity: 1;
}
.training .tabs__btn {
  width: 32.8%;
  padding: 32px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  border: none;
  background: #eaeaea;
  color: #888;
  transition: background 0.3s, color 0.3s;
}
@media screen and (max-width: 767px) {
  .training .tabs__btn {
    width: 33%;
  }
  .training .tabs__btn:nth-child(2) {
    width: 45%;
  }
  .training .tabs__btn {
    font-size: 1rem;
    padding: 26px 4px;
    background: transparent;
    border-radius: 40px;
  }
}
.training .tabs__btn.is-active {
  background: #ffd54f;
  color: #21272a;
}
.training .tabs__nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .training .tabs__nav {
    background-color: #d9d9d9;
    border-radius: 40px;
  }
}
@media screen and (min-width: 768px) {
  .training .tabs__nav--top .tabs__btn {
    border-radius: 10px 10px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .training .tabs__nav--bottom .tabs__btn {
    border-radius: 0 0 10px 10px;
  }
}
.training .tabs .accordion {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion {
    margin-top: 24px;
  }
}
.training .tabs .accordion__item {
  background-color: #deffff;
}
.training .tabs .accordion__item.is-open .accordion__answer {
  max-height: 1000px;
}
.training .tabs .accordion__container {
  padding: 30px;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__container {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__container {
    background-color: #fff;
  }
}
.training .tabs .accordion__wrapper {
  background-color: #fff;
  border-radius: 20px;
}
.training .tabs .accordion__tag {
  width: 185px;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__tag {
    width: 100%;
  }
}
.training .tabs .accordion__tag div {
  width: fit-content;
  min-width: 150px;
  border-left: 4px solid #00acac;
  color: #00acac;
  font-weight: bold;
  padding: 24px 20px;
  background-color: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__tag div {
    border-radius: 0 100px 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__tag div {
    width: 100%;
    min-width: unset;
    padding: 10px 20px;
    border-right: 4px solid #00acac;
    text-align: center;
  }
}
.training .tabs .accordion__title {
  font-size: 1.5rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__title {
    width: 72%;
    text-align: left;
    padding-left: 3rem;
    padding-right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__title {
    font-size: 1.3rem;
    padding: 0 2rem;
  }
}
.training .tabs .accordion__title span {
  display: inline-block;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__title span {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__title span {
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
  }
}
.training .tabs .accordion__question {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 30px;
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__question {
    flex-direction: column;
    justify-content: center;
    padding-right: 0;
    gap: 1rem;
  }
}
.training .tabs .accordion__question::after {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("../img/icon-accordion.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__question::after {
    margin-left: auto;
  }
}
.training .tabs .accordion__question.is-open::after {
  content: "";
  transform: rotate(180deg);
}
.training .tabs .accordion__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.training .tabs .accordion__answer dl {
  max-width: 500px;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .training .tabs .accordion__answer dl {
    padding: 30px 0;
  }
}
.training .tabs .accordion__answer dl dt {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__answer dl dt {
    text-align: center;
  }
}
.training .tabs .accordion__answer dl dd {
  line-height: 2;
}
.training .tabs .accordion__answer dl img {
  display: block;
  width: 100%;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__answer dl img {
    margin-top: 12px;
  }
}
.training .tabs .accordion__mark {
  display: block;
}
@media screen and (max-width: 767px) {
  .training .tabs .accordion__mark {
    margin: auto;
  }
}
.training .tabs .accordion__mark {
  width: 23px;
  height: 23px;
  background-image: url("../img/icon-star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  margin-bottom: 12px;
}
.training .tabs .accordion__tooltip {
  max-width: 276px;
  width: 90%;
  position: absolute;
  display: none;
  padding: 20px 22px;
  font-size: 13px;
  pointer-events: none;
  background-color: #fff;
  border: 1px solid #00d0d0;
}
.training .tabs .accordion__tooltip span {
  font-weight: bold;
}

/*/////////////////////
  OUR SERVICES
/////////////////////*/
.service {
  padding: 80px;
  background-color: #f0f8f8;
  padding-left: 16px;
  padding-right: 16px;
}
.service__title {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
.service__title span {
  font-size: 1.4rem;
  color: #00acac;
}
.service__title p {
  font-size: 1.5rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .service__title p {
    font-size: 1.2rem;
    text-align: left;
  }
}
.service__container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
  padding: 56px 43px;
  border-radius: 10px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .service__container {
    padding: 30px 32px;
  }
}
.service__container ul {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  list-style: none;
  gap: 40px 24px;
}
.service__container ul li {
  width: 370px;
}
.service__container ul dt {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 102px;
  gap: 12px;
  padding: 16px;
  font-size: 1.5rem;
  color: #fff;
  background-color: #00d0d0;
  border-radius: 10px;
  margin-bottom: 24px;
}
.service__container ul dt span {
  max-width: 80%;
  line-height: 1.5;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .service__container ul dt span {
    text-align: left;
  }
}
.service__container ul dt::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.service__container ul li:nth-child(1) dt::before {
  background-image: url("../img/icon-service_01.svg");
}
.service__container ul li:nth-child(2) dt::before {
  background-image: url("../img/icon-service_02.svg");
}
.service__container ul li:nth-child(3) dt::before {
  background-image: url("../img/icon-service_03.svg");
}

/*/////////////////////
  FAQ
/////////////////////*/
.faq {
  padding-left: 16px;
  padding-right: 16px;
  margin: 80px 0;
}
@media screen and (max-width: 767px) {
  .faq {
    margin: 24px 0;
  }
}
.faq__title {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
.faq__title span {
  font-size: 1.4rem;
  color: #00acac;
}
.faq__title h2 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .faq__title h2 {
    font-size: 1.5rem;
  }
}
.faq__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  max-width: 1130px;
}
@media screen and (max-width: 767px) {
  .faq__container {
    padding: 0 10px;
  }
}
.faq__item {
  background: #f0f8f8;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .faq__item {
    font-size: 1rem;
  }
}
.faq__question {
  width: 100%;
  text-align: left;
  padding: 30px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 1.2rem 1rem;
  }
}
.faq__question span {
  width: 80%;
}
.faq__question::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("../img/icon-question.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faq__question::after {
  margin-left: auto;
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url("../img/icon-accordion.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .faq__question::after {
    width: 26px;
    height: 26px;
  }
}
.faq__question.is-open::after {
  content: "";
  transform: rotate(180deg);
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}
.faq__answer div {
  display: flex;
  gap: 0.8rem;
  padding: 24px;
  padding-left: 80px;
  padding-bottom: 48px;
}
@media screen and (max-width: 767px) {
  .faq__answer div {
    font-weight: normal;
    align-items: center;
    padding-left: unset;
    padding-bottom: unset;
    padding: 16px;
  }
}
.faq__answer div p {
  width: 90%;
  line-height: 1.5;
}
.faq__answer div::before {
  content: "";
  display: block;
  width: 26px;
  height: 26px;
  background-image: url("../img/icon-answer.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.faq__answer.is-open {
  max-height: 500px; /* 中身より大きい値 */
  opacity: 1;
}

/*/////////////////////
  問い合わせフォーム
/////////////////////*/
.form-layer {
  background-color: #aeeeee;
}

.contact {
  padding: 84px 0 63px;
  background-color: #aeeeee;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 40px 0;
  }
}
.contact {
  padding-left: 16px;
  padding-right: 16px;
}
.contact .error {
  color: #ff3333;
  margin-top: 4px;
}
.contact .input-error {
  border: 2px solid #dc3545;
  background-color: #fff5f5;
}
.contact__title {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
.contact__title span {
  font-size: 1.4rem;
  color: #00acac;
}
.contact__title h2 {
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__title h2 {
    font-size: 1.5rem;
  }
}
.contact__lead {
  text-align: center;
}
.contact__container {
  width: 100%;
  max-width: 1054px;
  margin: 0 auto;
  padding: 56px 16px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 44px 0px rgba(0, 52, 53, 0.1019607843);
}
@media screen and (max-width: 767px) {
  .contact__container {
    width: 100%;
  }
}
.contact__label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
  display: inline-block;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__label {
    font-size: 10px;
    padding-bottom: 0;
  }
}
.contact__lead {
  margin-top: 16px;
  color: #21272a;
}
.contact__note {
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #ff0000;
  font-weight: 500;
  margin: 0 auto 16px;
  border-bottom: 1px solid #ff0000;
  width: fit-content;
  padding: 4px 0;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .contact__note {
    margin-bottom: 16px;
    letter-spacing: -1px;
  }
}
.contact__form-wrapper {
  max-width: 800px;
  margin: 40px auto 0;
  padding: 0 8px;
}
@media screen and (max-width: 767px) {
  .contact__form-wrapper {
    padding: 0 16px;
  }
}
.contact__form-group {
  margin-bottom: 24px;
}
.contact__form-label {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #21272a;
  margin-bottom: 8px;
}
.contact__form-label .required {
  color: #fff;
  margin-left: 8px;
  font-size: 12px;
  border-radius: 24px;
  padding: 0 6px;
  background-color: #ff0000;
}
.contact__form-label .optional {
  color: #fff;
  margin-left: 8px;
  font-size: 12px;
  border-radius: 24px;
  padding: 0 6px;
  background-color: #13388e;
}
.contact .select-wrapper {
  position: relative;
}
.contact .select-wrapper::after {
  content: "";
  display: block;
  position: absolute;
  right: 16px;
  top: 50%;
  width: 16px;
  height: 12px;
  background-image: url("../img/icon-select.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translateY(-50%);
  pointer-events: none;
}
.contact__form-input, .contact__form-textarea {
  font-family: "Noto Sans JP", sans-serif;
  width: 100%;
  padding: 16px;
  border: 1px solid #c1c7cd;
  border-radius: 10px;
  font-size: 16px;
  color: #21272a;
  background-color: #f2f4f8;
  transition: border-color 0.3s ease;
  outline: none;
}
.contact__form-input::placeholder, .contact__form-textarea::placeholder {
  color: #cccccc;
}
@media screen and (max-width: 767px) {
  .contact__form-input, .contact__form-textarea {
    padding: 8px;
  }
}
.contact__form-textarea {
  min-height: 160px;
  resize: none;
}
.contact__privacy {
  text-align: center;
  margin: 43px 0 24px;
}
.contact__privacy-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: wrap;
  gap: 12px;
  cursor: pointer;
  margin: 24px 0;
  margin-bottom: 24px;
}
.contact__privacy-label .error {
  width: 100%;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .contact__privacy-label {
    margin: 20px 0 24px;
    gap: 4px;
  }
}
.contact__privacy-checkbox {
  position: absolute;
  opacity: 0;
}
.contact__privacy-box {
  width: 24px;
  height: 24px;
  border: 1.5px solid #bcbcbc;
  border-radius: 0px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}
.contact__privacy-checkbox:checked + .contact__privacy-box::after {
  content: "";
  border: 2px solid #21272a;
  border-top: none;
  border-left: none;
  position: absolute;
  left: 6px;
  top: 0px;
  width: 9px;
  height: 16px;
  transform: rotate(45deg);
}
.contact__privacy-text {
  font-family: "Noto Sans JP", sans-serif;
  color: #21272a;
  text-decoration: none;
  border-bottom: 1px solid #21272a;
}
.contact__submit {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    flex-direction: column-reverse;
  }
}
.contact__submit-btn {
  color: #21272a;
  background-color: #ffd54f;
  border: none;
  border-radius: 32px;
  line-height: 1;
  padding: 12px 32px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border: 3px solid #ffd54f;
  transition: 0.3s ease;
}
.contact__submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact__submit-btn:hover:not(:disabled) {
  background-color: #fff;
}
.contact__submit-btn::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .contact__submit-btn::after {
    margin-left: auto;
  }
}
.contact__submit-btn.back-button {
  background-color: #fff;
  border-color: #21272a;
}
.contact__submit-btn.back-button::after {
  display: none;
}
.contact__submit-btn.back-button::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-arrow.svg");
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .contact__submit-btn.back-button::before {
    margin-left: auto;
  }
}
.contact__submit-btn.back-button:hover {
  color: #fff;
  background-color: #21272a;
}
.contact__submit-btn.back-button:hover::before {
  background-image: url("../img/icon-arrow-b.svg");
  transform: rotate(0deg);
}
.contact__submit-btn.back-top::after {
  display: none;
}
.contact__submit-btn.back-top::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-arrow.svg");
  transform: rotate(180deg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 768px) {
  .contact__submit-btn.back-top::before {
    margin-left: auto;
  }
}
.contact__submit-btn img {
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 767px) {
  .contact__submit-btn {
    padding: 16px 24px;
    justify-content: center;
  }
}
.contact__back-to-top_wrapper {
  width: 75%;
  max-width: 1400px;
  min-width: 1056px;
  left: 50%;
  transform: translateX(-50%);
  position: fixed;
  bottom: 80px;
  z-index: 100;
}
@media screen and (max-width: 1110px) {
  .contact__back-to-top_wrapper {
    width: 95%;
    min-width: unset;
  }
}
.contact__back-to-top {
  margin-left: auto;
  width: 48px;
  height: 48px;
  padding: 8px 8px 10px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.contact__back-to-top img {
  width: 12px;
  height: 8px;
}
@media screen and (max-width: 767px) {
  .contact__back-to-top {
    right: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .contact__back-to-top {
    right: 32px;
  }
}
.contact__page {
  padding-top: 160px;
}
@media screen and (max-width: 767px) {
  .contact__page {
    padding-top: 80px;
  }
}
.contact__page .contact__form-group p {
  padding: 10px 1rem;
  border-bottom: 1px solid #c9caca;
  color: #697077;
}
.contact__page .contact__submit {
  margin-top: 2rem;
}
.contact__page .contact__submit #submit-button {
  width: 218px;
}

/*# sourceMappingURL=style.css.map */
