@charset "UTF-8";
/*
* ＊＊＊＊＊＊＊＊＊＊ Org-Design Settings
* Written by  syam
* @author     ＊＊＊＊＊
* @copyright  Author
* @version    2.3.1 (＊＊/01/2024)
* ＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊＊ */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Shippori+Mincho&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/4.1.1/animate.min.css");
@import url("./icon-fonts.css");
:root {
  --base_bg: rgb(255, 255, 255);
  --head_bg: rgb(255, 255, 255);
  --main_bg: rgb(255, 255, 255);
  --foot_bg: rgb(28, 36, 49);
  --box-size: 325px;
  --mv-height:312px;
  --cv-height_pc:535px;
  --cv-height_sp:350px;
  --bk: 0,0,0;
  --white: 255,255,255;
  --bk-a: 51,51,51;
  --bk-b: 85,85,85;
  --bk-c: 159,159,159;
  --bk-d: 242,242,242;
  --red: 213,0,0;
  --pink: 235,40,118;
  --blue: 0,160,233;
  --blue-b: 4,136,196;
  --blue-c: 31,156,197;
  --green: 149,193,31;
  --green-b:65,195,192;
  --green-c:88,197,31;
  --yerrow: 255,220,0;
  --yerrow-b:221,191,3;
  --orange: 243,159,19;
  --sns-color_fb: rgb(59, 89, 152);
  --sns-color_tw: rgb(29, 161, 242);
  --sns-color_in: linear-gradient(-135deg, rgb(192, 0, 158) 5%, rgb(223, 0, 65) 15%, rgb(251, 137, 21) 80%);
  --sns-color_li: rgb(0, 185, 0);
  --base-font: Noto Sans JP, Roboto, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, Yu Gothic M, 游ゴシック Medium, Yu Gothic Medium, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN W3, HiraKakuProN-W3, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --mincho-font: Noto Serif JP, system-ui;
  --eng-font: Roboto, system-ui;
  --gothic-font: Noto Sans JP, Roboto, 游ゴシック体, YuGothic, 游ゴシック, Yu Gothic, Yu Gothic M, 游ゴシック Medium, Yu Gothic Medium, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN W3, HiraKakuProN-W3, ヒラギノ角ゴ ProN, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ Pro, Hiragino Kaku Gothic Pro, メイリオ, Meiryo, Osaka, ＭＳ Ｐゴシック, MS PGothic, sans-serif;
  --number-font: Roboto, system-ui;
  --over-wrap: 1600px;
  --max-wrap: 1200px;
  --inner-wrap_ll: 1400px;
  --inner-wrap_l: 1200px;
  --inner-wrap: 1000px;
  --inner-wrap_ml: 980px;
  --inner-wrap_m: 900px;
  --inner-wrap_ms: 800px;
  --inner-wrap_sl: 750px;
  --inner-wrap_s: 700px;
  --inner-wrap_ss: 640px;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1 !important;
  }
}
@keyframes fadeLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1 !important;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1 !important;
    transform: translateX(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1 !important;
    transform: translateY(0);
  }
}
@keyframes fadeBottom {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1 !important;
    transform: translateY(0);
  }
}
@keyframes active_menu {
  from {
    top: -200vh;
  }
  to {
    top: 0;
  }
}
@keyframes hidden_menu {
  from {
    top: 0;
  }
  to {
    top: -200vh;
  }
}
.anim {
  opacity: 0;
}

.fadeIn {
  animation: fadeIn 1s ease-in 0s 1 normal backwards;
}

.fadeLeft {
  animation: fadeLeft 1s ease-in 0s 1 normal backwards;
}

.fadeRight {
  animation: fadeRight 1s ease-in 0s 1 normal backwards;
}

.fadeUp {
  animation: fadeUp 1s ease-in 0s 1 normal backwards;
}

.fadeBottom {
  animation: fadeBottom 1s ease-in 0s 1 normal backwards;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

nav, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

input[type=submit], input[type=reset] {
  -webkit-appearance: button;
  appearance: button;
}

a,
area,
button,
[role=button],
input:not([type=range]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  resize: horizontal;
}

*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

*:focus {
  outline: none;
}

label, button, input[type=submit], input[type=image] {
  cursor: pointer;
}

sup, sub {
  height: 0;
  line-height: 1;
  vertical-align: baseline;
  _vertical-align: bottom;
  position: relative;
}

sup {
  bottom: 1.5ex;
  font-size: clamp(1.4rem, 1.4rem + 0vw, 1.4rem);
}

sub {
  top: 0.5ex;
}

.clearfix {
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.clear {
  clear: both;
}

html, body {
  overflow-x: hidden;
}

input {
  line-height: 1;
}

header, main, footer, section, a, nav, .base_section, article {
  position: relative;
}

a {
  display: inline-block;
  text-decoration: none;
}
a:hover {
  opacity: 0.75;
}
@media (min-width: 771px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

header, main, footer {
  width: 100%;
}

time {
  white-space: nowrap;
}

img {
  max-width: 100%;
}
img[src$=".svg"] {
  width: 100%;
}

object {
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6, img {
  line-height: 1.1;
}

.testcontainer {
  container: my-container/inline-size;
}

/*
-- margin-top（ボタン直前）
   ・PC：100px  /  ・SP：35px
*/
/*
-- margin-bottom（ボタン直前）
   ・PC：100px  /  ・SP：35px
*/
/*
-- 画像のPC/SP切り替え
*/
/*
-- 基本のテキストリンク設定
   ・デフォ下線：あり
   ・下線が消える
*/
/*
-- 基本のテキストリンク設定B
   ・デフォ下線：なし
   ・左から右へ下線が流れて消える
*/
/*
-- 基本のテキストリンク設定C
   ・デフォ下線：なし
   ・中央で下線が流れて消える
*/
/*
-- 画像hoverでズーム
*/
.single-story .other_data .other_unit {
  position: relative;
  display: block;
  width: 100%;
  color: rgba(var(--bk-a), 0.8);
}
.single-story .other_data .other_unit figure {
  position: relative;
  overflow: hidden;
}
.single-story .other_data .other_unit figure > span {
  position: relative;
  display: block;
  overflow: hidden;
}
.single-story .other_data .other_unit figure > span:before {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  display: block;
  background: rgba(var(--bk-a), 0.2);
}
.single-story .other_data .other_unit figure img {
  display: block;
  width: 100%;
  transition-duration: 0.8s;
  background-position: center;
  background-size: cover;
}
.single-story .other_data .other_unit:hover figure span img {
  transform: scale(1.1);
  transition-duration: 1.1s;
}

/*
-- 画像hoverでズーム&うっすら罫線
*/
/*
-- 画像のキャプション付きリンク
   ・デフォ下線：なし
   ・左から右へ下線が流れて消える
*/
html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--base-font);
  font-weight: 400;
  letter-spacing: 0.1rem;
  line-height: 1.8;
  font-feature-settings: "palt" 1;
  background: var(--base_bg);
  color: rgba(var(--bk), 0.8);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

main {
  background: url(../image/bg-main.png) repeat center;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.1;
}

p {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}

.base_wrapper {
  margin: auto;
  max-width: var(--max-wrap);
  padding-left: 3%;
  padding-right: 3%;
}
@media (max-width: 880px) {
  .base_wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }
}

main .base_wrapper {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}
@media (max-width: 880px) {
  main .base_wrapper {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
}

.section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section_title strong {
  font-size: clamp(1.625rem, 1.42rem + 1.02vw, 2.188rem);
  letter-spacing: 0.02rem;
  font-weight: 700;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 25px !important;
  padding-bottom: 15px !important;
}
.section_title strong:before, .section_title strong:after {
  content: "";
  display: block;
  width: 27px;
  height: 5px;
  position: absolute;
  bottom: 0;
}
.section_title strong:before {
  background: rgba(var(--yerrow, 1));
  left: calc(50% - 27px);
}
.section_title strong:after {
  background: rgba(var(--blue, 1));
  right: calc(50% - 27px);
}
.section_title span {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 35px !important;
}

.section_subs {
  text-align: center;
  margin-bottom: 45px !important;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 600;
}

.section_catch {
  text-align: center;
  margin-bottom: 45px !important;
}

.bg_yellow {
  background: url(../image/bg-lpcolumn_yellow.png) no-repeat center/cover;
}

input[type=text], input[type=email], input[type=tel], input[type=password], textarea {
  padding: 10px;
  width: 100%;
  height: 35px;
  border: 1px solid rgba(var(--bk), 0.4);
  font-size: clamp(1.6rem, 1.6rem + 0vw, 1.6rem);
}

textarea {
  resize: vertical;
  height: 100px;
}

input[type=text], input[type=email], input[type=tel], input[type=password], input[type=file], input[type=time] {
  resize: none;
}

input[type=email], input[type=tel], input[type=password], input.han {
  ime-mode: disabled;
}

::placeholder {
  color: rgba(var(--bk) 0.3);
}

form {
  position: relative;
}

.breadcrumbs {
  border-bottom: 1px solid rgba(var(--bk-a), 0.2);
}
.breadcrumbs ul {
  padding: 15px 3% !important;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
}
.breadcrumbs ul * {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  line-height: 1;
  color: rgba(var(--bk-a), 1);
}
.breadcrumbs ul li {
  display: flex;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type):after {
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e923";
  margin: 0 3px;
  position: relative;
  top: 1px;
}
.breadcrumbs ul li:nth-of-type(1):before {
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\f015";
  margin: 0 3px 0 0;
  position: relative;
  top: 1px;
}
@media (max-width: 570px) {
  .breadcrumbs ul {
    display: none;
  }
}

.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
}
.pagination ul li {
  margin: 0 3px;
}
.pagination ul li a, .pagination ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 40px;
  height: 40px;
  text-decoration: none;
  color: rgba(var(--bk), 1);
  border: 1px solid rgba(var(--bk), 1);
  border-radius: 3px;
}
.pagination ul li a:hover, .pagination ul li span:hover {
  background: rgba(var(--bk), 1);
  opacity: 1;
  color: rgba(var(--white), 1);
}
.pagination ul li span {
  color: rgba(var(--bk), 1);
  background: rgba(var(--bk), 1);
}
.pagination ul li a:before, .pagination ul li a:after {
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
.pagination ul li.prevnav a:before {
  content: "\e93d";
  left: 0;
}
.pagination ul li.nextnav a:after {
  content: "\e923";
  right: 0;
}

.btn {
  border: none;
  width: 270px;
}
.btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  font-weight: 500;
  width: 270px;
  height: 60px;
  color: rgba(var(--bk), 1);
}
.btn.search a, .btn.yerrow a {
  background: rgba(var(--yerrow), 1);
  border-bottom: 5px solid rgba(var(--yerrow-b), 1);
}
.btn.def {
  margin-top: 55px !important;
  margin: auto;
}
@media (max-width: 570px) {
  .btn.def {
    margin-top: 35px !important;
  }
}
.btn.blue a {
  color: rgba(var(--white), 1);
  background: rgba(var(--blue), 1);
  border-bottom: 5px solid rgba(var(--blue-b), 1);
}

.mod_jpx {
  background: rgba(var(--bk-d), 1);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 5px 5%;
  gap: 0 10px;
}
@media (max-width: 770px) {
  .mod_jpx {
    justify-content: center;
  }
}
.mod_jpx img {
  max-width: 25px;
}
.mod_jpx span {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}

.mod_telephones {
  line-height: 1.3;
}
.mod_telephones * {
  display: block;
  text-align: center;
}
.mod_telephones dt {
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
  font-weight: 600;
}
.mod_telephones dd a {
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  color: rgba(var(--blue), 1);
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 5px !important;
}
.mod_telephones dd span {
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
  font-weight: 400;
}

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

#page_top, #login_mode, #page_edit {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  position: fixed;
  z-index: 90005;
}
#page_top:before, #login_mode:before, #page_edit:before {
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#login_mode, #page_edit {
  bottom: 2%;
  color: rgba(var(--bk), 0.6);
  width: 25px;
  height: 25px;
}
#login_mode:before, #page_edit:before {
  font-size: clamp(1.4rem, 1.0444444444rem + 0.7407407407vw, 1.8rem);
}

#page_top {
  right: 2%;
  bottom: 5%;
  background: rgba(var(--bk), 0.8);
  color: rgba(var(--white), 1);
  border-radius: 50%;
  width: 45px;
  height: 45px;
}
#page_top:before {
  content: "\e978";
  font-size: clamp(1.8rem, 1.2666666667rem + 1.1111111111vw, 2.4rem);
}

#login_mode {
  right: 2%;
}
#login_mode:before {
  content: "\e9a8";
}

#page_edit {
  right: 4%;
}
#page_edit:before {
  content: "\e917";
}

.mod_obtained .obtained_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px 1%;
}
.mod_obtained .obtained_list dl {
  width: var(--box-size);
  min-width: var(--box-size);
  min-height: var(--box-size);
  border: 5px solid rgba(var(--bk), 0.1);
  padding: 5px 4.5%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(var(--white), 1);
}
@media (max-width: 880px) {
  .mod_obtained .obtained_list dl {
    border-radius: 0;
    min-height: auto;
    min-width: 0;
    justify-content: stretch;
    width: 49%;
    padding: 15px;
  }
  .mod_obtained .obtained_list dl:last-of-type {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .mod_obtained .obtained_list dl {
    width: 100%;
  }
}
.mod_obtained .obtained_list dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 20px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.4;
}
.mod_obtained .obtained_list dl dt:before {
  margin: auto;
  margin-bottom: 10px !important;
  content: "";
  width: 30px;
  height: 27px;
  background: url(../image/ic-curriculum_list_bl.png) no-repeat center/contain;
}
@media (max-width: 880px) {
  .mod_obtained .obtained_list dl dt {
    min-height: 4em;
  }
}
@media (max-width: 480px) {
  .mod_obtained .obtained_list dl dt {
    min-height: 0;
    display: block;
  }
  .mod_obtained .obtained_list dl dt:before {
    width: 20px;
    height: 18px;
  }
}
.mod_obtained .obtained_list dl dd {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
.mod_obtained .obtained_list dl:nth-of-type(1) {
  border-color: rgba(var(--orange), 1);
}
.mod_obtained .obtained_list dl:nth-of-type(1) dt:before {
  background-image: url(../image/ic-curriculum_list_y.png);
}
.mod_obtained .obtained_list dl:nth-of-type(2) {
  border-color: rgba(var(--green), 1);
}
.mod_obtained .obtained_list dl:nth-of-type(2) dt:before {
  background-image: url(../image/ic-curriculum_list_g.png);
}
.mod_obtained .obtained_list dl:nth-of-type(3) {
  border-color: rgba(var(--pink), 1);
}
.mod_obtained .obtained_list dl:nth-of-type(3) dt:before {
  background-image: url(../image/ic-curriculum_list_r.png);
}
.mod_obtained .obtained_list dl:nth-of-type(4) {
  border-color: rgba(var(--blue), 1);
}
.mod_obtained .obtained_list dl:nth-of-type(4) dt:before {
  background-image: url(../image/ic-curriculum_list_bl.png);
}
.mod_obtained .obtained_list dl:nth-of-type(5) {
  border-color: rgba(var(--yerrow), 1);
}
.mod_obtained .obtained_list dl:nth-of-type(5) dt:before {
  background-image: url(../image/ic-curriculum_list_ly.png);
}

.mod_ambassador {
  background: url(../image/bg_furuta.png) no-repeat center/cover;
}
.mod_ambassador article {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px 5%;
}
.mod_ambassador article figure {
  max-width: 480px;
}
.mod_ambassador article .text_wrap {
  line-height: 2.4;
}
@media (max-width: 770px) {
  .mod_ambassador article {
    flex-direction: column;
  }
  .mod_ambassador article figure {
    margin: auto;
  }
  .mod_ambassador article .text_wrap br {
    display: none;
  }
}

.mod_search {
  background: url(../image/bg-lpcolumn_glay.png) no-repeat center/cover;
}
.mod_search article {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px 5%;
}
@media (max-width: 770px) {
  .mod_search article {
    flex-direction: column;
    justify-content: center;
  }
}
.mod_search article figure {
  min-width: 200px;
  max-width: 320px;
}
@media (max-width: 570px) {
  .mod_search article figure {
    display: none;
  }
}
.mod_search article .search_wrap p {
  text-align: center;
}
.mod_search article .search_wrap ul {
  margin-top: 35px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px 3%;
}
@media (max-width: 880px) {
  .mod_search article .search_wrap ul {
    flex-direction: column;
  }
}
@media (max-width: 770px) {
  .mod_search article .search_wrap ul {
    flex-direction: row;
  }
}
@media (max-width: 570px) {
  .mod_search article .search_wrap ul {
    flex-direction: column;
  }
}

.mod_thinking .thinking_wrap {
  border: 5px solid rgba(var(--bk), 0.1);
  padding: 30px;
  text-align: center;
}
.mod_thinking .thinking_wrap h1 {
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  font-weight: 600;
  margin-bottom: 35px !important;
}
@media (max-width: 570px) {
  .mod_thinking .thinking_wrap h1 {
    margin-bottom: 15px !important;
  }
  .mod_thinking .thinking_wrap p {
    text-align: left;
  }
}

.mod_pickup_pg .pickup_list {
  display: flex;
  justify-content: center;
  gap: 10px 3%;
}
.mod_pickup_pg .pickup_list a {
  color: rgba(var(--bk), 1);
}
.mod_pickup_pg .pickup_list .pickup_unit {
  width: 33.3333333333%;
  border: 1px solid rgba(var(--bk), 0.1);
  background: rgba(var(--white), 1);
  padding: 15px;
}
.mod_pickup_pg .pickup_list .pickup_unit figure {
  margin-bottom: 15px !important;
}
.mod_pickup_pg .pickup_list .pickup_unit dl {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.mod_pickup_pg .pickup_list .pickup_unit dl dt {
  font-weight: 600;
  margin-bottom: 5px !important;
}
@media (max-width: 770px) {
  .mod_pickup_pg .pickup_list {
    flex-wrap: wrap;
  }
  .mod_pickup_pg .pickup_list .pickup_unit {
    width: 48%;
  }
}
@media (max-width: 570px) {
  .mod_pickup_pg .pickup_list {
    flex-direction: column;
  }
  .mod_pickup_pg .pickup_list .pickup_unit {
    width: 100%;
  }
}

.course_wrapper {
  margin-bottom: 50px !important;
}
.course_wrapper h2 {
  text-align: center;
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  font-weight: 600;
  padding: 10px;
  color: rgba(var(--white), 1);
  margin-bottom: 15px !important;
  background: rgba(var(--bk-a), 1);
  width: 100%;
}
.course_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 1%;
}
@media (max-width: 880px) {
  .course_wrapper {
    justify-content: center;
  }
}
.course_wrapper .course_unit {
  width: 32.3333333333%;
  padding: 25px;
  border: 3px solid rgba(var(--bk-a), 1);
}
.course_wrapper .course_unit dt {
  text-align: center;
}
.course_wrapper .course_unit dt span, .course_wrapper .course_unit dt strong {
  display: block;
}
.course_wrapper .course_unit dt span {
  font-weight: 600;
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
.course_wrapper .course_unit dt strong {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
}
.course_wrapper .course_unit dt {
  margin-bottom: 15px !important;
  min-height: 40px;
}
@media (max-width: 880px) {
  .course_wrapper .course_unit dt br {
    display: none;
  }
}
.course_wrapper .course_unit dd {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
.course_wrapper .course_unit dd:nth-of-type(1) {
  margin-bottom: 35px !important;
  min-height: 70px;
}
.course_wrapper .course_unit dd:nth-of-type(2) {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  text-align: left;
  width: 100%;
}
.course_wrapper .course_unit dd:nth-of-type(2):before {
  margin: auto;
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e9af";
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.5rem);
  font-weight: 600;
}
@media (max-width: 880px) {
  .course_wrapper .course_unit {
    width: 49%;
  }
  .course_wrapper .course_unit:nth-of-type(3) {
    width: 100%;
  }
  .course_wrapper .course_unit:nth-of-type(3) dt, .course_wrapper .course_unit:nth-of-type(3) dd {
    min-height: auto !important;
  }
}
@media (max-width: 770px) {
  .course_wrapper .course_unit {
    width: 100%;
  }
  .course_wrapper .course_unit dt, .course_wrapper .course_unit dd {
    min-height: auto !important;
  }
}

a[data-fancybox] img {
  cursor: zoom-in;
}

.fancybox__container {
  --fancybox-bg: rgba(var(--bk), 0.85);
}
.fancybox__container .fancybox__content {
  max-width: 850px;
  box-sizing: content-box;
  padding: 1rem;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 8px 23px rgba(var(--bk), 0.35);
}
.fancybox__container .fancybox__content > .carousel__button.is-close {
  right: 25px;
  top: 25px;
  background: rgba(var(--bk), 0.8);
  width: 30px;
  height: 30px;
}

.fancybox__caption {
  max-width: 80%;
  --fancybox-opacity: 1;
}

.fancybox__nav {
  display: none;
}

header {
  z-index: 15000;
  background: rgba(var(--white), 1);
  border-bottom: 2px solid rgba(var(--yerrow), 1);
}
header.fixed {
  position: fixed;
  left: 0;
  top: 0;
  opacity: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
header.fixed .mod_jpx {
  display: none;
}
header.fixed.show {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

@media (min-width: 1200px) {
  header article {
    position: relative;
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
  }
  header article .hd_logo {
    display: flex;
    align-items: center;
  }
  header article .hd_logo a {
    max-width: 170px;
    margin-right: 10px;
  }
  header article .hd_logo p {
    font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  }
  header article > .mod_telephones {
    display: flex;
    margin-left: auto;
    gap: 10px;
  }
  header article > .mod_telephones .btn a {
    font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
    color: rgba(var(--bk), 1);
    background: rgba(var(--yerrow), 1);
    border-bottom: 5px solid rgba(var(--yerrow-b), 1);
    width: 270px;
    height: 60px;
    font-weight: 600;
  }
  header article nav .mod_telephones {
    display: none;
  }
  header.fixed .hd_logo a {
    max-width: 100px;
  }
}
@media (max-width: 1199px) {
  header article .hd_logo {
    text-align: center;
    padding: 10px 0;
  }
  header article .hd_logo a {
    max-width: 120px;
  }
  header article .hd_logo p {
    display: none;
  }
  header article > .mod_telephones {
    display: none;
  }
}
@media (max-width: 770px) {
  header .mod_jpx {
    display: none;
  }
}
@media (max-width: 1199px) {
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: fixed;
    right: 2dvw;
    top: 50px;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
}
@media (max-width: 1199px) and (max-width: 770px) {
  .menu-trigger {
    top: 15px;
  }
}
@media (max-width: 1199px) {
  .menu-trigger i {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .menu-trigger i:before {
    font-size: clamp(1.875rem, 1.83rem + 0.23vw, 2rem);
    content: "\e968";
    display: inline-block;
    font-family: "icon-fonts" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .menu-trigger i:after {
    content: "Menu";
    font-size: clamp(0.5rem, 0.455rem + 0.23vw, 0.625rem);
    letter-spacing: 0;
  }
  .menu-trigger.active {
    z-index: -1;
  }
  header nav {
    z-index: 99999;
  }
  header nav .menu-trigger {
    position: absolute;
    left: -45px;
    top: 3px !important;
    background: rgba(var(--yerrow), 1);
    color: rgba(var(--white), 1);
    width: 45px;
    height: 45px;
  }
  header nav .menu-trigger i:before {
    content: "\e933";
  }
  header nav .menu-trigger i:after {
    content: "Close";
  }
  header.fixed .menu-trigger {
    top: 15px;
  }
}
header nav ul li {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  font-weight: 500;
}
header nav ul li a {
  color: rgba(var(--bk), 1);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

@media (min-width: 1200px) {
  header nav {
    margin-top: 15px !important;
    width: 100%;
  }
  header nav ul {
    display: flex;
    align-items: center;
    border-left: 1px solid rgba(var(--bk-a), 0.2);
  }
  header nav ul li {
    width: 14.2857142857%;
    border-right: 1px solid rgba(var(--bk-a), 0.4);
  }
  header nav ul li:first-of-type {
    display: none;
  }
  header nav ul li.btn {
    position: absolute;
    right: 0;
    top: -80px;
  }
  header.fixed nav ul li.btn {
    top: -60px;
    width: 200px;
  }
  header.fixed nav ul li.btn a {
    height: 45px;
    width: 200px;
  }
}
@media (max-width: 1199px) {
  header nav {
    position: fixed;
    height: 100dvh;
    width: 100%;
    max-width: 85%;
    right: -45px;
    top: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.5s ease-in-out; /* スムーズにアニメーション */
    transform: translateX(100%); /* 右に隠す */
    background: rgba(var(--white), 0.95);
  }
  header nav .hd_menu-unit {
    display: none;
    width: 100%;
  }
  header nav .hd_menu-unit ul li {
    border-bottom: 1px solid rgba(var(--bk-a), 0.25);
  }
  header nav .hd_menu-unit ul li a {
    justify-content: flex-start;
    padding: 15px 25px;
  }
  header nav .hd_menu-unit ul li.btn {
    margin: 25px auto 30px;
  }
  header nav .hd_menu-unit ul li.btn a {
    justify-content: center;
  }
  header nav.active {
    width: 100dvw;
    transform: translateX(0);
  }
  header nav.active .hd_menu-unit {
    display: block;
  }
  header nav.active .mod_telephones {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 35px !important;
  }
  header nav.active .mod_telephones .btn {
    margin: auto;
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 35px !important;
  }
  header nav.active .mod_telephones .btn a {
    font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
    border: none;
    color: rgba(var(--bk), 1);
    background: rgba(var(--yerrow), 1);
    border-bottom: 5px solid rgba(var(--yerrow-b), 1);
    width: 270px;
    height: 60px;
    font-weight: 600;
  }
}
@media (max-width: 570px) {
  header nav .hd_menu-unit ul li.btn {
    width: 80%;
    max-width: 80%;
  }
  header nav .hd_menu-unit ul li.btn a {
    width: 100%;
  }
}
footer {
  background: var(--foot_bg);
}
footer article {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 35px !important;
  padding-bottom: 15px !important;
}
@media (max-width: 770px) {
  footer article {
    gap: 0 20px;
  }
}
footer article .ft_bnrs {
  margin-bottom: 35px !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
  width: 100%;
}
footer article .ft_bnrs li {
  width: calc(50% - 10px);
}
@media (max-width: 570px) {
  footer article .ft_bnrs li {
    width: 100%;
  }
}
footer article .ft_bnrs li:nth-child(n+3) {
  width: calc(25% - 15px);
}
@media (max-width: 770px) {
  footer article .ft_bnrs li:nth-child(n+3) {
    width: calc(50% - 10px);
  }
}
footer article .ft_bnrs li a {
  display: block;
}
footer article .ft_bnrs li a img {
  display: block;
  width: 100%;
}
footer article .ft_links, footer article .classroom_links {
  color: rgba(var(--white, 1));
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
footer article .ft_links > dt, footer article .classroom_links > dt {
  margin-bottom: 15px !important;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 500;
}
footer article .ft_links a, footer article .classroom_links a {
  color: rgba(var(--white), 1);
}
@media (max-width: 770px) {
  footer article .ft_links, footer article .classroom_links {
    border-top: 1px solid rgba(var(--white), 1) !important;
  }
  footer article .ft_links > dt, footer article .classroom_links > dt {
    padding: 10px 0;
    margin-bottom: 0px !important;
    position: relative;
    display: flex;
    align-items: center;
  }
  footer article .ft_links > dt:after, footer article .classroom_links > dt:after {
    display: inline-block;
    font-family: "icon-fonts" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\e979";
    position: absolute;
    right: 0;
    font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  }
  footer article .ft_links > dd, footer article .classroom_links > dd {
    display: none !important;
  }
  footer article .ft_links.active, footer article .classroom_links.active {
    margin-bottom: 35px !important;
  }
  footer article .ft_links.active > dt, footer article .classroom_links.active > dt {
    border-bottom: 1px dotted rgba(var(--white), 0.3) !important;
  }
  footer article .ft_links.active > dt:after, footer article .classroom_links.active > dt:after {
    content: "\e978";
  }
  footer article .ft_links.active > dd, footer article .classroom_links.active > dd {
    display: block !important;
    margin-top: 25px !important;
  }
}
footer article .ft_links {
  width: 15%;
}
@media (max-width: 880px) {
  footer article .ft_links {
    width: 20%;
  }
}
@media (max-width: 770px) {
  footer article .ft_links {
    width: 100%;
  }
}
footer article .ft_links li:not(:last-of-type) {
  margin-bottom: 10px !important;
}
footer article .ft_links li a {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  display: flex;
  align-items: center;
  white-space: nowrap;
}
footer article .ft_links li a:before {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e99b";
}
footer article .classroom_links {
  width: 63%;
  padding-left: 2%;
  border-left: 1px solid rgba(var(--bk-c), 1);
}
@media (max-width: 1070px) {
  footer article .classroom_links {
    width: 100%;
    padding: 0;
    border: none;
  }
}
footer article .classroom_links.active {
  margin-bottom: 0px !important;
}
footer article .classroom_links.active > dd {
  display: flex !important;
  flex-wrap: wrap;
  gap: 0 20px;
}
footer article .area_list {
  width: calc(50% - 10px);
}
@media (max-width: 660px) {
  footer article .area_list {
    width: 100%;
  }
}
footer article .area_list dl {
  display: flex;
  align-items: center;
  margin-bottom: 10px !important;
}
footer article .area_list dl dt {
  min-width: 50px;
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  font-weight: 600;
}
footer article .area_list dl dd {
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
}
footer article .area_list dl dd ul {
  display: flex;
}
footer article .area_list dl dd ul li {
  line-height: 1.1;
}
footer article .area_list dl dd ul li:not(:last-of-type) {
  border-right: 1px solid rgba(var(--white), 1);
}
footer article .area_list dl dd ul li a {
  display: inline-block;
  padding: 0 5px;
}
footer article .area_list dl dd ul li a span {
  white-space: nowrap;
}
footer article .last_copy {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  width: 100%;
  display: block;
  text-align: right;
  color: rgba(var(--bk-c), 1);
  margin-top: 25px !important;
}
@media (max-width: 570px) {
  footer article .last_copy {
    text-align: left;
  }
}
footer small {
  display: block;
  padding: 10px 3%;
  text-align: center;
  background: rgba(var(--bk), 1);
  color: rgba(var(--white), 1);
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  line-height: 1.1;
}
footer .mod_jpx {
  display: none;
}
@media (max-width: 770px) {
  footer .mod_jpx {
    display: flex;
  }
}

#kv_field {
  background-size: cover;
  background-position: center;
  min-height: 570px;
}
#kv_field .kv_data {
  padding-top: 20vh;
  padding-left: 10vw;
}
@media (max-width: 570px) {
  #kv_field .kv_data {
    padding-top: 40vh;
    padding-left: 3vw;
  }
}
#kv_field .kv_data h1, #kv_field .kv_data p {
  text-shadow: 0 0 3px rgba(var(--bk), 1);
  color: rgba(var(--white), 1);
  font-weight: 700;
  letter-spacing: 0.4rem;
}
#kv_field .kv_data h1 span, #kv_field .kv_data p span {
  display: block;
}
#kv_field .kv_data h1 {
  line-height: 1.5;
  font-size: clamp(2.25rem, 1.705rem + 2.73vw, 3.75rem);
}
#kv_field .kv_data h1 sub {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
}
#kv_field .kv_data p {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
@media (max-width: 480px) {
  #kv_field .kv_data p span {
    display: inline;
  }
}

#mv_field {
  background: url(../image/bg-mv.png) no-repeat center/cover;
  min-height: var(--mv-height);
  height: var(--mv-height);
  border-bottom: 1px solid rgba(var(--bk-a), 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
}
#mv_field article {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  color: rgba(var(--white), 1);
  background: transparent;
}
#mv_field article h1 {
  margin-top: -15px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#mv_field article h1 span {
  padding: 5px;
  border-top: 1px solid rgba(var(--white), 1);
  border-bottom: 1px solid rgba(var(--white), 1);
  transform: rotate(-7deg);
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
#mv_field article h1 strong {
  font-size: clamp(2rem, 1.818rem + 0.91vw, 2.5rem);
  font-weight: 700;
  margin: 15px auto;
}
#mv_field article p {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 500;
}

.home .mod_study .section_title strong:before {
  background: rgba(var(--white, 1));
}
.home .mod_study .section_title strong:after {
  background: rgba(var(--pink, 1));
}
.home .mod_study .study_type {
  display: flex;
  justify-content: center;
  gap: 15px 5%;
}
.home .mod_study .study_type figure {
  width: 50%;
  max-width: 400px;
}
.home .mod_study .study_type figure figcaption {
  display: flex;
  justify-content: center;
  padding: 10px;
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  font-weight: 600;
}
.home .mod_study .study_type figure a {
  color: rgba(var(--white), 1);
}
.home .mod_study .study_type figure a span {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 100%;
}
.home .mod_study .study_type figure a span img {
  transition-duration: 1.5s;
}
.home .mod_study .study_type figure a:hover {
  opacity: 1;
}
.home .mod_study .study_type figure a:hover img {
  transform: scale(1.1);
  transition-duration: 1.5s;
}
.home .mod_study .study_type figure:nth-of-type(1) {
  border: 5px solid rgba(var(--green-b), 1);
  background: rgba(var(--green-b), 1);
}
.home .mod_study .study_type figure:nth-of-type(2) {
  border: 5px solid rgba(var(--blue), 1);
  background: rgba(var(--blue), 1);
}
@media (max-width: 570px) {
  .home .mod_study .study_type {
    flex-direction: column;
    align-items: center;
  }
  .home .mod_study .study_type figure {
    width: 100%;
  }
}
.home .mod_news_list {
  background: url(../image/bg-lpcolumn_illust.png) no-repeat center/cover;
}
@media (max-width: 770px) {
  .home .mod_news_list {
    background-image: url(../image/bg-lpcolumn_illust_sp.png);
  }
}
.home .news_wrapper dl {
  margin-bottom: 35px !important;
}
.home .news_wrapper dl dt, .home .news_wrapper dl dd {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.home .news_wrapper dl dt time {
  font-weight: 600;
  letter-spacing: 0.1rem;
}
.home .news_wrapper dl dt span.ic-category {
  min-width: 75px;
  color: rgba(var(--white), 1);
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  padding: 2px 10px;
}
.home .news_wrapper dl dt span.media {
  background: rgba(var(--green-b), 1);
}
.home .news_wrapper dl dt span.news {
  background: rgba(var(--blue), 1);
}
.home .news_wrapper dl dd {
  margin-top: 5px !important;
}
.home .news_wrapper dl dd a {
  color: rgba(var(--bk), 8);
  text-decoration: underline;
}
.home .news_wrapper dl dd a:hover {
  text-decoration: none;
}

.about .mod_obtained .btn, .page-id-34 .mod_obtained .btn {
  display: none;
}
.about .concept_7hj, .page-id-34 .concept_7hj {
  background: url(../image/bg-lpcolumn_illust.png) no-repeat center/cover;
}
@media (max-width: 770px) {
  .about .concept_7hj, .page-id-34 .concept_7hj {
    background-image: url(../image/bg-lpcolumn_illust_sp.png);
  }
}
.about .concept_7hj .concept_7hj_wrapper, .page-id-34 .concept_7hj .concept_7hj_wrapper {
  border: 10px solid rgba(var(--green-b), 0.6);
  background: rgba(var(--white), 0.4);
  padding: 35px;
  max-width: var(--inner-wrap);
  margin: auto;
}
.about .concept_7hj .concept_7hj_wrapper h2, .about .concept_7hj .concept_7hj_wrapper .concept_catch, .page-id-34 .concept_7hj .concept_7hj_wrapper h2, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_catch {
  text-align: center;
  margin-bottom: 35px !important;
  line-height: 1.6;
}
.about .concept_7hj .concept_7hj_wrapper h2, .page-id-34 .concept_7hj .concept_7hj_wrapper h2 {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  color: rgba(var(--blue), 1);
  font-weight: 600;
}
.about .concept_7hj .concept_7hj_wrapper .concept_catch, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_catch {
  font-weight: 600;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
@media (max-width: 770px) {
  .about .concept_7hj .concept_7hj_wrapper .concept_catch, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_catch {
    text-align: left;
  }
}
.about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap {
  padding: 25px 0 0;
  border-top: 1px solid rgba(var(--bk-a), 0.3);
  display: flex;
  justify-content: center;
  gap: 25px;
}
.about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit {
  width: 50%;
}
.about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit:last-of-type, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit:last-of-type {
  width: calc(50% + 25px);
  padding-left: 25px;
  border-left: 1px solid rgba(var(--bk-a), 0.3);
}
.about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit p:not(:last-of-type), .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit p:not(:last-of-type) {
  margin-bottom: 15px !important;
}
@media (max-width: 880px) {
  .about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap {
    flex-direction: column;
  }
  .about .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit, .page-id-34 .concept_7hj .concept_7hj_wrapper .concept_7hj_wrap .text_unit {
    width: 100% !important;
    border: none !important;
    padding: 0 !important;
  }
}
.about .about_cv, .page-id-34 .about_cv {
  height: var(--cv-height_pc);
}
@media (max-width: 770px) {
  .about .about_cv, .page-id-34 .about_cv {
    height: var(--cv-height_sp);
  }
}
.about .about_cv, .page-id-34 .about_cv {
  background: url(../image/cv-about.jpg) no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.about .about_cv h1 span, .page-id-34 .about_cv h1 span {
  color: rgba(var(--white), 1);
  font-size: clamp(1.125rem, 0.716rem + 2.05vw, 2.25rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  padding: 10px;
}
.about .about_cv h1 span:nth-of-type(1), .page-id-34 .about_cv h1 span:nth-of-type(1) {
  background: rgba(var(--blue), 1);
}
.about .about_cv h1 span:nth-of-type(2), .page-id-34 .about_cv h1 span:nth-of-type(2) {
  background: rgba(var(--green-b), 1);
}
.about .about_cv h1, .page-id-34 .about_cv h1 {
  padding-bottom: 60px !important;
}
@media (max-width: 770px) {
  .about .about_cv h1, .page-id-34 .about_cv h1 {
    padding-bottom: 45px !important;
  }
}
@media (max-width: 570px) {
  .about .about_cv h1, .page-id-34 .about_cv h1 {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .about .about_cv h1 span, .page-id-34 .about_cv h1 span {
    display: block;
    width: 100%;
  }
  .about .about_cv h1 span:not(:last-of-type), .page-id-34 .about_cv h1 span:not(:last-of-type) {
    margin-bottom: 5px !important;
  }
}
.about .about_messege .youtube_frame, .page-id-34 .about_messege .youtube_frame {
  max-width: 560px;
  margin: auto;
}
.about .about_this article, .page-id-34 .about_this article {
  background: rgba(var(--bk-d), 1);
  max-width: var(--inner-wrap);
  margin: auto;
  margin-bottom: 55px !important;
}
@media (max-width: 770px) {
  .about .about_this article, .page-id-34 .about_this article {
    margin-bottom: 35px !important;
  }
}
.about .about_this article p, .page-id-34 .about_this article p {
  text-align: left;
}
.about .about_this article .books_list, .page-id-34 .about_this article .books_list {
  margin-bottom: 35px !important;
  padding: 10px;
  background: url(../image/bg-hougan.png) repeat 0 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}
.about .about_this article .books_list:before, .page-id-34 .about_this article .books_list:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(var(--white), 0.3);
  position: absolute;
  left: 0;
  top: 0;
}
.about .about_this article .books_list figure, .page-id-34 .about_this article .books_list figure {
  width: 33.3333333333%;
  position: relative;
  z-index: 1;
  margin: auto;
}
.about .about_this article .books_list figure img, .page-id-34 .about_this article .books_list figure img {
  max-height: 360px;
  margin: auto;
  border: 1px solid rgba(var(--bk), 0.2);
  margin-bottom: 10px !important;
}
.about .about_this article .books_list figure figcaption, .page-id-34 .about_this article .books_list figure figcaption {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
@media (max-width: 770px) {
  .about .about_this article .books_list, .page-id-34 .about_this article .books_list {
    flex-wrap: wrap;
  }
  .about .about_this article .books_list figure, .page-id-34 .about_this article .books_list figure {
    width: calc(50% - 25px);
  }
}
@media (max-width: 570px) {
  .about .about_this article .books_list, .page-id-34 .about_this article .books_list {
    flex-direction: column;
  }
  .about .about_this article .books_list figure, .page-id-34 .about_this article .books_list figure {
    width: 100%;
  }
}
.about .about_this article .books_ranking, .page-id-34 .about_this article .books_ranking {
  background: rgba(var(--white), 1);
  border: 10px solid rgba(var(--bk-c), 0.2);
  padding: 35px;
}
.about .about_this article .books_ranking dl, .page-id-34 .about_this article .books_ranking dl {
  text-align: center;
}
.about .about_this article .books_ranking dl:not(:last-of-type), .page-id-34 .about_this article .books_ranking dl:not(:last-of-type) {
  margin-bottom: 25px !important;
}
.about .about_this article .books_ranking dl dt, .page-id-34 .about_this article .books_ranking dl dt {
  font-weight: 600;
}
.about .about_coursecontent, .page-id-34 .about_coursecontent {
  border-top: 1px solid rgba(var(--bk-c), 0.2);
}
.about .about_coursecontent .course_wrapper, .page-id-34 .about_coursecontent .course_wrapper {
  max-width: var(--inner-wrap);
  margin: auto;
}
.about .about_coursecontent .course_wrapper:nth-of-type(1) h2, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(1) h2 {
  background: rgba(var(--orange), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(1) .course_unit, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(1) .course_unit {
  border-color: rgba(var(--orange), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(1) .course_unit dl dd:before, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(1) .course_unit dl dd:before {
  color: rgba(var(--orange), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(2) h2, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(2) h2 {
  background: rgba(var(--green-c), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit {
  border-color: rgba(var(--green-c), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit dl dt, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit dl dt {
  min-height: 90px;
}
.about .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit dl dd:before, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(2) .course_unit dl dd:before {
  color: rgba(var(--green-c), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(3) h2, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(3) h2 {
  background: rgba(var(--pink), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit {
  width: 100%;
  border-color: rgba(var(--pink), 1);
}
.about .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dt, .about .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dd, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dt, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dd {
  min-height: 0;
  text-align: center;
}
.about .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dd:before, .page-id-34 .about_coursecontent .course_wrapper:nth-of-type(3) .course_unit dl dd:before {
  color: rgba(var(--pink), 1);
}
.about .about_characteristic, .page-id-34 .about_characteristic {
  border-top: 1px solid rgba(var(--bk-c), 0.2);
}
.about .about_characteristic .character_wrap, .page-id-34 .about_characteristic .character_wrap {
  max-width: var(--inner-wrap);
  margin: auto;
  display: flex;
  gap: 25px;
  margin-bottom: 35px !important;
}
.about .about_characteristic .character_wrap figure, .page-id-34 .about_characteristic .character_wrap figure {
  width: 100%;
  max-width: 25%;
}
@media (max-width: 770px) {
  .about .about_characteristic .character_wrap figure, .page-id-34 .about_characteristic .character_wrap figure {
    min-width: 35%;
    max-width: 35%;
  }
}
.about .about_characteristic .character_wrap dl dt, .page-id-34 .about_characteristic .character_wrap dl dt {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 15px !important;
}
.about .about_characteristic .character_wrap dl dd, .page-id-34 .about_characteristic .character_wrap dl dd {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
@media (max-width: 660px) {
  .about .about_characteristic .character_wrap, .page-id-34 .about_characteristic .character_wrap {
    flex-direction: column;
  }
  .about .about_characteristic .character_wrap figure, .page-id-34 .about_characteristic .character_wrap figure {
    max-width: 100%;
    width: 100%;
  }
  .about .about_characteristic .character_wrap figure img, .page-id-34 .about_characteristic .character_wrap figure img {
    margin: auto;
  }
}

.post-type-archive-story section {
  padding-top: 55px !important;
}
.post-type-archive-story section article {
  padding: 55px 35px;
  max-width: var(--inner-wrap);
  margin: auto;
  background: rgba(var(--bk-d), 0.8);
}
.post-type-archive-story section article .story_list-data {
  position: relative;
  background: rgba(var(--white), 1);
  margin-bottom: 55px !important;
}
.post-type-archive-story section article .story_list-data:before {
  content: "";
  display: block;
  background: rgba(var(--yerrow), 1);
  width: 320px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
@media (max-width: 770px) {
  .post-type-archive-story section article .story_list-data:before {
    width: 100%;
    height: 150px;
  }
}
.post-type-archive-story section article .story_list-data a {
  display: flex;
  justify-content: space-between;
  padding: 35px;
}
.post-type-archive-story section article .story_list-data a:hover {
  opacity: 1;
}
.post-type-archive-story section article .story_list-data a figure {
  max-width: 335px;
  box-shadow: 0 0 10px rgba(var(--bk-a), 0.4);
}
.post-type-archive-story section article .story_list-data a .text_wrap {
  width: calc(100% - 370px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.post-type-archive-story section article .story_list-data a .text_wrap .list_catch {
  background: rgba(var(--bk), 1);
  color: rgba(var(--white), 1);
  padding: 10px;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  font-weight: 600;
}
.post-type-archive-story section article .story_list-data a .text_wrap dl {
  text-align: right;
  margin-top: auto;
}
.post-type-archive-story section article .story_list-data a .text_wrap dl dt, .post-type-archive-story section article .story_list-data a .text_wrap dl dd {
  color: rgba(var(--bk), 1);
}
.post-type-archive-story section article .story_list-data a .text_wrap dl dt {
  font-weight: 600;
}
.post-type-archive-story section article .story_list-data a .text_wrap dl dt .story_nm {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.post-type-archive-story section article .story_list-data a .text_wrap dl dt .story_age, .post-type-archive-story section article .story_list-data a .text_wrap dl dt .story_sub {
  white-space: nowrap;
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
@media (max-width: 770px) {
  .post-type-archive-story section article .story_list-data a {
    flex-direction: column;
  }
  .post-type-archive-story section article .story_list-data a figure {
    margin-bottom: 15px !important;
    margin: auto;
  }
  .post-type-archive-story section article .story_list-data a .list_catch {
    width: 100%;
    text-align: left;
    margin-bottom: 10px !important;
  }
  .post-type-archive-story section article .story_list-data a .text_wrap {
    width: 100%;
  }
  .post-type-archive-story section article .story_list-data a .text_wrap dt {
    display: block;
  }
}
@media (max-width: 570px) {
  .post-type-archive-story section article .story_list-data a {
    padding: 15px;
  }
}

.single-story main {
  padding-bottom: 100px !important;
}
.single-story .cv_header {
  background: rgba(var(--bk-c), 0.4);
  margin-bottom: 55px !important;
}
.single-story .cv_header article {
  max-width: var(--inner-wrap);
  margin: auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.single-story .cv_header article figure {
  max-width: 600px;
  margin-left: 25px;
}
.single-story .cv_header article .text_wrap h1 {
  margin-bottom: 25px !important;
}
.single-story .cv_header article .text_wrap h1 span {
  display: inline-block;
  transform: rotate(-7deg);
  padding: 3px 20px;
  border-top: 1px solid rgba(var(--bk), 1);
  border-bottom: 1px solid rgba(var(--bk), 1);
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  font-weight: 600;
}
.single-story .cv_header article .text_wrap h2 {
  background: rgba(var(--bk), 1);
  color: rgba(var(--white), 1);
  padding: 10px;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 600;
  margin-bottom: 15px !important;
  line-height: 1.7;
}
.single-story .cv_header article .text_wrap dl dt, .single-story .cv_header article .text_wrap dl dd {
  color: rgba(var(--bk), 1);
}
.single-story .cv_header article .text_wrap dl dt {
  font-weight: 600;
  margin-bottom: 10px !important;
}
.single-story .cv_header article .text_wrap dl dt .story_nm {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.single-story .cv_header article .text_wrap dl dt .story_age, .single-story .cv_header article .text_wrap dl dt .story_sub {
  display: block;
  white-space: nowrap;
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
.single-story .cv_header article .text_wrap dl dd {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
@media (max-width: 1070px) {
  .single-story .cv_header article {
    padding: 25px 3%;
    flex-direction: column;
  }
  .single-story .cv_header article figure {
    margin: auto;
    max-width: 900px;
    margin-bottom: 35px !important;
  }
  .single-story .cv_header article .text_wrap {
    width: 100%;
    max-width: 900px;
    margin: auto;
  }
}
.single-story .contents_main {
  margin-bottom: 55px !important;
  max-width: var(--inner-wrap);
  margin: auto;
  border: 10px solid rgba(var(--bk-c), 0.4);
}
@media (max-width: 1070px) {
  .single-story .contents_main {
    margin: 0 3%;
  }
}
.single-story .contents_main article:not(:last-of-type) figure {
  margin-bottom: 55px !important;
}
.single-story .contents_main article:not(:last-of-type) .contents_data {
  padding: 0 5.5%;
}
.single-story .contents_main article:not(:last-of-type) .contents_data p {
  margin-bottom: 25px !important;
}
.single-story .contents_main article:not(:first-of-type):not(:last-of-type) figure {
  max-width: 780px;
  margin: auto;
}
.single-story .contents_main article:first-of-type figure {
  max-height: 500px;
  overflow: hidden;
}
.single-story .contents_main article:last-of-type {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
}
.single-story .contents_main article:last-of-type:before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(var(--bk), 0.4);
  left: 0;
  top: 0;
}
.single-story .contents_main article:last-of-type * {
  color: rgba(var(--white), 1);
}
.single-story .contents_main article:last-of-type figure {
  position: relative;
}
.single-story .contents_main article:last-of-type figure:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--bk), 0.4);
}
.single-story .contents_main article:last-of-type .last_wrap {
  padding: 0 5.5%;
  padding-top: 100px !important;
  padding-bottom: 100px !important;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media (max-width: 570px) {
  .single-story .contents_main article:last-of-type .last_wrap {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
}
.single-story .contents_main article:last-of-type .last_wrap h1, .single-story .contents_main article:last-of-type .last_wrap .contents_data {
  position: relative;
  z-index: 1;
}
.single-story .contents_main article:last-of-type .last_wrap p:not(:last-of-type) {
  margin-bottom: 25px !important;
}
.single-story .other_data {
  max-width: var(--inner-wrap_l);
  margin: auto;
  display: flex;
  gap: 3%;
}
.single-story .other_data .other_unit {
  width: 33.3333333333%;
  border: 5px solid rgba(var(--bk-c), 0.4);
  background: rgba(var(--white), 1);
}
.single-story .other_data .other_unit a {
  color: rgba(var(--bk), 1);
  display: flex;
  flex-direction: column;
}
.single-story .other_data .other_unit figure img {
  display: block;
}
.single-story .other_data .other_unit dl {
  padding: 15px;
}
.single-story .other_data .other_unit dl dt {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  margin-bottom: 15px !important;
}
.single-story .other_data .other_unit dl dd .story_nm {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
}
.single-story .other_data .other_unit dl dd .story_age {
  font-weight: 600;
}
.single-story .other_data .other_unit dl dd .story_age, .single-story .other_data .other_unit dl dd .story_sub, .single-story .other_data .other_unit dl dd .story_classroom {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  display: inline-block;
  white-space: nowrap;
}
.single-story .other_data .other_unit dl dd .story_classroom {
  display: block;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  white-space: normal;
}
@media (max-width: 770px) {
  .single-story .other_data {
    flex-direction: column;
  }
}
@media (max-width: 770px) and (max-width: 1070px) {
  .single-story .other_data {
    margin: 0 3%;
  }
}
@media (max-width: 770px) {
  .single-story .other_data .other_unit {
    width: 100%;
  }
  .single-story .other_data .other_unit:not(:last-of-type) {
    margin-bottom: 35px !important;
  }
}

.school .mod_obtained .btn, .page-id-36 .mod_obtained .btn,
.jyuku .mod_obtained .btn, .page-id-38 .mod_obtained .btn {
  display: none;
}
.school .admission_wrap, .page-id-36 .admission_wrap,
.jyuku .admission_wrap, .page-id-38 .admission_wrap {
  margin-bottom: 55px !important;
}
.school .admission_wrap h2, .page-id-36 .admission_wrap h2,
.jyuku .admission_wrap h2, .page-id-38 .admission_wrap h2 {
  margin-bottom: 35px !important;
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  color: rgba(var(--blue), 1);
  font-weight: 600;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.school .admission_wrap h2:before, .page-id-36 .admission_wrap h2:before,
.jyuku .admission_wrap h2:before, .page-id-38 .admission_wrap h2:before {
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  background: rgba(var(--green-b), 1);
  color: rgba(var(--white), 1);
  margin-bottom: 15px !important;
  border-radius: 100%;
}
.school .admission_wrap:nth-of-type(1) h2:before, .page-id-36 .admission_wrap:nth-of-type(1) h2:before,
.jyuku .admission_wrap:nth-of-type(1) h2:before, .page-id-38 .admission_wrap:nth-of-type(1) h2:before {
  content: "1";
}
.school .admission_wrap:nth-of-type(2) h2:before, .page-id-36 .admission_wrap:nth-of-type(2) h2:before,
.jyuku .admission_wrap:nth-of-type(2) h2:before, .page-id-38 .admission_wrap:nth-of-type(2) h2:before {
  content: "2";
}
.school .admission_wrap:nth-of-type(3) h2:before, .page-id-36 .admission_wrap:nth-of-type(3) h2:before,
.jyuku .admission_wrap:nth-of-type(3) h2:before, .page-id-38 .admission_wrap:nth-of-type(3) h2:before {
  content: "3";
}
.school .admission_wrap ol, .page-id-36 .admission_wrap ol,
.jyuku .admission_wrap ol, .page-id-38 .admission_wrap ol {
  list-style: none;
}
.school .admission_wrap ol li, .page-id-36 .admission_wrap ol li,
.jyuku .admission_wrap ol li, .page-id-38 .admission_wrap ol li {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.school .admission_wrap ol li:before, .page-id-36 .admission_wrap ol li:before,
.jyuku .admission_wrap ol li:before, .page-id-38 .admission_wrap ol li:before {
  content: "1";
  display: inline-block;
  margin-right: 5px;
}
.school .admission_wrap ol li, .page-id-36 .admission_wrap ol li,
.jyuku .admission_wrap ol li, .page-id-38 .admission_wrap ol li {
  padding-left: 1em;
  text-indent: -0.7em;
}
.school .admission_wrap ol li:nth-of-type(1):before, .page-id-36 .admission_wrap ol li:nth-of-type(1):before,
.jyuku .admission_wrap ol li:nth-of-type(1):before, .page-id-38 .admission_wrap ol li:nth-of-type(1):before {
  content: "①";
}
.school .admission_wrap ol li:nth-of-type(2):before, .page-id-36 .admission_wrap ol li:nth-of-type(2):before,
.jyuku .admission_wrap ol li:nth-of-type(2):before, .page-id-38 .admission_wrap ol li:nth-of-type(2):before {
  content: "②";
}
.school .admission_wrap ol li:nth-of-type(3):before, .page-id-36 .admission_wrap ol li:nth-of-type(3):before,
.jyuku .admission_wrap ol li:nth-of-type(3):before, .page-id-38 .admission_wrap ol li:nth-of-type(3):before {
  content: "③";
}
.school .admission_wrap ol li:not(:last-of-type), .page-id-36 .admission_wrap ol li:not(:last-of-type),
.jyuku .admission_wrap ol li:not(:last-of-type), .page-id-38 .admission_wrap ol li:not(:last-of-type) {
  margin-bottom: 25px !important;
}
.school .admission_wrap ol li span.ic-arw, .page-id-36 .admission_wrap ol li span.ic-arw,
.jyuku .admission_wrap ol li span.ic-arw, .page-id-38 .admission_wrap ol li span.ic-arw {
  display: inline-block;
}
.school .admission_wrap ol li span.ic-arw:after, .page-id-36 .admission_wrap ol li span.ic-arw:after,
.jyuku .admission_wrap ol li span.ic-arw:after, .page-id-38 .admission_wrap ol li span.ic-arw:after {
  content: "\e977";
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 10px;
  position: relative;
  top: -1px;
}
.school .admission_wrap p.catch_txt, .page-id-36 .admission_wrap p.catch_txt,
.jyuku .admission_wrap p.catch_txt, .page-id-38 .admission_wrap p.catch_txt {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  margin-top: 25px !important;
}
.school .admission_type__wrapper, .page-id-36 .admission_type__wrapper,
.jyuku .admission_type__wrapper, .page-id-38 .admission_type__wrapper {
  display: flex;
  gap: 25px;
}
@media (max-width: 880px) {
  .school .admission_type__wrapper, .page-id-36 .admission_type__wrapper,
  .jyuku .admission_type__wrapper, .page-id-38 .admission_type__wrapper {
    flex-direction: column;
  }
}
.school .admission_type__wrapper h3, .page-id-36 .admission_type__wrapper h3,
.jyuku .admission_type__wrapper h3, .page-id-38 .admission_type__wrapper h3 {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  margin-bottom: 10px !important;
}
.school .admission_type__wrapper .unity_type, .page-id-36 .admission_type__wrapper .unity_type,
.jyuku .admission_type__wrapper .unity_type, .page-id-38 .admission_type__wrapper .unity_type {
  flex-direction: column;
}
.school .admission_type__wrapper .unity_type .admission_unit__wrap, .page-id-36 .admission_type__wrapper .unity_type .admission_unit__wrap,
.jyuku .admission_type__wrapper .unity_type .admission_unit__wrap, .page-id-38 .admission_type__wrapper .unity_type .admission_unit__wrap {
  flex-direction: column;
}
@media (max-width: 880px) {
  .school .admission_type__wrapper .unity_type .admission_unit__wrap, .page-id-36 .admission_type__wrapper .unity_type .admission_unit__wrap,
  .jyuku .admission_type__wrapper .unity_type .admission_unit__wrap, .page-id-38 .admission_type__wrapper .unity_type .admission_unit__wrap {
    flex-direction: row;
  }
}
.school .admission_type__wrapper .active_type, .page-id-36 .admission_type__wrapper .active_type,
.jyuku .admission_type__wrapper .active_type, .page-id-38 .admission_type__wrapper .active_type {
  padding-left: 25px;
  border-left: 1px solid rgba(var(--bk-a), 0.2);
}
@media (max-width: 880px) {
  .school .admission_type__wrapper .active_type, .page-id-36 .admission_type__wrapper .active_type,
  .jyuku .admission_type__wrapper .active_type, .page-id-38 .admission_type__wrapper .active_type {
    padding: 25px 0 0;
    border: none;
    border-top: 1px solid rgba(var(--bk-a), 0.2);
  }
}
.school .admission_type__wrapper .admission_unit__wrap, .page-id-36 .admission_type__wrapper .admission_unit__wrap,
.jyuku .admission_type__wrapper .admission_unit__wrap, .page-id-38 .admission_type__wrapper .admission_unit__wrap {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
@media (max-width: 570px) {
  .school .admission_type__wrapper .admission_unit__wrap, .page-id-36 .admission_type__wrapper .admission_unit__wrap,
  .jyuku .admission_type__wrapper .admission_unit__wrap, .page-id-38 .admission_type__wrapper .admission_unit__wrap {
    justify-content: center;
  }
}
.school .admission_type__wrapper figure, .page-id-36 .admission_type__wrapper figure,
.jyuku .admission_type__wrapper figure, .page-id-38 .admission_type__wrapper figure {
  flex: 0 0 calc((100% - 50px) / 3);
  max-width: 245px;
  min-width: 245px;
}
@media (max-width: 880px) {
  .school .admission_type__wrapper figure, .page-id-36 .admission_type__wrapper figure,
  .jyuku .admission_type__wrapper figure, .page-id-38 .admission_type__wrapper figure {
    min-width: auto;
  }
}
@media (max-width: 570px) {
  .school .admission_type__wrapper figure, .page-id-36 .admission_type__wrapper figure,
  .jyuku .admission_type__wrapper figure, .page-id-38 .admission_type__wrapper figure {
    flex: 0 0 calc((100% - 50px) / 2);
  }
}
.school .admission_type__wrapper figure img, .page-id-36 .admission_type__wrapper figure img,
.jyuku .admission_type__wrapper figure img, .page-id-38 .admission_type__wrapper figure img {
  margin-bottom: 10px !important;
}
.school .admission_type__wrapper figure figcaption, .page-id-36 .admission_type__wrapper figure figcaption,
.jyuku .admission_type__wrapper figure figcaption, .page-id-38 .admission_type__wrapper figure figcaption {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.school .head_article, .page-id-36 .head_article,
.jyuku .head_article, .page-id-38 .head_article {
  height: 540px;
  background: url(/re_2024/wp-content/uploads/bg-admission-scaled.jpg) no-repeat right center/cover;
}
@media (max-width: 880px) {
  .school .head_article, .page-id-36 .head_article,
  .jyuku .head_article, .page-id-38 .head_article {
    height: 450px;
  }
}
@media (max-width: 770px) {
  .school .head_article, .page-id-36 .head_article,
  .jyuku .head_article, .page-id-38 .head_article {
    height: 350px;
    background-position: 50% center;
  }
}
@media (max-width: 570px) {
  .school .head_article, .page-id-36 .head_article,
  .jyuku .head_article, .page-id-38 .head_article {
    height: 250px;
  }
}
.school .head_article, .page-id-36 .head_article,
.jyuku .head_article, .page-id-38 .head_article {
  display: flex;
  align-items: flex-end;
}
.school .head_article h1, .page-id-36 .head_article h1,
.jyuku .head_article h1, .page-id-38 .head_article h1 {
  margin: auto auto 5% !important;
  margin: auto;
  max-width: var(--max-wrap);
  padding-left: 3%;
  padding-right: 3%;
  width: 100%;
  line-height: 2;
}
@media (max-width: 880px) {
  .school .head_article h1, .page-id-36 .head_article h1,
  .jyuku .head_article h1, .page-id-38 .head_article h1 {
    padding-left: 5%;
    padding-right: 5%;
    margin-bottom: 2%;
  }
}
.school .head_article h1 span, .page-id-36 .head_article h1 span,
.jyuku .head_article h1 span, .page-id-38 .head_article h1 span {
  display: inline-block;
  color: rgba(var(--white), 1);
  font-size: clamp(1.063rem, 0.949rem + 0.57vw, 1.375rem);
  font-weight: 600;
  padding: 15px;
  margin-bottom: 10px !important;
}
@media (max-width: 770px) {
  .school .head_article h1 span, .page-id-36 .head_article h1 span,
  .jyuku .head_article h1 span, .page-id-38 .head_article h1 span {
    padding: 5px;
  }
}
.school .head_article h1 span:nth-of-type(1), .page-id-36 .head_article h1 span:nth-of-type(1),
.jyuku .head_article h1 span:nth-of-type(1), .page-id-38 .head_article h1 span:nth-of-type(1) {
  background: rgba(var(--green-b), 1);
}
.school .head_article h1 span:nth-of-type(2), .page-id-36 .head_article h1 span:nth-of-type(2),
.jyuku .head_article h1 span:nth-of-type(2), .page-id-38 .head_article h1 span:nth-of-type(2) {
  background: rgba(var(--blue), 1);
}
.school .curriculum__nav, .page-id-36 .curriculum__nav,
.jyuku .curriculum__nav, .page-id-38 .curriculum__nav {
  margin: auto;
  max-width: var(--over-wrap);
  padding-left: 3%;
  padding-right: 3%;
  width: 100%;
  margin-bottom: 55px !important;
}
@media (max-width: 880px) {
  .school .curriculum__nav, .page-id-36 .curriculum__nav,
  .jyuku .curriculum__nav, .page-id-38 .curriculum__nav {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.school .curriculum__nav ul, .page-id-36 .curriculum__nav ul,
.jyuku .curriculum__nav ul, .page-id-38 .curriculum__nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.school .curriculum__nav ul li, .page-id-36 .curriculum__nav ul li,
.jyuku .curriculum__nav ul li, .page-id-38 .curriculum__nav ul li {
  flex: 0 0 calc((100% - 80px) / 4);
  border: 5px solid rgba(var(--bk), 1);
  display: flex;
}
@media (max-width: 1198px) {
  .school .curriculum__nav ul li, .page-id-36 .curriculum__nav ul li,
  .jyuku .curriculum__nav ul li, .page-id-38 .curriculum__nav ul li {
    flex: 0 0 calc((100% - 40px) / 2);
  }
}
@media (max-width: 570px) {
  .school .curriculum__nav ul li, .page-id-36 .curriculum__nav ul li,
  .jyuku .curriculum__nav ul li, .page-id-38 .curriculum__nav ul li {
    flex: 0 0 100%;
  }
}
.school .curriculum__nav ul li a, .page-id-36 .curriculum__nav ul li a,
.jyuku .curriculum__nav ul li a, .page-id-38 .curriculum__nav ul li a {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 35px 25px 15px;
  color: rgba(var(--bk), 1);
}
@media (max-width: 1198px) {
  .school .curriculum__nav ul li a, .page-id-36 .curriculum__nav ul li a,
  .jyuku .curriculum__nav ul li a, .page-id-38 .curriculum__nav ul li a {
    padding: 25px 25px 5px;
  }
}
.school .curriculum__nav ul li a:before, .school .curriculum__nav ul li a:after, .page-id-36 .curriculum__nav ul li a:before, .page-id-36 .curriculum__nav ul li a:after,
.jyuku .curriculum__nav ul li a:before,
.jyuku .curriculum__nav ul li a:after, .page-id-38 .curriculum__nav ul li a:before, .page-id-38 .curriculum__nav ul li a:after {
  content: "";
  display: block;
}
.school .curriculum__nav ul li a:before, .page-id-36 .curriculum__nav ul li a:before,
.jyuku .curriculum__nav ul li a:before, .page-id-38 .curriculum__nav ul li a:before {
  width: 30px;
  height: 25px;
  margin-bottom: 15px !important;
}
@media (max-width: 570px) {
  .school .curriculum__nav ul li a:before, .page-id-36 .curriculum__nav ul li a:before,
  .jyuku .curriculum__nav ul li a:before, .page-id-38 .curriculum__nav ul li a:before {
    height: 15px;
  }
}
.school .curriculum__nav ul li a:after, .page-id-36 .curriculum__nav ul li a:after,
.jyuku .curriculum__nav ul li a:after, .page-id-38 .curriculum__nav ul li a:after {
  content: "\e9bc";
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-top: 25px !important;
  font-size: clamp(1.875rem, 1.83rem + 0.23vw, 2rem);
}
@media (max-width: 570px) {
  .school .curriculum__nav ul li a:after, .page-id-36 .curriculum__nav ul li a:after,
  .jyuku .curriculum__nav ul li a:after, .page-id-38 .curriculum__nav ul li a:after {
    margin-top: 10px !important;
    font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  }
}
.school .curriculum__nav ul li a span, .page-id-36 .curriculum__nav ul li a span,
.jyuku .curriculum__nav ul li a span, .page-id-38 .curriculum__nav ul li a span {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  margin-bottom: 15px !important;
}
.school .curriculum__nav ul li a span i:before, .page-id-36 .curriculum__nav ul li a span i:before,
.jyuku .curriculum__nav ul li a span i:before, .page-id-38 .curriculum__nav ul li a span i:before {
  content: "\e977";
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 570px) {
  .school .curriculum__nav ul li a span br:nth-of-type(2), .page-id-36 .curriculum__nav ul li a span br:nth-of-type(2),
  .jyuku .curriculum__nav ul li a span br:nth-of-type(2), .page-id-38 .curriculum__nav ul li a span br:nth-of-type(2) {
    display: none;
  }
}
.school .curriculum__nav ul li a strong, .page-id-36 .curriculum__nav ul li a strong,
.jyuku .curriculum__nav ul li a strong, .page-id-38 .curriculum__nav ul li a strong {
  margin-top: auto;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  min-height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1198px) {
  .school .curriculum__nav ul li a strong, .page-id-36 .curriculum__nav ul li a strong,
  .jyuku .curriculum__nav ul li a strong, .page-id-38 .curriculum__nav ul li a strong {
    min-height: auto;
  }
}
@media (max-width: 570px) {
  .school .curriculum__nav ul li a strong br, .page-id-36 .curriculum__nav ul li a strong br,
  .jyuku .curriculum__nav ul li a strong br, .page-id-38 .curriculum__nav ul li a strong br {
    display: none;
  }
}
.school .curriculum__nav ul li:nth-of-type(1), .page-id-36 .curriculum__nav ul li:nth-of-type(1),
.jyuku .curriculum__nav ul li:nth-of-type(1), .page-id-38 .curriculum__nav ul li:nth-of-type(1) {
  border-color: rgba(var(--orange), 1);
}
.school .curriculum__nav ul li:nth-of-type(1) a:before, .page-id-36 .curriculum__nav ul li:nth-of-type(1) a:before,
.jyuku .curriculum__nav ul li:nth-of-type(1) a:before, .page-id-38 .curriculum__nav ul li:nth-of-type(1) a:before {
  background: url(../image/ic-curriculum_list_y.png) no-repeat center/contain;
}
.school .curriculum__nav ul li:nth-of-type(1) a:after, .page-id-36 .curriculum__nav ul li:nth-of-type(1) a:after,
.jyuku .curriculum__nav ul li:nth-of-type(1) a:after, .page-id-38 .curriculum__nav ul li:nth-of-type(1) a:after {
  color: rgba(var(--orange), 1);
}
.school .curriculum__nav ul li:nth-of-type(2), .page-id-36 .curriculum__nav ul li:nth-of-type(2),
.jyuku .curriculum__nav ul li:nth-of-type(2), .page-id-38 .curriculum__nav ul li:nth-of-type(2) {
  border-color: rgba(var(--green), 1);
}
.school .curriculum__nav ul li:nth-of-type(2) a:before, .page-id-36 .curriculum__nav ul li:nth-of-type(2) a:before,
.jyuku .curriculum__nav ul li:nth-of-type(2) a:before, .page-id-38 .curriculum__nav ul li:nth-of-type(2) a:before {
  background: url(../image/ic-curriculum_list_g.png) no-repeat center/contain;
}
.school .curriculum__nav ul li:nth-of-type(2) a:after, .page-id-36 .curriculum__nav ul li:nth-of-type(2) a:after,
.jyuku .curriculum__nav ul li:nth-of-type(2) a:after, .page-id-38 .curriculum__nav ul li:nth-of-type(2) a:after {
  color: rgba(var(--green), 1);
}
.school .curriculum__nav ul li:nth-of-type(3), .page-id-36 .curriculum__nav ul li:nth-of-type(3),
.jyuku .curriculum__nav ul li:nth-of-type(3), .page-id-38 .curriculum__nav ul li:nth-of-type(3) {
  border-color: rgba(var(--pink), 1);
}
.school .curriculum__nav ul li:nth-of-type(3) a:before, .page-id-36 .curriculum__nav ul li:nth-of-type(3) a:before,
.jyuku .curriculum__nav ul li:nth-of-type(3) a:before, .page-id-38 .curriculum__nav ul li:nth-of-type(3) a:before {
  background: url(../image/ic-curriculum_list_r.png) no-repeat center/contain;
}
.school .curriculum__nav ul li:nth-of-type(3) a:after, .page-id-36 .curriculum__nav ul li:nth-of-type(3) a:after,
.jyuku .curriculum__nav ul li:nth-of-type(3) a:after, .page-id-38 .curriculum__nav ul li:nth-of-type(3) a:after {
  color: rgba(var(--pink), 1);
}
.school .curriculum__nav ul li:nth-of-type(4), .page-id-36 .curriculum__nav ul li:nth-of-type(4),
.jyuku .curriculum__nav ul li:nth-of-type(4), .page-id-38 .curriculum__nav ul li:nth-of-type(4) {
  border-color: rgba(var(--blue), 1);
}
.school .curriculum__nav ul li:nth-of-type(4) a:before, .page-id-36 .curriculum__nav ul li:nth-of-type(4) a:before,
.jyuku .curriculum__nav ul li:nth-of-type(4) a:before, .page-id-38 .curriculum__nav ul li:nth-of-type(4) a:before {
  background: url(../image/ic-curriculum_list_bl.png) no-repeat center/contain;
}
.school .curriculum__nav ul li:nth-of-type(4) a:after, .page-id-36 .curriculum__nav ul li:nth-of-type(4) a:after,
.jyuku .curriculum__nav ul li:nth-of-type(4) a:after, .page-id-38 .curriculum__nav ul li:nth-of-type(4) a:after {
  color: rgba(var(--blue), 1);
}
.school .curriculum_7hj:not(:last-of-type), .page-id-36 .curriculum_7hj:not(:last-of-type),
.jyuku .curriculum_7hj:not(:last-of-type), .page-id-38 .curriculum_7hj:not(:last-of-type) {
  margin-bottom: 45px !important;
}
.school .curriculum_7hj, .page-id-36 .curriculum_7hj,
.jyuku .curriculum_7hj, .page-id-38 .curriculum_7hj {
  padding-left: 3%;
  padding-right: 3%;
}
@media (max-width: 880px) {
  .school .curriculum_7hj, .page-id-36 .curriculum_7hj,
  .jyuku .curriculum_7hj, .page-id-38 .curriculum_7hj {
    padding-left: 5%;
    padding-right: 5%;
  }
}
.school .curriculum_7hj article, .page-id-36 .curriculum_7hj article,
.jyuku .curriculum_7hj article, .page-id-38 .curriculum_7hj article {
  padding: 30px;
  margin: auto;
  max-width: var(--inner-wrap);
}
.school .curriculum_7hj article h1, .page-id-36 .curriculum_7hj article h1,
.jyuku .curriculum_7hj article h1, .page-id-38 .curriculum_7hj article h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 45px !important;
}
.school .curriculum_7hj article h1 span, .school .curriculum_7hj article h1 strong, .page-id-36 .curriculum_7hj article h1 span, .page-id-36 .curriculum_7hj article h1 strong,
.jyuku .curriculum_7hj article h1 span,
.jyuku .curriculum_7hj article h1 strong, .page-id-38 .curriculum_7hj article h1 span, .page-id-38 .curriculum_7hj article h1 strong {
  line-height: 1.5;
}
.school .curriculum_7hj article h1 span, .page-id-36 .curriculum_7hj article h1 span,
.jyuku .curriculum_7hj article h1 span, .page-id-38 .curriculum_7hj article h1 span {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  margin-bottom: 15px !important;
  text-align: center;
}
.school .curriculum_7hj article h1 strong, .page-id-36 .curriculum_7hj article h1 strong,
.jyuku .curriculum_7hj article h1 strong, .page-id-38 .curriculum_7hj article h1 strong {
  font-size: clamp(1.625rem, 1.42rem + 1.02vw, 2.188rem);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 35px !important;
  padding-bottom: 25px !important;
}
.school .curriculum_7hj article h1 strong:before, .school .curriculum_7hj article h1 strong:after, .page-id-36 .curriculum_7hj article h1 strong:before, .page-id-36 .curriculum_7hj article h1 strong:after,
.jyuku .curriculum_7hj article h1 strong:before,
.jyuku .curriculum_7hj article h1 strong:after, .page-id-38 .curriculum_7hj article h1 strong:before, .page-id-38 .curriculum_7hj article h1 strong:after {
  content: "";
  display: block;
  width: 27px;
  height: 5px;
  position: absolute;
  bottom: 0;
}
.school .curriculum_7hj article h1 strong:before, .page-id-36 .curriculum_7hj article h1 strong:before,
.jyuku .curriculum_7hj article h1 strong:before, .page-id-38 .curriculum_7hj article h1 strong:before {
  background: rgba(var(--yerrow, 1));
  left: calc(50% - 27px);
}
.school .curriculum_7hj article h1 strong:after, .page-id-36 .curriculum_7hj article h1 strong:after,
.jyuku .curriculum_7hj article h1 strong:after, .page-id-38 .curriculum_7hj article h1 strong:after {
  background: rgba(var(--blue, 1));
  right: calc(50% - 27px);
}
.school .curriculum_7hj article .curriculum_head, .page-id-36 .curriculum_7hj article .curriculum_head,
.jyuku .curriculum_7hj article .curriculum_head, .page-id-38 .curriculum_7hj article .curriculum_head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  margin-bottom: 45px !important;
}
.school .curriculum_7hj article .curriculum_head:before, .school .curriculum_7hj article .curriculum_head:after, .page-id-36 .curriculum_7hj article .curriculum_head:before, .page-id-36 .curriculum_7hj article .curriculum_head:after,
.jyuku .curriculum_7hj article .curriculum_head:before,
.jyuku .curriculum_7hj article .curriculum_head:after, .page-id-38 .curriculum_7hj article .curriculum_head:before, .page-id-38 .curriculum_7hj article .curriculum_head:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background: rgba(var(--bk-c), 0.1);
  z-index: 0;
}
.school .curriculum_7hj article .curriculum_head:before, .page-id-36 .curriculum_7hj article .curriculum_head:before,
.jyuku .curriculum_7hj article .curriculum_head:before, .page-id-38 .curriculum_7hj article .curriculum_head:before {
  top: 39px;
}
@media (max-width: 570px) {
  .school .curriculum_7hj article .curriculum_head:before, .page-id-36 .curriculum_7hj article .curriculum_head:before,
  .jyuku .curriculum_7hj article .curriculum_head:before, .page-id-38 .curriculum_7hj article .curriculum_head:before {
    top: 29px;
  }
}
.school .curriculum_7hj article .curriculum_head:after, .page-id-36 .curriculum_7hj article .curriculum_head:after,
.jyuku .curriculum_7hj article .curriculum_head:after, .page-id-38 .curriculum_7hj article .curriculum_head:after {
  bottom: 10px;
}
.school .curriculum_7hj article .curriculum_head dl, .page-id-36 .curriculum_7hj article .curriculum_head dl,
.jyuku .curriculum_7hj article .curriculum_head dl, .page-id-38 .curriculum_7hj article .curriculum_head dl {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.school .curriculum_7hj article .curriculum_head dl:before, .school .curriculum_7hj article .curriculum_head dl:after, .page-id-36 .curriculum_7hj article .curriculum_head dl:before, .page-id-36 .curriculum_7hj article .curriculum_head dl:after,
.jyuku .curriculum_7hj article .curriculum_head dl:before,
.jyuku .curriculum_7hj article .curriculum_head dl:after, .page-id-38 .curriculum_7hj article .curriculum_head dl:before, .page-id-38 .curriculum_7hj article .curriculum_head dl:after {
  content: "";
  display: block;
  width: 180px;
  height: 190px;
  position: absolute;
  z-index: -1;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .curriculum_head dl:before, .school .curriculum_7hj article .curriculum_head dl:after, .page-id-36 .curriculum_7hj article .curriculum_head dl:before, .page-id-36 .curriculum_7hj article .curriculum_head dl:after,
  .jyuku .curriculum_7hj article .curriculum_head dl:before,
  .jyuku .curriculum_7hj article .curriculum_head dl:after, .page-id-38 .curriculum_7hj article .curriculum_head dl:before, .page-id-38 .curriculum_7hj article .curriculum_head dl:after {
    display: none;
  }
}
.school .curriculum_7hj article .curriculum_head dl:before, .page-id-36 .curriculum_7hj article .curriculum_head dl:before,
.jyuku .curriculum_7hj article .curriculum_head dl:before, .page-id-38 .curriculum_7hj article .curriculum_head dl:before {
  left: 0;
  background: url(../image/osusume-icon_a.png) no-repeat center/contain;
}
.school .curriculum_7hj article .curriculum_head dl:after, .page-id-36 .curriculum_7hj article .curriculum_head dl:after,
.jyuku .curriculum_7hj article .curriculum_head dl:after, .page-id-38 .curriculum_7hj article .curriculum_head dl:after {
  right: 0;
  background: url(../image/osusume-icon_b.png) no-repeat center/contain;
}
.school .curriculum_7hj article .curriculum_head dl dt, .school .curriculum_7hj article .curriculum_head dl dd, .page-id-36 .curriculum_7hj article .curriculum_head dl dt, .page-id-36 .curriculum_7hj article .curriculum_head dl dd,
.jyuku .curriculum_7hj article .curriculum_head dl dt,
.jyuku .curriculum_7hj article .curriculum_head dl dd, .page-id-38 .curriculum_7hj article .curriculum_head dl dt, .page-id-38 .curriculum_7hj article .curriculum_head dl dd {
  margin-bottom: 25px !important;
}
.school .curriculum_7hj article .curriculum_head dl dt, .page-id-36 .curriculum_7hj article .curriculum_head dl dt,
.jyuku .curriculum_7hj article .curriculum_head dl dt, .page-id-38 .curriculum_7hj article .curriculum_head dl dt {
  color: rgba(var(--white), 1);
  font-weight: 600;
  background: rgba(var(--blue), 1);
  padding: 10px 25px;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .curriculum_head dl dt, .page-id-36 .curriculum_7hj article .curriculum_head dl dt,
  .jyuku .curriculum_7hj article .curriculum_head dl dt, .page-id-38 .curriculum_7hj article .curriculum_head dl dt {
    padding: 5px 15px;
  }
}
.school .curriculum_7hj article .curriculum_head dl dd ul, .page-id-36 .curriculum_7hj article .curriculum_head dl dd ul,
.jyuku .curriculum_7hj article .curriculum_head dl dd ul, .page-id-38 .curriculum_7hj article .curriculum_head dl dd ul {
  padding-left: 10px;
}
.school .curriculum_7hj article .curriculum_head dl dd ul li:before, .page-id-36 .curriculum_7hj article .curriculum_head dl dd ul li:before,
.jyuku .curriculum_7hj article .curriculum_head dl dd ul li:before, .page-id-38 .curriculum_7hj article .curriculum_head dl dd ul li:before {
  content: "■";
  display: inline-block;
  margin-right: 5px;
}
.school .curriculum_7hj article .curriculum_head dl dd ul li, .page-id-36 .curriculum_7hj article .curriculum_head dl dd ul li,
.jyuku .curriculum_7hj article .curriculum_head dl dd ul li, .page-id-38 .curriculum_7hj article .curriculum_head dl dd ul li {
  padding-left: 1em;
  text-indent: -0.8em;
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  text-align: center;
}
@media (max-width: 570px) {
  .school .curriculum_7hj article .curriculum_head dl dd ul li, .page-id-36 .curriculum_7hj article .curriculum_head dl dd ul li,
  .jyuku .curriculum_7hj article .curriculum_head dl dd ul li, .page-id-38 .curriculum_7hj article .curriculum_head dl dd ul li {
    text-align: left;
  }
}
.school .curriculum_7hj article .curriculum_about, .page-id-36 .curriculum_7hj article .curriculum_about,
.jyuku .curriculum_7hj article .curriculum_about, .page-id-38 .curriculum_7hj article .curriculum_about {
  padding: 25px 3%;
  margin-bottom: 55px !important;
}
.school .curriculum_7hj article .curriculum_about dl, .page-id-36 .curriculum_7hj article .curriculum_about dl,
.jyuku .curriculum_7hj article .curriculum_about dl, .page-id-38 .curriculum_7hj article .curriculum_about dl {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.school .curriculum_7hj article .curriculum_about dl dt, .page-id-36 .curriculum_7hj article .curriculum_about dl dt,
.jyuku .curriculum_7hj article .curriculum_about dl dt, .page-id-38 .curriculum_7hj article .curriculum_about dl dt {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 500;
  margin-bottom: 10px !important;
}
.school .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1), .page-id-36 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1),
.jyuku .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1), .page-id-38 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) {
  margin-bottom: 25px !important;
}
.school .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul, .page-id-36 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul,
.jyuku .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul, .page-id-38 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.school .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-36 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul li,
.jyuku .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-38 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(1) ul li {
  color: rgba(var(--white), 1);
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  padding: 5px 10px;
  background: rgba(var(--bk), 0.1);
  min-width: 100px;
  text-align: center;
}
.school .curriculum_7hj article .curriculum_about dl dd:nth-of-type(2) p, .page-id-36 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(2) p,
.jyuku .curriculum_7hj article .curriculum_about dl dd:nth-of-type(2) p, .page-id-38 .curriculum_7hj article .curriculum_about dl dd:nth-of-type(2) p {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
.school .curriculum_7hj article .curriculum_lists, .page-id-36 .curriculum_7hj article .curriculum_lists,
.jyuku .curriculum_7hj article .curriculum_lists, .page-id-38 .curriculum_7hj article .curriculum_lists {
  margin-bottom: 55px !important;
}
.school .curriculum_7hj article .curriculum_lists ol, .page-id-36 .curriculum_7hj article .curriculum_lists ol,
.jyuku .curriculum_7hj article .curriculum_lists ol, .page-id-38 .curriculum_7hj article .curriculum_lists ol {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  list-style: none;
  flex-wrap: wrap;
}
.school .curriculum_7hj article .curriculum_lists ol li, .page-id-36 .curriculum_7hj article .curriculum_lists ol li,
.jyuku .curriculum_7hj article .curriculum_lists ol li, .page-id-38 .curriculum_7hj article .curriculum_lists ol li {
  flex: 0 0 calc((100% - 40px) / 4);
  background: rgba(var(--bk), 0.2);
  position: relative;
  padding: 60px 15px 25px;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 500;
  color: rgba(var(--white), 1);
}
@media (max-width: 880px) {
  .school .curriculum_7hj article .curriculum_lists ol li, .page-id-36 .curriculum_7hj article .curriculum_lists ol li,
  .jyuku .curriculum_7hj article .curriculum_lists ol li, .page-id-38 .curriculum_7hj article .curriculum_lists ol li {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}
@media (max-width: 570px) {
  .school .curriculum_7hj article .curriculum_lists ol li, .page-id-36 .curriculum_7hj article .curriculum_lists ol li,
  .jyuku .curriculum_7hj article .curriculum_lists ol li, .page-id-38 .curriculum_7hj article .curriculum_lists ol li {
    flex: 0 0 100%;
    padding: 40px 15px 25px;
  }
}
.school .curriculum_7hj article .curriculum_lists ol li span, .page-id-36 .curriculum_7hj article .curriculum_lists ol li span,
.jyuku .curriculum_7hj article .curriculum_lists ol li span, .page-id-38 .curriculum_7hj article .curriculum_lists ol li span {
  margin-top: 10px !important;
  display: block;
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
  font-weight: 400;
}
.school .curriculum_7hj article .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:before {
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(var(--white), 1);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
@media (max-width: 570px) {
  .school .curriculum_7hj article .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:before,
  .jyuku .curriculum_7hj article .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:before {
    width: 35px;
    height: 35px;
  }
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(1):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(1):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(1):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(1):before {
  content: "1";
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(2):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(2):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(2):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(2):before {
  content: "2";
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(3):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(3):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(3):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(3):before {
  content: "3";
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(4):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(4):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(4):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(4):before {
  content: "4";
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(5):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(5):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(5):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(5):before {
  content: "5";
}
.school .curriculum_7hj article .curriculum_lists ol li:nth-of-type(6):before, .page-id-36 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(6):before,
.jyuku .curriculum_7hj article .curriculum_lists ol li:nth-of-type(6):before, .page-id-38 .curriculum_7hj article .curriculum_lists ol li:nth-of-type(6):before {
  content: "6";
}
.school .curriculum_7hj article .curriculum_voice, .page-id-36 .curriculum_7hj article .curriculum_voice,
.jyuku .curriculum_7hj article .curriculum_voice, .page-id-38 .curriculum_7hj article .curriculum_voice {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid rgba(var(--bk-c), 0.2);
  border-bottom: 1px solid rgba(var(--bk-c), 0.2);
}
.school .curriculum_7hj article .curriculum_voice figure, .school .curriculum_7hj article .curriculum_voice dl, .page-id-36 .curriculum_7hj article .curriculum_voice figure, .page-id-36 .curriculum_7hj article .curriculum_voice dl,
.jyuku .curriculum_7hj article .curriculum_voice figure,
.jyuku .curriculum_7hj article .curriculum_voice dl, .page-id-38 .curriculum_7hj article .curriculum_voice figure, .page-id-38 .curriculum_7hj article .curriculum_voice dl {
  flex: 0 0 50%;
  padding: 15px;
}
@media (max-width: 880px) {
  .school .curriculum_7hj article .curriculum_voice figure, .school .curriculum_7hj article .curriculum_voice dl, .page-id-36 .curriculum_7hj article .curriculum_voice figure, .page-id-36 .curriculum_7hj article .curriculum_voice dl,
  .jyuku .curriculum_7hj article .curriculum_voice figure,
  .jyuku .curriculum_7hj article .curriculum_voice dl, .page-id-38 .curriculum_7hj article .curriculum_voice figure, .page-id-38 .curriculum_7hj article .curriculum_voice dl {
    flex: 0 0 100%;
  }
}
@media (max-width: 570px) {
  .school .curriculum_7hj article .curriculum_voice figure, .school .curriculum_7hj article .curriculum_voice dl, .page-id-36 .curriculum_7hj article .curriculum_voice figure, .page-id-36 .curriculum_7hj article .curriculum_voice dl,
  .jyuku .curriculum_7hj article .curriculum_voice figure,
  .jyuku .curriculum_7hj article .curriculum_voice dl, .page-id-38 .curriculum_7hj article .curriculum_voice figure, .page-id-38 .curriculum_7hj article .curriculum_voice dl {
    padding: 15px 0;
  }
}
.school .curriculum_7hj article .curriculum_voice.type_a figure, .page-id-36 .curriculum_7hj article .curriculum_voice.type_a figure,
.jyuku .curriculum_7hj article .curriculum_voice.type_a figure, .page-id-38 .curriculum_7hj article .curriculum_voice.type_a figure {
  border-right: 1px solid rgba(var(--bk-c), 0.2);
}
@media (max-width: 880px) {
  .school .curriculum_7hj article .curriculum_voice.type_a figure, .school .curriculum_7hj article .curriculum_voice.type_a dl, .page-id-36 .curriculum_7hj article .curriculum_voice.type_a figure, .page-id-36 .curriculum_7hj article .curriculum_voice.type_a dl,
  .jyuku .curriculum_7hj article .curriculum_voice.type_a figure,
  .jyuku .curriculum_7hj article .curriculum_voice.type_a dl, .page-id-38 .curriculum_7hj article .curriculum_voice.type_a figure, .page-id-38 .curriculum_7hj article .curriculum_voice.type_a dl {
    border-right: none;
  }
}
.school .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1), .page-id-36 .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1),
.jyuku .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1), .page-id-38 .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1) {
  border-right: 1px solid rgba(var(--bk-c), 0.2);
}
@media (max-width: 880px) {
  .school .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1), .page-id-36 .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1),
  .jyuku .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1), .page-id-38 .curriculum_7hj article .curriculum_voice.type_b dl:nth-of-type(1) {
    border-right: none;
    border-bottom: 1px solid rgba(var(--bk-c), 0.2);
  }
}
.school .curriculum_7hj article .curriculum_voice.type_c, .page-id-36 .curriculum_7hj article .curriculum_voice.type_c,
.jyuku .curriculum_7hj article .curriculum_voice.type_c, .page-id-38 .curriculum_7hj article .curriculum_voice.type_c {
  border-bottom: none;
}
.school .curriculum_7hj article .curriculum_voice.type_c dl, .page-id-36 .curriculum_7hj article .curriculum_voice.type_c dl,
.jyuku .curriculum_7hj article .curriculum_voice.type_c dl, .page-id-38 .curriculum_7hj article .curriculum_voice.type_c dl {
  border-bottom: 1px solid rgba(var(--bk-c), 0.2);
}
.school .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd), .page-id-36 .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd),
.jyuku .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd), .page-id-38 .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd) {
  border-right: 1px solid rgba(var(--bk-c), 0.2);
}
@media (max-width: 880px) {
  .school .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd), .page-id-36 .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd),
  .jyuku .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd), .page-id-38 .curriculum_7hj article .curriculum_voice.type_c dl:nth-child(odd) {
    border-right: none;
  }
}
.school .curriculum_7hj article .curriculum_voice dl dt, .page-id-36 .curriculum_7hj article .curriculum_voice dl dt,
.jyuku .curriculum_7hj article .curriculum_voice dl dt, .page-id-38 .curriculum_7hj article .curriculum_voice dl dt {
  margin-bottom: 15px !important;
}
.school .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1), .page-id-36 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1),
.jyuku .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1), .page-id-38 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1) {
  min-width: 50px;
  display: inline-block;
  text-align: center;
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  color: rgba(var(--white), 1);
  background: rgba(var(--bk), 1);
  padding: 1px 5px;
  margin-right: 10px;
}
.school .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_a, .page-id-36 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_a,
.jyuku .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_a, .page-id-38 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_a {
  background: rgba(var(--green-b), 1);
}
.school .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_b, .page-id-36 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_b,
.jyuku .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_b, .page-id-38 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(1).mode_b {
  background: rgba(var(--blue), 1);
}
.school .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(2), .page-id-36 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(2),
.jyuku .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(2), .page-id-38 .curriculum_7hj article .curriculum_voice dl dt span:nth-of-type(2) {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 500;
}
.school .curriculum_7hj article .curriculum_voice dl dd, .page-id-36 .curriculum_7hj article .curriculum_voice dl dd,
.jyuku .curriculum_7hj article .curriculum_voice dl dd, .page-id-38 .curriculum_7hj article .curriculum_voice dl dd {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
}
.school .curriculum_7hj article .curriculum_graph, .page-id-36 .curriculum_7hj article .curriculum_graph,
.jyuku .curriculum_7hj article .curriculum_graph, .page-id-38 .curriculum_7hj article .curriculum_graph {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 55px !important;
  gap: 15px;
}
.school .curriculum_7hj article .curriculum_graph dl, .page-id-36 .curriculum_7hj article .curriculum_graph dl,
.jyuku .curriculum_7hj article .curriculum_graph dl, .page-id-38 .curriculum_7hj article .curriculum_graph dl {
  border: 5px solid rgba(var(--bk), 1);
  padding: 25px;
}
.school .curriculum_7hj article .curriculum_graph dl dt, .page-id-36 .curriculum_7hj article .curriculum_graph dl dt,
.jyuku .curriculum_7hj article .curriculum_graph dl dt, .page-id-38 .curriculum_7hj article .curriculum_graph dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj article .curriculum_graph dl dd, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd,
.jyuku .curriculum_7hj article .curriculum_graph dl dd, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
}
.school .curriculum_7hj article .curriculum_graph dl dd figure.is-pc, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc,
.jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-pc, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc {
  display: block;
  width: 100%;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .curriculum_graph dl dd figure.is-pc, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc,
  .jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-pc, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc {
    display: none;
  }
}
.school .curriculum_7hj article .curriculum_graph dl dd figure.is-pc img, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc img,
.jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-pc img, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-pc img {
  max-height: none;
  height: auto;
}
.school .curriculum_7hj article .curriculum_graph dl dd figure.is-sp, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp,
.jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-sp, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp {
  display: none;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .curriculum_graph dl dd figure.is-sp, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp,
  .jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-sp, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .school .curriculum_7hj article .curriculum_graph dl dd figure.is-sp img, .page-id-36 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp img,
  .jyuku .curriculum_7hj article .curriculum_graph dl dd figure.is-sp img, .page-id-38 .curriculum_7hj article .curriculum_graph dl dd figure.is-sp img {
    max-height: none;
    height: auto;
  }
}
.school .curriculum_7hj article .curriculum_graph dl.type_a, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_a,
.jyuku .curriculum_7hj article .curriculum_graph dl.type_a, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_a {
  width: 100%;
}
.school .curriculum_7hj article .curriculum_graph dl.type_a dd img, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_a dd img,
.jyuku .curriculum_7hj article .curriculum_graph dl.type_a dd img, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_a dd img {
  max-height: 200px;
  height: 200px;
}
@media (max-width: 1198px) {
  .school .curriculum_7hj article .curriculum_graph dl.type_a dd img:nth-of-type(2), .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_a dd img:nth-of-type(2),
  .jyuku .curriculum_7hj article .curriculum_graph dl.type_a dd img:nth-of-type(2), .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_a dd img:nth-of-type(2) {
    display: none;
  }
  .school .curriculum_7hj article .curriculum_graph dl.type_a dd img, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_a dd img,
  .jyuku .curriculum_7hj article .curriculum_graph dl.type_a dd img, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_a dd img {
    height: auto;
  }
}
.school .curriculum_7hj article .curriculum_graph dl.type_a, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_a,
.jyuku .curriculum_7hj article .curriculum_graph dl.type_a, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_a {
  border-color: rgba(var(--green-c), 0.3);
}
.school .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_b,
.jyuku .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_b {
  flex: 0 0 calc((100% - 15px) / 2);
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_b,
  .jyuku .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_b {
    flex: 0 0 100%;
  }
}
.school .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-36 .curriculum_7hj article .curriculum_graph dl.type_b,
.jyuku .curriculum_7hj article .curriculum_graph dl.type_b, .page-id-38 .curriculum_7hj article .curriculum_graph dl.type_b {
  border-color: rgba(var(--pink), 0.3);
}
.school .curriculum_7hj article .colona_unit, .page-id-36 .curriculum_7hj article .colona_unit,
.jyuku .curriculum_7hj article .colona_unit, .page-id-38 .curriculum_7hj article .colona_unit {
  margin-bottom: 45px !important;
}
.school .curriculum_7hj article .colona_unit dl dt, .page-id-36 .curriculum_7hj article .colona_unit dl dt,
.jyuku .curriculum_7hj article .colona_unit dl dt, .page-id-38 .curriculum_7hj article .colona_unit dl dt {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  text-align: center;
  font-weight: 500;
  padding: 10px;
  background: rgba(var(--blue), 1);
  color: rgba(var(--white), 1);
}
.school .curriculum_7hj article .colona_graph, .page-id-36 .curriculum_7hj article .colona_graph,
.jyuku .curriculum_7hj article .colona_graph, .page-id-38 .curriculum_7hj article .colona_graph {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 55px !important;
  gap: 15px;
}
.school .curriculum_7hj article .colona_graph dl, .page-id-36 .curriculum_7hj article .colona_graph dl,
.jyuku .curriculum_7hj article .colona_graph dl, .page-id-38 .curriculum_7hj article .colona_graph dl {
  border: 5px solid rgba(var(--yerrow), 0.6);
  padding: 25px;
}
.school .curriculum_7hj article .colona_graph dl dt, .page-id-36 .curriculum_7hj article .colona_graph dl dt,
.jyuku .curriculum_7hj article .colona_graph dl dt, .page-id-38 .curriculum_7hj article .colona_graph dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj article .colona_graph dl dd, .page-id-36 .curriculum_7hj article .colona_graph dl dd,
.jyuku .curriculum_7hj article .colona_graph dl dd, .page-id-38 .curriculum_7hj article .colona_graph dl dd {
  display: flex;
  justify-content: center;
  align-items: center;
}
.school .curriculum_7hj article .colona_graph dl dd figure.is-pc, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-pc,
.jyuku .curriculum_7hj article .colona_graph dl dd figure.is-pc, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-pc {
  display: block;
  width: 100%;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .colona_graph dl dd figure.is-pc, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-pc,
  .jyuku .curriculum_7hj article .colona_graph dl dd figure.is-pc, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-pc {
    display: none;
  }
}
.school .curriculum_7hj article .colona_graph dl dd figure.is-pc img, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-pc img,
.jyuku .curriculum_7hj article .colona_graph dl dd figure.is-pc img, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-pc img {
  max-height: none;
  height: auto;
}
.school .curriculum_7hj article .colona_graph dl dd figure.is-sp, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-sp,
.jyuku .curriculum_7hj article .colona_graph dl dd figure.is-sp, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-sp {
  display: none;
}
@media (max-width: 770px) {
  .school .curriculum_7hj article .colona_graph dl dd figure.is-sp, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-sp,
  .jyuku .curriculum_7hj article .colona_graph dl dd figure.is-sp, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-sp {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .school .curriculum_7hj article .colona_graph dl dd figure.is-sp img, .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-sp img,
  .jyuku .curriculum_7hj article .colona_graph dl dd figure.is-sp img, .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-sp img {
    max-height: none;
    height: auto;
  }
  .school .curriculum_7hj article .colona_graph dl dd figure.is-sp img:nth-of-type(2), .page-id-36 .curriculum_7hj article .colona_graph dl dd figure.is-sp img:nth-of-type(2),
  .jyuku .curriculum_7hj article .colona_graph dl dd figure.is-sp img:nth-of-type(2), .page-id-38 .curriculum_7hj article .colona_graph dl dd figure.is-sp img:nth-of-type(2) {
    display: none;
  }
}
.school .curriculum_7hj#curriculum__type--a article, .page-id-36 .curriculum_7hj#curriculum__type--a article,
.jyuku .curriculum_7hj#curriculum__type--a article, .page-id-38 .curriculum_7hj#curriculum__type--a article {
  border: 10px solid rgba(var(--orange), 1);
}
.school .curriculum_7hj#curriculum__type--a .curriculum_about, .page-id-36 .curriculum_7hj#curriculum__type--a .curriculum_about,
.jyuku .curriculum_7hj#curriculum__type--a .curriculum_about, .page-id-38 .curriculum_7hj#curriculum__type--a .curriculum_about {
  border: 5px solid rgba(var(--orange), 0.4);
  background: rgba(var(--orange), 0.1);
}
.school .curriculum_7hj#curriculum__type--a .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-36 .curriculum_7hj#curriculum__type--a .curriculum_about dl dd:nth-of-type(1) ul li,
.jyuku .curriculum_7hj#curriculum__type--a .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-38 .curriculum_7hj#curriculum__type--a .curriculum_about dl dd:nth-of-type(1) ul li {
  background: rgba(var(--orange), 1);
}
.school .curriculum_7hj#curriculum__type--a .curriculum_lists ol li, .page-id-36 .curriculum_7hj#curriculum__type--a .curriculum_lists ol li,
.jyuku .curriculum_7hj#curriculum__type--a .curriculum_lists ol li, .page-id-38 .curriculum_7hj#curriculum__type--a .curriculum_lists ol li {
  background: rgba(var(--orange), 1);
}
.school .curriculum_7hj#curriculum__type--a .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj#curriculum__type--a .curriculum_lists ol li:before,
.jyuku .curriculum_7hj#curriculum__type--a .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj#curriculum__type--a .curriculum_lists ol li:before {
  color: rgba(var(--orange), 1);
}
.school .curriculum_7hj#curriculum__type--a .curriculum_graph dl, .page-id-36 .curriculum_7hj#curriculum__type--a .curriculum_graph dl,
.jyuku .curriculum_7hj#curriculum__type--a .curriculum_graph dl, .page-id-38 .curriculum_7hj#curriculum__type--a .curriculum_graph dl {
  border: 5px solid rgba(var(--orange), 0.4);
}
.school .curriculum_7hj#curriculum__type--b article, .page-id-36 .curriculum_7hj#curriculum__type--b article,
.jyuku .curriculum_7hj#curriculum__type--b article, .page-id-38 .curriculum_7hj#curriculum__type--b article {
  border: 10px solid rgba(var(--green), 1);
}
.school .curriculum_7hj#curriculum__type--b .curriculum_about, .page-id-36 .curriculum_7hj#curriculum__type--b .curriculum_about,
.jyuku .curriculum_7hj#curriculum__type--b .curriculum_about, .page-id-38 .curriculum_7hj#curriculum__type--b .curriculum_about {
  border: 5px solid rgba(var(--green-c), 0.4);
  background: rgba(var(--green-c), 0.1);
}
.school .curriculum_7hj#curriculum__type--b .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-36 .curriculum_7hj#curriculum__type--b .curriculum_about dl dd:nth-of-type(1) ul li,
.jyuku .curriculum_7hj#curriculum__type--b .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-38 .curriculum_7hj#curriculum__type--b .curriculum_about dl dd:nth-of-type(1) ul li {
  background: rgba(var(--green-c), 1);
}
.school .curriculum_7hj#curriculum__type--b .curriculum_lists ol li, .page-id-36 .curriculum_7hj#curriculum__type--b .curriculum_lists ol li,
.jyuku .curriculum_7hj#curriculum__type--b .curriculum_lists ol li, .page-id-38 .curriculum_7hj#curriculum__type--b .curriculum_lists ol li {
  background: rgba(var(--green-c), 1);
}
.school .curriculum_7hj#curriculum__type--b .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj#curriculum__type--b .curriculum_lists ol li:before,
.jyuku .curriculum_7hj#curriculum__type--b .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj#curriculum__type--b .curriculum_lists ol li:before {
  color: rgba(var(--green-c), 1);
}
.school .curriculum_7hj#curriculum__type--b .curriculum_graph dl, .page-id-36 .curriculum_7hj#curriculum__type--b .curriculum_graph dl,
.jyuku .curriculum_7hj#curriculum__type--b .curriculum_graph dl, .page-id-38 .curriculum_7hj#curriculum__type--b .curriculum_graph dl {
  border: 5x solid rgba(var(--green-c), 0.4);
}
.school .curriculum_7hj#curriculum__type--c article, .page-id-36 .curriculum_7hj#curriculum__type--c article,
.jyuku .curriculum_7hj#curriculum__type--c article, .page-id-38 .curriculum_7hj#curriculum__type--c article {
  border: 10px solid rgba(var(--pink), 1);
}
.school .curriculum_7hj#curriculum__type--c .curriculum_about, .page-id-36 .curriculum_7hj#curriculum__type--c .curriculum_about,
.jyuku .curriculum_7hj#curriculum__type--c .curriculum_about, .page-id-38 .curriculum_7hj#curriculum__type--c .curriculum_about {
  border: 5px solid rgba(var(--pink), 0.4);
  background: rgba(var(--pink), 0.1);
}
.school .curriculum_7hj#curriculum__type--c .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-36 .curriculum_7hj#curriculum__type--c .curriculum_about dl dd:nth-of-type(1) ul li,
.jyuku .curriculum_7hj#curriculum__type--c .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-38 .curriculum_7hj#curriculum__type--c .curriculum_about dl dd:nth-of-type(1) ul li {
  background: rgba(var(--pink), 1);
}
.school .curriculum_7hj#curriculum__type--c .curriculum_lists ol li, .page-id-36 .curriculum_7hj#curriculum__type--c .curriculum_lists ol li,
.jyuku .curriculum_7hj#curriculum__type--c .curriculum_lists ol li, .page-id-38 .curriculum_7hj#curriculum__type--c .curriculum_lists ol li {
  background: rgba(var(--pink), 1);
}
.school .curriculum_7hj#curriculum__type--c .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj#curriculum__type--c .curriculum_lists ol li:before,
.jyuku .curriculum_7hj#curriculum__type--c .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj#curriculum__type--c .curriculum_lists ol li:before {
  color: rgba(var(--pink), 1);
}
.school .curriculum_7hj#curriculum__type--d article, .page-id-36 .curriculum_7hj#curriculum__type--d article,
.jyuku .curriculum_7hj#curriculum__type--d article, .page-id-38 .curriculum_7hj#curriculum__type--d article {
  border: 10px solid rgba(var(--blue), 1);
}
.school .curriculum_7hj#curriculum__type--d .curriculum_about, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_about,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_about, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_about {
  border: 5px solid rgba(var(--blue), 0.4);
  background: rgba(var(--blue), 0.1);
}
.school .curriculum_7hj#curriculum__type--d .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_about dl dd:nth-of-type(1) ul li,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_about dl dd:nth-of-type(1) ul li, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_about dl dd:nth-of-type(1) ul li {
  background: rgba(var(--blue), 1);
}
.school .curriculum_7hj#curriculum__type--d .curriculum_lists ol li, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_lists ol li,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_lists ol li, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_lists ol li {
  background: rgba(var(--blue), 1);
}
.school .curriculum_7hj#curriculum__type--d .curriculum_lists ol li:before, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_lists ol li:before,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_lists ol li:before, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_lists ol li:before {
  color: rgba(var(--blue), 1);
}
.school .curriculum_7hj#curriculum__type--d .curriculum_point--list, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 45px !important;
}
.school .curriculum_7hj#curriculum__type--d .curriculum_point--list li, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li {
  background: rgba(var(--blue), 1);
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1.3;
  gap: 15px;
}
@media (max-width: 570px) {
  .school .curriculum_7hj#curriculum__type--d .curriculum_point--list li, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li,
  .jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li {
    width: 100%;
    height: auto;
    padding: 15px;
    flex-direction: row;
    justify-content: flex-start;
  }
}
.school .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before {
  content: "";
  display: block;
  width: 40px;
  height: 45px;
  background: url(../image/ic-point.png) no-repeat center/contain;
}
@media (max-width: 570px) {
  .school .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before,
  .jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li:before {
    width: 30px;
    height: 45px;
  }
}
.school .curriculum_7hj#curriculum__type--d .curriculum_point--list li span, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li span,
.jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li span, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li span {
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  font-weight: 600;
  color: rgba(var(--white), 1);
}
@media (max-width: 570px) {
  .school .curriculum_7hj#curriculum__type--d .curriculum_point--list li span br, .page-id-36 .curriculum_7hj#curriculum__type--d .curriculum_point--list li span br,
  .jyuku .curriculum_7hj#curriculum__type--d .curriculum_point--list li span br, .page-id-38 .curriculum_7hj#curriculum__type--d .curriculum_point--list li span br {
    display: none;
  }
}
.school .curriculum_7hj#curriculum__type--d .whats_7hj_unit, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit,
.jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit {
  margin-bottom: 45px !important;
  border: 5px solid rgba(var(--blue), 0.4);
  padding: 25px;
}
.school .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dt, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dt,
.jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dt, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd,
.jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd {
  display: flex;
  gap: 20px;
}
.school .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure,
.jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure {
  min-width: 140px;
  max-width: 140px;
}
@media (max-width: 570px) {
  .school .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd,
  .jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd {
    flex-direction: column;
  }
  .school .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure, .page-id-36 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure,
  .jyuku .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure, .page-id-38 .curriculum_7hj#curriculum__type--d .whats_7hj_unit dl dd figure {
    min-width: 200px;
    max-width: 200px;
    margin: 20px auto 0;
  }
}
.school .curriculum_7hj#curriculum__type--d .why_coaching, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching {
  border: 5px solid rgba(var(--blue), 0.4);
  padding: 25px;
  background: rgba(var(--blue), 0.15);
}
.school .curriculum_7hj#curriculum__type--d .why_coaching dl dt, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching dl dt,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching dl dt, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching dl dd, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching dl dd,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching dl dd, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching dl dd {
  text-align: center;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  font-weight: 600;
  color: rgba(var(--white), 1);
  background: rgba(var(--blue), 1);
  padding: 10px;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching blockquote, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching blockquote,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching blockquote, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching blockquote {
  text-align: center;
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 60px;
  position: relative;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl {
  min-width: 270px;
  background: rgba(var(--blue), 0.2);
  padding: 20px 0;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  font-weight: 400;
  min-height: 6em;
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dd, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dd,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dd, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dd {
  margin-top: auto;
  background: rgba(var(--white), 1);
  color: rgba(var(--pink), 1);
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after {
  position: absolute;
  content: "\e94e";
  display: inline-block;
  font-family: "icon-fonts" !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(1.125rem, 0.716rem + 2.05vw, 2.25rem);
  color: rgba(var(--blue), 1);
  font-weight: 600;
}
@media (max-width: 1198px) {
  .school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes,
  .jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes {
    flex-direction: column;
    gap: 40px;
  }
  .school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl,
  .jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl {
    width: 100%;
  }
  .school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt,
  .jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes dl dt {
    min-height: auto;
    padding: 0 0 20px;
    margin-bottom: 0px !important;
  }
  .school .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after,
  .jyuku .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .skill_changes:after {
    transform: rotate(90deg);
    margin-top: -20px;
  }
}
.school .curriculum_7hj#curriculum__type--d .why_coaching .last_message p, .page-id-36 .curriculum_7hj#curriculum__type--d .why_coaching .last_message p,
.jyuku .curriculum_7hj#curriculum__type--d .why_coaching .last_message p, .page-id-38 .curriculum_7hj#curriculum__type--d .why_coaching .last_message p {
  text-align: center;
  margin-top: 35px !important;
  font-weight: 600;
}
.school .curriculum_7hj .anxiety_unit, .page-id-36 .curriculum_7hj .anxiety_unit,
.jyuku .curriculum_7hj .anxiety_unit, .page-id-38 .curriculum_7hj .anxiety_unit {
  margin-bottom: 45px !important;
  border: 5px solid rgba(var(--yerrow), 0.6);
  background: rgba(var(--yerrow), 0.45);
  padding: 25px;
}
.school .curriculum_7hj .anxiety_unit dl dt, .page-id-36 .curriculum_7hj .anxiety_unit dl dt,
.jyuku .curriculum_7hj .anxiety_unit dl dt, .page-id-38 .curriculum_7hj .anxiety_unit dl dt {
  text-align: center;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 600;
  margin-bottom: 25px !important;
}
.school .curriculum_7hj .anxiety_unit dl dd, .page-id-36 .curriculum_7hj .anxiety_unit dl dd,
.jyuku .curriculum_7hj .anxiety_unit dl dd, .page-id-38 .curriculum_7hj .anxiety_unit dl dd {
  display: flex;
  gap: 20px;
}
.school .curriculum_7hj .anxiety_unit dl dd figure, .page-id-36 .curriculum_7hj .anxiety_unit dl dd figure,
.jyuku .curriculum_7hj .anxiety_unit dl dd figure, .page-id-38 .curriculum_7hj .anxiety_unit dl dd figure {
  min-width: 140px;
  max-width: 140px;
}

.contact .telephone_data, .page-id-52 .telephone_data,
.request .telephone_data, .page-id-2192 .telephone_data,
.school_msg .telephone_data, .page-id-2107 .telephone_data {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px !important;
}
.contact .telephone_data dt, .page-id-52 .telephone_data dt,
.request .telephone_data dt, .page-id-2192 .telephone_data dt,
.school_msg .telephone_data dt, .page-id-2107 .telephone_data dt {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  font-weight: 600;
}
.contact .telephone_data dd, .page-id-52 .telephone_data dd,
.request .telephone_data dd, .page-id-2192 .telephone_data dd,
.school_msg .telephone_data dd, .page-id-2107 .telephone_data dd {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 400;
}
.contact .telephone_data dd a, .page-id-52 .telephone_data dd a,
.request .telephone_data dd a, .page-id-2192 .telephone_data dd a,
.school_msg .telephone_data dd a, .page-id-2107 .telephone_data dd a {
  color: rgba(var(--bk), 1);
}
@media (max-width: 570px) {
  .contact .telephone_data, .page-id-52 .telephone_data,
  .request .telephone_data, .page-id-2192 .telephone_data,
  .school_msg .telephone_data, .page-id-2107 .telephone_data {
    flex-direction: column;
    gap: 5px;
  }
}
.contact .form_wrapper, .page-id-52 .form_wrapper,
.request .form_wrapper, .page-id-2192 .form_wrapper,
.school_msg .form_wrapper, .page-id-2107 .form_wrapper {
  border: 5px solid rgba(var(--bk-a), 0.1);
  border-radius: 3px;
  padding: 40px;
  margin: auto;
  max-width: var(--inner-wrap);
}
@media (max-width: 770px) {
  .contact .form_wrapper, .page-id-52 .form_wrapper,
  .request .form_wrapper, .page-id-2192 .form_wrapper,
  .school_msg .form_wrapper, .page-id-2107 .form_wrapper {
    padding: 40px 15px;
  }
}
.contact .form_wrapper dl, .page-id-52 .form_wrapper dl,
.request .form_wrapper dl, .page-id-2192 .form_wrapper dl,
.school_msg .form_wrapper dl, .page-id-2107 .form_wrapper dl {
  margin-bottom: 35px !important;
  width: 100%;
}
.contact .form_wrapper dl dt span, .page-id-52 .form_wrapper dl dt span,
.request .form_wrapper dl dt span, .page-id-2192 .form_wrapper dl dt span,
.school_msg .form_wrapper dl dt span, .page-id-2107 .form_wrapper dl dt span {
  color: rgba(var(--red), 1);
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
  margin-left: 10px;
}
.contact .form_wrapper *, .page-id-52 .form_wrapper *,
.request .form_wrapper *, .page-id-2192 .form_wrapper *,
.school_msg .form_wrapper *, .page-id-2107 .form_wrapper * {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.contact .form_wrapper .wpcf7-list-item, .page-id-52 .form_wrapper .wpcf7-list-item,
.request .form_wrapper .wpcf7-list-item, .page-id-2192 .form_wrapper .wpcf7-list-item,
.school_msg .form_wrapper .wpcf7-list-item, .page-id-2107 .form_wrapper .wpcf7-list-item {
  margin-left: 0;
}
.contact .radio_line, .page-id-52 .radio_line,
.request .radio_line, .page-id-2192 .radio_line,
.school_msg .radio_line, .page-id-2107 .radio_line {
  display: flex;
  align-items: center;
}
@media (max-width: 770px) {
  .contact .radio_line, .page-id-52 .radio_line,
  .request .radio_line, .page-id-2192 .radio_line,
  .school_msg .radio_line, .page-id-2107 .radio_line {
    flex-direction: column;
    align-items: flex-start;
  }
}
.contact .radio_line dt, .page-id-52 .radio_line dt,
.request .radio_line dt, .page-id-2192 .radio_line dt,
.school_msg .radio_line dt, .page-id-2107 .radio_line dt {
  width: 25%;
  min-width: 210px;
}
.contact .radio_line dd, .page-id-52 .radio_line dd,
.request .radio_line dd, .page-id-2192 .radio_line dd,
.school_msg .radio_line dd, .page-id-2107 .radio_line dd {
  width: 75%;
}
@media (max-width: 770px) {
  .contact .radio_line dd, .page-id-52 .radio_line dd,
  .request .radio_line dd, .page-id-2192 .radio_line dd,
  .school_msg .radio_line dd, .page-id-2107 .radio_line dd {
    width: 100%;
    margin-top: 5px !important;
  }
}
.contact .radio_line dd .wpcf7-form-control, .page-id-52 .radio_line dd .wpcf7-form-control,
.request .radio_line dd .wpcf7-form-control, .page-id-2192 .radio_line dd .wpcf7-form-control,
.school_msg .radio_line dd .wpcf7-form-control, .page-id-2107 .radio_line dd .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 770px) {
  .contact .radio_line dd .wpcf7-form-control, .page-id-52 .radio_line dd .wpcf7-form-control,
  .request .radio_line dd .wpcf7-form-control, .page-id-2192 .radio_line dd .wpcf7-form-control,
  .school_msg .radio_line dd .wpcf7-form-control, .page-id-2107 .radio_line dd .wpcf7-form-control {
    flex-direction: column;
  }
}
.contact .radio_line dd label, .page-id-52 .radio_line dd label,
.request .radio_line dd label, .page-id-2192 .radio_line dd label,
.school_msg .radio_line dd label, .page-id-2107 .radio_line dd label {
  border: 1px solid rgba(var(--bk-a), 0.25);
  padding: 10px;
  border-radius: 5px;
  background: rgba(var(--bk-c), 0.2);
  width: 220px;
  display: block;
  position: relative;
}
@media (max-width: 770px) {
  .contact .radio_line dd label, .page-id-52 .radio_line dd label,
  .request .radio_line dd label, .page-id-2192 .radio_line dd label,
  .school_msg .radio_line dd label, .page-id-2107 .radio_line dd label {
    width: 100%;
  }
}
.contact .radio_line dd label input[type=radio], .page-id-52 .radio_line dd label input[type=radio],
.request .radio_line dd label input[type=radio], .page-id-2192 .radio_line dd label input[type=radio],
.school_msg .radio_line dd label input[type=radio], .page-id-2107 .radio_line dd label input[type=radio] {
  position: relative;
  top: -2px;
}
.contact .radio_line dd .last label, .page-id-52 .radio_line dd .last label,
.request .radio_line dd .last label, .page-id-2192 .radio_line dd .last label,
.school_msg .radio_line dd .last label, .page-id-2107 .radio_line dd .last label {
  width: auto;
}
.contact .check_line .wpcf7-form-control, .page-id-52 .check_line .wpcf7-form-control,
.request .check_line .wpcf7-form-control, .page-id-2192 .check_line .wpcf7-form-control,
.school_msg .check_line .wpcf7-form-control, .page-id-2107 .check_line .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 1em;
}
.contact .check_line dd, .page-id-52 .check_line dd,
.request .check_line dd, .page-id-2192 .check_line dd,
.school_msg .check_line dd, .page-id-2107 .check_line dd {
  margin-top: 25px !important;
}
.contact .check_line input[type=radio], .page-id-52 .check_line input[type=radio],
.request .check_line input[type=radio], .page-id-2192 .check_line input[type=radio],
.school_msg .check_line input[type=radio], .page-id-2107 .check_line input[type=radio] {
  position: relative;
  top: -2px;
}
.contact .form_txt, .page-id-52 .form_txt,
.request .form_txt, .page-id-2192 .form_txt,
.school_msg .form_txt, .page-id-2107 .form_txt {
  margin-bottom: 25px !important;
}
.contact .include_pages, .page-id-52 .include_pages,
.request .include_pages, .page-id-2192 .include_pages,
.school_msg .include_pages, .page-id-2107 .include_pages {
  max-height: 200px;
  resize: vertical;
  border: 1px solid rgba(var(--bk-a), 0.25);
  padding: 35px 40px;
  margin-top: 5px !important;
  border-radius: 5px;
  overflow-y: scroll;
}
.contact .include_pages #policy h1, .page-id-52 .include_pages #policy h1,
.request .include_pages #policy h1, .page-id-2192 .include_pages #policy h1,
.school_msg .include_pages #policy h1, .page-id-2107 .include_pages #policy h1 {
  text-align: center;
  margin-bottom: 35px !important;
  font-weight: 600;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}
.contact .include_pages #policy h2, .page-id-52 .include_pages #policy h2,
.request .include_pages #policy h2, .page-id-2192 .include_pages #policy h2,
.school_msg .include_pages #policy h2, .page-id-2107 .include_pages #policy h2 {
  text-align: center;
  margin-bottom: 35px !important;
  font-weight: 600;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.contact .include_pages #policy p, .page-id-52 .include_pages #policy p,
.request .include_pages #policy p, .page-id-2192 .include_pages #policy p,
.school_msg .include_pages #policy p, .page-id-2107 .include_pages #policy p {
  margin-bottom: 25px !important;
}
.contact .include_pages #policy dl dt, .page-id-52 .include_pages #policy dl dt,
.request .include_pages #policy dl dt, .page-id-2192 .include_pages #policy dl dt,
.school_msg .include_pages #policy dl dt, .page-id-2107 .include_pages #policy dl dt {
  font-weight: 600;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.contact .include_pages #policy dl dd, .page-id-52 .include_pages #policy dl dd,
.request .include_pages #policy dl dd, .page-id-2192 .include_pages #policy dl dd,
.school_msg .include_pages #policy dl dd, .page-id-2107 .include_pages #policy dl dd {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
.contact .btn.submits, .page-id-52 .btn.submits,
.request .btn.submits, .page-id-2192 .btn.submits,
.school_msg .btn.submits, .page-id-2107 .btn.submits {
  display: flex;
  justify-content: center;
  margin-top: 35px !important;
  width: 100%;
}
.contact .btn.submits input, .page-id-52 .btn.submits input,
.request .btn.submits input, .page-id-2192 .btn.submits input,
.school_msg .btn.submits input, .page-id-2107 .btn.submits input {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  border: none;
  color: rgba(var(--bk), 1);
  background: rgba(var(--yerrow), 1);
  border-bottom: 5px solid rgba(var(--yerrow-b), 1);
  width: 270px;
  height: 60px;
  font-weight: 600;
}
.contact .btn.submits input[type=submit]:disabled, .page-id-52 .btn.submits input[type=submit]:disabled,
.request .btn.submits input[type=submit]:disabled, .page-id-2192 .btn.submits input[type=submit]:disabled,
.school_msg .btn.submits input[type=submit]:disabled, .page-id-2107 .btn.submits input[type=submit]:disabled {
  background: rgba(var(--bk-c), 0.3);
  border-bottom: 5px solid rgba(var(--bk-b), 0.3);
  color: rgba(var(--bk-b), 0.3);
}
.contact .wpcf7-spinner, .page-id-52 .wpcf7-spinner,
.request .wpcf7-spinner, .page-id-2192 .wpcf7-spinner,
.school_msg .wpcf7-spinner, .page-id-2107 .wpcf7-spinner {
  position: absolute;
  top: -300vh;
}
.contact input[type=url], .contact input[type=text], .contact input[type=email], .contact input[type=tel], .contact input[type=number], .contact select, .page-id-52 input[type=url], .page-id-52 input[type=text], .page-id-52 input[type=email], .page-id-52 input[type=tel], .page-id-52 input[type=number], .page-id-52 select,
.request input[type=url],
.request input[type=text],
.request input[type=email],
.request input[type=tel],
.request input[type=number],
.request select, .page-id-2192 input[type=url], .page-id-2192 input[type=text], .page-id-2192 input[type=email], .page-id-2192 input[type=tel], .page-id-2192 input[type=number], .page-id-2192 select,
.school_msg input[type=url],
.school_msg input[type=text],
.school_msg input[type=email],
.school_msg input[type=tel],
.school_msg input[type=number],
.school_msg select, .page-id-2107 input[type=url], .page-id-2107 input[type=text], .page-id-2107 input[type=email], .page-id-2107 input[type=tel], .page-id-2107 input[type=number], .page-id-2107 select {
  border: 1px solid rgba(var(--bk-a), 0.25);
  background: rgba(var(--bk-b), 0.15);
  padding: 15px 10px;
  height: 40px;
  width: 100%;
  margin-top: 5px !important;
  border-radius: 5px;
}
.contact select, .page-id-52 select,
.request select, .page-id-2192 select,
.school_msg select, .page-id-2107 select {
  height: auto;
}
.contact textarea, .page-id-52 textarea,
.request textarea, .page-id-2192 textarea,
.school_msg textarea, .page-id-2107 textarea {
  resize: vertical;
  height: 200px;
  border: 1px solid rgba(var(--bk-a), 0.25);
  background: rgba(var(--bk-b), 0.15);
  padding: 15px 10px;
  margin-top: 5px !important;
  border-radius: 5px;
}
.contact input[type=url], .contact input[type=text], .contact input[type=email], .contact input[type=tel], .contact input[type=password], .contact input[type=file], .contact input[type=time], .contact input[type=number], .contact input[type=date], .contact input[type=number], .page-id-52 input[type=url], .page-id-52 input[type=text], .page-id-52 input[type=email], .page-id-52 input[type=tel], .page-id-52 input[type=password], .page-id-52 input[type=file], .page-id-52 input[type=time], .page-id-52 input[type=number], .page-id-52 input[type=date], .page-id-52 input[type=number],
.request input[type=url],
.request input[type=text],
.request input[type=email],
.request input[type=tel],
.request input[type=password],
.request input[type=file],
.request input[type=time],
.request input[type=number],
.request input[type=date],
.request input[type=number], .page-id-2192 input[type=url], .page-id-2192 input[type=text], .page-id-2192 input[type=email], .page-id-2192 input[type=tel], .page-id-2192 input[type=password], .page-id-2192 input[type=file], .page-id-2192 input[type=time], .page-id-2192 input[type=number], .page-id-2192 input[type=date], .page-id-2192 input[type=number],
.school_msg input[type=url],
.school_msg input[type=text],
.school_msg input[type=email],
.school_msg input[type=tel],
.school_msg input[type=password],
.school_msg input[type=file],
.school_msg input[type=time],
.school_msg input[type=number],
.school_msg input[type=date],
.school_msg input[type=number], .page-id-2107 input[type=url], .page-id-2107 input[type=text], .page-id-2107 input[type=email], .page-id-2107 input[type=tel], .page-id-2107 input[type=password], .page-id-2107 input[type=file], .page-id-2107 input[type=time], .page-id-2107 input[type=number], .page-id-2107 input[type=date], .page-id-2107 input[type=number] {
  resize: none;
}
.contact input[type=url], .contact input[type=email], .contact input[type=tel], .contact input[type=password], .contact input[type=number], .contact input.han, .contact input[type=number], .page-id-52 input[type=url], .page-id-52 input[type=email], .page-id-52 input[type=tel], .page-id-52 input[type=password], .page-id-52 input[type=number], .page-id-52 input.han, .page-id-52 input[type=number],
.request input[type=url],
.request input[type=email],
.request input[type=tel],
.request input[type=password],
.request input[type=number],
.request input.han,
.request input[type=number], .page-id-2192 input[type=url], .page-id-2192 input[type=email], .page-id-2192 input[type=tel], .page-id-2192 input[type=password], .page-id-2192 input[type=number], .page-id-2192 input.han, .page-id-2192 input[type=number],
.school_msg input[type=url],
.school_msg input[type=email],
.school_msg input[type=tel],
.school_msg input[type=password],
.school_msg input[type=number],
.school_msg input.han,
.school_msg input[type=number], .page-id-2107 input[type=url], .page-id-2107 input[type=email], .page-id-2107 input[type=tel], .page-id-2107 input[type=password], .page-id-2107 input[type=number], .page-id-2107 input.han, .page-id-2107 input[type=number] {
  ime-mode: disabled;
}
.contact ::placeholder, .page-id-52 ::placeholder,
.request ::placeholder, .page-id-2192 ::placeholder,
.school_msg ::placeholder, .page-id-2107 ::placeholder {
  color: rgba(var(--bk-a), 0.4);
}
.contact .acceptance, .page-id-52 .acceptance,
.request .acceptance, .page-id-2192 .acceptance,
.school_msg .acceptance, .page-id-2107 .acceptance {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
  margin: auto;
  text-align: center;
}
.contact .form_main-msg, .page-id-52 .form_main-msg,
.request .form_main-msg, .page-id-2192 .form_main-msg,
.school_msg .form_main-msg, .page-id-2107 .form_main-msg {
  text-align: center;
  font-weight: 500;
  margin-bottom: 45px !important;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}

.school_msg .mod_search, .school_msg .mod_thinking, .page-id-2107 .mod_search, .page-id-2107 .mod_thinking {
  display: none;
}
.school_msg .check-msg a, .page-id-2107 .check-msg a {
  color: rgba(var(--bk-a), 1);
}

.request .mod_search, .request .mod_thinking, .page-id-2192 .mod_search, .page-id-2192 .mod_thinking {
  display: none;
}
.request .form_wrapper dl, .page-id-2192 .form_wrapper dl {
  display: flex;
  align-items: center;
}
@media (max-width: 770px) {
  .request .form_wrapper dl, .page-id-2192 .form_wrapper dl {
    flex-direction: column;
    align-items: flex-start;
  }
}
.request .form_wrapper dl dt, .page-id-2192 .form_wrapper dl dt {
  width: 25%;
  min-width: 210px;
}
.request .form_wrapper dl dd, .page-id-2192 .form_wrapper dl dd {
  width: 75%;
}
@media (max-width: 770px) {
  .request .form_wrapper dl dd, .page-id-2192 .form_wrapper dl dd {
    width: 100%;
    margin-top: 5px !important;
  }
}
.request .form_wrapper dl dd .wpcf7-form-control, .page-id-2192 .form_wrapper dl dd .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 770px) {
  .request .form_wrapper dl dd .wpcf7-form-control, .page-id-2192 .form_wrapper dl dd .wpcf7-form-control {
    flex-direction: column;
  }
}
.request .form_wrapper dl.privacy, .page-id-2192 .form_wrapper dl.privacy {
  flex-direction: column;
  align-items: flex-start;
}
.request .form_wrapper dl.privacy dt, .request .form_wrapper dl.privacy dd, .page-id-2192 .form_wrapper dl.privacy dt, .page-id-2192 .form_wrapper dl.privacy dd {
  width: 100%;
}

.introduction .introduction_wrap, .page-id-54 .introduction_wrap {
  border: 5px solid rgba(var(--bk-a), 0.1);
  border-radius: 3px;
  padding: 40px;
  margin: auto;
  max-width: var(--inner-wrap);
}
@media (max-width: 770px) {
  .introduction .introduction_wrap, .page-id-54 .introduction_wrap {
    padding: 40px 15px;
  }
}
.introduction .introduction_wrap h2, .page-id-54 .introduction_wrap h2 {
  text-align: center;
  margin-bottom: 35px !important;
  font-weight: 500;
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}
.introduction .introduction_wrap p, .page-id-54 .introduction_wrap p {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.introduction .introduction_wrap p:not(:last-of-type), .page-id-54 .introduction_wrap p:not(:last-of-type) {
  margin-bottom: 35px !important;
}
.introduction .introduction_wrap p .attention, .page-id-54 .introduction_wrap p .attention {
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
}
.introduction .introduction_btn, .page-id-54 .introduction_btn {
  margin-top: 45px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.introduction .introduction_btn li a, .page-id-54 .introduction_btn li a {
  margin-top: 10px !important;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  color: rgba(var(--blue), 1);
  text-decoration: underline;
}
.introduction .introduction_btn li a.btn, .page-id-54 .introduction_btn li a.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: rgba(var(--bk), 1);
  background: rgba(var(--yerrow), 1);
  border-bottom: 5px solid rgba(var(--yerrow-b), 1);
  width: 270px;
  height: 60px;
  text-decoration: none;
  font-weight: 600;
}

.post-type-archive-class .mapnavigation_wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 1199px) {
  .post-type-archive-class .mapnavigation_wrap {
    flex-direction: column;
  }
}
.post-type-archive-class .mapnavigation_wrap .svg_wrap {
  background: rgba(var(--bk-c), 0.1);
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1199px) {
  .post-type-archive-class .mapnavigation_wrap .svg_wrap {
    width: 100%;
    padding: 25px;
  }
}
.post-type-archive-class .text_wrap {
  width: 38%;
}
@media (max-width: 1199px) {
  .post-type-archive-class .text_wrap {
    width: 100%;
  }
}
.post-type-archive-class .text_wrap dl {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.post-type-archive-class .text_wrap dl dt {
  font-weight: 600;
}
.post-type-archive-class .text_wrap dl dd {
  border-bottom: 1px dotted rgba(var(--bk-b), 0.2);
  margin-bottom: 10px !important;
  padding-bottom: 10px !important;
}
.post-type-archive-class .text_wrap dl dd a {
  color: rgba(var(--blue), 1);
  display: inline-block;
  margin: 0 5px 0 0;
}
.post-type-archive-class #svg-map * {
  letter-spacing: normal;
}
.post-type-archive-class .svg_map-1 {
  fill: #7595fb;
}
.post-type-archive-class .svg_map-11, .post-type-archive-class .svg_map-2 {
  font-size: 12px;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H, Kozuka Gothic Pr6N;
}
.post-type-archive-class .svg_map-3 {
  fill: #8bc0fb;
}
.post-type-archive-class .svg_map-4 {
  fill: #bb91fc;
}
.post-type-archive-class .svg_map-5 {
  fill: #fbbddd;
}
.post-type-archive-class .svg_map-6 {
  fill: #f88db8;
}
.post-type-archive-class .svg_map-7 {
  fill: #62cf75;
}
.post-type-archive-class .svg_map-8 {
  fill: #b6de5f;
}
.post-type-archive-class .svg_map-9 {
  fill: #ffe54b;
}
.post-type-archive-class .svg_map-10 {
  fill: #ffce4a;
}
.post-type-archive-class .svg_map-11 {
  writing-mode: tb;
  text-orientation: upright;
  glyph-orientation-vertical: 0deg;
}
.post-type-archive-class .svg_map-12 {
  fill: none;
  stroke: #8ddbd9;
  stroke-miterlimit: 10;
}

.tax-classroom_area main section article.base_wrapper {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}
.tax-classroom_area main section article h2 {
  max-width: var(--max-wrap);
  margin: auto;
  margin-bottom: 35px !important;
  margin-bottom: 15px !important;
}
@media (max-width: 570px) {
  .tax-classroom_area main section article h2 {
    margin: 0 3%;
  }
}
.tax-classroom_area main section article h2 span {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}
.tax-classroom_area main section article h2 span:before, .tax-classroom_area main section article h2 span:after {
  content: "";
  display: block;
  width: 3px;
  height: 50%;
  position: absolute;
  left: 0;
}
.tax-classroom_area main section article h2 span:before {
  background: rgba(var(--yerrow), 1);
  top: 0;
}
.tax-classroom_area main section article h2 span:after {
  background: rgba(var(--blue), 1);
  bottom: 0;
}
.tax-classroom_area .areadata_list {
  background: rgba(var(--bk-c), 0.2);
  padding: 20px 3%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tax-classroom_area .areadata_list dl, .tax-classroom_area .areadata_list ul {
  max-width: var(--max-wrap);
  margin: auto;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tax-classroom_area .areadata_list dl:not(:last-of-type), .tax-classroom_area .areadata_list ul:not(:last-of-type) {
  margin-bottom: 10px !important;
}
.tax-classroom_area .areadata_list dl dt, .tax-classroom_area .areadata_list ul dt {
  font-weight: 600;
}
.tax-classroom_area .areadata_list dl *, .tax-classroom_area .areadata_list ul * {
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
.tax-classroom_area .areadata_list dl li a, .tax-classroom_area .areadata_list ul li a {
  color: rgba(var(--bk-a), 1);
  display: inline-block;
  padding: 5px;
  line-height: 1.1;
  background: rgba(var(--white), 0.6);
}
.tax-classroom_area .chip_list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}
@media (max-width: 570px) {
  .tax-classroom_area .chip_list {
    padding: 0 3%;
  }
}
.tax-classroom_area .chip_list li {
  display: inline-block;
  padding: 10px;
  line-height: 1.1;
  color: rgba(var(--white), 1);
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
@media (max-width: 480px) {
  .tax-classroom_area .chip_list li {
    display: flex;
    justify-content: center;
    width: 100%;
  }
}
.tax-classroom_area .chip_list li:nth-of-type(1) {
  background: rgba(var(--orange), 1);
}
.tax-classroom_area .chip_list li:nth-of-type(2) {
  background: rgba(var(--green), 1);
}
.tax-classroom_area .chip_list li:nth-of-type(3) {
  background: rgba(var(--pink), 1);
}
.tax-classroom_area .area_data-wrap {
  border: 1px solid rgba(var(--bk-c), 0.2);
  max-width: var(--max-wrap);
  margin: auto;
}
@media (max-width: 570px) {
  .tax-classroom_area .area_data-wrap {
    margin: 0 3%;
  }
}
.tax-classroom_area .area_data-wrap:not(:last-of-type) {
  margin-bottom: 10px !important;
}
.tax-classroom_area .area_data-wrap:last-of-type {
  margin-bottom: 55px !important;
}
.tax-classroom_area .area_data-wrap .area_data-table {
  display: flex;
  font-size: clamp(0.75rem, 0.727rem + 0.11vw, 0.813rem);
}
@media (max-width: 570px) {
  .tax-classroom_area .area_data-wrap .area_data-table {
    flex-direction: column;
  }
}
.tax-classroom_area .area_data-wrap .area_data-table ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.tax-classroom_area .area_data-wrap .area_data-table ul li.program-sl {
  background: rgba(var(--orange), 1);
}
.tax-classroom_area .area_data-wrap .area_data-table ul li.program-7hj {
  background: rgba(var(--pink), 1);
}
.tax-classroom_area .area_data-wrap .area_data-table ul li.program-al {
  background: rgba(var(--green), 1);
}
.tax-classroom_area .area_data-wrap .area_data-table ul li span {
  display: block;
  padding: 5px;
  line-height: 1.1;
  font-size: clamp(0.625rem, 0.602rem + 0.11vw, 0.688rem);
  color: rgba(var(--white), 1);
}
.tax-classroom_area .area_data-wrap .area_data-table > dt {
  background: rgba(var(--green-b), 1);
  color: rgba(var(--white), 1);
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 10px;
  min-width: 165px;
}
.tax-classroom_area .area_data-wrap .area_data-table > dd {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}
.tax-classroom_area .area_data-wrap .area_data-table > dd dl:nth-child(1) {
  flex: 0 0 calc((100% - 40px) * 0.4);
}
.tax-classroom_area .area_data-wrap .area_data-table > dd dl:nth-child(2) {
  flex: 0 0 calc((100% - 40px) * 0.2);
}
.tax-classroom_area .area_data-wrap .area_data-table > dd dl:nth-child(3) {
  flex: 0 0 calc((100% - 40px) * 0.4);
}
.tax-classroom_area .area_data-wrap .area_data-table > dd dl dt {
  display: none;
  color: rgba(var(--bk-c), 0.9);
  margin-bottom: 10px !important;
}
.tax-classroom_area .area_data-wrap .area_data-table > dd dl dd a {
  color: rgba(var(--blue), 1);
}
.tax-classroom_area .area_data-wrap .area_data-table > dd .min_class-wrap {
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 15px;
}
.tax-classroom_area .area_data-wrap .area_data-table > dd .min_class-wrap:nth-of-type(even) {
  background: rgba(var(--bk-c), 0.1);
}
.tax-classroom_area .area_data-wrap .area_data-table > dd .min_class-wrap:nth-of-type(1) dl dt {
  display: block;
}
@media (max-width: 880px) {
  .tax-classroom_area .area_data-wrap .area_data-table > dd .min_class-wrap {
    flex-direction: column;
  }
  .tax-classroom_area .area_data-wrap .area_data-table > dd .min_class-wrap:nth-of-type(1) dl dt {
    display: none;
  }
}

.single-class .school_detail-head article {
  display: flex;
  gap: 2%;
}
@media (max-width: 880px) {
  .single-class .school_detail-head article {
    flex-direction: column;
  }
}
.single-class .school_detail-head article .detail_data {
  width: calc(100% - 420px - 2%);
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .detail_data {
    width: 100%;
  }
}
.single-class .school_detail-head article .detail_data h1 {
  margin-bottom: 25px !important;
}
.single-class .school_detail-head article .detail_data h1 span, .single-class .school_detail-head article .detail_data h1 strong {
  display: block;
  position: relative;
}
.single-class .school_detail-head article .detail_data h1 span {
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
  margin-bottom: 10px !important;
}
.single-class .school_detail-head article .detail_data h1 strong {
  font-size: clamp(1.875rem, 1.83rem + 0.23vw, 2rem);
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}
.single-class .school_detail-head article .detail_data h1 strong:before, .single-class .school_detail-head article .detail_data h1 strong:after {
  content: "";
  display: block;
  width: 3px;
  height: 50%;
  position: absolute;
  left: 0;
}
.single-class .school_detail-head article .detail_data h1 strong:before {
  background: rgba(var(--yerrow), 1);
  top: 0;
}
.single-class .school_detail-head article .detail_data h1 strong:after {
  background: rgba(var(--blue), 1);
  bottom: 0;
}
.single-class .school_detail-head article .detail_data table {
  width: 100%;
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .detail_data table {
    margin-bottom: 45px !important;
  }
}
.single-class .school_detail-head article .detail_data table th, .single-class .school_detail-head article .detail_data table td {
  padding: 20px 10px;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  border: 1px solid rgba(var(--white), 1);
  font-weight: 400;
  vertical-align: middle;
}
@media (max-width: 570px) {
  .single-class .school_detail-head article .detail_data table th, .single-class .school_detail-head article .detail_data table td {
    display: block;
    width: 100%;
    max-width: 100% !important;
    padding: 10px;
  }
}
.single-class .school_detail-head article .detail_data table th {
  color: rgba(var(--white), 1);
  min-width: 100px;
  max-width: 100px;
  background: rgba(var(--green-b), 1);
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .detail_data table th br {
    display: none;
  }
  .single-class .school_detail-head article .detail_data table th {
    max-width: auto;
    min-width: 170px;
  }
}
.single-class .school_detail-head article .detail_data table td {
  width: 100%;
}
.single-class .school_detail-head article .detail_data table tr.telephone a {
  color: rgba(var(--blue), 1);
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  font-weight: 600 !important;
}
.single-class .school_detail-head article .detail_data table tr.address {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
}
.single-class .school_detail-head article .detail_data table tr.google_map {
  margin-top: 15px !important;
  width: 100%;
}
.single-class .school_detail-head article .detail_data table tr.google_map iframe {
  width: 100%;
  max-height: 300px;
}
@media (max-width: 570px) {
  .single-class .school_detail-head article .detail_data table tr.weblink td {
    display: flex;
    justify-content: center;
  }
}
.single-class .school_detail-head article .pict_datas {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 420px;
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .pict_datas {
    width: 100%;
    align-items: center;
  }
}
.single-class .school_detail-head article .pict_datas .class-gallery {
  margin-top: 25px !important;
}
.single-class .school_detail-head article .pict_datas .class-gallery > figure {
  margin-bottom: 10px !important;
  overflow: hidden;
  position: relative;
}
.single-class .school_detail-head article .pict_datas .class-gallery > figure img {
  border: 1px solid rgba(var(--bk-c), 0.2);
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .pict_datas .class-gallery > figure img {
    width: 100%;
    height: auto;
  }
}
.single-class .school_detail-head article .pict_datas .class-gallery ul {
  display: flex;
  gap: 5px;
}
.single-class .school_detail-head article .pict_datas .class-gallery ul li {
  width: 25%;
}
.single-class .school_detail-head article .pict_datas .class-gallery ul li img {
  height: auto;
  border: 1px solid rgba(var(--bk-c), 0.2);
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/2;
  margin: auto;
}
@media (max-width: 880px) {
  .single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main {
    aspect-ratio: 3/2;
  }
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main__slide {
  display: block;
  width: 100%;
  height: 100%;
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main__viewport {
  width: 100%;
  position: relative;
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-main__track {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
}
.single-class .school_detail-head article .pict_datas .class-gallery .class-gallery-thumbs__button {
  display: block;
  padding: 0;
  cursor: pointer;
  border: none;
}
.single-class .juuku_bnrs {
  max-width: var(--max-wrap);
  margin: auto;
  padding: 0 3%;
}
.single-class .juuku_bnrs ul {
  display: flex;
  justify-content: center;
  gap: 10px 1%;
}
@media (max-width: 570px) {
  .single-class .juuku_bnrs ul {
    flex-direction: column;
  }
}
.single-class .juuku_bnrs li img {
  height: auto;
  margin: auto;
}
.single-class .class_etc_datas h2 {
  background: rgba(var(--green-b), 1);
  color: rgba(var(--white), 1);
  padding: 10px;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  margin-bottom: 25px !important;
}
.single-class .class_etc_datas .class_etc_datas_wrap {
  border: 5px solid rgba(var(--orange), 1);
  border-radius: 5px;
  padding: 20px;
  display: flex;
  gap: 20px;
}
@media (max-width: 770px) {
  .single-class .class_etc_datas .class_etc_datas_wrap {
    flex-direction: column;
  }
}
.single-class .class_etc_datas .class_etc_datas_wrap:not(:last-of-type) {
  margin-bottom: 35px !important;
}
.single-class .class_etc_datas .class_etc_datas_wrap:nth-of-type(2) {
  border-color: rgba(var(--green), 1);
}
.single-class .class_etc_datas .class_etc_datas_wrap:nth-of-type(3) {
  border-color: rgba(var(--pink), 1);
}
.single-class .class_etc_datas .class_etc_datas_wrap figure {
  min-width: 275px;
}
.single-class .class_etc_datas .class_etc_datas_wrap figure img {
  height: auto;
}
@media (max-width: 770px) {
  .single-class .class_etc_datas .class_etc_datas_wrap figure img {
    margin: auto;
  }
}
.single-class .class_etc_datas .class_etc_datas_wrap .text_wrap h3 {
  margin-bottom: 15px !important;
}
.single-class .class_etc_datas .class_etc_datas_wrap .text_wrap h3 span, .single-class .class_etc_datas .class_etc_datas_wrap .text_wrap h3 strong {
  display: block;
}
.single-class .class_etc_datas .class_etc_datas_wrap .text_wrap h3 span {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  margin-bottom: 10px !important;
}
.single-class .class_etc_datas .class_etc_datas_wrap .text_wrap h3 strong {
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  font-weight: 500;
}
.single-class .class_etc_datas .class_etc_datas_wrap .text_wrap .class_text_data {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.single-class .class_detail_line {
  background: rgba(var(--blue), 1);
}
.single-class .class_detail_line .line_wrapper {
  padding: 40px;
  background: rgba(var(--white), 1);
  display: flex;
  align-items: center;
  gap: 5px 20px;
}
.single-class .class_detail_line .line_wrapper h1, .single-class .class_detail_line .line_wrapper dl, .single-class .class_detail_line .line_wrapper .contact {
  width: 33.3333333333%;
}
@media (max-width: 880px) {
  .single-class .class_detail_line .line_wrapper {
    flex-direction: column;
  }
  .single-class .class_detail_line .line_wrapper h1, .single-class .class_detail_line .line_wrapper dl, .single-class .class_detail_line .line_wrapper .contact {
    width: 100%;
  }
}
@media (max-width: 570px) {
  .single-class .class_detail_line .line_wrapper {
    padding: 20px;
  }
}
.single-class .class_detail_line .line_wrapper h1 {
  position: relative;
}
.single-class .class_detail_line .line_wrapper h1 span, .single-class .class_detail_line .line_wrapper h1 strong {
  display: block;
}
.single-class .class_detail_line .line_wrapper h1 span {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  margin-bottom: 10px !important;
}
.single-class .class_detail_line .line_wrapper h1 strong {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  font-weight: 600;
  position: relative;
  padding-left: 10px;
}
.single-class .class_detail_line .line_wrapper h1 strong:before, .single-class .class_detail_line .line_wrapper h1 strong:after {
  content: "";
  display: block;
  width: 3px;
  height: 50%;
  position: absolute;
  left: 0;
}
.single-class .class_detail_line .line_wrapper h1 strong:before {
  background: rgba(var(--yerrow), 1);
  top: 0;
}
.single-class .class_detail_line .line_wrapper h1 strong:after {
  background: rgba(var(--blue), 1);
  bottom: 0;
}
@media (max-width: 880px) {
  .single-class .class_detail_line .line_wrapper dl {
    margin-bottom: 25px !important;
  }
}
.single-class .class_detail_line .line_wrapper dl dt {
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
}
.single-class .class_detail_line .line_wrapper dl dt a {
  font-weight: 600;
  color: rgba(var(--blue), 1);
}
.single-class .class_detail_line .line_wrapper dl dd {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.single-class .nearby_classroom {
  background: rgba(var(--bk-c), 0.2);
}
.single-class .nearby_classroom h1 {
  background: rgba(var(--green-b), 1);
  color: rgba(var(--white), 1);
  padding: 10px;
  font-size: clamp(1.125rem, 1.08rem + 0.23vw, 1.25rem);
  margin-bottom: 25px !important;
}
.single-class .nearby_classroom .nearby_classroom-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data {
  width: calc((100% - 40px) / 3);
  background: rgba(var(--white), 1);
  padding: 20px;
}
@media (max-width: 1199px) {
  .single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data {
    width: calc((100% - 20px) / 2);
  }
}
@media (max-width: 770px) {
  .single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data {
    width: 100%;
  }
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 {
  margin-bottom: 15px !important;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 span, .single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong {
  display: block;
  position: relative;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 span {
  font-size: clamp(0.688rem, 0.665rem + 0.11vw, 0.75rem);
  margin-bottom: 10px !important;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong {
  font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
  font-weight: 400;
  position: relative;
  padding-left: 10px;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong:before, .single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong:after {
  content: "";
  display: block;
  width: 3px;
  height: 50%;
  position: absolute;
  left: 0;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong:before {
  background: rgba(var(--yerrow), 1);
  top: 0;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 strong:after {
  background: rgba(var(--blue), 1);
  bottom: 0;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data h2 a {
  color: rgba(var(--blue-b), 1);
  text-decoration: underline;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data .address {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
  margin-bottom: 5px !important;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data .school_address_data {
  margin-bottom: 25px !important;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data .school_address_data a {
  color: rgba(var(--blue), 1);
  font-size: clamp(1.5rem, 1.409rem + 0.45vw, 1.75rem);
  font-weight: 500;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data ul {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data ul li, .single-class .nearby_classroom .nearby_classroom-wrapper .nearby_classroom-data ul li a {
  width: 100% !important;
}

.corporate .mod_search, .corporate .mod_thinking, .page-id-48 .mod_search, .page-id-48 .mod_thinking {
  display: none;
}
.corporate table, .page-id-48 table {
  max-width: var(--inner-wrap);
  margin: auto;
}
.corporate table tr:not(:last-of-type), .page-id-48 table tr:not(:last-of-type) {
  border-bottom: 1px solid rgba(var(--bk-c), 0.2);
}
.corporate table tr th, .corporate table tr td, .page-id-48 table tr th, .page-id-48 table tr td {
  padding: 40px;
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.corporate table tr th, .page-id-48 table tr th {
  font-weight: 400;
}
.corporate table tr td a, .page-id-48 table tr td a {
  text-decoration: underline;
  transition: 0.5s;
  color: rgba(var(--bk-a), 0.85);
}
@media (max-width: 770px) {
  .corporate table tr th, .corporate table tr td, .page-id-48 table tr th, .page-id-48 table tr td {
    display: block;
  }
  .corporate table tr th, .page-id-48 table tr th {
    text-align: left;
    padding: 20px;
  }
  .corporate table tr td, .page-id-48 table tr td {
    padding: 0 20px 20px;
  }
}
.corporate iframe, .page-id-48 iframe {
  height: 400px;
  display: block;
}

.group .mod_search, .group .mod_thinking, .page-id-50 .mod_search, .page-id-50 .mod_thinking {
  display: none;
}
.group main .group_detail-body article h1, .page-id-50 main .group_detail-body article h1 {
  font-size: clamp(1.25rem, 1.159rem + 0.45vw, 1.5rem);
  margin-bottom: 25px !important;
  font-weight: 600;
}
.group main .group_detail-body article h1:before, .page-id-50 main .group_detail-body article h1:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.group main .group_detail-body:nth-of-type(1) article h1:before, .page-id-50 main .group_detail-body:nth-of-type(1) article h1:before {
  background: url(../image/ic-company.png) no-repeat center/contain;
}
.group main .group_detail-body:nth-of-type(2) article h1:before, .page-id-50 main .group_detail-body:nth-of-type(2) article h1:before {
  background: url(../image/ic-school.png) no-repeat center/contain;
}
.group main .group_detail-body:nth-of-type(3) article h1:before, .page-id-50 main .group_detail-body:nth-of-type(3) article h1:before {
  background: url(../image/ic-books.png) no-repeat center/contain;
}

.privacy-policy .mod_search, .privacy-policy .mod_thinking, .page-id-56 .mod_search, .page-id-56 .mod_thinking {
  display: none;
}
.privacy-policy .privacy_wrapper, .page-id-56 .privacy_wrapper {
  margin-top: 35px !important;
}
.privacy-policy .privacy_wrapper *, .page-id-56 .privacy_wrapper * {
  font-size: clamp(0.813rem, 0.79rem + 0.11vw, 0.875rem);
}
.privacy-policy .privacy_wrapper p:not(:last-of-type), .privacy-policy .privacy_wrapper dl:not(:last-of-type), .page-id-56 .privacy_wrapper p:not(:last-of-type), .page-id-56 .privacy_wrapper dl:not(:last-of-type) {
  margin-bottom: 25px !important;
}
.privacy-policy .privacy_wrapper dl dt, .page-id-56 .privacy_wrapper dl dt {
  font-weight: 600;
  margin-bottom: 5px !important;
}
.privacy-policy .privacy_wrapper h3, .page-id-56 .privacy_wrapper h3 {
  font-weight: 600;
  margin-bottom: 10px !important;
  font-size: clamp(0.875rem, 0.83rem + 0.23vw, 1rem);
}
.privacy-policy .privacy_wrapper .ac, .page-id-56 .privacy_wrapper .ac {
  text-align: center;
  margin-bottom: 25px !important;
}
.privacy-policy .privacy_wrapper .ar, .page-id-56 .privacy_wrapper .ar {
  text-align: right;
}
.privacy-policy .privacy_wrapper hr, .page-id-56 .privacy_wrapper hr {
  border-top: 1px solid rgba(var(--bk-a), 0.2);
}
.privacy-policy .privacy_wrapper a, .page-id-56 .privacy_wrapper a {
  text-decoration: underline;
  color: rgba(var(--blue), 1);
}/*# sourceMappingURL=design.css.map */