<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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;
}

/* px to rem functions start 
rem(Xpx)でコンパイル時にremへ変換

各ファイル内で1行目に
@use "variable" as val;
を入れた後、
font-size: val.rem(●px);
と記述することでpx→rem自動変換する。
*/
.en {
  font-family: "Chakra Petch", serif;
}

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

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

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

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

.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_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, linear-gradient(180deg, rgb(164, 209, 36) 0%, rgb(88, 161, 4) 100%);
  border-bottom: 1px solid #2a8b01;
}

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

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;
}
.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 {
  font-size: 1.25rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .trouble_area .trouble_list {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list {
    padding: 0 22vw 0 5vw;
    text-align: left;
    list-style-type: disc;
  }
}
@media screen and (max-width: 420px) {
  .trouble_area .trouble_list {
    padding: 0 9.6vw 0 5vw;
  }
}
.trouble_area .trouble_list:before {
  content: "";
  width: 158px;
  height: 207px;
  display: block;
  position: absolute;
  right: 75%;
  bottom: -42px;
  background: url(../images/trouble_img01.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list:before {
    width: 18vw;
    height: 24.6vw;
    right: 20vw;
    bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .trouble_area .trouble_list:before {
    right: 10vw;
  }
}
@media screen and (max-width: 500px) {
  .trouble_area .trouble_list:before {
    right: 0vw;
  }
}
.trouble_area .trouble_list:after {
  content: "";
  width: 182px;
  height: 207px;
  display: block;
  position: absolute;
  left: 73%;
  top: -42px;
  background: url(../images/trouble_img02.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list:after {
    width: 20.2vw;
    height: 23.6vw;
    left: unset;
    right: 0;
    top: 0px;
  }
}
@media screen and (max-width: 420px) {
  .trouble_area .trouble_list:after {
    top: 28vw;
    right: 6vw;
  }
}
.trouble_area .trouble_list li {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .trouble_area .trouble_list li {
    margin-bottom: 1em;
  }
}
.trouble_area .trouble_list span {
  font-size: 120%;
}

.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: 800px;
  margin-right: auto;
  margin-left: auto;
}
.information_area figure img {
  height: auto;
}

.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 .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, 20.625rem);
  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: 100%;
  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;
  }
}

@media screen and (max-width: 360px) {
  .course_area .ttl_label_green {
    font-size: 0.9375rem;
  }
}
.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 &gt; span {
  translate: -0.2em 0;
}
@media screen and (max-width: 960px) {
  .course_area .course_intro_box02 h4 &gt; span {
    translate: 0;
  }
}
@media screen and (max-width: 767px) {
  .course_area .course_intro_box02 h4 &gt; 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 &gt; 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 &gt; 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 &gt; 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: #f4fff7;
}
.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 &gt; 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 &gt; 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 &gt; 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 &gt; 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;
}
@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_ttl {
  border-radius: 50px;
  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: #13c142;
}
.course_price_ttl.junior {
  background: #21a738;
}

.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;
}
.course_price_txt span .fc_element {
  color: #13c142;
}
.course_price_txt span .fc_junior {
  color: #079636;
}

.josei {
  border: 1px solid #079636;
  color: #079636;
  padding: 0.3em;
  text-align: center;
  font-size: 1.125rem;
}
@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;
}
@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: 120px auto 35px;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_title {
    margin: 80px auto 1em;
    font-size: 1.25rem;
  }
}
.scoreup_area .scoreup_title: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:before {
    top: -3.2em;
    left: 0;
  }
}
.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_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_list {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}
.scoreup_area .scoreup_list li {
  container-type: inline-size;
}
.scoreup_area .scoreup_content {
  border: 4px solid #079636;
  border-radius: 15px;
  display: grid;
  grid-template-areas: "class school" "pic pic";
  grid-template-columns: max-content 1fr;
  align-items: center;
  padding: 14px 0 0;
  height: 100%;
}
@container (max-width:519px) {
  .scoreup_area .scoreup_content {
    grid-template-areas: "class" "school" "pic";
    grid-template-columns: 1fr;
  }
}
.scoreup_area .scoreup_content .class_name {
  background: #079636;
  border-radius: 3px;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0.5em 0.8em 0.5em 5px;
  line-height: 1;
  grid-area: class;
  width: -moz-max-content;
  width: max-content;
  margin-left: -0.5em;
}
@container (max-width:519px) {
  .scoreup_area .scoreup_content .class_name {
    margin-left: 0;
    justify-self: center;
  }
}
.scoreup_area .scoreup_content .class_name:before {
  content: "";
  width: 2.5em;
  height: 1.875em;
  background: url(../images/scoreup_ico02.svg) no-repeat center center/contain;
}
.scoreup_area .scoreup_content .school_name {
  grid-area: school;
  font-size: 1.125rem;
  margin-left: 0.5em;
}
@container (max-width:519px) {
  .scoreup_area .scoreup_content .school_name {
    justify-self: center;
    margin-right: 0.5em;
  }
}
.scoreup_area .scoreup_content .school_name span {
  font-size: 127%;
  margin-left: 0.2em;
}
.scoreup_area .scoreup_content .scoreup_pic {
  grid-area: pic;
  max-width: 74%;
  margin: 6px auto 0;
}
.scoreup_area .scoreup_list_col3 {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}
.scoreup_area .scoreup_list_col3 li {
  width: calc(33.33% - 8px);
}
@media screen and (max-width: 767px) {
  .scoreup_area .scoreup_list_col3 li {
    width: 100%;
  }
}
.scoreup_area .scoreup_list_col3 .scoreup_content {
  grid-template-areas: "class" "school" "pic";
  grid-template-columns: 1fr;
  padding: 0.5em;
}
.scoreup_area .scoreup_list_col3 .class_name {
  margin-left: 0;
  justify-self: center;
  font-size: 0.9em;
}
.scoreup_area .scoreup_list_col3 .school_name {
  justify-self: center;
  margin-right: 0.5em;
  font-size: 0.9em;
}
.scoreup_area .scoreup_list_col3 .scoreup_pic {
  max-width: 90%;
  margin-top: 0;
}</pre></body></html>