@charset "UTF-8";
/*---------------------------------------------
    カスタムプロパティ
---------------------------------------------*/
:root {
  --color-blue:#0084cf;
  --color-yellow:#fff100;
  --color-purple: #786ee6;
  --color-green: #6ebe5a;
  --color-green2: #50c2c3;
  --color-orange: #f08232;
  --color-turquoise: #4fc2c3;
}

/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

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

/*---------------------------------------------
    リセット
---------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

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

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

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

/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  font-weight: normal;
  line-height: 1;
  overflow-y: scroll;
  color: #000;
}

body {
  font-size: 1.6rem;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

sup, sub {
  font-size: 0.6em;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*---------------------------------------------
flex
---------------------------------------------*/
.flex {
  display: flex;
}

.inline-flex {
  display: inline-block;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 2rem;
}

/*---------------------------------------------
font-family
---------------------------------------------*/
.font-oswald {
  font-family: "Oswald", sans-serif;
}

/*---------------------------------------------
font-weight
---------------------------------------------*/
.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

/*---------------------------------------------
font-size
---------------------------------------------*/
.text-xs {
  font-size: 2.8205128205vw;
}
@media screen and (min-width: 768px) {
  .text-xs {
    font-size: 1.2rem;
  }
}

.text-sm {
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  .text-sm {
    font-size: 1.4rem;
  }
}

.text-md {
  font-size: 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .text-md {
    font-size: 1.6rem;
  }
}

.text-lg {
  font-size: 4.1025641026vw;
}
@media screen and (min-width: 768px) {
  .text-lg {
    font-size: 1.8rem;
  }
}

.text-xl {
  font-size: 4.6153846154vw;
}
@media screen and (min-width: 768px) {
  .text-xl {
    font-size: 2rem;
  }
}

/*---------------------------------------------
color
---------------------------------------------*/
.text-blue {
  color: var(--color-blue);
}

.text-green2 {
  color: var(--color-green2);
}

/*---------------------------------------------
text-align
---------------------------------------------*/
.text-center {
  text-align: center;
}

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

/*---------------------------------------------
margin
---------------------------------------------*/
@media screen and (min-width: 768px) {
  .ml-pc-4 {
    margin-left: 16px;
  }
  .mt-pc-4 {
    margin-top: 16px;
  }
  .mt-pc-9 {
    margin-top: 36px;
  }
  .mt-pc-12 {
    margin-top: 48px;
  }
  .mt-pc-14 {
    margin-top: 56px;
  }
  .mt-pc-16 {
    margin-top: 64px;
  }
  .mt-pc-24 {
    margin-top: 96px;
  }
}
@media screen and (max-width: 767px) {
  .mt-sp-2 {
    margin-top: 2.0512820513vw;
  }
  .mt-sp-4 {
    margin-top: 4.1025641026vw;
  }
  .mt-sp-9 {
    margin-top: 9.2307692308vw;
  }
  .mt-sp-12 {
    margin-top: 12.3076923077vw;
  }
  .mt-sp-16 {
    margin-top: 16.4102564103vw;
  }
}
/*---------------------------------------------
margin
---------------------------------------------*/
.leading-7 {
  line-height: 1.75;
}

.leading-8 {
  line-height: 2;
}

/*---------------------------------------------
marker
---------------------------------------------*/
.marker {
  background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
}

/*---------------------------------------------
line
---------------------------------------------*/
.dotted {
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 5px 2px;
  background-repeat: repeat-x;
  background-position: 0 100%;
}

.youtube {
  width: 100%;
  aspect-ratio: 16/9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}

/*---------------------------------------------
タイトル
---------------------------------------------*/
.section-title-01 {
  font-size: 6.6666666667vw;
  font-weight: 500;
  color: var(--color-blue);
  padding-bottom: 0.4em;
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-bottom-color: var(--color-blue);
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-title-01 {
    font-size: 3.1rem;
    margin-bottom: 1.4em;
  }
}

/*---------------------------------------------
cv-block
---------------------------------------------*/
.cv-block {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .cv-block {
    bottom: 8px;
  }
}
.cv-block__pc {
  width: 895px;
  margin: 0 auto;
  position: relative;
  max-width: calc(100% - 25px);
}
.cv-block__pc .btn {
  display: block;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.cv-block__pc .close {
  position: absolute;
  top: 0;
  right: 0;
  width: 25px;
  transform: translate(46%, -40%);
  cursor: pointer;
}
.cv-block__sp {
  width: 100%;
  height: 17.4358974359vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-blue);
}
.cv-block__sp > * {
  display: block;
  width: 47.4358974359vw;
  margin: 0 0.2564102564vw;
}

/*---------------------------------------------
btn
---------------------------------------------*/
.btn-tp1 {
  background-color: #0084cf;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
  width: 80vw;
  height: 11.2820512821vw;
  border-radius: 11.2820512821vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 4.8717948718vw;
}
@media screen and (min-width: 768px) {
  .btn-tp1 {
    width: 346px;
    height: 48px;
    border-radius: 48px;
    font-size: 2.1rem;
  }
}

.btn-tp2 {
  background-color: #0084cf;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.15);
  width: 71.7948717949vw;
  height: 17.4358974359vw;
  border-radius: 2.5641025641vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 4.8717948718vw;
}
@media screen and (min-width: 768px) {
  .btn-tp2 {
    width: 280px;
    height: 68px;
    border-radius: 10px;
    font-size: 2.1rem;
  }
}

/*---------------------------------------------
link
---------------------------------------------*/
.link-info {
  display: block;
  position: relative;
}
.link-info:before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.5s;
}
.link-info:after {
  display: flex;
  content: "別ウィンドウで開く";
  width: 100%;
  height: 100%;
  color: white;
  position: absolute;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  opacity: 0;
  transition: 0.3s;
}
.link-info:hover:before {
  opacity: 1;
}
.link-info:hover:after {
  opacity: 1;
}

/*---------------------------------------------
faq
---------------------------------------------*/
.faq_item .faq_q {
  margin-bottom: 0.8em;
  display: flex;
  align-items: center;
  line-height: 1.35;
}
.faq_item .faq_q span:nth-child(1) {
  font-size: 8.9743589744vw;
  margin-right: 0.3em;
}
@media screen and (min-width: 768px) {
  .faq_item .faq_q span:nth-child(1) {
    font-size: 3.5rem;
  }
}
.faq_item .faq_q span:nth-child(2) {
  font-size: 4.358974359vw;
  padding: 0.4em 0 0;
}
@media screen and (min-width: 768px) {
  .faq_item .faq_q span:nth-child(2) {
    font-size: 2.1rem;
  }
}
.faq_item .faq_a {
  padding-left: 8.7179487179vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .faq_item .faq_a {
    padding-left: 34px;
  }
}
.faq_item + .faq_item {
  margin-top: 60px;
}
@media screen and (min-width: 768px) {
  .faq_item + .faq_item {
    margin-top: 60px;
  }
}

/*---------------------------------------------
success-list
---------------------------------------------*/
.success-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.success-list .-item {
  width: 90.7692307692vw;
  background-color: #fff;
  border-radius: 10px;
  padding: 3.0769230769vw 4.6153846154vw 6.4102564103vw;
  flex-direction: column;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  margin-bottom: 2.0512820513vw;
}
@media screen and (min-width: 768px) {
  .success-list .-item {
    width: 233px;
    padding: 25px 20px;
    margin-bottom: 0;
  }
}
.success-list.-wide .-item {
  width: 90.7692307692vw;
}
@media screen and (min-width: 768px) {
  .success-list.-wide .-item {
    width: 312px;
  }
}
.success-list.-wide .-item .-meta {
  padding: 0 0 0 10px;
}
.success-list .-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.success-list .-head .-meta {
  border-left-color: var(--color-blue);
  border-left-width: 4px;
  border-left-style: solid;
  padding: 0 0 0 1.5384615385vw;
  font-size: 3.5897435897vw;
  line-height: 1.46;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .success-list .-head .-meta {
    min-height: 100px;
    padding: 0 0 0 6px;
    font-size: 1.2rem;
  }
}
.success-list .-head .-meta p:nth-child(1) {
  color: var(--color-blue);
  font-size: 5.1282051282vw;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 0.3em;
}
@media screen and (min-width: 768px) {
  .success-list .-head .-meta p:nth-child(1) {
    font-size: 2rem;
  }
}
.success-list .-head .-tn {
  width: 17.9487179487vw;
  margin-left: 3px;
}
@media screen and (min-width: 768px) {
  .success-list .-head .-tn {
    width: 74px;
  }
}
.success-list .-description {
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 768px) {
  .success-list .-description {
    font-size: 1.4rem;
  }
}

/*---------------------------------------------
documents
---------------------------------------------*/
.documents {
  text-align: left;
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 2;
  padding-top: min(4.8vw, 60px);
}
.documents h3 {
  color: var(--color-blue);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: bold;
  margin-bottom: 1em;
}
.documents > *:not(h3) {
  padding-left: min(1.33vw, 15px);
  padding-right: min(1.33vw, 15px);
}
.documents > * + h3 {
  margin-top: min(6vw, 80px);
}
.documents dl > * + dt {
  margin-top: 2em;
}

/*---------------------------------------------
single
---------------------------------------------*/
.single {
  line-height: 1.8;
}
.single *:not(div) + h2 {
  margin-top: 3em;
}
.single *:not(div) + h3 {
  margin-top: 3em;
}
.single *:not(div) + p {
  margin-top: 2em;
}
.single *:not(div) + figure {
  margin-top: 2em;
}
.single *:not(div) + ul {
  margin-top: 2em;
}
.single h2 {
  border-bottom: solid 2px var(--color-blue);
  color: var(--color-blue);
  padding-bottom: 0.3em;
}
.single h3 {
  border-left: solid 5px var(--color-blue);
  padding-left: 10px;
  color: var(--color-blue);
}
.single a {
  color: #fa540e;
  text-decoration: underline;
  font-weight: bold;
}
.single a:hover {
  text-decoration: none;
}
.single .wp-block-table table {
  table-layout: auto;
  width: 100%;
}
.single .wp-block-table table td {
  border-width: 2px;
  border-color: var(--color-blue);
}
.single .wp-block-table table th {
  text-align: center;
  border-color: var(--color-blue);
  border-width: 2px;
  font-weight: normal;
}
.single .wp-block-table table tr td:nth-child(1) {
  white-space: nowrap;
  text-align: center;
  padding-left: 10px;
  padding-right: 10px;
}
.single .wp-block-table table thead {
  border: none;
}
.single .wp-block-image {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .single .wp-block-image {
    width: 100%;
  }
}
.single .wp-block-group-is-layout-flex {
  gap: 30px;
}
.single .wp-block-list li:before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  background-color: #000;
  border-radius: 50%;
  position: relative;
  top: -3px;
  margin-right: 5px;
}
@media screen and (max-width: 767px) {
  .single .is-layout-flex {
    flex-direction: column;
  }
  .single .is-layout-flex .wp-block-group {
    width: 100%;
  }
}

/*---------------------------------------------
common
---------------------------------------------*/
.wrapper {
  position: relative;
  padding-top: 55px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding-top: 88px;
  }
}

main > section {
  padding: 15.3846153846vw 0;
  background-color: white;
}
@media screen and (min-width: 768px) {
  main > section {
    padding: 100px 0;
    min-width: 973px;
    width: 100%;
    overflow: hidden;
  }
}
main:not(.bg-even) > section:nth-child(2n+1):not(.nobg) {
  background-color: #e4f5ff;
}
main.bg-even > section:nth-child(2n):not(.nobg) {
  background-color: #e4f5ff;
}

@media screen and (min-width: 768px) {
  .inner {
    width: 973px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-left: 3.8461538462vw;
    padding-right: 3.8461538462vw;
  }
}

.gnav ul {
  display: flex;
}
.gnav ul li {
  width: 125px;
  border-right: solid 1px white;
}
.gnav ul li:first-child {
  border-left: solid 1px white;
}
.gnav ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gnav ul li a > * {
  font-size: 1.2rem;
}
.gnav ul li a > *:nth-child(1) {
  font-size: 1.7rem;
}

/*---------------------------------------------
header
---------------------------------------------*/
.header {
  width: 100%;
  background-color: var(--color-blue);
  color: white;
  padding: 3.0769230769vw 3.8461538462vw;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
@media screen and (min-width: 768px) {
  .header {
    min-width: 973px;
    padding: 20px 30px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 55px;
  }
}
.header a {
  color: white;
}
.header__logo {
  margin-right: 20px;
}
.header__logo img {
  width: 120px;
}
@media screen and (min-width: 768px) {
  .header__logo img {
    width: 164px;
  }
}
.header__nav {
  margin-left: auto;
}
.header__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 35px;
}
.header__contact > *:nth-child(1) {
  font-size: 1.2rem;
}
.header__contact > *:nth-child(2) {
  font-size: 2rem;
}
.header__contact > *:nth-child(2) a {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}

/*---------------------------------------------
ハンバーガーボタン
---------------------------------------------*/
.hamburger {
  width: 35px;
  height: 50px;
  position: relative;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  background-color: var(--color-blue);
  cursor: pointer;
  margin-left: auto;
}
.hamburger span, .hamburger span::after, .hamburger span::before {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.5s;
}
.hamburger span::before {
  top: -10px;
}
.hamburger span::after {
  bottom: -10px;
}
.hamburger.open span {
  background-color: transparent;
}
.hamburger.open span::before {
  top: 0;
  transform: rotate(45deg);
}
.hamburger.open span::after {
  bottom: 0;
  transform: rotate(-45deg);
}

/*---------------------------------------------
    メニュー
---------------------------------------------*/
.nav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 55px;
  right: -100%;
  background-color: var(--color-blue);
  padding: 30px 0;
  transition: all 0.5s;
}
.nav.open {
  right: 0;
}
.nav li {
  border-bottom: solid 1px #fff;
}
.nav a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 4.1025641026vw 0 4.1025641026vw 5.1282051282vw;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.nav a span:nth-child(1) {
  font-size: 2.8205128205vw;
}
.nav a span:nth-child(2) {
  font-size: 4.1025641026vw;
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background-color: var(--color-blue);
  color: white;
  padding: 4.6153846154vw 3.8461538462vw 20.5128205128vw;
  min-height: 61.5384615385vw;
  display: flex;
  flex-direction: column;
  margin-top: auto;
}
@media screen and (min-width: 768px) {
  .footer {
    min-width: 973px;
    padding: 25px 30px 120px;
    min-height: 420px;
  }
}
.footer.cv-close {
  padding-bottom: 4.6153846154vw;
  min-height: 40vw;
}
@media screen and (min-width: 768px) {
  .footer.cv-close {
    padding-bottom: 30px;
    min-height: 315px;
  }
}
.footer a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .footer a:hover {
    opacity: 0.8;
  }
}
.footer__box {
  display: flex;
  align-items: center;
}
.footer__nav {
  margin-left: auto;
}
.footer__logo {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    margin-right: 20px;
  }
}
.footer__logo img {
  width: 27.6923076923vw;
}
@media screen and (min-width: 768px) {
  .footer__logo img {
    width: 164px;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 35px;
}
.footer__contact > *:nth-child(1) {
  font-size: 1.2rem;
}
.footer__contact > *:nth-child(2) {
  font-size: 2rem;
}
.footer__contact > *:nth-child(2) a {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
}
.footer__privacy {
  margin-top: auto;
  margin-bottom: 15px;
}
.footer__copyright {
  font-size: 2.5641025641vw;
}
@media screen and (min-width: 768px) {
  .footer__copyright {
    font-size: 1.1rem;
  }
}

/*---------------------------------------------
result
---------------------------------------------*/
.result-list {
  background-color: #fad214;
  border-radius: 10px;
  padding: 2.5641025641vw 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .result-list {
    padding: 15px 0;
  }
}
.result-list .-item {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 45.833%;
  height: 36.4102564103vw;
  margin: 1.0256410256vw 0.641025641vw;
}
@media screen and (min-width: 768px) {
  .result-list .-item {
    width: 23.251%;
    height: 216px;
    margin: 0 6px;
  }
}
.result-list .-school {
  width: 81.81%;
  border-radius: 100px;
  border: solid 2px #000;
  font-size: 3.8461538462vw;
  font-weight: bold;
  padding: 0 0 0.1em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .result-list .-school {
    width: 86.283%;
    font-size: 2.4rem;
  }
}
.result-list .-result {
  display: flex;
  align-items: flex-end;
  letter-spacing: -1px;
}
@media screen and (max-width: 767px) {
  .result-list .-result {
    font-size: 3.0769230769vw;
  }
}
.result-list .-result strong {
  font-size: 13.3333333333vw;
  font-weight: 400;
  color: var(--color-blue);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .result-list .-result strong {
    font-size: 7.2rem;
  }
}
.result-list .-result svg {
  margin: 0 3px;
}
@media screen and (max-width: 767px) {
  .result-list .-result svg {
    width: 4.6153846154vw;
  }
}
@media screen and (min-width: 768px) {
  .result-list .-result svg {
    margin: 0 10px;
  }
}

.result-text {
  margin-top: 8.9743589744vw;
}
@media screen and (min-width: 768px) {
  .result-text {
    margin-top: 40px;
  }
}
.result-text p {
  display: inline;
  font-size: 7.1794871795vw;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .result-text p {
    font-size: 3.1rem;
  }
}
.result-text p span {
  font-size: 8.7179487179vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .result-text p span {
    font-size: 3.8rem;
  }
}
.result-text p strong {
  font-size: 12.0512820513vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .result-text p strong {
    font-size: 5.2rem;
  }
}

/*---------------------------------------------
home-mv
---------------------------------------------*/
.home-mv {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .home-mv {
    min-width: 973px;
  }
}
.home-mv .swiper-container {
  background-color: white;
  position: relative;
  padding-bottom: 50px;
  overflow: hidden;
}
.home-mv .swiper-slide img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-mv .swiper-slide img {
    aspect-ratio: 2/1;
    object-fit: cover;
  }
}
.home-mv .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 46px;
  height: 3px;
  border-radius: 0;
}

/*---------------------------------------------
home-result
---------------------------------------------*/
.home-result {
  position: relative;
}

/*---------------------------------------------
home-success
---------------------------------------------*/
.home-success .-notice {
  font-size: 2.8205128205vw;
}
@media screen and (min-width: 768px) {
  .home-success .-notice {
    font-size: 1.2rem;
    margin-top: 1.5em;
  }
}

/*---------------------------------------------
home-feature
---------------------------------------------*/
.home-feature .home-featureItem {
  position: relative;
  margin-top: 9.2307692308vw;
  display: flex;
  border-radius: 12px;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .home-feature .home-featureItem {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem {
    margin-top: 55px;
  }
}
.home-feature .home-featureItem .-contBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5.1282051282vw 2.5641025641vw 7.6923076923vw 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem .-contBox {
    padding: 20px 50px;
    flex: 1;
  }
}
.home-feature .home-featureItem .-number {
  width: 11.5384615385vw;
  height: 11.5384615385vw;
  background-color: var(--color-blue);
  color: #fff;
  border-radius: 11.5384615385vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7.6923076923vw;
  font-weight: 300;
  padding: 0 0 0.1em;
  position: absolute;
  top: 0;
  right: 0;
  translate: 6% -30%;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem .-number {
    width: 58px;
    height: 58px;
    border-radius: 58px;
    font-size: 3.5rem;
    translate: 38% -38%;
  }
}
.home-feature .home-featureItem h3 {
  font-size: 5.1282051282vw;
  font-weight: bold;
  color: var(--color-blue);
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem h3 {
    font-size: 2.1rem;
  }
}
.home-feature .home-featureItem .-description {
  line-height: 1.8;
  font-size: 3.5897435897vw;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem .-description {
    font-size: 1.5rem;
  }
}
.home-feature .home-featureItem .-img {
  width: 100%;
}
.home-feature .home-featureItem .-img img {
  width: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem .-img {
    width: 370px;
  }
  .home-feature .home-featureItem .-img img {
    height: 100%;
    object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem:nth-of-type(2n+1) {
    flex-direction: row-reverse;
  }
}
.home-feature .home-featureItem:nth-of-type(2n+1) .-number {
  left: 0;
  translate: -6% -30%;
}
@media screen and (min-width: 768px) {
  .home-feature .home-featureItem:nth-of-type(2n+1) .-number {
    translate: -38% -38%;
  }
}

/*---------------------------------------------
home-school
---------------------------------------------*/
.home-school .home-schoolList {
  position: relative;
}
.home-school .home-schoolList .swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .swiper-wrapper {
    flex-direction: column;
  }
}
.home-school .home-schoolList .swiper-slide {
  height: auto;
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .swiper-slide + .swiper-slide {
    margin-top: 7.6923076923vw;
  }
}
.home-school .home-schoolList .swiper-button-next {
  translate: 100% 0;
  right: -10px;
}
.home-school .home-schoolList .swiper-button-next:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .swiper-button-next {
    display: none;
  }
}
.home-school .home-schoolList .swiper-button-prev {
  translate: -100% 0;
  left: -10px;
}
.home-school .home-schoolList .swiper-button-prev:after {
  display: none;
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .swiper-button-prev {
    display: none;
  }
}
.home-school .home-schoolList .-item {
  width: 100%;
  height: 100%;
  background-color: #fff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-school .home-schoolList .-item {
    width: 228px;
  }
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .-item {
    margin-top: 7.6923076923vw;
  }
}
.home-school .home-schoolList .-head {
  display: flex;
  align-items: center;
  padding: 3.0769230769vw 0;
  margin: 0 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .home-school .home-schoolList .-head {
    padding: 15px 0;
    margin: 0 15px;
  }
}
.home-school .home-schoolList .-head .--meta {
  flex: 1;
}
.home-school .home-schoolList .-head .--meta p:nth-child(1) {
  font-weight: 500;
  color: var(--color-blue);
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .home-school .home-schoolList .-head .--meta p:nth-child(1) {
    font-size: 4.6153846154vw;
  }
}
.home-school .home-schoolList .-head .--meta p:nth-child(2) {
  font-size: 5.1282051282vw;
  font-weight: bold;
}
.home-school .home-schoolList .-head .--meta p:nth-child(2) strong {
  font-size: 6.1538461538vw;
}
@media screen and (min-width: 768px) {
  .home-school .home-schoolList .-head .--meta p:nth-child(2) {
    font-size: 1.5rem;
  }
  .home-school .home-schoolList .-head .--meta p:nth-child(2) strong {
    font-size: 1.9rem;
  }
}
.home-school .home-schoolList .-head .--img {
  width: 26.1538461538vw;
  margin-left: 3px;
}
@media screen and (min-width: 768px) {
  .home-school .home-schoolList .-head .--img {
    width: 70px;
  }
}
.home-school .home-schoolList .-head .--img img {
  width: 100%;
}
.home-school .home-schoolList .-description {
  font-size: 3.5897435897vw;
  padding: 3.8461538462vw 5.1282051282vw 6.4102564103vw;
}
@media screen and (min-width: 768px) {
  .home-school .home-schoolList .-description {
    font-size: 1.4rem;
    padding: 15px 20px 20px;
  }
}
.home-school .home-schoolList .-color2 .-head .--meta p:nth-child(1) {
  color: var(--color-green2);
}
.home-school .-btn {
  display: flex;
  width: 86.6666666667vw;
  height: 14.8717948718vw;
  margin: 8.9743589744vw 0 0;
  border-radius: 20px;
  background-color: #fff100;
  box-shadow: 0px 11px 0px 0px rgba(137, 137, 137, 0.35);
  justify-content: center;
  align-items: center;
  color: var(--color-blue);
  font-size: 5.641025641vw;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .home-school .-btn {
    font-size: 2.6rem;
    width: 564px;
    height: 82px;
    margin: 35px 0 0;
  }
  .home-school .-btn:hover {
    opacity: 0.8;
  }
}

/*---------------------------------------------
home-course
---------------------------------------------*/
.home-course .home-courseList {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList {
    gap: 22px;
  }
}
@media screen and (max-width: 767px) {
  .home-course .home-courseList {
    flex-direction: column;
    align-items: center;
  }
}
.home-course .home-courseList .-item {
  width: 79.4871794872vw;
  border-style: solid;
  border-width: 4px;
  border-color: #f08232;
  border-radius: 20px;
  position: relative;
  padding: 8.9743589744vw 5.1282051282vw 5.1282051282vw 6.4102564103vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .-item {
    width: 226px;
    padding: 35px 18px 25px;
  }
}
@media screen and (max-width: 767px) {
  .home-course .home-courseList .-item {
    margin-top: 11.5384615385vw;
  }
}
.home-course .home-courseList .-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .-img {
    min-height: 86px;
  }
}
.home-course .home-courseList h3 {
  text-align: center;
  font-size: 5.3846153846vw;
  line-height: 1.38;
  margin: 0.5em 0 0.7em;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList h3 {
    font-size: 2.1rem;
  }
}
.home-course .home-courseList .-number {
  width: 12.3076923077vw;
  height: 12.3076923077vw;
  border-radius: 12.3076923077vw;
  color: white;
  background-color: #f08232;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7.4358974359vw;
  font-weight: 300;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .-number {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    font-size: 2.8rem;
  }
}
.home-course .home-courseList .-description {
  font-size: 3.8461538462vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .-description {
    font-size: 1.5rem;
  }
}
.home-course .home-courseList .-item1 {
  border-color: #f08232;
}
.home-course .home-courseList .-item1 .-number {
  background-color: #f08232;
}
.home-course .home-courseList .-item1 .-img img {
  width: 40.2564102564vw;
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .-item1 .-img img {
    width: 145px;
  }
}
.home-course .home-courseList .-item1 h3 {
  color: #f08232;
}
.home-course .home-courseList .-item2 {
  border-color: var(--color-green);
}
.home-course .home-courseList .-item2 .-number {
  background-color: var(--color-green);
}
.home-course .home-courseList .-item2 .-img img {
  width: 147px;
}
.home-course .home-courseList .-item2 h3 {
  color: var(--color-green);
}
.home-course .home-courseList .-item3 {
  border-color: #00b4e6;
}
.home-course .home-courseList .-item3 .-number {
  background-color: #00b4e6;
}
.home-course .home-courseList .-item3 .-img img {
  width: 102px;
}
.home-course .home-courseList .-item3 h3 {
  color: #00b4e6;
}
.home-course .home-courseList .-item4 {
  border-color: var(--color-purple);
}
.home-course .home-courseList .-item4 .-number {
  background-color: var(--color-purple);
}
.home-course .home-courseList .-item4 .-img img {
  width: 113px;
}
.home-course .home-courseList .-item4 h3 {
  color: var(--color-purple);
}
.home-course .home-courseList .icon-link {
  position: absolute;
  bottom: 5.1282051282vw;
  right: 5.8974358974vw;
}
@media screen and (max-width: 767px) {
  .home-course .home-courseList .icon-link {
    width: 5.641025641vw;
    height: 5.641025641vw;
  }
}
@media screen and (min-width: 768px) {
  .home-course .home-courseList .icon-link {
    bottom: 26px;
    right: 12px;
  }
}

/*---------------------------------------------
home-video
---------------------------------------------*/
.home-video .-video {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-video .-video .youtube {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .home-video .-video .youtube {
    width: 86%;
  }
}

/*---------------------------------------------
home-pr
---------------------------------------------*/
.home-pr .-flexbox {
  display: flex;
}
@media screen and (min-width: 768px) {
  .home-pr .-flexbox {
    gap: 6%;
  }
}
@media screen and (max-width: 767px) {
  .home-pr .-flexbox {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .home-pr .-flexbox .-flexitem {
    width: 47%;
  }
}
@media screen and (max-width: 767px) {
  .home-pr .-flexbox .-flexitem + .-flexitem {
    margin-top: 11.5384615385vw;
  }
}
.home-pr .section-title-01 {
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .home-pr .section-title-01 {
    font-size: 2.8rem;
  }
}
.home-pr .home-info .section-title-01 {
  margin-bottom: 0;
}
.home-pr .home-info__list .home-info__item {
  display: flex;
  border-bottom: solid 1px #d2d2d2;
  padding: 10.2564102564vw 0;
}
@media screen and (min-width: 768px) {
  .home-pr .home-info__list .home-info__item {
    padding: 40px 0;
  }
}
.home-pr .home-info__list .home-info__item .date {
  width: 23.0769230769vw;
  font-size: 3.3333333333vw;
  color: #0084cf;
  padding: 0.2em 0 0;
}
@media screen and (min-width: 768px) {
  .home-pr .home-info__list .home-info__item .date {
    width: 100px;
    font-size: 1.3rem;
  }
}
.home-pr .home-info__list .home-info__item .title {
  flex: 1;
  font-size: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .home-pr .home-info__list .home-info__item .title {
    font-size: 1.6rem;
  }
}
.home-pr .home-info__list .home-info__item .icon {
  width: 11.7948717949vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-pr .home-info__list .home-info__item .icon {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .home-pr .home-info__list .home-info__item .icon img {
    width: 5.1282051282vw;
  }
}
.home-pr .home-column__list .home-column__item {
  display: flex;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  border-radius: 10px;
}
.home-pr .home-column__list .home-column__item .img {
  width: 31.25%;
}
.home-pr .home-column__list .home-column__item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item .img {
    width: 29%;
  }
}
.home-pr .home-column__list .home-column__item .date {
  font-size: 3.8461538462vw;
  color: #0084cf;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item .date {
    font-size: 1.3rem;
    margin-top: 0.8em;
  }
}
.home-pr .home-column__list .home-column__item .title {
  font-size: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item .title {
    font-size: 1.6rem;
  }
}
.home-pr .home-column__list .home-column__item .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.8461538462vw 11.5384615385vw 3.8461538462vw 3.8461538462vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item .content {
    padding: 30px 60px 30px 25px;
  }
}
.home-pr .home-column__list .home-column__item .content .icon {
  position: absolute;
  top: 50%;
  right: 2.5641025641vw;
  translate: 0 -50%;
}
@media screen and (max-width: 767px) {
  .home-pr .home-column__list .home-column__item .content .icon img {
    width: 5.1282051282vw;
  }
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item .content .icon {
    right: 18px;
  }
}
.home-pr .home-column__list .home-column__item + .home-column__item {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .home-pr .home-column__list .home-column__item + .home-column__item {
    margin-top: 30px;
  }
}

/*---------------------------------------------
feature-cycle
---------------------------------------------*/
@media screen and (min-width: 768px) {
  .feature-cycle .-figure img {
    width: 885px;
  }
}

/*---------------------------------------------
feature-method
---------------------------------------------*/
.feature-method h3 {
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .feature-method h3 {
    margin-top: 50px;
    margin-bottom: 10px;
    font-size: 2.4rem;
  }
}
.feature-method h3 span {
  font-size: 9.7435897436vw;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .feature-method h3 span {
    font-size: 4.6rem;
  }
}
.feature-method .feature-method_item {
  border-radius: 10px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  display: flex;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item {
    min-height: 388px;
  }
}
@media screen and (max-width: 767px) {
  .feature-method .feature-method_item {
    flex-direction: column;
  }
}
.feature-method .feature-method_item .-img {
  background-color: #eff7fc;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item .-img {
    width: 38%;
  }
}
@media screen and (max-width: 767px) {
  .feature-method .feature-method_item .-img {
    height: 82.0512820513vw;
  }
}
.feature-method .feature-method_item .-contBox {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6.4102564103vw 5.1282051282vw 7.6923076923vw 5.1282051282vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item .-contBox {
    padding: 35px 45px 35px 50px;
  }
}
.feature-method .feature-method_item .-contBox .-title {
  margin-bottom: 1em;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item .-contBox .-title {
    font-size: 2.1rem;
  }
}
.feature-method .feature-method_item.feature-method_item1 .-img img {
  width: 63.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item.feature-method_item1 .-img img {
    width: 290px;
  }
}
.feature-method .feature-method_item.feature-method_item2 .-img img {
  width: 63.5897435897vw;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item.feature-method_item2 .-img img {
    width: 277px;
  }
}
.feature-method .feature-method_item.feature-method_item3 img {
  width: 67.6923076923vw;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item.feature-method_item3 .-img img {
    width: 299px;
  }
}
.feature-method .feature-method_item.feature-method_item4 img {
  width: 67.6923076923vw;
}
@media screen and (min-width: 768px) {
  .feature-method .feature-method_item.feature-method_item4 .-img img {
    width: 296px;
  }
}

/*---------------------------------------------
feature-video
---------------------------------------------*/
.feature-video .-video {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-video .-video .youtube {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .feature-video .-video .youtube {
    width: 86%;
  }
}

/*---------------------------------------------
course-about
---------------------------------------------*/
.course-about {
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .course-about {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .course-about .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .course-about .section-title-01 {
    margin-left: 3.8461538462vw;
    margin-right: 3.8461538462vw;
  }
}
.course-about .course-about_block {
  padding: 6.4102564103vw 0 0;
  display: flex;
  flex-wrap: wrap;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block {
    padding: 50px 0 0;
  }
}
.course-about .course-about_block .course-about_item {
  width: 96.1538461538vw;
  color: white;
  padding: 8.9743589744vw 3.8461538462vw;
}
.course-about .course-about_block .course-about_item:nth-child(2) {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .course-about .course-about_block .course-about_item:nth-child(1) {
    padding-bottom: 28.2051282051vw;
  }
  .course-about .course-about_block .course-about_item:nth-child(2) {
    margin-top: -15.3846153846vw;
  }
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block .course-about_item {
    width: 51%;
    padding: 45px 35px;
  }
  .course-about .course-about_block .course-about_item:nth-child(2) {
    margin-top: -596px;
  }
}
.course-about .course-about_block .-tealBlue {
  background-color: #367aae;
}
.course-about .course-about_block .-purple {
  background-color: var(--color-purple);
}
.course-about .course-about_block .-green {
  background-color: var(--color-green);
}
.course-about .course-about_block .-orange {
  background-color: var(--color-orange);
}
.course-about .course-about_block .course-about_title {
  font-size: 4.6153846154vw;
  padding-bottom: 0.8em;
  margin-bottom: 0.7em;
  background-image: linear-gradient(to right, #fff 3px, transparent 3px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block .course-about_title {
    font-size: 2rem;
  }
}
.course-about .course-about_block .course-about_photos {
  display: flex;
  justify-content: space-between;
  margin: 8.9743589744vw 0 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block .course-about_photos {
    margin: 30px 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .course-about .course-about_block .course-about_photos img {
    width: 49.275%;
  }
}
.course-about .course-about_block .notice {
  font-size: 3.0769230769vw;
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block .notice {
    font-size: 1.3rem;
  }
}
.course-about .course-about_block .notice + .course-about_photos {
  margin-top: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .course-about .course-about_block .notice + .course-about_photos {
    margin-top: 15px;
  }
}
@media screen and (min-width: 768px) {
  .course-about.course-about-3 .course-about_item:nth-child(2) {
    margin-top: -630px;
  }
}

/*---------------------------------------------
course-results
---------------------------------------------*/
.course-results .course-results_block {
  border: solid 3.0769230769vw #fad214;
  border-radius: 10px;
  padding: 5.1282051282vw 2.5641025641vw;
  display: flex;
  font-size: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .course-results .course-results_block {
    border: solid 15px #fad214;
    padding: 35px 25px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .course-results .course-results_block {
    flex-direction: column;
  }
}
.course-results .course-results_block .box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .course-results .course-results_block .box {
    width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .course-results .course-results_block .box + .box {
    margin-top: 1.5em;
  }
}
.course-results .course-results_block .box p:first-child {
  margin-bottom: 0.5em;
}
.course-results .course-results_block .box:nth-child(1) {
  margin-right: 45px;
}
.course-results .course-results_block .box:nth-child(3) {
  flex: 1;
}
.course-results .course-results_block .box:nth-child(3) ul {
  column-count: 2;
}
@media screen and (min-width: 768px) {
  .course-results .course-results_block .box:nth-child(3) ul li {
    width: 200px;
  }
}
.course-results .course-results_block .box:nth-child(3) ul li.etc {
  margin-top: 1.2em;
}
@media screen and (max-width: 767px) {
  .course-results .course-results_block .box ul {
    column-count: 2;
  }
  .course-results .course-results_block .box ul li {
    width: 39.7435897436vw;
  }
}

/*---------------------------------------------
course-success
---------------------------------------------*/
@media screen and (min-width: 768px) {
  .course-success .success-list .-meta {
    min-height: 60px;
  }
}

/*---------------------------------------------
course-price
---------------------------------------------*/
.course-price .caption {
  margin-top: 11.5384615385vw;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 768px) {
  .course-price .caption {
    margin-top: 30px;
    font-size: 2rem;
  }
}
.course-price .price-table {
  width: 100%;
  font-size: 4.6153846154vw;
  border-collapse: collapse;
  border-left-style: solid;
  border-left-width: 1px;
  line-height: 1.38;
}
@media screen and (min-width: 768px) {
  .course-price .price-table {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .course-price .price-table {
    border-top-style: solid;
    border-top-width: 1px;
    table-layout: fixed;
  }
}
.course-price .price-table th {
  color: white;
  font-weight: normal;
  text-align: center;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .course-price .price-table th {
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .course-price .price-table th {
    width: 32%;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #fff;
  }
}
.course-price .price-table td {
  padding: 15px 10px;
  border-right-style: solid;
  border-right-width: 1px;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .course-price .price-table td {
    width: 68%;
  }
}
.course-price .notice {
  margin-top: 1.5em;
  font-size: 1.5rem;
}
.course-price.-purple .caption {
  color: var(--color-purple);
}
.course-price.-purple .price-table {
  border-left-color: var(--color-purple);
}
@media screen and (max-width: 767px) {
  .course-price.-purple .price-table {
    border-top-color: var(--color-purple);
  }
}
.course-price.-purple .price-table th {
  background-color: var(--color-purple);
}
.course-price.-purple .price-table td {
  border-right-color: var(--color-purple);
  border-bottom-color: var(--color-purple);
}
.course-price.-purple .price-table tr th:last-child {
  border-right-color: var(--color-purple);
}
@media screen and (max-width: 767px) {
  .course-price.-purple .price-table tr:last-child th {
    border-bottom-color: var(--color-purple);
  }
}
.course-price.-green .caption {
  color: var(--color-green);
}
.course-price.-green .price-table {
  border-left-color: var(--color-green);
}
@media screen and (max-width: 767px) {
  .course-price.-green .price-table {
    border-top-color: var(--color-green);
  }
}
.course-price.-green .price-table th {
  background-color: var(--color-green);
}
.course-price.-green .price-table td {
  border-right-color: var(--color-green);
  border-bottom-color: var(--color-green);
}
.course-price.-green .price-table tr th:last-child {
  border-right-color: var(--color-green);
}
@media screen and (max-width: 767px) {
  .course-price.-green .price-table tr:last-child th {
    border-bottom-color: var(--color-green);
  }
}
.course-price.-orange .caption {
  color: var(--color-orange);
}
.course-price.-orange .price-table {
  border-left-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .course-price.-orange .price-table {
    border-top-color: var(--color-orange);
  }
}
.course-price.-orange .price-table th {
  background-color: var(--color-orange);
}
.course-price.-orange .price-table td {
  border-right-color: var(--color-orange);
  border-bottom-color: var(--color-orange);
}
.course-price.-orange .price-table tr th:last-child {
  border-right-color: var(--color-orange);
}
@media screen and (max-width: 767px) {
  .course-price.-orange .price-table tr:last-child th {
    border-bottom-color: var(--color-orange);
  }
}

/*---------------------------------------------
classes
---------------------------------------------*/
.classes .classes-item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.23);
  overflow: hidden;
  margin-bottom: 8.9743589744vw;
}
@media screen and (min-width: 768px) {
  .classes .classes-item {
    margin-bottom: 50px;
  }
}
.classes .classes-item .namebox {
  background-color: #0084cf;
  color: #fff;
  padding: 3.8461538462vw;
}
@media screen and (min-width: 768px) {
  .classes .classes-item .namebox {
    padding: 17px 32px;
  }
}
.classes .classes-item .namebox h3 {
  border-left: solid 3px #e4f5ff;
  font-weight: bold;
  font-size: 6.6666666667vw;
  padding-left: 0.6em;
}
@media screen and (min-width: 768px) {
  .classes .classes-item .namebox h3 {
    font-size: 2.6rem;
  }
}
.classes .classes-item .details {
  width: 100%;
  display: flex;
  align-items: flex-start;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .classes .classes-item .details {
    flex-direction: column;
    padding: 5.1282051282vw 6.4102564103vw;
  }
}
.classes .classes-item .details .photos {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 2.5641025641vw;
}
@media screen and (max-width: 767px) {
  .classes .classes-item .details .photos > * {
    width: 35.8974358974vw;
    margin-bottom: 2.5641025641vw;
  }
  .classes .classes-item .details .photos > *:nth-child(1) {
    width: 100%;
  }
  .classes .classes-item .details .photos > *:nth-child(2) {
    width: 100%;
  }
  .classes .classes-item .details .photos > * img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .classes .classes-item .details .photos {
    width: 610px;
    margin-right: 20px;
    gap: 8px;
  }
  .classes .classes-item .details .photos > * {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 767px) {
  .classes .classes-item .details .data {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .classes .classes-item .details .data {
    flex: 1;
  }
}
.classes .classes-item .details .data p:first-child {
  padding: 3px 12px 12px;
}
.classes .classes-item .details .data dl dt {
  background-color: #e4f5ff;
  padding: 6px 12px;
}
.classes .classes-item .details .data dl dd {
  padding: 10px 12px 13px;
}
.classes .classes-item .teacher {
  width: 100%;
  display: flex;
  padding: 0 30px 40px;
}
@media screen and (max-width: 767px) {
  .classes .classes-item .teacher {
    flex-wrap: wrap;
    align-items: center;
  }
}
.classes .classes-item .teacher .img {
  width: 160px;
  margin-right: 35px;
}
.classes .classes-item .teacher .text {
  flex: 1;
  padding: 10px 0 0;
  font-size: 1.5rem;
  line-height: 1.8;
}
.classes .classes-item .teacher .text .title {
  font-size: 4.1025641026vw;
  font-weight: 500;
  border-left-style: solid;
  border-left-width: 3px;
  border-left-color: var(--color-blue);
  padding-left: 0.6em;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .classes .classes-item .teacher .text .title {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .classes .classes-item .teacher .description {
    width: 100%;
    margin-top: 7.6923076923vw;
  }
}
.classes .classes-item.-color2 .namebox {
  background-color: var(--color-green2);
}
.classes .classes-item.-color2 .details .data dl dt {
  background-color: #bff3f3;
}
.classes .classes-item.-color2 .teacher .text .title {
  border-left-color: var(--color-green2);
}

/*---------------------------------------------
form
---------------------------------------------*/
.contact-top .btn-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-top .btn-tel {
    width: 740px;
  }
}

/*---------------------------------------------
form
---------------------------------------------*/
.form-wrapper .control-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.form-wrapper .btn-submit {
  all: unset;
  cursor: pointer;
  max-width: 292px;
}
.form-wrapper .form-group {
  width: 740px;
  margin: 0 auto 16px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .form-wrapper .form-group {
    flex-direction: column;
    width: 100%;
  }
}
.form-wrapper .form-group .form-title {
  width: 100%;
  background-color: #0084cf;
  color: white;
  font-size: 1.6rem;
  margin-right: 7px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5px 65px 5px 18px;
  min-height: 60px;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-group .form-title {
    width: 230px;
  }
}
.form-wrapper .form-group .form-title .notice {
  font-size: 1.4rem;
}
.form-wrapper .form-group .form-title .required-icon {
  font-size: 1.4rem;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  width: 41px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  top: 50%;
  right: 18px;
  translate: 0 -50%;
}
.form-wrapper .form-group .form-title .required-icon._on {
  background-color: #fff100;
}
@media screen and (max-width: 767px) {
  .form-wrapper .form-group .form-input {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-group .form-input {
    flex: 1;
  }
}
.form-wrapper .form-group .form-input input[type=text], .form-wrapper .form-group .form-input input[type=tel], .form-wrapper .form-group .form-input input[type=email] {
  width: 100%;
  height: 60px;
  padding: 10px;
  border: 1px solid #c5c5c5;
  font-size: 1.6rem;
  outline: none;
}
.form-wrapper .form-group .form-input textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #c5c5c5;
  font-size: 1.6rem;
  outline: none;
}
.form-wrapper {
  /* チェックボックスを隠す */
}
.form-wrapper input[type=checkbox] {
  display: none; /* デフォルトのチェックボックスを非表示に */
}
.form-wrapper .checkbox-wrapper label span {
  position: relative;
  padding-left: 35px;
  display: inline-block;
  margin-bottom: 5px;
}
.form-wrapper .checkbox-wrapper label input[type=checkbox] + span:before {
  display: inline-block;
  width: 20px; /* 幅 */
  height: 20px; /* 高さ */
  border: 2px solid #ccc; /* ボーダー */
  background-color: white;
  position: relative;
  cursor: pointer; /* カーソルをポインタに */
  position: absolute;
  top: 2px;
  left: 0;
}
.form-wrapper .checkbox-wrapper label input[type=checkbox]:checked + span:before {
  background-color: #007BFF; /* 背景色 */
  border-color: #007BFF; /* ボーダー色 */
}
.form-wrapper .checkbox-wrapper label input[type=checkbox]:checked + span::after {
  content: ""; /* コンテンツを空に */
  display: block;
  position: absolute;
  left: 6px; /* 左からの位置 */
  top: 4px; /* 上からの位置 */
  width: 6px; /* チェックマークの幅 */
  height: 12px; /* チェックマークの高さ */
  border: solid white; /* チェックマークの色 */
  border-width: 0 2px 2px 0; /* チェックマークの形状 */
  transform: rotate(45deg); /* チェックマークの回転 */
}
.form-wrapper {
  /* カスタムチェックボックス */
}
.form-wrapper .custom-checkbox {
  display: inline-block;
  width: 20px; /* 幅 */
  height: 20px; /* 高さ */
  border: 2px solid #ccc; /* ボーダー */
  background-color: white;
  position: relative;
  cursor: pointer; /* カーソルをポインタに */
  margin-right: 10px;
}
.form-wrapper {
  /* チェックが入ったときのスタイル */
}
.form-wrapper input[type=checkbox]:checked + .custom-checkbox {
  background-color: #007BFF; /* 背景色 */
  border-color: #007BFF; /* ボーダー色 */
}
.form-wrapper {
  /* チェックマークの作成 */
}
.form-wrapper input[type=checkbox]:checked + .custom-checkbox::after {
  content: ""; /* コンテンツを空に */
  position: absolute;
  left: 6px; /* 左からの位置 */
  top: 2px; /* 上からの位置 */
  width: 6px; /* チェックマークの幅 */
  height: 12px; /* チェックマークの高さ */
  border: solid white; /* チェックマークの色 */
  border-width: 0 2px 2px 0; /* チェックマークの形状 */
  transform: rotate(45deg); /* チェックマークの回転 */
}
.form-wrapper .checkbox-label {
  display: flex;
  align-items: center;
  padding: 10px;
}
.form-wrapper .checkbox-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.form-wrapper input[type=radio] {
  display: none; /* デフォルトのチェックボックスを非表示に */
}
.form-wrapper .radio-wrapper label span {
  position: relative;
  padding-left: 30px;
  display: inline-block;
  margin-bottom: 5px;
}
.form-wrapper .radio-wrapper label input[type=radio] + span:before {
  display: inline-block;
  width: 20px; /* 幅 */
  height: 20px; /* 高さ */
  border: 2px solid #ccc; /* ボーダー */
  border-radius: 20px;
  background-color: white;
  position: relative;
  cursor: pointer; /* カーソルをポインタに */
  position: absolute;
  top: 2px;
  left: 0;
}
.form-wrapper .radio-wrapper label input[type=radio]:checked + span::after {
  content: ""; /* コンテンツを空に */
  display: block;
  position: absolute;
  left: 5px; /* 左からの位置 */
  top: 7px; /* 上からの位置 */
  width: 10px; /* 幅 */
  height: 10px; /* 高さ */
  border-radius: 10px;
  background-color: #007BFF;
}
.form-wrapper .radio-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.form-wrapper {
  /* セレクトボックスを隠す */
}
.form-wrapper select {
  display: none; /* デフォルトのセレクトボックスを非表示に */
}
.form-wrapper {
  /* カスタムセレクトボックス */
}
.form-wrapper .custom-select .custom-select-body {
  position: relative;
  display: block;
  width: 150px; /* 幅 */
  border: 1px solid #ccc; /* ボーダー */
  /*border-radius: 5px;  角の丸み */
  background-color: white; /* 背景色 */
  cursor: pointer; /* カーソルをポインタに */
  font-size: 16px; /* フォントサイズ */
}
.form-wrapper {
  /* 選択された項目を表示 */
}
.form-wrapper .selected-option {
  display: block; /* 選択された項目を表示 */
  position: relative;
  padding: 10px; /* 内側の余白 */
}
.form-wrapper .selected-option:before {
  display: block;
  content: "";
  width: 36px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #0084cf;
  z-index: 1;
}
.form-wrapper .selected-option:after {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 12px solid #ffffff;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  right: 11px;
  z-index: 2;
  margin-top: -6px;
}
.form-wrapper {
  /* オプションリストのスタイル */
}
.form-wrapper .options {
  display: none; /* 初期状態では非表示 */
  position: absolute;
  top: 100%; /* セレクトボックスの下に配置 */
  left: 0;
  right: 0;
  border: 1px solid #ccc; /* ボーダー */
  /*border-radius: 5px;  角の丸み */
  background-color: white; /* 背景色 */
  z-index: 1; /* 上に表示 */
  max-height: 150px; /* 最大高さ */
  overflow-y: auto; /* スクロール */
}
.form-wrapper {
  /* オプション項目のスタイル */
}
.form-wrapper .option {
  padding: 10px; /* 内側の余白 */
  cursor: pointer; /* カーソルをポインタに */
}
.form-wrapper {
  /* ホバー時のスタイル */
}
.form-wrapper .option:hover {
  background-color: #f0f0f0; /* ホバー時の背景色 */
}

/*---------------------------------------------
cat-kasugaiekimae-info
---------------------------------------------*/
.cat-kasugaiekimae-info .section-title-01 {
  color: var(--color-turquoise);
  border-bottom-color: var(--color-turquoise);
}
.cat-kasugaiekimae-info .home-pr .home-info__list .home-info__item .date {
  color: var(--color-turquoise);
}

/*---------------------------------------------
single-kasugaiekimae-info
---------------------------------------------*/
.single-kasugaiekimae-info .section-title-01 {
  color: var(--color-turquoise);
  border-bottom-color: var(--color-turquoise);
}
.single-kasugaiekimae-info .single h2 {
  border-bottom: solid 2px var(--color-turquoise);
  color: var(--color-turquoise);
}
.single-kasugaiekimae-info .single h3 {
  border-left: solid 5px var(--color-turquoise);
  color: var(--color-turquoise);
}
.single-kasugaiekimae-info .single .wp-block-table table td {
  border-color: var(--color-turquoise);
}
.single-kasugaiekimae-info .single .wp-block-table table th {
  border-color: var(--color-turquoise);
}
.single-kasugaiekimae-info .btn-tp1 {
  background-color: var(--color-turquoise);
}