@charset "utf-8";
/*--------------------------------------------------------------
# Color
--------------------------------------------------------------*/
:root {
  --c-prime: #0066cc;
  --c-prime-rgb: 0, 102, 204;
  --c-prime-dark: #0051a2;
  --c-prime-light: #8fcbf0;
  --c-prime-light-rgb: 143, 203, 240;
  --c-prime-ultralight: #ddeffb;
  --c-gray-dark: #3b4043;
  --c-gray-mid: #98a6b5;
  --c-gray-light: #f0f3f5;
  --c-gray-blue: #cdd6dd;
  --c-acc: #f29d4b;
}
/*--------------------------------------------------------------
# Font-Size
--------------------------------------------------------------*/
:root {
  --fs-18-14: clamp(0.875rem, 0.7719rem + 0.44vw, 1.125rem);
  --fs-20-10: clamp(0.625rem, 0.3672rem + 1.1vw, 1.25rem);
  --fs-24-12: clamp(0.75rem, 0.4383rem + 1.33vw, 1.5rem);
  --fs-24-16: clamp(1rem, 0.7937rem + 0.88vw, 1.5rem);
  --fs-24-20: clamp(1.25rem, 1.1469rem + 0.44vw, 1.5rem);
  --fs-30-20: clamp(1.25rem, 0.9922rem + 1.1vw, 1.875rem);
  --fs-30-24: clamp(1.5rem, 1.3453rem + 0.66vw, 1.875rem);
  --fs-32-16: clamp(1rem, 0.5852rem + 1.77vw, 2rem);
  --fs-32-30: clamp(1.875rem, 1.8234rem + 0.22vw, 2rem);
  --fs-40-25: clamp(1.5625rem, 1.1734rem + 1.66vw, 2.5rem);
  --fs-42-26: clamp(1.625rem, 1.2102rem + 1.77vw, 2.625rem);
  --fs-55-30: clamp(1.875rem, 1.2281rem + 2.76vw, 3.4375rem);
}
/*--------------------------------------------------------------
# z-index
--------------------------------------------------------------*/
:root {
  --z-index-overlay: 400;
  --z-index-spmenu: 300;
  --z-index-spmenu-modal: 200;
  --z-index-header: 100;
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
a {
  text-decoration: none;
}
a:link,
a:visited,
a:active,
a:focus {
  color: inherit;
}
a:hover {
  opacity: 0.7;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
  font-family: "Noto Sans Japanese", "游ゴシック", YuGothic,
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    sans-serif;
  color: var(--c-gray-dark);
}
/*--------------------------------------------------------------
# 全体
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}
.wrap {
  overflow: hidden;
}
/*--------------------------------------------------------------
# 資料請求セクション
--------------------------------------------------------------*/
.application-wrap {
  width: 100%;
  background-color: rgba(135, 135, 135, 0.7);
  text-align: center;
  position: fixed;
  bottom: 0;
  padding: 1.5rem 0;
  z-index: var(--z-index-overlay);
}
.application {
  display: flex;
  /*flex-wrap: wrap;*/
  justify-content: center;
  gap: 4%;
}
.button-application {
  display: flex;
  align-items: center;
  justify-content: center;
  /*width: 30vw;
  max-width: 420px;*/
  width: 20vw;
  max-width: 280px;
  height: 80px;
  background-color: var(--c-prime);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: var(--fs-24-16);
  line-height: 1.5rem;
}
/*
.button-application {
  background-color: var(--c-prime);
  border: none;
  width: 420px;
  height: 80px;
  position: relative;
  margin: 0.5rem;
}
.button-application p {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
*/
/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
header {
  background: linear-gradient(
    90deg,
    #fff 0%,
    #fff 50%,
    #0066cc 50%,
    #0066cc 100%
  );
  z-index: var(--z-index-header);
}
.header-wrap {
  box-sizing: border-box;
  display: flex;
}
.header-logo-wrap {
  display: flex;
  align-items: center;
  background-color: #fff;
  width: 380px;
}
.header-logo {
  width: 68%;
}
.header-logo img {
  width: 100%;
  height: auto;
}
.header-logo-cap {
  width: 32%;
  text-align: center;
}
.header-logo-cap p {
  color: var(--c-prime);
  font-weight: bold;
  font-size: var(--fs-20-10);
  line-height: var(--fs-24-12);
}
.header-cont-wrap {
  color: #fff;
  background-color: var(--c-prime);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 380px);
  /*flex-grow: 1;*/
}
.header-cont-catch {
  text-align: center;
}
.header-cont-catch p {
  font-weight: bold;
  font-size: var(--fs-24-12);
  line-height: var(--fs-32-16);
  margin: 0 1.5rem;
}
.header-cont-nav {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-cont-nav-button {
  width: 200px;
  height: 50px;
  border: #fff 2px solid;
  border-radius: 25px;
  text-align: center;
  position: relative;
}
.header-cont-nav-button p {
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
/*--------------------------------------------------------------
# ハンバーガーボタン
--------------------------------------------------------------*/
.navbutton {
  display: block;
  cursor: pointer;
  border: 0;
  width: 30px;
  height: 30px;
  background-image: url("../img/navbtn_open.svg");
  background-repeat: no-repeat;
  position: fixed;
  top: 10px;
  right: 30px;
  background-color: transparent;
  z-index: var(--z-index-spmenu);
}
.navbutton.selected {
  background-color: transparent;
  background-image: url("../img/navbtn_close.svg");
  background-repeat: no-repeat;
  z-index: var(--z-index-spmenu);
}
.navbutton:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# ハンバーガーモーダルメニュー
--------------------------------------------------------------*/
.header-nav-wrap-aco {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  background: rgba(var(--c-prime-rgb), 0.9);
  z-index: var(--z-index-spmenu-modal);
  width: 100%;
  text-align: center;
  opacity: 0.97;
}
.header-nav-wrap-aco ul {
  margin-top: 2rem;
  margin-right: 1rem;
  line-height: 2rem;
}
.header-nav-wrap-aco li {
  display: block;
  margin: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
}
.header-nav-wrap-aco .header-cont-nav-button {
  margin: 1rem auto;
}
/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
footer {
  padding-bottom: 15rem;
}
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
  margin: 0 auto 2rem;
}
.footer-logo-wrap div {
  margin: 0 auto;
}
.footer-logo img {
  width: 100%;
  height: auto;
}
.footer-link {
  font-size: 0.75rem;
  font-weight: bold;
  text-align: center;
}
.footer-info {
  margin: 0 auto 2rem;
}
.footer-info img {
  margin: 0 auto;
}
/*TOPへふわっと戻るボタンのCSS*/
#goto_top {
  position: fixed;
  right: 30px;
  bottom: 130px;
  z-index: 999999;
}
#goto_top a {
  font-size: 3rem;
  display: block;
  color: var(--c-prime);
}
/*--------------------------------------------------------------
# キービジュアル
--------------------------------------------------------------*/
.kv-catch-1 {
  background-color: var(--c-prime-dark);
  text-align: center;
  padding: 1.5rem 0;
}
.kv-catch-1 h2 {
  font-size: var(--fs-30-20);
  line-height: 1.875rem;
  color: #fff;
}
.kv-img-1-wrap {
  position: relative;
  line-height: 0;
}
.kv-img-1 img {
  width: 100%;
  height: 43vw;
  max-height: 550px;
  object-fit: cover;
  object-position: 50% 30%;
}
.kv-catch-2 {
  background-color: rgba(var(--c-prime-rgb), 0.9);
  color: #fff;
  font-weight: bold;
  height: 11rem;
  padding: 25px 100px 25px 25px;
  display: inline-block;
  position: absolute;
  top: 280px;
  right: -10px;
  transform: rotate(-5deg);
}
.kv-catch-2-1st {
  font-size: var(--fs-42-26);
  line-height: var(--fs-55-30);
}
.kv-catch-2-2nd {
  font-size: var(--fs-40-25);
  line-height: var(--fs-55-30);
}
.kv-catch-2-2nd span {
  font-size: var(--fs-30-20);
}
.kv-catch-2-inh {
  position: absolute;
  bottom: 20px;
  right: 90px;
}
.kv-catch-2-inh p {
  font-size: var(--fs-40-25);
  line-height: var(--fs-55-30);
  border-bottom: #ffff00 8px solid;
}

.kv-img-2-wrap {
  background-color: var(--c-prime-light);
  padding: 45px 0;
  line-height: 0;
}
.kv-img-2-cont {
  background-color: #fff;
}
.kv-img-2-cont .inner {
  display: flex;
  flex-direction: row-reverse;
}

.kv-img-3-wrap {
  background-color: #dd669a;
  padding: 20px 0;
  line-height: 0;
}
.kv-img-3-cont {
    background-color: ;
}
.kv-img-3-cont .inner{
  text-align: center;
}
.kv-img-3-cont .inner img {
  width: 90%;
}



.lesson {
  width: 32%;
  background-color: #fff;
  text-align: center;
  line-height: 1rem;
  padding: 4rem 1rem;
  line-height: 0;
}
.lesson h3 {
  color: var(--c-prime);
  font-size: var(--fs-40-25);
  line-height: 3.5rem;
}
.lesson h3 span {
  font-size: 2rem;
}
.lesson-item-wrap {
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: 2rem auto -4rem;
}
.lesson-item {
  background-color: var(--c-prime);
  width: 48%;
  padding: 2rem 0;
  margin-bottom: 1rem;
}
.lesson-item h4 {
  color: #fff;
  font-size: 1.125rem;
}
.kv-img-2 {
  width: 68%;
}
.kv-img-2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*--------------------------------------------------------------
# Section-各セクション共通
--------------------------------------------------------------*/
section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
#system,
#method,
#fee {
  background-color: var(--c-prime-ultralight);
}
.section-title-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 1024px;
  height: 8.5rem;
  margin: 0 auto;
  position: relative;
  margin-bottom: 5rem;
}
.section-title-cap {
  color: #fff;
  background-color: var(--c-prime);
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 1.5rem 3rem;
  display: inline-block;
  position: absolute;
  left: 0;
  z-index: 1;
}
.section-title {
  color: var(--c-prime);
  background-color: #fff;
  display: inline-block;
  font-size: 1.875rem;
  font-weight: bold;
  border: var(--c-prime) 4px solid;
  position: absolute;
  right: 0;
  top: 3rem;
  min-width: 70%;
  text-align: center;
  line-height: 2.5rem;
  padding: 1.5rem 3rem;
}
.section-title span {
  font-size: 1.5rem;
  vertical-align: middle;
  margin-right: 1rem;
}
/*--------------------------------------------------------------
# Section-system 体系的に学ぶ NES式
--------------------------------------------------------------*/
.system-box-row-3-wrap,
.system-box-row-1-wrap {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1088px;
  margin: 0 auto;
}
.system-box-row-3 {
  background-color: #fff;
  color: var(--c-prime);
  border-radius: 40px;
  padding-bottom: 2rem;
  text-align: center;
  font-weight: bold;
  width: 30%;
}
.system-box-row-3 h3 {
  font-size: 1.875rem;
  border: var(--c-prime) 4px solid;
  width: 70%;
  margin: 2rem auto;
  padding: 1rem 0;
}
.system-box-philosophy {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.system-box-row-3 h4 {
  font-size: 1.5rem;
  background-color: var(--c-prime);
  color: #fff;
  width: 40%;
  margin: 2rem 0;
  padding: 0.75rem 0;
}
.system-box-row-3 p {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}
.system-box-row-3 p span {
  font-size: 1.5rem;
}
.yellow-border {
  display: inline-block;
  border-bottom: #ffff00 8px solid;
  padding-bottom: 0.3rem;
  margin-bottom: 0.7rem !important;
}
.system-box-row-3 img {
  border-radius: 50%;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
.system-box-row-3-gap {
  width: 5%;
  background: url(../img/arrow_h.png) no-repeat center / 75%;
}
.system-box-row-1-gap {
  width: 100%;
  height: 100px;
  text-align: center;
  padding-top: 1.5rem;
}
.system-box-row-1-gap img {
  width: 10%;
  height: auto;
}
.system-box-row-1 {
  background-color: #fff;
  color: var(--c-prime);
  border-radius: 40px;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  width: 100%;
  display: flex;
}
.system-box-row-1-img {
  width: 40%;
}
.system-box-row-1-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
}
.system-box-row-1-txt {
  flex-grow: 1;
  padding-top: 0.5rem;
}
.system-box-row-1 p {
  font-size: 1.875rem;
  margin-top: 1.5rem;
}
.system-box-row-31 p span {
  font-size: 1.5rem;
}
.round-button {
  background-color: var(--c-prime-light);
  width: 80%;
  height: 50px;
  border-radius: 25px;
  margin: 2rem auto;
  text-align: center;
  position: relative;
}
.round-button p {
  font-size: 1.25rem;
  line-height: 2rem;
  color: #001148;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.round-button span {
  margin-right: 1rem;
}
/*--------------------------------------------------------------
# Section-impression NESに通ってみてどうでしたか？
--------------------------------------------------------------*/
.impression-box-wrap {
  box-sizing: border-box;
  background-color: var(--c-prime-ultralight);
  width: 100%;
  max-width: 1024px;
  padding: 2rem 80px 2rem 20px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.impression-box-prof {
  text-align: center;
  width: 25%;
  display: flex;
  flex-direction: column;
}
.impression-box-prof-txt {
  margin-top: 0.5rem;
}
.impression-box-prof-txt p {
  font-size: 0.75rem;
  line-height: 1.25rem;
}
.prof-name {
  margin-bottom: 0.5rem;
}
.prof-now {
  font-weight: bold;
  font-size: 0.9rem !important;
  margin-top: 0.5rem;
}
.impression-box-cont {
  width: 70%;
}
.impression-box-cont h3 {
  font-size: 1.75rem;
  line-height: 2rem;
  margin-bottom: 1.75rem;
}
.impression-box-cont p {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 1rem;
}
/*--------------------------------------------------------------
# Section-method どんな指導方法？
--------------------------------------------------------------*/
.method-box-txt-wrap {
  box-sizing: border-box;
  background-color: var(--c-prime-light);
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 3rem;
  padding: 3rem 50px 0.5rem;
  font-size: var(--fs-24-20);
  font-weight: bold;
  line-height: 2.5rem;
}
.method-box-txt {
  position: relative;
  margin-bottom: 3rem;
}
.method-conclusion {
  position: absolute;
  right: 0;
  bottom: 0;
  font-size: var(--fs-32-30);
}
.method-box-img-wrap {
  box-sizing: border-box;
  width: 85%;
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.method-box-img {
  width: 30%;
  background-color: rgba(var(--c-prime-light-rgb), 0.2);
  text-align: center;
}
.method-box-img h3 {
  background-color: rgba(var(--c-prime-light-rgb), 0.5);
  border-radius: 5px;
  font-size: 1.5rem;
  padding: 0.75rem;
}
.method-box-img-area {
  box-sizing: border-box;
  background-color: #fff;
  border-radius: 5px;
  width: 95%;
  height: 75%;
  margin: 10px auto 0;
  padding-bottom: 1rem;
}
.method-box-img-area img {
  width: 100%;
  height: auto;
}
.method-box-img-area h4 {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.875rem;
  padding-top: 2rem;
}
.method-box-img-area p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5rem;
  margin-top: 1rem;
}
.method-box-movie-wrap {
  box-sizing: border-box;
  width: 85%;
  margin: 0 auto 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10%;
}
.method-box-movie {
  width: 30%;
  background-color: var(--c-gray-mid);
  color: #fff;
}
.method-box-movie h3 {
  font-size: 1.25rem;
  text-align: center;
  padding: 1rem;
  background-color: var(--c-gray-mid);
  border-radius: 5px;
  margin-top: -5px;
}
.method-box-movie img {
  width: 100%;
  height: auto;
}
.method-box-movie p {
  font-size: 1rem;
  line-height: 1.5rem;
  padding: 0.75rem 10px;
}
/*--------------------------------------------------------------
# Section-material どんな教材？
--------------------------------------------------------------*/
.material-box-wrap {
  box-sizing: border-box;
  background-color: var(--c-prime-ultralight);
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 3rem;
  padding-bottom: 2.5rem;
}
.material-box-wrap h3 {
  text-align: center;
  color: #000;
  background-color: rgba(var(--c-prime-light-rgb), 0.5);
  border-radius: 5px;
  font-size: 1.5rem;
  padding: 1rem;
  line-height: 2rem;
}
.material-box-wrap h4 {
  text-align: center;
  color: var(--c-prime);
  font-size: 1.21rem;
  margin: 2rem auto;
  line-height: 2rem;
}
.material-box-wrap li {
  color: var(--c-prime);
  font-size: 1.21rem;
  font-weight: bold;
  width: 65%;
  margin: 0.75rem auto;
  line-height: 2rem;
}
.material-box-movie-wrap {
  width: 70%;
  margin: 0 auto 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.material-box-movie-wrap img {
  width: 30%;
  height: auto;
  margin-bottom: 20px;
}
.material-box-img-wrap {
  width: 70%;
  margin: 2rem auto 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.material-box-img-wrap img {
  width: 48%;
  height: auto;
  margin-bottom: 20px;
}
/*--------------------------------------------------------------
# Section-fee 料金（月謝）は？
--------------------------------------------------------------*/
.fee-box-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 3rem;
}
.fee-box {
  width: 100%;
  background-color: #fff;
  margin-bottom: 4rem;
  display: flex;
  flex-wrap: wrap;
}
.fee-box-title {
  color: #fff;
  background-color: var(--c-prime);
  font-size: 1.75rem;
  text-align: center;
  vertical-align: middle;
  padding: 3rem 2rem;
  line-height: 3rem;
  font-weight: 600;
}
.fee-box-title span {
  font-size: 1.125rem;
}
.fee-box-table {
  flex-grow: 1;
}

.fee-box-table table {
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.fee-box-table table tr {
  border-bottom: var(--c-gray-light) 2px solid;
}
.fee-box-table table tr:last-child {
  border-bottom: none;
}
.fee-box-table table td {
  text-align: center;
  vertical-align: middle;
  padding: 0 1rem;
}
.fee-box-table td p {
  font-size: 1.25rem;
  font-weight: bold;
  text-align: left;
  margin-top: 2rem;
}
.fee-box-table td p span {
  display: inline-block;
  width: 220px;
}
.table-price {
  background-color: var(--c-gray-blue);
}
.table-price p {
  font-family: "Montserrat", sans-serif;
  text-align: center !important;
}
.fee-box-wrap p {
  width: 75%;
  font-size: 1.125rem;
  line-height: 2rem;
  margin: 0 auto 2rem;
}

/*--------------------------------------------------------------
# Section-class クラスは？
--------------------------------------------------------------*/
.class-box-wrap {
  box-sizing: border-box;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto 1rem;
}

.class-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.class-box h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 3.5rem;
  font-size: var(--fs-30-24);
  line-height: var(--fs-40-25);
  color: #fff;
  background-color: var(--c-prime);
  border-radius: 5px;
  order: 1;
}
.class-box h3 span {
  font-size: var(--fs-24-16);
}
.class-box h4 {
  font-size: 1.25rem;
  margin: 1rem 0;
  line-height: 1.875rem;
  text-align: left;
}
.class-box p {
  font-size: 1rem;
  line-height: 1.5rem;
}
.class-txt-box {
  width: 72.5%;
  height: auto;
  order: 2;
}
.class-txt-box-2 {
  width: 100%;
  height: auto;
}
.class-box img {
  width: 25%;
  height: auto;
  object-fit: contain;
  order: 3;
}
.class-conclusion {
  width: 100%;
  text-align: center;
  padding: 1rem;
  font-size: 1.5rem !important;
  font-weight: bold;
  line-height: 2rem !important;
  background-color: var(--c-gray-light);
  border-radius: 5px;
  margin: 0.5rem auto 2rem;
  order: 4;
}
.class-conclusion-2 {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.25rem !important;
  font-weight: bold;
  line-height: 1.75rem !important;
  background-color: var(--c-gray-light);
  border-radius: 5px;
  margin: 0.5rem auto 2rem;
  order: 4;
}
.class-conclusion-3 {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.25rem !important;
  font-weight: bold;
  line-height: 1.75rem !important;
  background-color: var(--c-gray-light);
  border-radius: 5px;
  margin: 0.5rem auto;
}
.enclosure {
  box-sizing: border-box;
  width: 100%;
  border: #9ba6b4 6px solid;
  border-radius: 5px;
  font-size: 1.20rem;
  font-weight: bold;
  line-height: 1.875rem;
  padding: 1rem 1rem;
}
.enclosure span {
  font-size: 0.75rem;
}

/*--------------------------------------------------------------
# Section-classroom 教室一覧 2025追加
--------------------------------------------------------------*/
.sclink {
	clear: both;
	overflow: hidden;
  margin-left: 15px;
}

.sclink ul{
  list-style: none;
  padding-left: 0;
}

.sclink ul > li
{
 position: relative;
 font-size: 15px;
 line-height: 1.5;
}

.sclink ul > li:before {
		all: initial; padding: 0;
}

.sclink li {
  border: 1px solid #fff;
  	color: #111;
  	display: block;
  	margin: 0;
  	text-decoration: none;
  	font-weight:bold;
  	text-align: center;
  	padding: 15px 5px;
  	background: #8cd9f5;

	width:18%;
	float:left;
}


/*--------------------------------------------------------------
# Media Query---PCのみ用
--------------------------------------------------------------*/
@media screen and (min-width: 900px) {
  .br-sp {
    display: none;
  }
  .br-pc {
    display: block;
  }
  .header-cont-nav-sp {
    display: none;
  }
}
/*--------------------------------------------------------------
# Media Query---スマホ・タブレット用
--------------------------------------------------------------*/
@media screen and (max-width: 899px) {
  .br-sp {
    display: block;
  }
  .br-pc {
    display: none;
  }

  /*--------------------------------------------------------------
# スマホ・タブレット用---ヘッダー
--------------------------------------------------------------*/
  .header-cont-nav {
    display: none;
  }
  header {
    position: fixed;
  }
  /*
  .header-logo-cap p {
    font-size: 0.5rem;
    line-height: 0.75rem;
  }
  .header-cont-catch p {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  */
  .header-logo-wrap {
    width: 45%;
  }
  .header-cont-wrap {
    width: 55%;
  }
  /*--------------------------------------------------------------
# スマホ・タブレット用---全体
--------------------------------------------------------------*/
  main {
    margin-top: 10vw;
  }
  /*--------------------------------------------------------------
# スマホ・タブレット用---資料請求セクション
--------------------------------------------------------------*/
  .button-application {
    width: 30vw; /* width: 45vw; */
  }
  /*--------------------------------------------------------------
# スマホ・タブレット用---キービジュアル
--------------------------------------------------------------*/
  .kv-catch-2 {
    box-sizing: border-box;
    width: 120%;
    padding: 25px 25px 25px 19vw;
    top: 39vw;
    right: -50px;
    transform: rotate(-5deg);
  }
  .kv-img-2-cont .inner {
    flex-direction: column;
  }
  .lesson {
    width: 100%;
    padding: 0;
  }
  .kv-img-2-wrap {
    padding-top: 120px;
  }
  .kv-img-2,.kv-img-2-cont .inner img {
    width: 100%;
  }

  .lesson h3 {
    color: var(--c-prime);
    background-color: #fff;
    font-size: 2.5rem;
    line-height: 3.5rem;
    border: var(--c-prime) 4px solid;
    text-align: left;
    padding: 2rem 1rem;
    width: 90%;
    margin: -2rem auto;
  }
  .lesson-item-wrap {
    width: 95%;
    margin: 4rem auto 0;
  }
  /*
  .lesson-item {
    background-color: var(--c-prime);
    width: 31%;
    padding: 2rem 0;
    margin-bottom: 1rem;
  }
  */
  .kv-img-3-wrap {
    background-color: #dd669a;
    padding: 0px 0;
    line-height: 0;
  }
  .kv-img-3-cont .inner img {
    width: 100%;
  }


  /*--------------------------------------------------------------
# スマホ・タブレット用---各セクション共通
--------------------------------------------------------------*/
  .section-title-cap {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    padding: 1.5rem 0;
  }
  .section-title {
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    min-width: 95%;
    padding: 2rem 0.5rem 1.25rem;
    font-size: 1.5rem;
  }
  .section-title span {
    margin-right: 0;
  }
  /*--------------------------------------------------------------
# SP # Section-system 体系的に学ぶ NES式
--------------------------------------------------------------*/
  .system-box-row-3-wrap {
    flex-direction: column;
  }
  .system-box-row-3 {
    width: 95%;
    margin: 1rem auto;
  }
  .system-box-row-3-gap {
    width: 100%;
    height: 50px;
    background: url(../img/arrow_v.png) no-repeat center / 15%;
  }
  .system-box-row-3 img {
    width: 239px;
    height: 239px;
  }
  .system-box-row-1 {
    flex-wrap: wrap;
    width: 77%;
    margin: 0 auto;
  }
  .system-box-row-1-img {
    width: 100%;
    margin: 0 auto;
  }
  .system-box-row-1-gap img {
    width: 15%;
    height: auto;
  }
  .round-button {
    height: 100px;
    width: 100%;
  }
  .round-button p {
    top: 25%;
  }
  .round-button span {
    margin-right: 0;
    font-size: 1.6rem;
  }
  /*--------------------------------------------------------------
# SP # Section-impression NESに通ってみてどうでしたか？
--------------------------------------------------------------*/
  .impression-box-wrap {
    padding: 2rem;
  }
  .impression-box-prof {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .impression-box-prof-img img{
    width: 90%;
  }
  .impression-box-prof-txt {
    font-weight: bold;
  }
  .impression-box-cont {
    width: 100%;
    margin: 1rem auto;
  }
  /*--------------------------------------------------------------
# SP # Section-method どんな指導方法？
--------------------------------------------------------------*/
  .method-box-txt-wrap {
    margin-top: 10rem;
    width: 98%;
    padding: 3rem 1rem 0.5rem;
  }
  .method-box-txt span {
    display: none;
  }
  .method-box-img-wrap {
    width: 95%;
  }
  .method-box-img {
    width: 100%;
    background-color: transparent;
    text-align: center;
    margin-bottom: 1rem;
  }
  .method-box-movie-wrap {
    width: 100%;
  }
  .method-box-movie {
    width: 95%;
    margin-bottom: 2rem;
  }
  /*--------------------------------------------------------------
# SP # Section-material どんな教材？
--------------------------------------------------------------*/
  .material-box-wrap {
    margin: 10rem auto 3rem;
  }
  .material-box-wrap h4 {
    width: 90%;
  }
  .material-box-wrap p {
    width: 90%;
  }
  .material-box-movie-wrap {
    width: 90%;
  }
  .material-box-movie-wrap img {
    width: 48%;
  }
  .material-box-img-wrap {
    width: 90%;
  }
  .material-box-img-wrap img {
    width: 48%;
    height: auto;
    margin-bottom: 20px;
  }
  /*--------------------------------------------------------------
# SP # Section-fee 料金（月謝）は？
--------------------------------------------------------------*/
  .fee-box-title {
    width: 100%;
    padding: 1rem 2rem;
  }
  .fee-box-table table td {
    text-align: left;
  }
  .fee-box-table td p span {
    display: block;
    width: auto;
  }
  .fee-box-wrap p {
    width: 100%;
    font-size: 1rem;
  }
  .table-price {
    width: 42%;
  }
  /*--------------------------------------------------------------
# SP # Section-class クラスは？
--------------------------------------------------------------*/
  .class-box h3 {
    width: 70%;
    height: 130px;
    order: 1;
  }
  .class-txt-box {
    width: 100%;
    height: auto;
    order: 3;
  }
  .class-box img {
    width: 30%;
    height: 130px;
    object-fit: cover;
    order: 2;
  }
  .enclosure {
    border: var(--c-prime) 6px solid;
    text-align: center;
  }
  /*--------------------------------------------------------------
# SP # Section-classroom 教室一覧 2025追加
--------------------------------------------------------------*/
.sclink li {
	width:45%;
	float:left;
}


}
