@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  body {
    position: static;
  }
}

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

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/bg.webp);
  background-size: 100% 100%;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1000px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 600px) {
  .bg {
    display: none;
  }
}

/* 上層固定背景 内部 */
.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .bg_content {
    display: none;
  }
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  background-color: #fff;
  max-width: 375px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 460px) {
  .lp_body {
    max-width: 460px;
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.wrap {
  padding: 0 20px;
}

.section_heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.section_heading h2 {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  font-weight: 600;
  font-size: 25px;
}
@media screen and (max-width: 460px) {
  .section_heading h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 375px) {
  .section_heading h2 {
    font-size: 22px;
  }
}
.section_heading span:first-child {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
  font-weight: 600;
}
.section_heading span:last-child {
  display: block;
  width: 30px;
  background-color: #80D8D0;
  height: 2px;
  margin: 0 auto;
}

.bg_cta {
  width: 335px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: calc(((100% - 375px) / 2 - 335px) / 2);
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .bg_cta {
    width: 280px;
    right: calc(((100% - 375px) / 2 - 280px) / 2);
  }
}
@media screen and (max-width: 1200px) {
  .bg_cta .cta_item span {
    font-size: 10px;
  }
}

/*------------------- header ------------------*/
.header {
  padding: 8px 10px;
  background-color: #fff;
}

.header_logo {
  width: 128px;
}

/*------------------- mv ------------------*/
.mv_inner {
  padding-left: 40px;
  background-color: #fff;
  margin-bottom: 30px;
  position: relative;
}

.mv_main {
  position: absolute;
  width: 244px;
  left: 0;
  bottom: 30px;
  z-index: 2;
}

.mv_bottom {
  padding: 0 20px 0;
}
.mv_bottom img {
  border-radius: 5px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.11);
}

/*------------------- perk ------------------*/
.perk {
  padding: 30px 0 50px;
}

.perk_item:not(:last-child) {
  margin-bottom: 30px;
}

.perk_img {
  margin-bottom: 10px;
}

.perk_txt {
  font-size: 14px;
  line-height: 1.5;
}
.perk_txt h3 {
  color: #80D8D0;
}

/*------------------- trouble ------------------*/
.trouble_img {
  margin-bottom: 30px;
}

.trouble_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 20px;
  font-weight: 600;
  margin: 0 auto 20px;
}

.trouble_arrow {
  width: 12px;
  margin: 0 auto;
}

/*------------------- reason ------------------*/
.reason {
  background-color: #E6F7F6;
  position: relative;
  padding: 90px 0 0;
}
.reason::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 36px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  top: 0;
  left: 0;
}

.reason_list {
  margin-bottom: 30px;
}

.reason_item {
  padding: 16px 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reason_item:not(:last-child) {
  margin-bottom: 10px;
}

.reason_num {
  background-color: #80D8D0;
  border-radius: 50%;
  font-size: 22px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  padding-bottom: 2px;
}

.reason_item p {
  line-height: 1.2;
}

.reason_point {
  padding-top: 156px;
  position: relative;
}

.reason_point_top {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.reason_point_wrap {
  background-color: #fff;
  position: relative;
  z-index: 3;
  padding: 20px;
}

.reason_point_txt {
  margin-bottom: 30px;
}
.reason_point_txt h3 {
  padding: 6px 6px 0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}
.reason_point_txt span {
  color: #80D8D0;
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}
.reason_point_txt p {
  line-height: 1.46;
}

.reason_point_content {
  border-top: 1px solid #80D8D0;
}

.reason_point_list {
  border-bottom: 1px solid #80D8D0;
}

.reason_point_title {
  cursor: pointer;
  position: relative;
  padding: 16px 10px;
  font-size: 16px;
  font-weight: 500;
}

.reason_point_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
.reason_point_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #80D8D0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.reason_point_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #80D8D0;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}

.reason_point_title.open .reason_point_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.reason_point_inner {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
}

.reason_point_icon {
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding-bottom: 2px;
  border-radius: 50%;
  background-color: #80D8D0;
}

.reason_point_answer {
  font-size: 14px;
  display: none;
  line-height: 1.5;
  font-weight: 500;
  padding-bottom: 16px;
}

.reason_slider {
  padding: 30px 0 50px;
}

.reason_slider h3 {
  width: 230px;
  margin: 0 auto 20px;
}

.reason_slider .swiper {
  padding-bottom: 40px;
}
.reason_slider .swiper .swiper-pagination-bullet {
  opacity: 1 !important;
  background-color: #fff !important;
}
.reason_slider .swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #80D8D0 !important;
}
.reason_slider .swiper .swiper-button-prev {
  top: auto !important;
  bottom: -7px !important;
  left: 90px !important;
}
.reason_slider .swiper .swiper-button-next {
  top: auto !important;
  bottom: -7px !important;
  right: 90px !important;
}
.reason_slider .swiper .swiper-button-prev svg {
  color: #80D8D0;
  width: 8px;
}
.reason_slider .swiper .swiper-button-next svg {
  color: #80D8D0;
  width: 8px;
}

.reason_slider .swiper-slide {
  padding: 0 20px;
}

.reason_message {
  padding: 40px 0;
  background: linear-gradient(to right, transparent 0, transparent 40px, #D8C7A1 40px, #D8C7A1 100%);
}

.reason_message_top .reason_message_heading {
  width: 290px;
  margin-bottom: 30px;
}

.reason_message_txt {
  padding: 0 20px 0 60px;
  line-height: 1.46;
  margin-bottom: 20px;
}

.reason_message_list {
  padding: 0 20px 0 60px;
  line-height: 1.46;
  margin-bottom: 40px;
}
.reason_message_list span {
  display: block;
  margin-bottom: 8px;
}

.reason_message_bottom .reason_message_heading {
  width: 330px;
  margin-bottom: 30px;
}

.reason_message_accordion {
  padding: 0 20px 0 60px;
  line-height: 1.46;
}
.reason_message_accordion p {
  margin-bottom: 20px;
}

.reason_message_accordion .more_text {
  display: none;
}

.reason_message_accordion.is-open .more_text {
  display: inline;
}

.reason_message_accordion .toggle_btn {
  display: block;
  cursor: pointer;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  border-bottom: 1px solid #333;
}

/*------------------- cta ------------------*/
.cta-top {
  background-color: #E6F7F6;
  padding-bottom: 50px;
}

.cta-middle {
  padding-bottom: 50px;
}

.cta_item span {
  display: block;
  font-size: 12px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
}

.cta_btn {
  padding-right: 4px;
  position: relative;
  display: block;
}
.cta_btn img {
  position: relative;
  z-index: 3;
}
.cta_btn::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: 100%;
  top: 4px;
  right: 0;
}

.cta_btn:hover img {
  top: 4px;
  left: 4px;
}

.cta_item:nth-child(1) {
  margin-bottom: 16px;
}
.cta_item:nth-child(1) .cta_btn::after {
  background-color: #80D8D0;
}

.cta_item:nth-child(2),
.cta_item:nth-child(3) {
  margin-bottom: 30px;
}
.cta_item:nth-child(2) .cta_btn::after,
.cta_item:nth-child(3) .cta_btn::after {
  background-color: #D8C7A1;
}

.cta_link {
  font-size: 14px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid #333;
  transition: all 0.4s;
}
.cta_link:hover {
  opacity: 0.6;
}

/*------------------- merit ------------------*/
.merit {
  background-color: #fff;
  padding: 50px 0;
}

.merit_top {
  margin-bottom: 30px;
}
.merit_top img {
  width: 150px;
  margin: 0 auto 16px;
}
.merit_top h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
  color: #80D8D0;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.merit_top p {
  line-height: 1.8;
  font-weight: 500;
}
.merit_top p span {
  font-weight: 700;
  color: #80D8D0;
}

.merit_list {
  border: 1px solid #80D8D0;
}
.merit_list:not(:last-child) {
  margin-bottom: 10px;
}

.merit_title {
  cursor: pointer;
  position: relative;
  padding: 16px 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.merit_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
.merit_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #80D8D0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.merit_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #80D8D0;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}

.merit_title.open .merit_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.merit_inner {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
}

.merit_inner p span {
  display: block;
  padding-left: 16px;
  position: relative;
}
.merit_inner p span::after {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.merit_icon {
  width: 24px;
  height: 24px;
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 50%;
  padding-bottom: 2px;
  background-color: #80D8D0;
}

.merit_answer {
  font-size: 16px;
  display: none;
  line-height: 1.6;
  font-weight: 500;
  padding-bottom: 16px;
  padding-right: 24px;
}

/*------------------- support ------------------*/
.support {
  background-color: #80D8D0;
  position: relative;
  padding: 100px 0 20px;
}

.support_bg {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
}

.support_wrap {
  position: relative;
  z-index: 2;
}

.support .section_heading {
  color: #fff;
}
.support .section_heading h2 {
  text-shadow: 0 0 10px #80D8D0, 0 0 20px #80D8D0, 0 0 30px #80D8D0;
}
.support .section_heading span {
  background-color: #fff;
}

.support_top h3 {
  font-size: 20px;
  text-align: center;
  line-height: 1.4;
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px #80D8D0, 0 0 20px #80D8D0, 0 0 30px #80D8D0;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.support_top p {
  line-height: 1.6;
  font-weight: 500;
  text-align: justify;
  margin-bottom: 30px;
}

.support_content img {
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/*------------------- keep ------------------*/
.keep {
  padding-top: 50px;
  background-color: rgba(216, 199, 161, 0.3);
}

.keep_bubble {
  font-size: 18px;
  color: #D8C7A1;
  background-color: #fff;
  padding: 10px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 28px;
  position: relative;
}
.keep_bubble::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 9px;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.keep_list {
  padding: 0 20px;
  margin-bottom: 30px;
}

/*------------------- result ------------------*/
.result {
  padding: 50px 0 30px;
}

.result_top {
  margin-bottom: 20px;
}

.result_top_img {
  margin-bottom: 16px;
}

.result_bubble {
  margin-bottom: 20px;
}

.result_heading {
  font-size: 20px;
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.result_list {
  border: 1px solid #80D8D0;
}
.result_list:not(:last-child) {
  margin-bottom: 10px;
}

.result_title {
  cursor: pointer;
  position: relative;
  padding: 10px 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.result_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 10px;
  width: 10px;
  height: 10px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
.result_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #80D8D0;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.result_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #80D8D0;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}

.result_title.open .result_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.result_inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  align-items: center;
}

.result_inner p span {
  display: block;
  padding-left: 16px;
  position: relative;
}
.result_inner p span::after {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.result_icon {
  width: 100px;
  height: auto;
  font-size: 18px;
  padding: 4px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 100px;
  background-color: #80D8D0;
}

.result_answer {
  font-size: 16px;
  display: none;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 32px 20px;
}
.result_answer span {
  font-weight: 700;
}

/*------------------- teacher ------------------*/
.teacher {
  padding-bottom: 30px;
}

.teacher_inner {
  padding: 30px 0 20px;
  background-image: url(../img/teacher_bg.webp);
  background-size: 100% contain;
  background-repeat: repeat-y;
}

.teacher_heading {
  width: 190px;
  margin: 0 auto 30px;
}

.teacher_top {
  margin-bottom: 10px;
}

.teacher_content {
  padding: 0 20px;
}

.teacher_list {
  border: 1px solid #D8C7A1;
  background-color: #fff;
}
.teacher_list:not(:last-child) {
  margin-bottom: 10px;
}

.teacher_title {
  cursor: pointer;
  position: relative;
  padding: 16px 30px;
  font-size: 18px;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
.teacher_title p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.teacher_plus {
  position: absolute;
  display: block;
  content: "";
  top: 46%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;
  transition: all 0.3s ease-in-out;
  transform: rotate(45deg) translateY(-50%);
}

.teacher_title.open .teacher_plus {
  right: 16px;
  top: 42%;
  transform: rotate(-135deg) translateY(-50%);
}

.teacher_inner p span {
  display: block;
  padding-left: 16px;
  position: relative;
}
.teacher_inner p span::after {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.teacher_icon {
  width: 100px;
  height: auto;
  font-size: 18px;
  padding: 4px 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 100px;
  background-color: #80D8D0;
}

.teacher_answer {
  font-size: 16px;
  display: none;
  line-height: 1.5;
  font-weight: 500;
  padding: 0 20px 20px;
}
.teacher_answer span {
  font-weight: 700;
}

.teacher_history span {
  display: block;
  width: 40px;
  height: 20px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #D8C7A1;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}
.teacher_history p {
  font-size: 12px;
  line-height: 1.5;
}

.teacher_history li {
  display: grid;
  grid-template-columns: 54px 1fr;
  position: relative;
}
.teacher_history li:not(:last-child) {
  padding-bottom: 20px;
}
.teacher_history li:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  left: 19px;
  border-right: 1px dashed #D8C7A1;
  top: 0;
}

.teacher_point li {
  position: relative;
  font-weight: 500;
  padding-left: 16px;
  font-size: 16px;
}
.teacher_point li::after {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

/*------------------- recommend ------------------*/
.recommend {
  background-image: url(../img/recommend_bg.webp);
  background-size: 100% contain;
  background-repeat: repeat-y;
  padding: 10px;
}

.recommend_wrap {
  border: 1px solid #7F531E;
  position: relative;
  padding: 30px 36px;
}
.recommend_wrap::after {
  content: "";
  position: absolute;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed #7F531E;
}

.recommend_heading {
  margin: 0 auto 20px;
}

.recommend_content {
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid #7F531E;
  position: relative;
  z-index: 5;
}

.recommend_top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 16px;
}

.recommend_top span:nth-child(1) {
  display: block;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  background-color: #7F531E;
  padding: 8px 30px;
  border-radius: 100px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.recommend_top span:nth-child(2) {
  font-weight: 700;
  font-size: 16px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 6px;
}

.recommend_top h3 {
  font-weight: 700;
  font-size: 24px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.recommend_txt p {
  margin-bottom: 10px;
  font-weight: 600;
  text-align: justify;
  line-height: 1.5;
}

.recommend_txt .more_text {
  display: none;
}

.recommend_txt.is-open .more_text {
  display: inline;
}

.recommend_txt .toggle_btn {
  display: block;
  cursor: pointer;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  text-align: right;
  color: #D8C7A1;
  font-size: 14px;
  border-bottom: 1px solid #D8C7A1;
}

/*------------------- strengths ------------------*/
.strengths {
  padding: 50px 0;
}

.strengths_item:not(:last-child) {
  margin-bottom: 10px;
}

/*------------------- study ------------------*/
.study {
  background-color: #E6F7F6;
  padding: 50px 0;
}

/*------------------- price ------------------*/
.price {
  padding: 50px 0;
}

.price_top {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
}

.price_top span {
  font-size: 20px;
  font-weight: 500;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  background-color: #E6F7F6;
}
.price_top span:not(:last-child) {
  margin-bottom: 10px;
}

.price_bubble {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  color: #D8C7A1;
  line-height: 1.5;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
}
.price_bubble img {
  width: 16px;
}
.price_bubble img:last-child {
  transform: scale(-1, 1);
}

.price_btn {
  padding-right: 4px;
  position: relative;
  display: block;
}
.price_btn img {
  position: relative;
  z-index: 3;
}
.price_btn::after {
  content: "";
  position: absolute;
  width: calc(100% - 4px);
  height: 100%;
  top: 4px;
  right: 0;
}

.price_btn:hover img {
  top: 4px;
  left: 4px;
}

.price_btn:nth-child(1) {
  margin-bottom: 16px;
}
.price_btn:nth-child(1)::after {
  background-color: #D8C7A1;
}

.price_btn:nth-child(2) {
  margin-bottom: 30px;
}
.price_btn:nth-child(2)::after {
  background-color: #80D8D0;
}

.price_link {
  font-size: 14px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-bottom: 1px solid #333;
  transition: all 0.4s;
}
.price_link:hover {
  opacity: 0.6;
}

/*------------------- contact ------------------*/
.contact {
  background-color: #E6F7F6;
  padding: 50px 0;
}

.contact_list {
  margin-bottom: 24px;
}

.contact_item:not(:last-child) {
  margin-bottom: 10px;
}

.contact_item h3 {
  font-size: 14px;
  line-height: 1.3;
  display: block;
  margin-bottom: 8px;
}

.contact_item input,
.contact_item textarea {
  width: 100%;
  border-radius: 2px;
  background-color: #fff;
  padding: 8px;
  line-height: 1.5;
}

.contact_policy {
  margin-bottom: 30px;
  font-size: 14px;
}
.contact_policy a {
  color: #0F8DE8;
  text-decoration: underline;
}
.contact_policy label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact_policy input {
  transform: scale(1.4);
}

.contact_btn {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-right: 4px;
}
.contact_btn::after {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 4px);
  height: 100%;
  top: 4px;
  right: 0;
  background-color: #80D8D0;
}

.contact_btn:hover {
  top: 4px;
  left: 4px;
}
.contact_btn:hover::after {
  top: 0;
  right: 4px;
}

.contact_inner {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 2;
  background-color: #fff;
}
.contact_inner::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 28px;
  background-image: url(../img/mail_icon.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  z-index: 3;
}
.contact_inner::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  right: 20px;
  z-index: 3;
}

.contact_inner input {
  font-size: 14px;
  font-weight: 600;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 26px 90px 26px 110px;
  border: 2px solid #80D8D0;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form-control-wrap > .wpcf7-not-valid-tip {
  display: none;
  margin-top: 10px;
}
.wpcf7-form-control-wrap.is-show > .wpcf7-not-valid-tip {
  display: block;
}

/*------------------- access ------------------*/
.access {
  padding: 50px 0;
}

.access_map {
  width: 100%;
  height: 200px;
  margin-bottom: 10px;
}
.access_map iframe {
  width: 100% !important;
  height: 100% !important;
}

.access_address {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  line-height: 1.4;
}

.access_tel {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #333;
  transition: all 0.3s;
}
.access_tel:hover {
  opacity: 0.6;
}

/*------------------- footer ------------------*/
.footer {
  background-color: #80D8D0;
  padding: 16px 0;
}

.footer_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.footer_wrap a {
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

/*------------------- policy ------------------*/
.policy {
  padding: 50px 0;
}

.policy_heading {
  color: #80D8D0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 50px;
  font-weight: 700;
  font-size: 20px;
}

.policy_content p {
  font-weight: 500;
  line-height: 1.5;
  text-align: justify;
}
.policy_content p span {
  font-weight: 700;
}
.policy_content p a {
  text-decoration: underline;
}/*# sourceMappingURL=index.css.map */