@charset "UTF-8";
/* px to rem functions start 
rem(Xpx)でコンパイル時にremへ変換

各ファイル内で1行目に
@use "variable" as val;
を入れた後、
font-size: val.rem(●px);
と記述することでpx→rem自動変換する。
*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* add */
a {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: unset;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

summary {
  list-style: none;
}

img {
  margin-right: auto;
  margin-left: auto;
}

.en {
  font-family: "Chakra Petch", serif;
}

.al-center {
  text-align: center;
}

.al-right {
  text-align: right;
}

.al-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.underline_blue {
  background: linear-gradient(transparent 60%, #dfedf0 60%);
}

.underline_yellow {
  background: linear-gradient(transparent 60%, #fffa77 60%);
}

.fc_primary {
  color: #079636;
}

.fc_pink {
  color: #ff6767;
}

.fc_sky {
  color: #28babf;
}

.fc_blue {
  color: #2879bf;
}

.fc_orange {
  color: #f07800;
}

.fc_red {
  color: red;
}

.caution {
  font-size: 0.8125rem;
  display: block;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .caution {
    font-size: 0.6875rem;
  }
}

.wrapper {
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 1100px) {
  .wrapper {
    max-width: 90%;
  }
}

.wrapper_sm {
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 860px) {
  .wrapper_sm {
    max-width: 90%;
  }
}

.wrapper_exsm {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .wrapper_exsm {
    max-width: 90%;
  }
}

.margin_center {
  margin-right: auto;
  margin-left: auto;
}

.mt_2exlg {
  margin-top: 7.875rem;
}
@media screen and (max-width: 767px) {
  .mt_2exlg {
    margin-top: 6.5rem;
  }
}

.mt_exlg {
  margin-top: 6.5rem;
}
@media screen and (max-width: 767px) {
  .mt_exlg {
    margin-top: 5rem;
  }
}

.mt_lg {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .mt_lg {
    margin-top: 2.5rem;
  }
}

.mt_default {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .mt_default {
    margin-top: 2rem;
  }
}

.mt_sm {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .mt_sm {
    margin-top: 1.25rem;
  }
}

.mt_exsm {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .mt_exsm {
    margin-top: 1rem;
  }
}

.mt_2exsm {
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .mt_2exsm {
    margin-top: 0.875rem;
  }
}

.mx_auto {
  margin-right: auto;
  margin-left: auto;
}

.lh_narrow {
  line-height: 1.4;
}

.pt_2exlg {
  padding-top: 7.875rem;
}

.pt_exlg {
  padding-top: 6.5rem;
}

.pt_lg {
  padding-top: 5rem;
}

.pt_default {
  padding-top: 4rem;
}

.pt_sm {
  padding-top: 2.5rem;
}

.pt_exsm {
  padding-top: 1.5rem;
}

.pt_2exsm {
  padding-top: 1rem;
}

.link_underline {
  text-decoration: underline;
}
.link_underline:hover {
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

.flex_half {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flex_half {
    flex-direction: column;
  }
}

.grid_half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .grid_half {
    grid-template-columns: 1fr;
  }
}

.grid_half_type02 {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .grid_half_type02 {
    grid-template-columns: 1fr;
  }
}

.grid_align_center {
  align-items: center;
}

.grid_half_box .box_ttl {
  font-size: 1.125rem;
  font-weight: bold;
  margin: 0.8em 0;
  line-height: 1.4;
}

.col3_box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .col3_box {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.ico_blank:after {
  content: "";
  width: 0.8em;
  height: 0.8em;
  margin-left: 0.3em;
  background: url(../images/ico_blank.svg) no-repeat center center/contain;
  display: inline-block;
}

.btn_line {
  border: 1px solid #079636;
  border-radius: 4px;
  color: #079636;
  font-weight: bold;
  padding: 0.5em 1em;
  display: block;
  text-align: center;
}

.btn_orange,
.btn_green,
.btn_apply {
  text-align: center;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  border-radius: 4px;
  max-width: 320px;
  width: 100%;
  display: block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  position: relative;
  transition: 0.2s ease scale;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .btn_orange,
  .btn_green,
  .btn_apply {
    max-width: 100%;
  }
}
.btn_orange:after,
.btn_green:after,
.btn_apply:after {
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  rotate: 45deg;
  position: absolute;
  right: 18px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .btn_orange:after,
  .btn_green:after,
  .btn_apply:after {
    border-width: 2px;
    width: 8px;
    height: 8px;
    right: 0.8em;
  }
}
@media (hover: hover) {
  .btn_orange:hover,
  .btn_green:hover,
  .btn_apply:hover {
    opacity: 1;
    scale: 1.02;
  }
}

.btn_orange {
  background: rgb(255, 166, 49);
  background: url(../images/bg_btn_bright.svg) no-repeat top center/100%, linear-gradient(180deg, rgb(255, 166, 49) 0%, rgb(255, 128, 6) 100%);
  border-bottom: 1px solid #e35c01;
}

.btn_green {
  background: rgb(164, 209, 36);
  background: url(../images/bg_btn_bright.svg) no-repeat top center, #5dba00;
  border-bottom: 1px solid #3ca90d;
}

.btn_apply {
  background: rgb(237, 106, 90);
  background: linear-gradient(180deg, rgb(237, 106, 90) 0%, rgb(247, 67, 45) 100%);
  border-bottom: 1px solid rgb(226, 0, 71);
}

:where(.ttl_primary) {
  color: #079636;
}

.ttl_primary {
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .ttl_primary {
    font-size: 1.5rem;
  }
}
.ttl_primary:after {
  content: attr(data-titleEN);
  display: block;
  font-family: "Chakra Petch", serif;
  font-size: 62.5%;
  line-height: 1;
}

.ttl_border {
  font-size: 1.25rem;
  color: #079636;
  border-left: 5px solid #079636;
  padding-left: 0.5em;
}

.ttl_slash {
  color: #079636;
  font-size: 1.375rem;
  position: relative;
  vertical-align: baseline;
}
@media screen and (max-width: 767px) {
  .ttl_slash {
    font-size: 1.125rem;
  }
}
.ttl_slash:before, .ttl_slash:after {
  content: "";
  width: 2px;
  height: 1em;
  background: #079636;
  position: relative;
  display: inline-block;
  translate: 0 0.1em;
}
.ttl_slash:before {
  rotate: -30deg;
  margin-right: 0.6em;
}
.ttl_slash:after {
  rotate: 30deg;
  margin-left: 0.2em;
}

.ttl_stripe {
  font-size: 1.375rem;
  line-height: 1.4;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .ttl_stripe {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 360px) {
  .ttl_stripe {
    font-size: 1.0625rem;
  }
}
.ttl_stripe:after {
  content: "";
  background: url(../images/stripe_yellow.png) repeat-x center left/contain;
  width: 100%;
  height: 7px;
  display: block;
  margin-top: 6px;
}

.ttl_stripe_type02 {
  max-width: -moz-max-content;
  max-width: max-content;
  line-height: 1.4;
}
.ttl_stripe_type02:after {
  content: "";
  background: url(../images/stripe_green.png) repeat-x center left/contain;
  width: 100%;
  height: 7px;
  display: block;
  margin-top: 6px;
}

.ttl_label_green {
  color: #fff;
  background: #079636;
  border-radius: 50px;
  text-align: center;
  padding: 0.375rem;
}

.green_container {
  background: #f4fff7;
  border-radius: 20px;
  padding: 2.8125rem;
  box-shadow: 0 0 16px 1px rgba(164, 225, 186, 0.3);
}
@media screen and (max-width: 767px) {
  .green_container {
    padding: 1.25rem;
  }
}

.green_grad_container {
  border-radius: 20px;
  background: linear-gradient(3deg, rgba(178, 229, 97, 0.55) 0%, rgba(20, 191, 80, 0.55) 100%);
  padding: 2.8125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .green_grad_container {
    padding: 1.6rem 4% 4%;
  }
}
.green_grad_container:before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: #7edc9f;
  border-radius: 50px;
  border: 8px solid #fff;
  box-sizing: content-box;
  position: absolute;
  left: 50%;
  top: 0;
  translate: -50% -17px;
}
@media screen and (max-width: 767px) {
  .green_grad_container:before {
    width: 14px;
    height: 14px;
    border: 6px solid #fff;
    translate: -50% -14px;
  }
}
.green_grad_container .container {
  background: #fff;
  border-radius: 20px;
  padding: 3.375rem 2.125rem;
  box-shadow: 0 0 16px 1px rgba(164, 225, 186, 0.5);
}
@media screen and (max-width: 767px) {
  .green_grad_container .container {
    padding: 2.25rem 5%;
  }
}

.bg_gray {
  background: #f7f9f9;
}

.bg_green {
  background: #f4fff7;
}

.bg_elem {
  background: #13c142;
}

.bg_junior {
  background: #21a738;
}

.bg_green_deco {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background: url(../images/bg_green_left_top.png) no-repeat left top/46.66%, url(../images/bg_green_right_bottom.png) no-repeat right bottom/46.66%, #f4fff7;
}
@media screen and (max-width: 767px) {
  .bg_green_deco:has(.benefits_area) {
    padding: 2.5rem 0;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 2px rgba(165, 181, 186, 0.1);
  z-index: 9999;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
}
header .logo {
  padding-left: 1em;
}
@media screen and (max-width: 767px) {
  header .logo {
    width: 200px;
  }
}
header .menuBtn_wrapper {
  color: #079636;
  font-weight: bold;
  padding: 22px 18px 12px;
  border-left: 1px solid #e3e3e3;
}
@media screen and (max-width: 767px) {
  header .menuBtn_wrapper {
    padding: 14px 8px 12px;
  }
}
header .menuBtn {
  height: 100%;
  position: relative;
}
header .menuBtn span {
  width: 100%;
  height: 2px;
  display: block;
  background: #079636;
  position: relative;
  transition: top 0.2s ease, rotate 0.2s ease;
}
@media screen and (max-width: 767px) {
  header .menuBtn span {
    width: 70%;
    margin: 0 auto;
  }
}
header .menuBtn span:nth-child(1) {
  top: 0;
}
@media screen and (max-width: 767px) {
  header .menuBtn span:nth-child(1) {
    top: 2px;
  }
}
header .menuBtn span:nth-child(2) {
  top: 7px;
}
header .menuBtn .en {
  margin-top: 0.8em;
}
@media screen and (max-width: 767px) {
  header .menuBtn .en {
    line-height: 1;
  }
}
@media (hover: hover) {
  header:hover .menuBtn_wrapper {
    cursor: pointer;
  }
  header:hover .menuBtn span:nth-child(1) {
    top: -2px;
  }
  header:hover .menuBtn span:nth-child(2) {
    top: 9px;
  }
}
header .is-open.menuBtn_wrapper {
  background: #079636;
}
header .is-open .menuBtn {
  color: #fff;
}
header .is-open .menuBtn span {
  background: #fff;
}
header .is-open .menuBtn span:nth-child(1) {
  rotate: 32deg;
  top: 5px;
}
header .is-open .menuBtn span:nth-child(2) {
  rotate: -32deg;
  top: 3px;
}
header .is-open + .h_navigation {
  translate: calc(100vw - 320px) 0;
}
header .h_navigation {
  width: 320px;
  position: fixed;
  translate: 100vw 0;
  transition: translate 0.2s ease;
  background: #fff;
  box-shadow: 0 6px 3px rgba(0, 0, 0, 0.16);
  height: 100%;
  visibility: hidden;
  z-index: 9999;
}
header .h_navigation a {
  color: #079636;
  position: relative;
  display: block;
  padding: 1.8em;
  font-weight: bold;
  border-bottom: 1px solid #e3e3e3;
  border-left: 3px solid #079636;
  transition: color 0.2s ease, background 0.2s ease;
}
header .h_navigation a:hover {
  color: #fff;
  background: #079636;
  opacity: 1;
}
header .h_navigation a:hover .ico {
  translate: -1em -50%;
}
header .h_navigation a:hover .ico:before {
  border-color: #079636;
}
header .h_navigation .ico {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50px;
  border: 1px solid #079636;
  background: #fff;
  position: absolute;
  right: 0;
  top: 50%;
  translate: -1.5em -50%;
  transition: translate 0.2s ease, background 0.2s ease;
}
header .h_navigation .ico:before {
  content: "";
  display: block;
  width: 30%;
  height: 30%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -60% -50%;
  border-right: 1px solid #079636;
  border-top: 1px solid #079636;
  transform: rotate(45deg);
  transition: border-color 0.2s ease;
}

footer {
  padding-bottom: 80px;
  margin: 40px 0 30px;
}
@media screen and (max-width: 767px) {
  footer {
    margin-top: 40px;
  }
}
footer .f_nav {
  display: flex;
  justify-content: center;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  footer .f_nav {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  footer .f_nav li:not(:last-child) {
    margin-bottom: 1em;
  }
}
footer .f_nav li:not(:last-child):after {
  content: "｜";
  margin: 1em;
}
@media screen and (max-width: 767px) {
  footer .f_nav li:not(:last-child):after {
    display: none;
  }
}
footer .copyright {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 1.25rem;
}

.totop {
  cursor: pointer;
  position: fixed;
  right: 5%;
  bottom: 3%;
  transition: opacity 0.1s ease;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .totop {
    position: relative;
    right: unset;
    bottom: unset;
  }
}
@media screen and (max-width: 767px) {
  .totop {
    width: 48px;
    height: auto;
    bottom: 0;
    right: unset;
  }
}
.totop:hover {
  opacity: 0.7;
}

/* モーダル */
.modal-overlay {
  align-items: center;
  background: rgba(0, 0, 0, 0.6);
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000;
}

.modal-wrap {
  max-height: 80vh;
  max-width: 1080px;
  width: 95%;
}
@media screen and (max-width: 767px) {
  .modal-wrap {
    max-height: 70vh;
  }
}

.modal-container {
  background-color: #fff;
  overflow-y: auto;
  max-height: 70vh;
  max-width: 1080px;
  padding: 20px;
}
.modal-container.no_padding {
  padding: 0;
}
.modal-container .bg_green_deco {
  padding: 20px;
}

.modal-close {
  background: transparent;
  border: 0;
  position: absolute;
  right: -30px;
  top: -30px;
  display: grid;
  justify-self: center;
  align-items: center;
  text-align: center;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 60px;
  border: 3px solid #079636;
  z-index: 10001;
}
@media screen and (max-width: 767px) {
  .modal-close {
    width: 50px;
    height: 50px;
    right: -5px;
  }
}

.modal-close::before {
  color: #079636;
  content: "✕";
  font-size: 32px;
  line-height: 1;
}

.modal-content {
  line-height: 1.5;
}

.childpage_course_box .modal-open {
  aspect-ratio: 16/9;
}

.modal-open {
  display: block;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.modal-open:focus {
  outline: 2px solid blue;
}
.modal-open:hover:after {
  scale: 1.1;
}
.modal-open:before {
  content: "";
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  pointer-events: none;
}
.modal-open:after {
  content: "";
  width: 50px;
  height: 70px;
  background: url(../images/ico_modal_pan.svg) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: 0.2s ease scale;
}
.modal-open.childpage_feature_modal {
  max-width: 410px;
  aspect-ratio: 16/9;
}
.modal-open.childpage_feature_modal img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.box01 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%;
}

.box02 {
  background-color: #ccc;
  height: 200px;
  margin: 0 auto;
  width: 80%;
}

/* モーダルアニメーション */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(5%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-5%);
  }
}
.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden=false] .modal-overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=false] .modal-container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden=true] .modal-container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal-container,
.micromodal-slide .modal-overlay {
  will-change: transform;
}

.modal-wrap {
  position: relative;
}

html {
  scroll-padding-top: 78px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 58px;
  }
}

body {
  color: #28332c;
  overflow-x: hidden;
  letter-spacing: 0.05em;
  line-height: 1.7;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

a {
  color: inherit;
  transition: opacity 0.1s ease;
}
a:hover {
  opacity: 0.7;
}

main {
  padding-top: 78px;
}
@media screen and (max-width: 767px) {
  main {
    padding-top: 58px;
  }
}

img {
  height: auto;
}

.kv {
  background: #f7f9f9;
}
.kv picture {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  display: block;
  text-align: center;
}
.kv picture img {
  display: block;
  aspect-ratio: 18/7;
  height: auto;
}
@media screen and (max-width: 767px) {
  .kv picture img {
    aspect-ratio: 85/109;
  }
}

.trouble_area {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .trouble_area {
    max-width: 100%;
    width: 90%;
  }
}
.trouble_area h2 {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .trouble_area h2 .ico_question {
    align-self: flex-end;
  }
}
.trouble_area .trouble_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 5px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list {
    grid-template-columns: 1fr;
    gap: 0px;
  }
}
.trouble_area .trouble_list li {
  background: #eafaef;
  line-height: 1.4;
  border-radius: 50px;
  font-size: 1.3125rem;
  padding: 0.8em 0.5em;
  display: grid;
  align-items: center;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list li {
    background: unset;
    padding: 0.5em 0;
  }
}
.trouble_area .trouble_list li:nth-child(even) {
  translate: 0 30%;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list li:nth-child(even) {
    translate: 0;
  }
}
.trouble_area .trouble_list li:nth-child(even):after {
  left: 47%;
}
.trouble_area .trouble_list li:before, .trouble_area .trouble_list li:after {
  content: "";
  width: 30px;
  height: 30px;
  background: #eafaef;
  border-radius: 50px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  translate: -50% 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list li:before, .trouble_area .trouble_list li:after {
    display: none;
  }
}
.trouble_area .trouble_list li:after {
  width: 12px;
  height: 12px;
  left: 53%;
  translate: -50% 0;
  bottom: -22px;
}
.trouble_area .trouble_list .emphasis {
  color: #079636;
  border-bottom: 2px dotted #079636;
}
.trouble_area .touble_img {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.trouble_area .trouble_img_cont {
  display: block;
  max-height: 200px;
  width: auto;
}

.green_arrow {
  margin: 0 auto;
  z-index: 10;
  position: relative;
}
.green_arrow .path01 {
  animation-delay: 0;
  animation-direction: normal;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-name: arrow_translate;
  animation-timing-function: linear;
}
.green_arrow .path02 {
  animation-delay: 1s;
  animation-direction: normal;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  animation-name: arrow_translate;
  opacity: 0;
  animation-timing-function: linear;
}

@keyframes arrow_translate {
  0% {
    translate: 0 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    translate: 0 24px;
    opacity: 0;
  }
}
.information_area {
  text-align: center;
}
.information_area p {
  margin-bottom: 1em;
  font-size: 1.0625rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .information_area p:not(.lead) {
    text-align: left;
  }
}
.information_area .lead {
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .information_area .lead {
    font-size: 1.25rem;
    word-break: auto-phrase;
  }
}
.information_area figure {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}
.information_area figure img {
  height: auto;
}
.information_area .modal-open {
  max-width: 375px;
  width: 100%;
  aspect-ratio: 16/9;
  margin-right: auto;
  margin-left: auto;
}
.information_area .modal-open img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 1080px;
}

.information_modal {
  max-height: 80vh;
}
@media screen and (max-width: 767px) {
  .information_modal {
    max-height: 70vh;
    padding: 20px 0;
  }
}
.information_modal img {
  max-height: 72vh;
}
@media screen and (max-width: 767px) {
  .information_modal img {
    max-height: unset;
  }
}

.feature_navigation h2 {
  font-size: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature_navigation h2 {
    font-size: 1.75rem;
  }
}
.feature_navigation ul.nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 60px;
  justify-content: center;
  max-width: 954px;
  margin-right: auto;
  margin-left: auto;
  font-size: 1.875rem;
}
@media screen and (max-width: 1000px) {
  .feature_navigation ul.nav_list {
    grid-template-columns: 1fr;
    max-width: 640px;
    width: 90%;
  }
}
@media screen and (max-width: 640px) {
  .feature_navigation ul.nav_list {
    font-size: 4.37vw;
  }
}
.feature_navigation ul.nav_list li {
  font-weight: bold;
  text-align: left;
  letter-spacing: 0.05em;
}
.feature_navigation ul.nav_list a {
  border-bottom: 4px solid #004d80;
  display: flex;
  align-items: flex-end;
  background: url(../images/reason_ico02.png) no-repeat 98% 70%/20px;
  padding-right: 40px;
}
.feature_navigation ul.nav_list a:before {
  content: "";
  width: 2.83em;
  height: 2.33em;
  display: inline-block;
  background: url(../images/reason_ico01.png) no-repeat center center/contain;
}
.feature_navigation ul.nav_list a span {
  display: inline-block;
  padding: 0 0 12px 18px;
}

.reason_area {
  text-align: center;
}
.reason_area h2.ttl_primary {
  color: #fff;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .reason_area h2.ttl_primary {
    padding-bottom: 1.5rem;
  }
}
.reason_area h3.ttl_primary {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reason_area h3.ttl_primary {
    flex-direction: column;
  }
}
.reason_area h3.ttl_primary .sm {
  font-size: 56.25%;
}
.reason_area figure {
  max-width: var(--fig_width);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason_area figure {
    max-width: 100%;
  }
}
.reason_area .feature_lead {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .reason_area .feature_lead {
    font-size: 1rem;
    text-align: left;
  }
}
.reason_area .feature_lead .fc_pink,
.reason_area .feature_lead .fc_sky,
.reason_area .feature_lead .fc_orange {
  font-size: 110%;
}
.reason_area .appeal_box {
  border: 3px solid #ff6767;
  padding: 1.5rem 2rem 2rem;
  box-shadow: 0 3px 0 #ff6767;
  background: #fff;
  translate: 0 -80px;
}
@media screen and (max-width: 767px) {
  .reason_area .appeal_box {
    padding: 6%;
    text-align: left;
    translate: 0 -18%;
  }
}
.reason_area .appeal_box .ttl {
  color: #ff6767;
  font-size: 1.375rem;
  max-width: -moz-max-content;
  max-width: max-content;
  width: 100%;
  margin: 0 auto 1em;
}
@media screen and (max-width: 767px) {
  .reason_area .appeal_box .ttl {
    font-size: 1.0625rem;
  }
}
.reason_area .appeal_box .ttl:after {
  content: "";
  background: url(../images/stripe_pink.png) repeat-x center left/contain;
  width: 100%;
  height: 7px;
  display: block;
}
@media screen and (max-width: 767px) {
  .reason_area .appeal_box p {
    font-size: 0.875rem;
  }
}
.reason_area .ttl_img_wrap {
  display: grid;
  grid-template-columns: max-content 150px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .reason_area .ttl_img_wrap {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .reason_area .ttl_img_wrap .ttl_stripe {
    order: 2;
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  .reason_area .ttl_img_wrap figure {
    order: 1;
  }
  .reason_area .ttl_img_wrap figure img {
    max-width: 150px;
  }
}
.reason_area .col3_box li {
  border: 1px solid #ff6767;
  padding: 1.125rem;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: max-content 1fr max-content;
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li {
    padding: 10px;
    font-size: 0.875rem;
    grid-template-columns: 1fr max-content;
    grid-template-areas: "ttl ttl" "txt ico";
    gap: 10px;
    grid-template-rows: max-content 1fr;
  }
}
@media screen and (max-width: 540px) {
  .reason_area .col3_box li {
    grid-template-columns: 1fr;
    grid-template-areas: "ttl" "txt" "ico";
    gap: 0;
  }
}
.reason_area .col3_box li h5 {
  font-size: 1.25rem;
  margin-bottom: 0.3em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li h5 {
    font-size: 1.125rem;
    line-height: 1.4;
    grid-area: ttl;
  }
}
.reason_area .col3_box li h5:before {
  content: "";
  width: 5px;
  height: 100%;
  background: #ff6767;
  position: absolute;
  left: -18px;
  top: 0;
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li h5:before {
    left: -10px;
    width: 3px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li p {
    grid-area: txt;
  }
}
.reason_area .col3_box li .ico {
  display: block;
  align-self: end;
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li .ico {
    align-self: center;
    grid-area: ico;
  }
}
.reason_area .col3_box li .ico img {
  max-width: 120px;
  max-height: 120px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .reason_area .col3_box li .ico img {
    margin-top: 0.5em;
  }
}
.reason_area .reason_ttl_sm {
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .reason_area .reason_ttl_sm + p {
    text-align: left;
  }
}
.reason_area .grid_half.reason01 {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .reason_area .grid_half.reason01 {
    grid-template-columns: 1fr;
  }
}
.reason_area .grid_half.reason01 figure {
  max-width: 200px;
  width: 100%;
}
.reason_area .grid_half.reason01 p {
  text-align: left;
  letter-spacing: 0.1em;
}
.reason_area .grid_half.reason02 {
  justify-content: center;
  grid-template-columns: 315px 388px;
}
@media screen and (max-width: 960px) {
  .reason_area .grid_half.reason02 {
    grid-template-columns: repeat(auto-fit, 23.75rem);
  }
}
@media screen and (max-width: 767px) {
  .reason_area .grid_half.reason02 {
    grid-template-columns: 1fr;
  }
}
.reason_area .grid_half.reason04 {
  max-width: 680px;
  grid-template-columns: repeat(auto-fit, 18.75rem);
}
@media screen and (max-width: 960px) {
  .reason_area .grid_half.reason04 {
    grid-template-columns: 1fr;
  }
}
.reason_area .grid_half.reason04 p {
  text-align: left;
}

.movie_area video + p {
  font-size: 1.125rem;
  line-height: 2;
  text-wrap: balance;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .movie_area video + p {
    font-size: 1rem;
  }
}

.course_area .ttl_label_green {
  color: #079636;
  background: #d7f4df;
  font-size: 1.5rem;
  border-radius: 5px;
  line-height: 1.4;
}
@media screen and (max-width: 360px) {
  .course_area .ttl_label_green {
    font-size: 0.9375rem;
  }
}
.course_area .btn_orange {
  font-size: 1.25rem;
  padding: 0.5em 1em;
  line-height: 1.4;
  flex-direction: column;
  gap: 0;
  background-image: none;
  background: #ff860e;
  border-radius: 50px;
  min-width: 320px;
  margin: 1em auto 0;
}
@media screen and (max-width: 767px) {
  .course_area .btn_orange {
    min-width: unset;
  }
}
.course_area .btn_orange .sm {
  font-size: 80%;
}
.course_area .course_intro_box,
.course_area .course_intro_box02,
.course_area .caution {
  width: 78.4%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box,
  .course_area .course_intro_box02,
  .course_area .caution {
    width: 100%;
  }
}
.course_area .course_intro_box {
  display: grid;
  grid-template-columns: 282px 1fr;
  gap: 1em;
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box {
    grid-template-columns: 30% 1fr;
  }
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box {
    grid-template-columns: 1fr;
    gap: 0.5em;
  }
}
.course_area .course_intro_box h4 {
  color: #079636;
  font-size: 1.375rem;
  align-self: center;
  justify-self: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box h4 {
    text-align: left;
  }
}
@media screen and (max-width: 360px) {
  .course_area .course_intro_box h4 {
    font-size: 1.25rem;
  }
}
.course_area .course_intro_box02 {
  background: #fff;
  display: grid;
  grid-template-columns: 267px 1fr;
  box-shadow: 0 0 10px 2px rgba(45, 169, 89, 0.1);
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box02 {
    grid-template-columns: 30% 1fr;
  }
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 {
    grid-template-columns: 1fr;
  }
}
.course_area .course_intro_box02 h4 {
  color: #fff;
  font-size: 1.375rem;
  background: rgb(150, 216, 44);
  background: linear-gradient(180deg, rgb(150, 216, 44) 0%, rgb(20, 191, 80) 100%);
  clip-path: polygon(90% 0, 100% 50%, 90% 99%, 0 100%, 0 0);
  display: grid;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box02 h4 {
    padding: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 h4 {
    clip-path: polygon(100% 0, 100% 80%, 50% 100%, 0 80%, 0 0);
  }
}
.course_area .course_intro_box02 h4 > span {
  translate: -0.2em 0;
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box02 h4 > span {
    translate: 0;
  }
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 h4 > span {
    translate: 0 -0.1em;
  }
}
.course_area .course_intro_box02 h4 .yellow {
  color: #fff500;
  font-size: 118.18%;
}
.course_area .course_intro_box02 .cont {
  padding: 1.75rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 .cont {
    padding: 0.875rem;
  }
}
.course_area .course_intro_box02 ul {
  font-size: 1.375rem;
  color: #079636;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 ul {
    font-size: 1.125rem;
  }
}
.course_area .course_intro_box02 ul .sm {
  color: #28332c;
  font-size: 81.8%;
}
.course_area .course_intro_box02 ul li {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 ul li {
    line-height: 1.5;
  }
}
.course_area .course_intro_box02 .price {
  font-size: 1.125rem;
  line-height: 1.2;
}
.course_area .course_intro_box02 .price .lg {
  color: #079636;
  font-size: 210%;
  margin-left: 0.2em;
}
.course_area .course_intro_box02 .price .mid {
  color: #079636;
  font-size: 150%;
}
.course_area .course_intro_box03 {
  color: #079636;
  text-align: center;
  font-size: 1.375rem;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box03 {
    font-size: 1.25rem;
  }
}
.course_area .course_intro_box03 .cont {
  display: grid;
  grid-template-columns: repeat(3, min(33.3%, 252px));
  justify-content: center;
  gap: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box03 .cont {
    grid-template-columns: 1fr;
    gap: 0.3125rem;
  }
}
.course_area .course_intro_box03 .cont > div {
  background: #fff;
  height: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box03 .cont > div {
    flex-direction: row;
    gap: 1.25rem;
    height: auto;
    padding: 0.7em;
  }
}
.course_area .course_intro_box03 .cont img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box03 .cont img {
    width: 40px;
    height: auto;
  }
}
.course_area .caution {
  font-size: 0.875rem;
  margin-top: 0.5em;
}
@media screen and (max-width: 767px) {
  .course_area .caution {
    font-size: 0.6875rem;
  }
}

.class_flow_area .ttl_label_green {
  width: -moz-max-content;
  width: max-content;
  padding-right: 2.5em;
  padding-left: 2.5em;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .class_flow_area .ttl_label_green {
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    font-size: 1.0625rem;
  }
}

.flow_area .flow_list li {
  display: grid;
  grid-template-columns: 150px 1fr;
  grid-template-rows: max-content 1fr;
  grid-template-areas: "figure num" "figure txt";
  -moz-column-gap: 2.25rem;
       column-gap: 2.25rem;
  row-gap: 0.8em;
  padding: 2.25rem 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_area .flow_list li {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "figure num" "txt txt";
    gap: 1.125rem;
  }
}
.flow_area .flow_list li figure {
  grid-area: figure;
}
.flow_area .flow_list li span.num {
  grid-area: num;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow_area .flow_list li span.num {
    align-self: center;
  }
}
.flow_area .flow_list li p {
  grid-area: txt;
}
.flow_area .flow_list li:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #bababa;
  display: block;
}
.flow_area .flow_list li:before {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  border-right: 1px solid #bababa;
  border-bottom: 1px solid #bababa;
  background: #fff;
  rotate: 45deg;
  position: absolute;
  right: 50%;
  bottom: -7px;
  z-index: 1;
}
.flow_area .flow_list li:last-child:after, .flow_area .flow_list li:last-child:before {
  display: none;
}
.flow_area .flow_list .num {
  color: #079636;
  font-weight: bolder;
  font-size: 1.75rem;
}

.faq_area .faq_list > div {
  display: grid;
  grid-template-rows: 1fr;
}
.faq_area .faq_list {
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .faq_area .faq_list {
    font-size: 0.9375rem;
  }
}
.faq_area .faq_list details {
  border-bottom: 1px solid #bababa;
}
.faq_area .faq_list details[open] summary {
  background: #d8f5e0;
}
.faq_area .faq_list details[open] .ico_plus:after {
  rotate: 90deg;
}
.faq_area .faq_list details[open]:hover {
  background: #fff;
}
.faq_area .faq_list summary:before,
.faq_area .faq_list summary + div:before {
  font-family: "Chakra Petch", sans-serif;
  font-weight: bolder;
  font-size: 1.75rem;
  line-height: 1;
}
.faq_area .faq_list summary {
  background: #fff;
  display: grid;
  grid-template-columns: max-content 1fr 15px;
  gap: 1em;
  cursor: pointer;
  position: relative;
  padding-left: 1em;
  transition: background 0.2s ease;
  padding: 1.1em 1.3em;
}
@media screen and (max-width: 767px) {
  .faq_area .faq_list summary {
    padding: 1.1em;
    gap: 0.5em;
  }
}
.faq_area .faq_list summary span {
  align-self: center;
}
.faq_area .faq_list summary:before {
  content: "Q.";
  color: #079636;
}
.faq_area .faq_list summary .ico_plus {
  width: 15px;
  height: 15px;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}
.faq_area .faq_list summary .ico_plus:before, .faq_area .faq_list summary .ico_plus:after {
  content: "";
  background: #079636;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
}
.faq_area .faq_list summary .ico_plus:before {
  width: 100%;
  height: 1px;
}
.faq_area .faq_list summary .ico_plus:after {
  transition: rotate 0.2s ease;
  width: 1px;
  height: 100%;
}
@media (hover: hover) {
  .faq_area .faq_list summary:hover {
    background: #f4fff7;
  }
}
.faq_area .faq_list summary.is-open + div {
  grid-template-rows: 1fr;
  padding: 1.1em 1.3em;
}
.faq_area .faq_list summary + div {
  background: #fffdef;
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-template-rows: 1fr;
  gap: 1em;
  padding: 1.1em 1.3em;
}
.faq_area .faq_list summary + div:before {
  content: "A.";
  color: #ed6840;
}

.access_area .access_pic iframe {
  width: 100%;
  height: 100%;
}
.access_area .access_info > div {
  display: grid;
  grid-template-columns: 9em 1fr;
  border-bottom: 1px solid #bababa;
  padding: 1.3em 0;
}
@media screen and (max-width: 767px) {
  .access_area .access_info > div {
    padding: 1em 0;
    gap: 10px;
  }
}
.access_area .access_info dt {
  color: #079636;
  width: 120px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: stretch;
}
@media screen and (max-width: 767px) {
  .access_area .access_info dt {
    font-size: 0.875rem;
  }
}
.access_area .access_info dd {
  align-self: center;
}
@media screen and (max-width: 767px) {
  .access_area .access_info dd {
    font-size: 0.875rem;
  }
}
.access_area .access_info .sm {
  font-size: 87.5%;
}
.access_area .message {
  border: 1px solid #079636;
  padding: 1.875rem 1.875rem 3.375rem;
  position: relative;
  overflow: hidden;
  transition: height 0.2s ease;
  box-sizing: border-box;
}
.access_area .message .message_ttl {
  color: #079636;
  font-size: 112.5%;
  margin-bottom: 1em;
}
.access_area .message .chief {
  text-align: right;
  margin-top: 0.5em;
}
.access_area .message .more {
  width: 100%;
  height: 50px;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}
.access_area .message .more > span {
  color: #fff;
  text-align: center;
  background: #079636;
  border: 1px solid #079636;
  border-radius: 4px;
  display: block;
  padding: 0.3em;
  max-width: 200px;
  width: 100%;
  transition: background 0.2s ease, color 0.2s ease;
}
.access_area .message .more > span:hover {
  cursor: pointer;
  color: #079636;
  background: #fff;
}
.access_area .message .more:after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgb(255, 255, 255) 20%, rgba(255, 255, 255, 0) 100%);
  z-index: -1;
}

.cta_area {
  padding: 2.25rem 5%;
  display: grid;
  grid-template-columns: repeat(3, min(420px, 29.1vw));
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cta_area {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}
.cta_area .cta_tel {
  pointer-events: none;
  padding-left: 20px;
  border-left: 1px solid #bdd6c6;
  display: block;
}
@media screen and (max-width: 767px) {
  .cta_area .cta_tel {
    pointer-events: inherit;
    background: #fff;
    padding: 1em 1.25rem;
    border: 2px solid #079636;
    border-radius: 2vw;
  }
}

.fixed_cta_area {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease opacity;
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.4);
  width: 100%;
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  z-index: 300;
}
@media screen and (max-width: 767px) {
  .fixed_cta_area {
    display: grid;
    grid-template-columns: 1fr 1fr 48px;
    gap: 0.625rem;
    padding: 5px;
  }
}
.fixed_cta_area a {
  font-size: 1.125rem;
  padding: 1.1em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .fixed_cta_area a {
    font-size: 0.875rem;
    padding: 0em;
    line-height: 1.2;
    height: 3.125rem;
  }
}
.fixed_cta_area a .lg {
  font-size: 133.33%;
}
.fixed_cta_area.active {
  opacity: 1;
  pointer-events: auto;
}

.topics_area {
  padding: 2.5rem 0;
}
.topics_area summary {
  cursor: pointer;
}
.topics_area .cp_bnr {
  box-shadow: 0px 3px 6px rgba(72, 107, 83, 0.1);
}

.open_control[open] .cp_btn {
  box-shadow: none;
  border-radius: 0;
}
.open_control[open] .ico_plus:after {
  rotate: 90deg;
}

.cp_btn {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  padding: 0.9rem;
  position: relative;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 3px 6px rgba(0, 171, 54, 0.3);
  background-image: linear-gradient(0, #06b400 0%, #59be00 100%);
  transition: box-shadow 0.2s ease, border-radius 0.2s ease, filter 0.2s ease;
}
@media screen and (max-width: 767px) {
  .cp_btn {
    padding: 0.8rem;
    font-size: 1rem;
  }
}
.cp_btn .ico_plus {
  width: 1em;
  height: 1em;
  display: inline-block;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cp_btn .ico_plus {
    right: 0.9375rem;
  }
}
.cp_btn .ico_plus:before, .cp_btn .ico_plus:after {
  content: "";
  background: #fff;
  display: block;
  border-radius: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  transition: rotate 0.2s ease-in-out;
}
.cp_btn .ico_plus:before {
  width: 100%;
  height: 0.14em;
}
.cp_btn .ico_plus:after {
  width: 0.14em;
  height: 100%;
}

.cp_cont {
  background: #fff;
  padding: 1.875rem;
  box-shadow: 0 3px 6px rgba(0, 195, 36, 0.16);
}
@media screen and (max-width: 767px) {
  .cp_cont {
    padding: 0.9375rem;
  }
}
.cp_cont[open] {
  box-shadow: none;
  border-radius: 0;
}
.cp_cont .topics_note {
  border: 1px solid #079636;
  padding: 0.6rem 1rem;
}
.cp_cont .topics_note .ttl {
  font-size: 1.125rem;
  color: #079636;
}
.cp_cont .topics_note .ttl:before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.2em;
  background: #079636;
  clip-path: polygon(0 0, 0% 100%, 80% 50%);
  display: inline-block;
  translate: 0 -0.2em;
}
.cp_cont .topics_note .txt {
  font-size: 0.875rem;
}
.cp_cont .apply {
  color: red;
  font-weight: bold;
  font-size: 1.4em;
  text-align: center;
  background: #fafafa;
  padding: 0.2em;
}
.cp_cont .table_date {
  border-collapse: collapse;
  width: 100%;
}
.cp_cont .table_date th,
.cp_cont .table_date td {
  padding: 0.5em;
  border: 1px solid #ddd;
}
.cp_cont .table_date th {
  color: #079636;
  font-weight: bold;
  background: #fafafa;
}
@media screen and (max-width: 767px) {
  .cp_cont .table_date th {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .cp_cont .table_date td {
    font-size: 0.875rem;
  }
}

.benefits_area .benefits_bnr {
  border: 1px solid #079636;
  box-shadow: 7px 7px 0px #079636;
  background: #fff;
  text-align: center;
  line-height: 1.2;
  padding: 1.5rem;
}
@media screen and (max-width: 767px) {
  .benefits_area .benefits_bnr {
    line-height: 1;
  }
}
.benefits_area h2 {
  font-size: 1.6875rem;
  margin-bottom: 0.5em;
  letter-spacing: 0.1em;
}
.benefits_area h2 span {
  font-size: 148%;
  color: #079636;
}
.benefits_area .ttl_stripe {
  display: inline-block;
  margin: 0 0.2em;
}
@media screen and (max-width: 767px) {
  .benefits_area .ttl_stripe {
    margin: 0 0 0.2em;
    line-height: 1.4;
  }
}
.benefits_area .ttl_stripe:after {
  margin-top: 0;
}
.benefits_area .btn_green {
  font-size: 1.25rem;
  display: block;
  padding: 1em;
  margin: 1em auto 0;
}

.btn_apply {
  font-size: 1.25rem;
  display: block;
  padding: 1em;
  margin: 1em auto 0;
}

.col2_box {
  display: grid;
  grid-template-columns: repeat(auto-fit, 490px);
  gap: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .col2_box {
    gap: 0;
  }
}
@media screen and (max-width: 640px) {
  .col2_box {
    grid-template-columns: 1fr;
  }
}

.course_price_area {
  padding: 0 0 2.5rem;
}
.course_price_area .cp_bnr img {
  height: auto;
}

.course_price_box {
  background: #fff;
  box-shadow: 0 0 8px 1px rgba(164, 225, 186, 0.3);
  border-radius: 10px;
  padding: 1.375rem 2.5rem 2rem;
  display: grid;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .course_price_box {
    padding: 1.25rem 1.25rem 2rem;
  }
}
.course_price_box .badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.375rem;
  line-height: 1.3;
  border-top: 1px solid #bababa;
}
@media screen and (max-width: 767px) {
  .course_price_box .badge {
    font-size: 1.25rem;
  }
}
.course_price_box .badge:before {
  content: "";
  width: 1.7em;
  height: 2.2em;
  background: url(../images/course_ico01.svg) no-repeat center center/contain;
}
.course_price_box .fc_element {
  color: #13c142;
}
.course_price_box .fc_junior {
  color: #079636;
}

.course_price_ttl {
  border-radius: 10px;
  max-width: -moz-max-content;
  max-width: max-content;
  text-align: center;
  margin-inline: auto;
  padding: 0.1em 2em;
}
@media screen and (max-width: 767px) {
  .course_price_ttl {
    max-width: 100%;
  }
}
.course_price_ttl.element {
  background: #d7f4df;
}
.course_price_ttl.junior {
  background: #d7f4df;
}

.course_price_txt {
  line-height: 1;
  translate: 1em 0;
}
.course_price_txt span {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .course_price_txt span {
    font-size: 1.5rem;
  }
}
.course_price_txt span .num {
  font-size: 150%;
  letter-spacing: 0;
}

.josei {
  color: #079636;
  padding: 0.3em;
  text-align: center;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .josei {
    font-size: 1rem;
    text-align: left;
  }
}

.ac_box_type01 {
  display: grid;
  grid-template-columns: 1fr 230px;
  grid-template-areas: "title title" "left right";
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .ac_box_type01 {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "right" "left";
  }
}
.ac_box_type01 .title {
  grid-area: title;
  border-radius: 50px;
}
.ac_box_type01 .left {
  grid-area: left;
}
.ac_box_type01 .right {
  grid-area: right;
}
@media screen and (max-width: 767px) {
  .ac_box_type01 .right {
    width: 65%;
    margin: 0 auto;
  }
}
.ac_box_type01 .text01,
.ac_box_type01 .text02 {
  font-weight: bold;
  padding: 0.1em;
}
.ac_box_type01 .text01 {
  color: #28babf;
  background: rgba(40, 186, 191, 0.1);
}
.ac_box_type01 .text02 {
  color: #ff6767;
  background: rgba(255, 103, 103, 0.1);
}

.scoreup_area {
  padding-bottom: 80px;
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 44px;
}
@media screen and (max-width: 767px) {
  .scoreup_area {
    padding-bottom: 40px;
  }
}
.scoreup_area .scoreup_title {
  font-size: 1.875rem;
  line-height: 1.4;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_title {
    font-size: 1.25rem;
  }
}
.scoreup_area .scoreup_title span {
  color: #079636;
  font-size: 140%;
  position: relative;
}
.scoreup_area .scoreup_title span:before {
  content: "";
  background: url(../images/scoreup_ico01.svg) no-repeat center center/contain;
  width: 0.5em;
  height: 0.5em;
  display: inline-block;
  position: absolute;
  top: 0em;
  left: -0.3em;
}
.scoreup_area .scoreup_title.ico_scoreup_range {
  margin-top: 120px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_title.ico_scoreup_range {
    margin-top: 80px;
    margin-bottom: 1em;
  }
}
.scoreup_area .scoreup_title.ico_scoreup_range:before {
  content: "";
  width: 7.73em;
  height: 3em;
  background: url(../images/scoreup_ttl.png) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  left: -5.06em;
  top: -2.7em;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_title.ico_scoreup_range:before {
    top: -3.2em;
    left: 0;
  }
}
.scoreup_area .scoreup_list {
  margin: 20px auto 50px;
}
.scoreup_area .scoreup_list .swiper-slide {
  opacity: 0.7;
  transition: 0.2s ease scale;
}
.scoreup_area .scoreup_list .swiper-slide-active {
  scale: 1.1;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_list .swiper-slide-active {
    scale: 1;
  }
}
.scoreup_area .swiper-button-next,
.scoreup_area .swiper-button-prev {
  background: rgb(7, 150, 54);
  padding: 0.5em;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .scoreup_area .swiper-button-next,
  .scoreup_area .swiper-button-prev {
    background: rgba(7, 150, 54, 0.8);
  }
}
.scoreup_area .swiper-button-next svg,
.scoreup_area .swiper-button-prev svg {
  width: 80%;
  height: 80%;
}
.scoreup_area .swiper-pagination-bullet-active {
  background: #079636;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_content {
    padding: 0 20px;
  }
}

/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
@keyframes bounce {
  0%, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  0%, to {
    transform: translateZ(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.animate__tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: translateZ(0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%, 11.1%, to {
    transform: translateZ(0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}
@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}
@keyframes flip {
  0% {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedInRight {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  0% {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  0% {
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  0% {
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  0% {
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate(80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate(60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

.fc_primary {
  color: #079636;
}

.fc_elementary {
  color: #13c142;
}

.childpage_title {
  text-align: center;
}
.childpage_title.primary {
  color: #079636;
}
.childpage_title.elementary {
  color: #13c142;
}
@media screen and (max-width: 767px) {
  .childpage_title {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.childpage_title .wrapper {
  display: block;
}

.childpage_course_box {
  border: 3px solid;
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 32px;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .childpage_course_box {
    padding: 32px 5% 5%;
  }
}
.childpage_course_box:after {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: #bff46a;
  background: linear-gradient(90deg, rgb(191, 244, 106) 0%, rgb(80, 244, 138) 100%);
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  .childpage_course_box:after {
    right: -5px;
  }
}
.childpage_course_box.col2 {
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 20px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .childpage_course_box.col2 {
    grid-template-columns: 1fr;
  }
}
.childpage_course_box .num {
  position: absolute;
  left: -10px;
  top: -20px;
  color: #fff;
  font-size: 2rem;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  width: 64px;
  height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.childpage_course_box .ttl_stripe_type02 {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .childpage_course_box .ttl_stripe_type02 {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.childpage_course_box .ttl_stripe_type02 .lg {
  font-size: 155.55%;
}

/* variations */
.elementary .childpage_course_box {
  border-color: #13c142;
}
.elementary .childpage_course_box .num {
  background: #13c142;
}

.juniorhigh .childpage_course_box {
  border-color: #079636;
}
.juniorhigh .childpage_course_box .num {
  background: #079636;
}

.childpage_course_lead {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .childpage_course_lead {
    flex-direction: column;
  }
}
.childpage_course_lead p {
  padding-left: 60px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .childpage_course_lead p {
    padding-left: 0;
  }
}
.childpage_course_lead p:before {
  content: "";
  width: 57px;
  height: 75px;
  background: url(../../course/images/ico_course01.svg) no-repeat center center/contain;
  display: inline-block;
  position: absolute;
  left: 0;
  top: -20px;
}
@media screen and (max-width: 767px) {
  .childpage_course_lead p:before {
    position: relative;
    display: block;
    width: 47px;
    height: 65px;
    margin: auto;
  }
}
.childpage_course_lead .lg {
  font-size: 1.2em;
}

.childpage_cta {
  background: #eafa9c;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
  padding: 20px 0;
}
@media screen and (max-width: 960px) {
  .childpage_cta {
    flex-direction: column;
    padding: 20px 5%;
    gap: 20px;
  }
}
.childpage_cta .figure {
  max-width: 380px;
}
.childpage_cta .btn_green {
  background: url(../images/bg_btn_bright.svg) no-repeat top center/contain, #5dba00;
  font-size: 1.5rem;
  padding: 0.5em;
  min-width: 400px;
}
@media screen and (max-width: 960px) {
  .childpage_cta .btn_green {
    min-width: unset;
    font-size: 4vw;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .childpage_cta .btn_green {
    font-size: 6vw;
  }
}
.childpage_cta .lg {
  font-size: 120%;
}

.childpage_price {
  padding-bottom: 40px;
  background: #f7fcf7;
}
@media screen and (max-width: 767px) {
  .childpage_price {
    padding: 0 5% 40px;
  }
}
.childpage_price .bubble {
  padding: 0.5em 1.5em;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.3em;
  border: 1px solid;
  border-radius: 50px;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  translate: 0 -30px;
  position: relative;
  font-size: 1.375rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .childpage_price .bubble {
    font-size: 4.5vw;
  }
}
.childpage_price .bubble:before, .childpage_price .bubble:after {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  rotate: 45deg;
  position: absolute;
  right: 50%;
  bottom: -7.5px;
}
.childpage_price .bubble:before {
  background: #fff;
  z-index: 2;
}
.childpage_price .bubble:after {
  z-index: 1;
  bottom: -9px;
}
.childpage_price .elem {
  color: #13c142;
  border-color: #13c142;
}
.childpage_price .elem:after {
  background: #13c142;
}
.childpage_price .juniorhigh {
  color: #079636;
  border-color: #079636;
}
.childpage_price .juniorhigh:after {
  background: #079636;
}

.childpage_course_2col {
  display: flex;
  justify-content: center;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .childpage_course_2col {
    flex-direction: column;
  }
}

.juniorhigh .scoreup_area {
  padding-bottom: 0;
}
.juniorhigh .scoreup_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .juniorhigh .scoreup_list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.juniorhigh .scoreup_list li {
  container-type: inline-size;
}
.juniorhigh .scoreup_list_col3 {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.juniorhigh .scoreup_list_col3 li {
  width: calc(33.33% - 8px);
}
@media screen and (max-width: 767px) {
  .juniorhigh .scoreup_list_col3 li {
    width: 100%;
  }
}
.juniorhigh .scoreup_list_col3 .scoreup_content {
  grid-template-areas: "class" "school" "pic";
  grid-template-columns: 1fr;
}
.juniorhigh .scoreup_list_col3 .class_name {
  margin-left: 0;
  justify-self: center;
  font-size: 0.9em;
}
.juniorhigh .scoreup_list_col3 .school_name {
  justify-self: center;
  margin-right: 0.5em;
  font-size: 0.9em;
}
@container (max-width: 519px) {
  .juniorhigh .scoreup_area .scoreup_content .school_name {
    justify-self: center;
    margin-right: 0.5em;
    font-size: 1.25rem;
  }
  .juniorhigh .scoreup_area .scoreup_content .school_name span {
    font-size: 80%;
  }
}
.juniorhigh .scoreup_area .scoreup_list_col3 .school_name {
  font-size: 1.2em;
}
.juniorhigh .scoreup_area .scoreup_content .school_name span {
  font-size: 80%;
}