@charset "UTF-8";
/*
  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;
}

.block {
  display: block;
}

.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%;
  }
}

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

.section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.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;
}

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

.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;
  }
}

.col4_box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .col4_box {
    grid-template-columns: 2fr;
    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;
}
@media screen and (max-width: 767px) {
  .btn_orange {
    background: url(../images/bg_btn_bright.svg) no-repeat top center/150%, linear-gradient(180deg, rgb(255, 166, 49) 0%, rgb(255, 128, 6) 100%);
  }
}

.btn_green {
  background: rgb(164, 209, 36);
  background: url(../images/bg_btn_bright.svg) no-repeat top center/100%, #5dba00;
  border-bottom: 1px solid #3ca90d;
}
@media screen and (max-width: 767px) {
  .btn_green {
    background: url(../images/bg_btn_bright.svg) no-repeat top center/150%, #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 {
    border-radius: 10px;
    padding: 1.6rem 4% 4%;
  }
}
.green_grad_container.icon_binder {
  position: relative;
}
.green_grad_container.icon_binder:before {
  content: "";
  max-width: 620px;
  width: 80%;
  max-height: 70px;
  height: auto;
  aspect-ratio: 62/7;
  background: url(../images/reason_img01.svg) no-repeat center center/contain;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
}
.green_grad_container .container {
  background: #fff;
  border-radius: 18px;
  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%;
    border-radius: 8px;
  }
}

.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;
  }
}

.slide_bottom {
  opacity: 0;
  transform: translateY(10px);
}
.slide_bottom.active {
  animation: 0.3s ease forwards slidebottom;
}

@keyframes slidebottom {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-slidein.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .js-slidein.delay-time02 {
    animation-delay: 0;
  }
}
.js-slidein.delay-time03 {
  animation-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .js-slidein.delay-time03 {
    animation-delay: 0;
  }
}
.js-slidein.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .js-slidein.delay-time04 {
    animation-delay: 0;
  }
}

.note {
  background: #dff9e6;
  padding: 1em;
  border-radius: 10px;
}
.note .note_ttl {
  font-size: 1.1em;
}

html {
  scrollbar-gutter: stable;
}

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 > ul {
  height: calc(100vh - var(--header_height));
  overflow-y: auto;
}
header .h_navigation li {
  background: #eaf7ee;
}
header .h_navigation a {
  color: #079636;
  position: relative;
  display: block;
  padding: 1.8em;
  background: #fff;
  font-weight: bold;
  border-bottom: 1px solid #e3e3e3;
  border-left: 3px solid #079636;
  transition: color 0.2s ease, background 0.2s ease;
}
@media (hover: hover) {
  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;
}
header .h_navigation_inlist {
  width: 90%;
  margin-left: auto;
}
header .h_navigation_inlist a {
  padding: 1em;
}

#js-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  animation: fade 0.2s ease 0s normal forwards;
  background-color: rgba(0, 0, 0, 0);
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
footer a {
  color: inherit;
}
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;
}

/* school_style.scss */
#schoolpage {
  scroll-behavior: smooth;
}

.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;
}

.schoolpage_title {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #079636;
  font-size: 3rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .schoolpage_title {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: min(10vw, 36px);
  }
}
.schoolpage_title .wrapper {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
@media screen and (max-width: 767px) {
  .schoolpage_title .wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.schoolpage_title .sm {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .schoolpage_title .sm {
    font-size: 1rem;
  }
}

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;
}

.access_area .access_pic iframe {
  width: 100%;
  height: 100%;
}
.access_area .access_info > div {
  display: grid;
  grid-template-columns: 7em 1fr;
  border-bottom: 1px solid #bababa;
  padding: 1.3em 0;
}
@media screen and (max-width: 767px) {
  .access_area .access_info > div {
    grid-template-columns: 6em 1fr;
    padding: 1em 0;
    gap: 10px;
  }
}
.access_area .access_info dt {
  color: #079636;
  width: 7em;
  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 .access_info .school_indent {
  display: block;
  text-indent: -6.3em;
  margin-left: 6.3em;
}
@media screen and (max-width: 767px) {
  .access_area .access_info .school_indent {
    text-indent: 0;
    margin-left: 0;
  }
}
.access_area .access_point {
  color: #079636;
  background: #eafaee;
  padding: 0.2em 0.4em;
}
.access_area .access_point:before {
  content: "";
  display: inline-block;
  background: url(../images/ico_mappoint.svg) no-repeat center center/contain;
  width: 0.85em;
  height: 0.85em;
  margin-right: 0.2em;
}

.school_nav .school_nav_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: stretch;
}
@media screen and (max-width: 1080px) {
  .school_nav .school_nav_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .school_nav .school_nav_list {
    font-size: clamp(10px, 3.5vw, 16px);
    gap: 1.2em 4px;
    text-align: center;
  }
}
.school_nav a {
  color: #079636;
  border: 1px solid #079636;
  display: block;
  padding: 0.6em calc(0.6em + 10px) 0.6em 0.6em;
  border-radius: 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .school_nav a {
    padding: 5px 14px 5px 1vw;
    color: #fff;
    background: #079636;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
  }
}
.school_nav a:after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-color: #079636;
  border-right: 2px solid;
  border-bottom: 2px solid;
  rotate: 45deg;
  display: inline-block;
  position: absolute;
  right: 10px;
  top: 50%;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .school_nav a:after {
    border-color: #fff;
    right: 0.5em;
    width: 0.5em;
    height: 0.5em;
  }
}

@media screen and (max-width: 767px) {
  .chief_pic {
    width: 60%;
  }
}

.chief_message {
  max-width: 640px;
}

.scoreup_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .scoreup_list {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    gap: 5px;
  }
}
.scoreup_list li {
  max-width: calc(25% - 8px);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .scoreup_list li {
    max-width: calc(50% - 5px);
    border-radius: 5px;
  }
}

.schoolpage_result_area .btn_line {
  color: #fff;
  background: #079636;
  max-width: -moz-max-content;
  max-width: max-content;
  padding-right: 1.8em;
  position: relative;
}
.schoolpage_result_area .btn_line:after {
  content: "";
  width: 0.5em;
  height: 0.5em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  rotate: -45deg;
  display: block;
  position: absolute;
  right: 0.9em;
  top: 50%;
  translate: 0 -50%;
}

.btn_dropshadow {
  filter: drop-shadow(0 7px 6px rgba(164, 225, 186, 0.4));
  transition: 0.2s ease filter, 0.2s ease translate;
}
@media (hover: hover) {
  .btn_dropshadow:hover {
    opacity: 1;
    filter: drop-shadow(0 0 1px rgb(164, 225, 186));
    translate: 0 3px;
  }
}

.btn_course img {
  translate: -8px 0;
}

.topics_area {
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .topics_area {
    padding: 1.25rem 0 0;
  }
}
.topics_area summary {
  cursor: pointer;
}
.topics_area .cp_bnr {
  box-shadow: 0px 3px 6px rgba(72, 107, 83, 0.1);
  position: relative;
}
.topics_area .cp_bnr:after {
  content: "詳しくはこちら »";
  font-weight: bold;
  line-height: 1;
  color: #fff;
  font-size: 1vw;
  padding: 0.4em 0.3em 0.3em 0.5em;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--topic_color);
  border-radius: 2px 0 0 0;
}
@media screen and (max-width: 767px) {
  .topics_area .cp_bnr:after {
    font-size: 0.8125rem;
    position: relative;
    display: block;
    border-radius: 0;
    text-align: center;
  }
}
.topics_area .cp_bnr:after:after {
  content: "";
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
  rotate: -45deg;
  translate: 0 -0.15em;
  margin-left: 0.2em;
}
.topics_area .topics_box {
  width: 96%;
  margin: 0 auto;
  gap: 15px;
}

.schoolpage_topics {
  background: #e5f8f8;
  padding: 2rem 0;
}

.course_price_area {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .course_price_area {
    padding: 1.5rem 0;
  }
}
.course_price_area .cp_bnr img {
  height: auto;
}

.course_price_txt_index {
  font-size: 2.5rem;
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .course_price_txt_index {
    font-size: 7vw;
    line-height: 1.2;
    padding: 0.625rem;
  }
}
.course_price_txt_index .price {
  font-size: 180%;
}
@media screen and (max-width: 767px) {
  .course_price_txt_index .caution {
    text-align: left;
  }
}

.tax {
  font-size: 0.8125rem;
}

.price_bubble {
  display: block;
  position: relative;
  font-size: 1.875rem;
  line-height: 1.4;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 0.3em;
  background: #fff;
  padding: 0.4em 42px;
  border-radius: 50px;
  border: 2px solid #079636;
  filter: drop-shadow(0 4px 0 #079636);
}
@media screen and (max-width: 767px) {
  .price_bubble {
    font-size: 1.25rem;
    margin-bottom: 1em;
  }
}
.price_bubble:after {
  content: "";
  width: 18px;
  height: 10px;
  background: #fff;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -9px;
  translate: -50% 0;
}

.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;
}

.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;
  }
}

.splide_appearance {
  position: relative;
}
.splide_appearance .splide__pagination {
  gap: 10px;
  padding: 5px 0;
}
.splide_appearance .splide__pagination li button {
  background: #ccc;
  width: 8px;
  height: 8px;
  border-radius: 50px;
}
.splide_appearance .splide__pagination li button.is-active {
  background: #079636;
}
.splide_appearance .splide__arrow {
  --arrow_radius: 50px;
  --arrow_padding: 10px;
  --arrow_padding_sm: 2px;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.splide_appearance .splide__arrow.splide__arrow--next {
  border-radius: var(--arrow_radius) 0 0 var(--arrow_radius);
  padding: var(--arrow_padding) var(--arrow_padding_sm) var(--arrow_padding) var(--arrow_padding);
  right: 0;
}
.splide_appearance .splide__arrow.splide__arrow--prev {
  border-radius: 0 var(--arrow_radius) var(--arrow_radius) 0;
  padding: var(--arrow_padding) var(--arrow_padding) var(--arrow_padding) var(--arrow_padding_sm);
  left: 0;
}
.splide_appearance .splide__arrow.splide__arrow--prev svg {
  rotate: 180deg;
}
.splide_appearance .splide__arrow svg {
  width: 1.5rem;
  fill: #079636;
}

.fixed_cta_area .btn_orange,
.fixed_cta_area .btn_green {
  position: relative;
}
.fixed_cta_area .btn_orange::before,
.fixed_cta_area .btn_green::before {
  content: "";
  width: 180px;
  height: 31px;
  background: url(/sc/smanavi/assets/images/btn_text_mail.svg) no-repeat center center/contain;
  position: absolute;
  top: -18px;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .fixed_cta_area .btn_orange::before,
  .fixed_cta_area .btn_green::before {
    width: 95%;
    height: 50%;
    top: -20px;
  }
}
.fixed_cta_area .btn_green::before {
  background: url(/sc/smanavi/assets/images/btn_text_time.svg) no-repeat center center/contain;
}