/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');
/*
html,body {
  width: 100%;
  font-size: 1.00em;
}
html {
  scroll-behavior: smooth;
}
*/
/*
body * {
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  /*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;*/
  /*font-weight:500;
}
*/
/*
body {
  font-size: 1.5rem;
}
*/
p,li,dd,td {
  /*font-weight:500;*/
}
h1,h2,h3,h4,h5,dt,th {
  font-weight:bold;
}
a { color: #000; }
img {
    /*-webkit-backface-visibility: hidden;*/
    image-rendering: -webkit-optimize-contrast;
}

.l-row::after {
  content: "";
  display: block;
  clear: both;
}

.u-text-center {  text-align: center; }
.u-font-mincho { 
	font-family: "Noto Serif JP", serif;
/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
}

.is-pc { display: block !important; }
.is-sp { display: none !important; }

.u-ptb-30 { padding: 30px 0 }
.u-ptb-20 { padding: 20px 0 }
.u-ptb-10 { padding: 10px 0 }

.u-pt-30 { padding-top: 30px; }
.u-pt-20 { padding-top: 20px; }
.u-pt-10 { padding-top: 10px; }

.u-pb-30 { padding-bottom: 30px; }
.u-pb-20 { padding-bottom: 20px; }
.u-pb-10 { padding-bottom: 10px; }

/* 16px換算 */
.fs12 { font-size: 0.75rem; }
.fs14 { font-size: 0.875rem; }
.fs15 { font-size: 0.9375rem; }
.fs18 { font-size: 1.125rem; }
.fs20 { font-size: 1.25rem; }
.fs24 { font-size: 1.5rem; }
.fs28 { font-size: 1.75rem; }
.fs32 { font-size: 2rem; }
.fs36 { font-size: 2.25rem; }
.fs42 { font-size: 2.625rem; }
.fs48 { font-size: 3rem; }

.u-fs-1 { font-size: 0.75rem; }  /* 12px相当 */
.u-fs-2 { font-size: 0.875rem; }  /* 14px相当 */
.u-fs-3 { font-size: 0.9375rem; }  /* 15px相当 */
.u-fs-4 { font-size: 1.125rem; }  /* 18px相当 */
.u-fs-5 { font-size: 1.25rem; }  /* 20px相当 */
.u-fs-6 { font-size: 1.5rem; }  /* 24px相当 */
.u-fs-7 { font-size: 1.75rem; }  /* 28px相当 */
.u-fs-8 { font-size: 2rem; }  /* 32px相当 */
.u-fs-9 { font-size: 2.25rem; }  /* 36px相当 */
.u-fs-10 { font-size: 2.625rem; }  /* 42px相当 */
.u-fs-11 { font-size: 3rem; }  /* 48px相当 */

.fb { font-weight: 800; }

a[href*="tel:"] {
	pointer-events: none;
}

@media only screen and (max-width: 767px) {
	a[href*="tel:"] {
		pointer-events: initial;
	}
}

.u-scroll-x {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
}
/* テーブルを包む形で使う */
.u-scroll-x table {
    min-width: 600px;
    white-space: nowrap;
}

.section-anchor {
    scroll-margin-top: 100px;
}

/* 縦書き本体 */
.u-vertical {
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 1.8;
	letter-spacing: 0.1em;
	text-align: left;
}
/* 縦書きの中の英数字を立たせる */
.u-upright {
	-webkit-text-orientation: upright;
	text-orientation: upright;
}
/* 縦中横（2桁の数字など） */
.u-tcy {
	-webkit-text-combine: horizontal;
	-ms-text-combine-horizontal: all;
	text-combine-upright: all;
}

.u-relative { position: relative; }
.u-anchor { position: absolute;	top: -150px; }
.u-anchor-target { scroll-margin-top: 150px; }

.u-flex { display: flex !important; }
.u-inline-flex { display: inline-flex !important; }

.u-flex-row-reverse { flex-direction: row-reverse !important; }
.u-flex-column-reverse { flex-direction: column-reverse !important; }
.u-flex-wrap { flex-wrap: wrap !important; }
.u-flex-wrap-reverse { flex-wrap: wrap-reverse !important; }

/* 水平方向（justify-content） */
.u-justify-start   { justify-content: flex-start !important; }
.u-justify-end     { justify-content: flex-end !important; }
.u-justify-center  { justify-content: center !important; }
.u-justify-between { justify-content: space-between !important; }
.u-justify-around  { justify-content: space-around !important; }

/* 垂直方向：親要素用（align-items） */
.u-items-start   { align-items: flex-start !important; }
.u-items-end     { align-items: flex-end !important; }
.u-items-center  { align-items: center !important; }
.u-items-baseline { align-items: baseline !important; }
.u-items-stretch  { align-items: stretch !important; }

/* 垂直方向：子要素用（align-self） */
.u-self-start    { align-self: flex-start !important; }
.u-self-end      { align-self: flex-end !important; }
.u-self-center   { align-self: center !important; }
.u-self-stretch  { align-self: stretch !important; }
/*
.l-outer {
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0 auto;
}
.l-inner {
    max-width: 1200px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0 auto;
}
@media only screen and (max-width: 960px) {
  .l-inner {
      padding-left: 15px;
      padding-right: 15px;
  }
}

/*
.l-header-wrap {
    padding-left: 15px;
    padding-right: 15px;
}
.c-logo {
	display: flex;
	align-items: center;
}
.c-logo h1 {
	margin: 0;
	padding: 0;
	font-weight: 600;
  font-size: 30px;
	display: flex;
	align-items: center;
}
.c-logo h1 a {
	text-decoration: none;
	font-weight: 700;
}

.c-main-nav {
  display: flex;
  gap: 20px;
}

.header-tel {
	align-items: center;
}
.header-tel a {
	display: flex;
  align-items: center;
  font-size: 22px;
	color: #fff;
  vertical-align: middle;
  gap: 2px;
  text-decoration: none;
	background-color: #b71600;
  padding: 0.2em 0.5em 0.3em 0.5em;
  border-radius: 999px;
}
.header-tel a::before {
	content: '';
	background-image: url('../img2026/ico-tel.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 100%;
  width: 1em;
  height: 1em;
  margin-top: 0.1em;
}
*/
.c-main-nav-list {
	display: flex;
	gap: 20px;
	list-style: none;
  margin: 1em 0;
  padding: 0;
}
.c-main-nav-list li {
	display: flex;
  align-items: center;
}
.c-main-nav-list li a {
  font-size: 18px;
	text-decoration: none;
  transition: color 0.2s;
}
.c-main-nav-list li a:hover {
  color: #b71600;
}

/*
body {
  padding-top: 80px;
}
.l-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
}
.l-header.is-scrolled {
  background-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -5px rgba(255, 255, 255, 0.6);
}
*/
.sec-main-visual {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-visual-wrap .copy {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translate(0, -50%);
}
.main-visual-wrap .copy p {
  font-size: min(1.5vw, 26px);
  -webkit-text-stroke: 2px white;
  text-stroke: 2px white;
  paint-order: stroke;
  margin: 0;
  padding: 0;
  font-weight: 600;
}
.main-visual-wrap .copy p.school-name {
  font-size: min(3vw, 50px);
  font-weight: 800;
  letter-spacing: -0.05em;
}
.main-visual-wrap img {
  width: calc(100vw - 40px);
  border-radius: 50px;
}

#main h1 {
	font-weight: normal;
}

@media only screen and (max-width: 1400px) {
  
  .c-logo h1 a {
    font-size: calc(100vw * (30 / 1440));
  }
  .c-main-nav-list li a {
    font-size: calc(100vw * (18 / 1440));
  }
  .header-tel a {
    font-size: calc(100vw * (22 / 1440));
  }
  .main-visual-wrap {
    /*margin-top: 1.5em;*/
  }
  .main-visual-wrap img {
    border-radius: calc(100vw * (50 / 1440));
  }

}
@media only screen and (max-width: 960px) {
  .main-visual-wrap {
    /*margin-top: 1em;*/
  }
  #main .main-visual-wrap .copy p {
    font-size: 2.5vw;
    padding: 0;
  }
  #main .main-visual-wrap .copy p.school-name {
    font-size: 4vw;
    padding: 0;
  }
  .main-visual-wrap img {
      width: calc(100vw - 30px);
      border-radius: calc(100vw * ( 50 / 960 ));
  }
}

@media only screen and (max-width: 960px) {
  
  img { max-width: 100%; height: auto; }
  .is-pc { display: none !important; }
  .is-sp { display: block !important; }
  span.is-sp { display: inline-block !important; }
	
  .l-outer, 
  .l-inner {
    width: 100%;
    min-width: 100%;
  }

  /* ナビゲーション本体 */
  .c-main-nav {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100vw; 
    height: 100vh;
    background: rgba(255,255,255,0.95);
    z-index: 100;
    display: none; 
    padding-top: 80px;
  }

  .c-main-nav-list {
    flex-direction: column;
    align-items: center;
  }

  /* スマホナビゲーションのラップ要素 */
  .l-nav-sp {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    transition: background-color 0.3s;
  }

  .l-nav-sp-body {
    position: fixed;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.95);
    z-index: 1001;
    display: none;
    padding-top: 100px;
    overflow-y: auto;
  }
  
  /* 状態クラスによる表示制御 */
  .is-open .l-nav-sp-body {
    display: block;
  }
  
  .is-open .l-nav-sp {
    height: 100%;
    background-color: #ccc;
    overflow-y: auto;
  }
  
  /* ハンバーガーボタンの制御 */
  .c-nav-toggle {
    position: relative;
    z-index: 1002;
  }

  .c-nav-button {
    margin-top: 10px;
    margin-bottom: 10px;
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: #b71600;
    border: none;
  }

  .c-nav-button span,
  .c-nav-button::before,
  .c-nav-button::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 0; bottom: 0;
    margin: auto;
    width: 30px;
    height: 4px;
    background: #fff;
    transition: transform 0.2s, opacity 0.2s;
  }

  /* 三本線の初期位置 */
  .c-nav-button::before { transform: translateY(-12px); }
  .c-nav-button::after  { transform: translateY(12px); }

  /* アクティブ時の「×」アニメーション */
  .c-nav-button.is-active span { opacity: 0; }
  .c-nav-button.is-active::before { transform: translateY(0) rotate(45deg); }
  .c-nav-button.is-active::after { transform: translateY(0) rotate(-45deg); }

  /* 文字消し対応（真ん中の棒を維持） */
  .c-nav-button span {
    color: transparent;
    font-size: 0;
  }
  
  .header-tel {
    justify-content: center;
  }

  .c-logo h1 a {
    font-size: calc(100vw * (30 / 960));
  }
  .c-main-nav-list li a {
    font-size: calc(100vw * (24 / 960));
  }
  .header-tel a {
    font-size: calc(100vw * (22 / 960));
  }

}
@media only screen and (max-width: 480px) {

  .c-nav-button {
    width: calc(100vw * (90 / 767));
    height: calc(100vw * (90 / 767));
  }

  .c-nav-button span,
  .c-nav-button::before,
  .c-nav-button::after {
    width: calc(100vw * (60 / 767));
    height: calc(100vw * (6 / 767));
  }

  .c-nav-button::before { transform: translateY(calc(100vw * (-20 / 767))); }
  .c-nav-button::after  { transform: translateY(calc(100vw * (20 / 767))); }

  .c-logo h1 a {
    font-size: calc(100vw * (24 / 480));
  }
  .c-main-nav-list li a {
    font-size: 6vw;
  }
  .header-tel a {
    font-size: 6vw;
  }

}
.header-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0 1.5em 0;
}
#main .header-wrap h2 {
  position: relative;
  margin: 0;
  padding: 0.5em 0;
  text-align: center;
  color: #000;
  background: none;
  box-shadow: none;
  line-height: 1.5;
}
#main .header-wrap h2::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  content: '';
  width: 4em;
  height: 4px;
  background-color: #b71600;
  border-radius: 999px;
}
@media only screen and (max-width: 960px) {
  .header-wrap h2 {
    /*font-size: 5vw;*/
  }
}

/* service
------------------------------------------------------------------*/
.sec-service {
  padding: 0 0 40px 0;
}
.service-wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex: 0;
}
.service-wrap > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% / 4);
}
.service-wrap .image {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-wrap .image img {
  border-radius: 999px;
  margin-left: auto;
  margin-right: auto;
}
.service-wrap .txt {
  text-align: center;
  transform: translate(0, -60%);
  position: relative;
  padding-top: 0.5em;
}
.service-wrap .txt::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: 70%;
  height: 70%;
  border-radius: 50%;
  z-index: -1;
}
.service01 .txt::before,
.service03 .txt::before {
  background-color: #dbf771;
  box-shadow: 0px 0px 20px 20px #dbf771;
}
.service02 .txt::before,
.service04 .txt::before {
  background-color: #b2e9fd;
  box-shadow: 0px 0px 20px 20px #b2e9fd;
}
#main .service-wrap .txt p {
  margin: 0;
  padding: 0;
  font-size: min(1.3vw, 20px);
  line-height: 1.5;
}
.link-btn {
  display: flex;
  justify-content: center;
}
.link-btn a {
	display: flex;
  align-items: center;
  font-size: 18px;
	color: #fff;
  vertical-align: middle;
  gap: 2px;
  text-decoration: none;
	background-color: #b71600;
  padding: 0.2em 0.5em 0.3em 1em;
  border-radius: 999px;
}
.link-btn a::after {
    content: "";
    border: 5px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 0.5em;
}

@media only screen and (max-width: 1200px) {
  .sec-service {
    padding: calc(100vw * (40/960)) 0;
  }
  .service-wrap {
    flex-wrap: wrap;
    row-gap: 20px;
    gap: 0px;
    justify-content: space-around;
  }
  .service-wrap > div {
    width: calc(100% / 2);
  }
  .service-wrap .image img {
    width: 95%;
  }
  #main .service-wrap .txt p {
    font-size: 1.8vw;
  }
}
@media only screen and (max-width: 767px) {
  #main .service-wrap .txt p {
    font-size: 3vw;
  }
}
@media only screen and (max-width: 480px) {
  .service-wrap .image img {
    width: 90%;
  }
}
/* information
------------------------------------------------------------------*/
.information-wrap {
  border: 1px solid #999;
  border-radius: 5px;
  width: 1000px;
  padding: 0.7em;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.information-wrap dl {
  overflow-y: auto;
  height: 20em;
  margin: 0;
  padding: 0.3em;
}
.information-wrap dl div {
  display: flex;
  padding-bottom: 1em;
}
.information-wrap dl div dt {
  padding-right: 4em;
  position: relative;
}
.information-wrap dl div dd {
  padding-left: 1em;
  margin-left: 0;
}
.information-wrap dl div.new dt::after {
  content: 'NEW';
  color: #fff;
  background-color: #b71600;
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 0.5em;
}

@media only screen and (max-width: 1350px) {
  .information-wrap {
    width: 95%;
  }
}
@media only screen and (max-width: 960px) {
  .information-wrap dl div {
    flex-direction: column;
  }
  .information-wrap dl div dt {
    padding-right: 4em;
    padding-bottom: 0.5em;
    position: relative;
  }
  .information-wrap dl div dd {
    padding-left: 0;
    padding-bottom: 1em;
  }
  .information-wrap dl div.new dt::after {
    position: static;
    margin-left: 0.5em;
  }
}
@media only screen and (max-width: 767px) {

  .information-wrap {
    width: 90%;
    height: 70vh;
  }
  .information-wrap dl {
    height: 65vh;
  }
  .information-wrap dl div dt {
    font-size: 4vw;
  }
  .information-wrap dl div dd {
    font-size: 4vw;
  }
}

/* competition
------------------------------------------------------------------*/
.sec-competition {
  padding: 50px 0 0 0;
}
.competition-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.competition-wrap .image img,
.competition-wrap .txt img {
  max-width: 100%;
}
@media only screen and (max-width: 767px) {
  .sec-competition {
    padding: calc(100vw * (50 / 767)) 0 0 0;
  }
  .competition-wrap {
    flex-direction: column;
  }
  .competition-wrap .image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .competition-wrap .image img {
    max-width: 75%;
  }
  .competition-wrap .txt {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .competition-wrap .txt img {
    max-width: 85%;
  }
}
/* merit
------------------------------------------------------------------*/
.sec-merit {
  /*background-color: #eef9fd;*/
  position: relative;
  padding: 50px 0 0 0;
}
/*
.sec-merit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(
    to bottom,
    rgba(238, 249, 253, 0) 0%,
    rgba(238, 249, 253, 1) 100%
  );
  transform: translateY(-100%);
  pointer-events: none;
}
*/
.merit-wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}
.merit-item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.merit-item:nth-child(even) {
  flex-direction: row-reverse;
}
.merit-item .image {
  width: calc(100% * (540 / 1180));
}
.merit-item .image img {
  border-radius: 15px; 
}
#main .merit-item .txt {
  width: calc(100% * (620 / 1180));
  background-color: #fff;
  border-radius: 15px;
  padding: 1em;
}
#main .merit-item .txt h3 {
  border: none;
  background: none;
  box-shadow: none;
}
#main .merit-item .txt h3 {
  margin: 0 0 1.5em 0;
  padding: 0 0 0.5em 0;
  position: relative;
}
#main .merit-item .txt h3::before {
  content: '';
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 98px;
  height: 98px;
  position: absolute;
}
#main .merit-item .txt p {
  margin: 0;
  padding: 0;
  font-size: 1.4rem;
  line-height: 1.4;
}
#main .merit01 .txt h3 {
  border-bottom: 2px solid #05a6c8;
  padding-left: 80px;
}
#main .merit01 .txt h3::before {
  background-image: url('../img2026/ico_merit01.png');
  top: 0;
  left: 0;
  transform: translate(-35%, -30%);
}
#main .merit03 .txt h3 {
  border-bottom: 2px solid #5dc639;
  padding-left: 80px;
}
#main .merit03 .txt h3::before {
  background-image: url('../img2026/ico_merit03.png');
  top: 0;
  left: 0;
  transform: translate(-35%, -30%);
}
#main .merit02 .txt h3 {
  border-bottom: 2px solid #ec9b0f;
  padding-right: 80px;
}
#main .merit02 .txt h3::before {
  background-image: url('../img2026/ico_merit02.png');
  top: 0;
  right: 0;
  transform: translate(35%, -30%);
}
#main .merit04 .txt h3 {
  border-bottom: 2px solid #f261d5;
  padding-right: 80px;
}
#main .merit04 .txt h3::before {
  background-image: url('../img2026/ico_merit04.png');
  top: 0;
  right: 0;
  transform: translate(35%, -30%);
}
@media only screen and (max-width: 1300px) {

  .merit-item,
  .merit-item:nth-child(even) {
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
  }

  #main .merit-item .image {
    width: 98%;
  }
  #main .merit-item .image img {
    width: 100%;
  }
  #main .merit-item .txt {
    width: 98%;
    box-sizing: border-box;
  }

  #main .merit-item .txt h3::before {
    width: calc(100vw * ( 110 / 1350));
    height: calc(100vw * ( 110 / 1350));
  }
  #main .merit01 .txt h3, 
  #main .merit03 .txt h3,
  #main .merit02 .txt h3, 
  #main .merit04 .txt h3 {
    padding-left: calc(100vw * ( 80 / 1350));
    padding-right: 0;
  }

  #main .merit01 .txt h3::before, 
  #main .merit03 .txt h3::before,
  #main .merit02 .txt h3::before, 
  #main .merit04 .txt h3::before {
    top: 0;
    left: 0;
    right: auto;
    transform: translate(-45%, -45%);
  }

}
@media only screen and (max-width: 767px) {
  .sec-merit {
    /*padding: 0 0 calc(100vw * ( 150 / 767)) 0;*/
  }
  .merit-item,
  .merit-item:nth-child(even) {
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
  }
  .merit-item .image {
    width: 92%;
  }
  .merit-item .txt {
    width: 92%;
  }
  #main .merit-item .txt h3 {
    font-size: 3.5vw;
  }
  #main .merit-item .txt p {
    font-size: 3.5vw;
  }
  #main .merit01 .txt h3, 
  #main .merit03 .txt h3,
  #main .merit02 .txt h3, 
  #main .merit04 .txt h3 {
    padding-left: calc(100vw * ( 80 / 767));
    padding-right: 0;
  }
  #main .merit-item .txt h3::before {
    width: calc(100vw * ( 115 / 767));
    height: calc(100vw * ( 115 / 767));
  }
  #main .merit01 .txt h3::before, 
  #main .merit03 .txt h3::before,
  #main .merit02 .txt h3::before, 
  #main .merit04 .txt h3::before {
    top: 0;
    left: 0;
    right: auto;
    transform: translate(-45%, -50%);
  }
}
/* lesson
------------------------------------------------------------------*/
.sec-lesson {
  /*background-color: #eff7d0;*/
  position: relative;
  padding: 50px 0 0 0;
}
/*
.sec-lesson::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(
    to bottom,
    #eef9fd 0%,
    #eff7d0 100%
  );
  transform: translateY(-100%);
  z-index: 0;
  pointer-events: none;
}
*/
.sec-lesson p {
  text-align: center;
}
.lesson-wrap {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}
.lesson-wrap .image {
  padding-top: 2em;
}
.lesson-wrap .image img {
  border-radius: 15px;
}
.lesson-wrap .txt {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
#main .lesson-wrap .txt p {
  padding: 0 0 0 0.5em;
  margin: 0 0 1em 0;
  line-height: 1;
}
.lesson-wrap .txt .red {
  color: #b71600;
}
.lesson-wrap .txt .price-txt {
  color: #b71600;
  font-size: 46px;
  font-weight: 800;
}
.lesson-wrap ul.kome {
  list-style: none;
  margin: 1em 0;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.lesson-wrap ul.kome li {
  padding: 0 0 0.5em 0;
  line-height: 1.5;
  font-size: min(20px, 3vw);
}
.lesson-wrap ul.kome li::before {
  content: '※';
}
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 30px;
}

.niblick-table {
    width: 650px;
  
    border-collapse: separate;
    border-spacing: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    color: #333;
    background-color: #fff;
    border: 1px solid #b71600;
    border-radius: 8px;
    overflow: hidden;
}

.niblick-table thead th {
    background-color: #b71600;
    color: #ffffff;
    font-weight: 700;
    padding: 5px 5px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.niblick-table thead th:last-child {
    border-right: none;
}

.niblick-table tbody td {
    padding: 5px 5px;
    text-align: center;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    line-height: 1.4;
}

.niblick-table tbody th {
    background-color: #fffafa;
    color: #b71600;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    font-weight: 700;
    padding: 5px 5px;
    font-size: 20px;
}

.niblick-table tbody tr:last-child td,
.niblick-table tbody tr:last-child th {
    border-bottom: none;
}
.niblick-table td:last-child,
.niblick-table th:last-child {
    border-right: none;
}

.niblick-table tbody tr:nth-child(even) {
    background-color: #fafafa;
}

@media only screen and (max-width: 1350px) {
  .sec-lesson p {
    font-size: 1.8vw;
  }
  .lesson-wrap .image {
    width: calc(100vw * (400 / 1000));
  }
  .lesson-wrap .image img {
    width: 100%;
  }
  .lesson-wrap .txt {
    width: calc(100vw * (530 / 1000));
  }
  .niblick-table {
    width: 100%;
  }
  .niblick-table thead th {
    font-size: 1.5vw;
  }
  .niblick-table tbody td {
    font-size: 1.5vw;
  }
  .niblick-table tbody th {
    font-size: 1.5vw;
  }
  .lesson-wrap ul.kome li {
    font-size: 1.5vw;
  }
}

@media only screen and (max-width: 1200px) {
  .sec-lesson p {
    font-size: min(3vw, 24px);
  }
  .lesson-wrap {
    flex-direction: column-reverse;
  }
  .lesson-wrap .image {
    width: 95%;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
  }
  .lesson-wrap .image img {
    width: 75%;
  }
  .lesson-wrap .txt {
    width: 95%;
    margin-left: auto;
    margin-right: auto;
  }
  .niblick-table {
    width: 100%;
  }

  .niblick-table thead th {
    font-size: 2.8vw;
  }
  .niblick-table tbody td {
    font-size: 2.8vw;
  }
  .niblick-table tbody th {
    font-size: 2.8vw;
  }
  .lesson-wrap .txt {
    font-size: min(3vw, 24px);
  }
  .lesson-wrap .txt p,
  .lesson-wrap .txt span {
    font-size: min(3vw, 24px);
  }
  .lesson-wrap .txt .price-txt {
    font-size: min(6vw, 45px);
  }
  .lesson-wrap ul.kome li {
    font-size: min(3vw, 24px);
  }

}
/*
@media only screen and (max-width: 767px) {
  .sec-lesson p {
    font-size: 4vw;
    text-align: left;
  }

  .niblick-table thead th {
    font-size: 3.5vw;
  }
  .niblick-table tbody td {
    font-size: 3.5vw;
  }
  .niblick-table tbody th {
    font-size: 3.5vw;
  }

  .lesson-wrap .txt {
    font-size: 4vw;
  }
  .lesson-wrap .txt p,
  .lesson-wrap .txt span {
    font-size: 4vw;
  }
  .lesson-wrap .txt .price-txt {
    font-size: 8vw;
  }
  .lesson-wrap ul.kome li {
    font-size: 4vw;
  }
}
*/
/* price
------------------------------------------------------------------*/
.sec-price {
  padding: 50px 0 0 0;
}

.over {
    overflow: hidden;
    margin: 50px auto;
    padding: 0;
}

.thick {
    position: relative;
    border: 4px solid #dbdbd1;
    padding: 12px;
    background-color: #fff;
    box-sizing: border-box;
}

.thin {
    position: absolute;
    top: 6px;
    right: 6px;
    bottom: 6px;
    left: 6px;
    border: 2px solid #dbdbd1;
    z-index: 30;
    pointer-events: none;
}

.thick:before,
.thick:after,
.circle:before,
.circle:after {
    position: absolute;
    display: block;
    content: "";
    border-radius: 50%;
    width: 35px; 
    height: 35px;

    background-color: #eee;
    border: 4px solid #dbdbd1;
    z-index: 20; 
}

.thick:before { top: -20px; left: -20px; }
.thick:after  { top: -20px; right: -20px; }
.circle:before { bottom: -20px; right: -20px; }
.circle:after  { bottom: -20px; left: -20px; }

.content {
    position: relative;
    z-index: 40;
    padding: 20px 20px;
    text-align: center;
    gap: 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

.sec-price .image {

}
.sec-price .image img {
  border-radius: 15px;
}

.sec-price .txt {
  letter-spacing: -0.05em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sec-price .txt .upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbdbd1;
  padding-top: 1em;
  padding-bottom: 1em;
}

#main .sec-price .txt .upper div p {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  line-height: 1.2;
}
#main .sec-price .txt .upper div p.name {
  font-weight: 800;
}
#main .sec-price .txt .upper div p.price {
  font-weight: 800;
}
#main .sec-price .txt .upper div p .price-txt {
  color: #b71600;
  font-size: 46px;
}
#main .sec-price .txt .upper div p.ball {
  display: block;
  text-align: center;
  margin-top: 0.3em;
}


.sec-price .txt .upper ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
}
.sec-price .txt .upper ul li {
  display: inline-flex;
  align-items: center;
}
.sec-price .txt .upper ul li::before {
  content: '';
  background-image: url('../img2026/ico_checkmark.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  width: 1.1em;
  height: 1.1em;
  margin-right: 0.1em;
}
.sec-price .txt .lower {
  display: flex;
  padding-top: 1em;
  padding-bottom: 1em;
}
.sec-price .txt .lower ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.sec-price .txt .lower ul li {
  margin-right: 1em;
}
.sec-price .txt .lower ul li::before {
  content: '■';
  color:#b71600;
}
.sec-price .txt .lower ul li span {
  color:#b71600;
}
@media only screen and (max-width: 1450px) {
  .sec-price .image {
    width: calc(100vw * ( 359 / 1200 ));
  }
  .sec-price .image img {
    width: 100%
  }
  .sec-price .txt {
    width: calc(100vw * ( 729 / 1200 ));
    font-size: 1.6vw;
    line-height: 1.5;
  }
  #main .sec-price .txt .upper div p .price-txt {
    font-size: 2.4vw;
  }
  #main .sec-price .txt .upper div p {
    font-size: 1.4vw;
    padding: 0.2em 0;
  }
  #main .sec-price .txt .upper ul li {
    font-size: 1.4vw;
    padding: 0.2em 0;
  }
  .sec-price .txt .upper .balloon {
    width: calc(100vw * ( 70 / 1200 ));
  }
  .sec-price .txt .upper .balloon img {
    width: 100%
  }
  #main .sec-price .txt .lower ul li {
    font-size: 1.5vw;
  }
}

@media only screen and (max-width: 960px) {
  #main .content {
    flex-direction: column-reverse;
  }
  #main .sec-price .image {
    width: 100%
  }
  #main .sec-price .image img {
    width: 75%
  }
  #main .sec-price .txt {
    width: 100%;
    font-size: 2vw;
  }
  #main .sec-price .txt .upper div p .price-txt {
    font-size: 3vw;
  }
  #main .sec-price .txt .upper div p {
    font-size: 2vw;
  }
  #main .sec-price .txt .upper ul li {
    font-size: 2vw;
  }
  #main .sec-price .txt .upper .balloon {
    width: calc(100vw * ( 70 / 960 ));
  }
  #main .sec-price .txt .upper .balloon img {
    width: 100%
  }
  #main .sec-price .txt .lower ul li {
    font-size: 2vw;
  }

}

@media only screen and (max-width: 767px) {
  
  #main .sec-price .txt .upper .balloon {
    width: calc(100vw * ( 100 / 767 ));
    margin-right: 1em;
  }
  #main .sec-price .txt .upper div p .price-txt {
    font-size: 7vw;
  }
  #main .sec-price .txt .upper {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #main .sec-price .txt .upper div p {
    font-size: 4.5vw;
  }
  #main .sec-price .txt .upper ul {
    margin-top: 0.5em;
  }
  #main .sec-price .txt .upper ul li {
    font-size: 4vw;
  }
  #main .sec-price .txt .lower ul li {
    font-size: 4vw;
  }
  #main .over {
    margin: 0 auto calc(100vw * ( 50 / 767 )) auto;
  }

}
@media only screen and (max-width: 480px) {
  #main .sec-price .txt .upper .balloon {
    margin-right: 0.5em;
  }
  #main .sec-price .txt .upper ul {
    margin-top: 0.75em;
    width: 100%;
  }
}
/* timetable
------------------------------------------------------------------*/
.sec-timetable {
  /*background-color: #eef9fd;*/
  position: relative;
  padding: 50px 0 0 0;
}
/*
.sec-timetable::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(
    to bottom,
    rgba(238, 249, 253, 0) 0%,
    rgba(238, 249, 253, 1) 100%
  );
  transform: translateY(-100%);
  pointer-events: none;
}
*/
.niblick-timetable {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    table-layout: fixed; 
    font-family: "Noto Sans JP", sans-serif;
    color: #000;
    background-color: #fff;
    border: 2px solid #666;
}

.niblick-timetable thead th {
    background-color: #f2f2f2;
    border: 1px solid #666;
    padding: 5px 0;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
}

.niblick-timetable tbody th {
    width: 100px;
    background-color: #f2f2f2;
    border: 1px solid #666;
    font-weight: 700;
    text-align: center;
    font-size: 24px;
    padding: 0;
}

.niblick-timetable td {
    border: 1px solid #666;
    height: 3em;
    text-align: center;
    padding: 2px;
    vertical-align: middle;
    line-height: 1.2;
    font-weight: 700;
    font-size: 24px;
}

.bg-blue { background-color: #cceeff; }
.bg-pink { background-color: #ffccff; }
.bg-green { background-color: #ccffcc; }

.holiday {
    letter-spacing: 1.5em;
    font-size: 32px;
    background-color: #fff;
    text-indent: 1.5em;
    font-weight: 700;
}

.v-text {
    writing-mode: vertical-rl;
    text-orientation: upkeep;
    font-size: 18px; 
    letter-spacing: 0.1em;
    line-height: 1;
}

.niblick-timetable td br + span {
    font-size: 17px;
}

.sec-timetable .table-container p.kome {
  text-indent: -1em;
  padding-left: 1em;
}
.sec-timetable .table-container p.kome::before {
  content: '※';
}

@media only screen and (max-width: 1200px) {
  .niblick-timetable {
    width: 100%;
  }

  .niblick-timetable thead th {
    font-size: 2vw;
  }
  .niblick-timetable tbody th {
    font-size: 2vw;
  }
  .niblick-timetable td {
    font-size: 2vw;
  }
  .holiday {
    font-size: 2vw;
  }
  .sec-timetable .table-container p {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 767px) {
  .sec-timetable{
    padding: calc(100vw * (20 / 767)) 0 0 0;
  }
  .niblick-timetable thead th {
    font-size: 2.5vw;
  }
  .niblick-timetable tbody th {
    font-size: 2.5vw;
  }
  .niblick-timetable td {
    font-size: 2.5vw;
  }
  .holiday {
    font-size: 2.5vw;
  }
  .sec-timetable .table-container p.kome {
    font-size: min(4vw, 24px);
  }
}
/* access
------------------------------------------------------------------*/
.sec-access {
  /*background-color: #f2f2f2;*/
  position: relative;
  padding: 20px 0 50px 0;
  line-height: 1.5;
}
/*
.sec-access::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px; 
  background: linear-gradient(
    to bottom,
    #eef9fd 0%,
    #f2f2f2 100%
  );
  transform: translateY(-100%);
  pointer-events: none;
}
*/
.access-wrap {
  display: flex;
  justify-content: space-between;
}
.access-wrap .info {
  width: 50%;
}
.access-wrap .map {
  width: 50%;
}
#main .access-wrap .info h3 {
  border: none;
  background: none;
  box-shadow: none;
}
#main .access-wrap .info h3 {
  margin: 0 0 0.5em 0;
  padding: 0;
}
#main .access-wrap .info .image {
	width: 95%;
}
.access-wrap .info dl {
  margin: 1em 0;
  padding: 0;
}
.access-wrap .info dl div {
  display: flex;
  gap: 0.5em;
  margin-bottom: 0.5em;
  align-items: flex-start;
}
#main .access-wrap .info dl div dt {
 display: inline-flex;
 justify-content: center;
 text-align: center;
 margin: 0;
 padding: 0 0.1em;
 letter-spacing: 0.8em;
 color: #fff;
 background-color: #b71600;
 border-radius: 3px;
 width: 4em;
 font-weight: 500;
 font-size: min(1.4vw, 20px);
}
.access-wrap .info dl div dt::after {
  content: "";
  margin-left: -0.8em;
}
#main .access-wrap .info dl div dd {
  margin: 0;
  padding: 0;
  flex: 1;
 font-size: min(1.4vw, 20px);
}
.access-wrap .info dl div dd a {
  text-decoration: none;
}
.map-wrap {
  width: 100%;
  max-width: 100%;
  margin-top: 1.5em;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 1350px) {
  .access-wrap {
      gap: 20px;
  }
  .access-wrap .info {
    width: calc(100vw * (580/1200));
  }
  .access-wrap .info img {
    width: 100%;
  }
  .map-wrap {
    width: calc(100vw * (580/1200));
  }
  .access-wrap .info h3 {

  }
  .access-wrap .info dl div dt {

  }
  .access-wrap .info dl div dd {

  }

}
@media only screen and (max-width: 1200px) {
  .access-wrap {
    flex-direction: column;
    padding: calc(100vw * (20 / 767)) 0 calc(100vw * (50 / 767)) 0;
  }
  .access-wrap .info,
  .access-wrap .map {
    width: 100%;
  }
  .access-wrap .info .image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .access-wrap .info img {
    width: 100%;
  }
  .map-wrap {
    width: 100%;
    margin-top: 0;
  }
  #main .access-wrap .info h3 {
    font-size: min(3vw, 24px);
  }
  #main .access-wrap .info dl div dt {
    font-size: min(3vw, 24px);
  }
  #main .access-wrap .info dl div dd {
    font-size: min(3vw, 24px);
  }
}
@media only screen and (max-width: 767px) {
  .access-wrap .info dl div dt {
    font-size: 4vw;
  }
  .access-wrap .info dl div dd {
    font-size: 4vw;
  }
}
/* footer
------------------------------------------------------------------*/
.l-footer {
  background-color: #b71600;
  color: #fff;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
}
.footer-wrap .info {
  padding: 1em 0.5em;
}
.footer-wrap .info .name {
  margin: 0;
  padding-bottom: 0.5em;
  font-weight: 700;
}
.footer-wrap .info dl {
  margin: 0;
  padding: 0;
}
.footer-wrap .info dl div {
  display: flex;
  padding-bottom: 0.3em;
  font-size: 20px;
}
.footer-wrap .info dl div dt {
  width: 3em;
  font-size: 20px;
}
.footer-wrap .info dl div dd {
  margin: 0;
  padding: 0;
  font-size: 20px;
}
.footer-wrap .info dl div dd a {
  text-decoration: none;
  color: #fff;
}
.footer-nav {
  padding: 1em 0.5em;
}
.footer-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  list-style: none;
  height: 5em;
  flex-wrap: wrap;
  gap: 0.2em;
}
.footer-nav ul li {
  margin: 0;
  padding: 0 0.5em 0 0;
  height: 1.2em;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
}
.footer-nav ul li::before {
    content: "";
    border: 5px solid transparent;
    border-left: 8px solid #fff;
    margin-left: 0.5em;
}

.footer-nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
}
.copyright {
  margin: 0 auto;
  padding: 1em 0 2em;
  font-size: 18px;
}

@media only screen and (max-width: 1200px) {
  .footer-wrap .info dl div {
    font-size: 2vw;
  }
  .footer-wrap .info dl div dt {
    font-size: 2vw;
  }
  .footer-wrap .info dl div dd {
    font-size: 2vw;
  }
  .copyright {
      font-size: 1.6vw;
  }
}
@media only screen and (max-width: 767px) {
  .footer-wrap {
    display: flex;
    flex-direction: column;
  }
  .footer-wrap .info dl div {
    font-size: 3vw;
  }
  .footer-wrap .info dl div dt {
    font-size: 3.5vw;
  }
  .footer-wrap .info dl div dd {
    font-size: 3.5vw;
  }
  .copyright {
    font-size: 3vw;
  }
  .l-footer {
    padding-bottom: calc(100vw * (50 / 767));
  }
}


body{
  position: relative;
}
.bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
}
#bg-ball01 {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  width: calc(100vw * (400 / 1440));
  height: calc(100vw * (400 / 1440));
  background: rgba(178, 233, 253, 0.5);
  border-radius: 50%;
  filter: blur(calc(100vw * (50 / 1440)));
  z-index: -1;
}
#bg-ball02 {
  position: absolute;
  top: calc(100vw * (800 / 1440));
  left: 0;
  transform: translate(-50%, -50%);
  width: calc(100vw * (400 / 1440));
  height: calc(100vw * (400 / 1440));
  background: rgba(202, 229, 98, 0.5);
  border-radius: 50%;
  filter: blur(calc(100vw * (50 / 1440)));
  z-index: -1;
}
#bg-ball03 {
  position: absolute;
  top: calc(100vw * (1200 / 1440));
  right: 0;
  transform: translate(50%, -50%);
  width: calc(100vw * (400 / 1440));
  height: calc(100vw * (400 / 1440));
  background: rgba(183, 22, 0, 0.15);
  border-radius: 50%;
  filter: blur(calc(100vw * (50 / 1440)));
  z-index: -1;
}

