@charset "UTF-8";
/* -------------------------------------------------- */
/* file   : faq.css                                  */
/* update : 2022                                      */
/* -------------------------------------------------- */
#faq .h1_wrap {
  background: url("../../qa/img/bg_h1.jpg") no-repeat center center/cover;
}

article {
  margin-bottom: 120px;
}
article *,
article ::before,
article ::after {
  box-sizing: border-box;
}

.wrap {
  max-width: 1240px;
  margin: 0 auto 120px;
  margin-bottom: 120px;
  padding: 0 20px;
}
.wrap.last {
  margin-bottom: 0;
}

#faq .page {
  background: #F5F5F5;
}

.faq_title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 30px;
}
.faq_title.pink {
  color: #3AAF44;
}
.faq_title.blue {
  color: #00267F;
}

.faq_title_sub {
  background: #3AAF44;
  border-radius: 10px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  padding: 10px;
  margin-bottom: 30px;
}
.faq_title_sub.mt {
  margin-top: 60px;
}

.lead {
  font-size: 21px;
  margin-top: 80px;
}
.lead .color {
  font-weight: bold;
  color: #3AAF44;
}

.page_link {
  display: flex;
  gap: 0 5%;
  margin-top: 60px;
}
.page_link .link_item {
  width: 47.5%;
}
.page_link .link_item a {
  position: relative;
  display: block;
  background: #3AAF44;
  border-radius: 10px;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  padding: 32px 10px;
}
.page_link .link_item a::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(135deg);
  bottom: -30px;
  width: 23px;
  height: 23px;
  border-top: 6px solid #3AAF44;
  border-right: 6px solid #3AAF44;
}

.sec_title {
  text-align: center;
}
.sec_title span {
  border-bottom: 6px solid #3AAF44;
  font-size: 64px;
  font-weight: bold;
  color: #3AAF44;
  line-height: 1.2;
  padding-bottom: 10px;
}

.tab_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px 1.92%;
  margin-top: 100px;
}
.tab_list .tab {
  width: 23.56%;
  background: #fff;
  border: 3px solid #3AAF44;
  border-radius: 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #3AAF44;
  line-height: 1.2;
  padding: 13px 5px;
  cursor: pointer;
}
.tab_list .tab.wide {
  width: 32.05%;
}
.tab_list .tab.current {
  background: #FFF344;
}

.tab_content_wrap {
  margin-top: 60px;
}

.tab_content {
  display: none;
}

.bg_color {
  position: relative;
  background: #CFF2D2;
  padding-top: 80px;
}
.bg_color .inner {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  margin: 0 auto;
}
.bg_color::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -200px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1600px solid transparent;
  border-left: 1600px solid transparent;
  border-top: 300px solid #CFF2D2;
  border-bottom: 0;
}

.qa_sec {
  margin-top: 60px;
}

.faq_dl {
  background: #fff;
  border: 3px solid #3AAF44;
  border-radius: 10px;
  padding: 0 20px;
  margin-top: 20px;
}
.faq_dl:first-of-type {
  margin-top: 0;
}
.faq_dl dt {
  position: relative;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding: 25px 0;
  cursor: pointer;
}
.faq_dl dt.accordion_header::before, .faq_dl dt.accordion_header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 20px;
  height: 4px;
  margin: auto;
  background: #3AAF44;
}
.faq_dl dt.accordion_header::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.faq_dl dt.accordion_header.active::after {
  transform: rotate(0deg);
}
.faq_dl .q_content {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  width: calc(100% - 160px);
  padding-left: 50px;
}
.faq_dl .q_content::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100%;
  width: 40px;
  height: 40px;
}
.faq_dl .q_content.pink {
  color: #3AAF44;
}
.faq_dl .q_content.pink::before {
  background-image: url(../../qa/img/icon_q_hs.svg);
}
.faq_dl .q_content.blue {
  color: #00267F;
}
.faq_dl .q_content.blue::before {
  background-image: url(../../faq/img/icon_q_gakuen.svg);
}
.faq_dl dd {
  border-bottom: 1px solid #ACACAC;
  font-size: 14px;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.faq_dl dd:last-of-type {
  margin-bottom: 0;
}
.faq_dl dd a {
  display: inline-block;
  text-decoration: underline;
}
.faq_dl dd.accordion_content {
  display: none;
}

.btn_more {
  position: relative;
  width: 19.23%;
  background: #3AAF44;
  border-radius: 50px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  cursor: pointer;
  padding: 23px 10px;
  margin: 60px auto 0;
}
.btn_more::before, .btn_more::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 15px;
  height: 2px;
  margin: auto;
  background: #fff;
}
.btn_more::after {
  transform: rotate(-90deg);
  transition: transform 0.3s;
}
.btn_more.active::after {
  transform: rotate(0deg);
}

.content_more {
  display: none;
}

.bnr_sec {
  position: relative;
  margin-top: 80px;
}
.bnr_sec .lead_outline {
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: white;
  /* ① 文字色：白 */
  line-height: 1.5;
  -webkit-text-stroke: 6px #3AAF44;
  /* ② 縁取り：濃いピンク */
  paint-order: stroke fill;
  text-shadow: 4px 4px 0px #3AAF44, 5px 5px 0px #3AAF44, 6px 6px 0px #3AAF44;
}
.bnr_sec .lead {
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  color: #3AAF44;
  margin-top: 20px;
}
.bnr_sec .bnr_box {
  text-align: center;
  margin-top: 30px;
}

.glossary_sec {
  margin-top: 120px;
}
.glossary_sec .tab_list .tab {
  width: 49.04%;
}
.glossary_sec .glossary_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2.88%;
}
.glossary_sec .glossary_list .list_item {
  position: relative;
  display: inline-block;
  width: 22.84%;
  font-size: 14px;
  font-weight: bold;
  color: #3AAF44;
  line-height: 1.5;
  padding-left: 24px;
  cursor: pointer;
  transition: 0.3s;
}
.glossary_sec .glossary_list .list_item::before {
  content: "";
  width: 14px;
  height: 14px;
  background: #3AAF44;
  border-radius: 50%;
  position: absolute;
  top: 4px;
  left: 0;
  bottom: 0;
}
.glossary_sec .glossary_list .list_item::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 8px;
  left: 3px;
  bottom: 0;
}
.glossary_sec .content_more {
  margin-top: 10px;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 99;
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 60px;
  height: 60px;
  cursor: pointer;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #FFFAAA;
  border: 3px solid #3AAF44;
  border-radius: 10px;
  padding: 20px;
}
.modal-content .term_title {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  color: #3AAF44;
  line-height: 1.5;
  border-bottom: 2px solid #3AAF44;
  padding-bottom: 20px;
}
.modal-content .term_text {
  font-size: 14px;
  margin-top: 20px;
}

.content_more {
  margin-top: 20px;
}

/*----------------------------------------------------------*/
/* tablet用のCSS */
/*----------------------------------------------------------*/
@media screen and (min-width: 560px) and (max-width: 1100px) {
  /* tablet */
  /* -------------------tablet END------------------------- */
}
/*----------------------------------------------------------*/
/* sp用のCSS */
/*----------------------------------------------------------*/
@media screen and (max-width: 750px) {
  article {
    margin-bottom: 60px;
  }
  .wrap {
    max-width: inherit;
    margin: 0 auto 50px;
    padding: 0 20px;
  }
  /* sp */
  .faq_title_sub {
    font-size: 16px;
    padding: 10px;
    margin-bottom: 15px;
  }
  .faq_title_sub.mt {
    margin-top: 30px;
  }
  .lead {
    font-size: 15px;
    margin-top: 40px;
  }
  .page_link {
    gap: 0 2%;
    margin-top: 30px;
  }
  .page_link .link_item {
    width: 49%;
  }
  .page_link .link_item a {
    border-radius: 5px;
    font-size: 16px;
    padding: 15px 5px;
  }
  .page_link .link_item a::after {
    bottom: -15px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #3AAF44;
    border-right: 3px solid #3AAF44;
  }
  .sec_title span {
    border-bottom: 3px solid #3AAF44;
    font-size: 30px;
    padding-bottom: 5px;
  }
  .tab_list {
    gap: 5px 2%;
    margin-top: 50px;
  }
  .tab_list .tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 49%;
    height: 50px;
    border: 2px solid #3AAF44;
    border-radius: 5px;
    font-size: 14px;
    padding: 10px;
  }
  .tab_list .tab.wide {
    width: 49%;
  }
  .tab_content_wrap {
    margin-top: 30px;
  }
  .bg_color {
    padding-top: 40px;
  }
  .bg_color .inner {
    max-width: 100%;
    padding: 0 20px;
  }
  .bg_color::after {
    bottom: -100px;
    border-right: 800px solid transparent;
    border-left: 800px solid transparent;
    border-top: 150px solid #CFF2D2;
  }
  .qa_sec {
    margin-top: 30px;
  }
  .faq_dl {
    border: 2px solid #3AAF44;
    border-radius: 5px;
    padding: 0 10px;
    margin-top: 10px;
  }
  .faq_dl dt {
    padding: 15px 0;
  }
  .faq_dl dt.accordion_header::before, .faq_dl dt.accordion_header::after {
    right: 0;
    bottom: 0;
    width: 10px;
    height: 2px;
  }
  .faq_dl .q_content {
    font-size: 16px;
    width: 100%;
    padding: 0 15px 0 35px;
  }
  .faq_dl .q_content::before {
    width: 30px;
    height: 30px;
  }
  .faq_dl dd {
    font-size: 14px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .btn_more {
    width: 90%;
    font-size: 12px;
    padding: 15px 5px;
    margin: 30px auto 0;
  }
  .bnr_sec {
    margin-top: 40px;
  }
  .bnr_sec .lead_outline {
    font-size: 30px;
    -webkit-text-stroke: 4px #3AAF44;
    /* ② 縁取り：濃いピンク */
    text-shadow: 2px 2px 0px #3AAF44, 4px 4px 0px #3AAF44, 5px 5px 0px #3AAF44;
  }
  .bnr_sec .lead {
    font-size: 15px;
    margin-top: 10px;
  }
  .bnr_sec .bnr_box {
    margin-top: 15px;
  }
  .glossary_sec {
    margin-top: 60px;
  }
  .glossary_sec .tab_list .tab {
    width: 49%;
  }
  .glossary_sec .glossary_list {
    gap: 5px 2%;
  }
  .glossary_sec .glossary_list .list_item {
    width: 49%;
    font-size: 13px;
    padding-left: 24px;
  }
  .glossary_sec .glossary_list .list_item::before {
    width: 14px;
    height: 14px;
  }
  .glossary_sec .content_more {
    margin-top: 5px;
  }
  .modal-container {
    padding: 20px 10px;
  }
  /*モーダル枠の指定*/
  .modal-body {
    max-width: 90%;
    width: 90%;
  }
  /*モーダルを閉じるボタンの指定*/
  .modal-close {
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
  }
  /*モーダル内のコンテンツの指定*/
  .modal-content {
    border: 2px solid #3AAF44;
    border-radius: 5px;
  }
  .modal-content .term_title {
    font-size: 18px;
    padding-bottom: 10px;
  }
  .modal-content .term_text {
    margin-top: 10px;
  }
  .content_more {
    margin-top: 10px;
  }
  /* ---------------------SP END----------------------------- */
}/*# sourceMappingURL=faq.css.map */