@charset "UTF-8";
/*アニメーションCSS*/
/*ボーダーが真ん中から左右に広がる*/
/*ボタンの背景が横から出てくる*/
#wrapper {
  min-width: 1280px;
}

/*Flexbox */
.flex {
  display: -webkit-box;
  display: flex;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*折り返し */
.flx-wrp {
  flex-wrap: wrap;
}

/*逆順 */
.flx-rr {
  flex-direction: row-reverse;
}

/*積み重なるように配置 */
.flx-column {
  flex-direction: column;
}

/*水平方向の揃え */
/*初期値 */
.flx-strt {
  -webkit-justify-content: start;
  justify-content: start;
}

/*並列で均等配置（左右隙間なし=space-between） */
.flx-btw {
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

/*並列で均等配置（左右隙間あり=space-around） */
.flx-ard {
  -webkit-justify-content: space-around;
  justify-content: space-around;
}

/*水平揃え　末揃え */
.flx-end {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

/*水平揃え　中央揃え */
.flx-center {
  -webkit-justify-content: center;
  justify-content: center;
}

/*垂直方向の揃え */
/*水平揃え　上揃え */
.flx-alitem-strt {
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

/*水平揃え　高さ揃え */
.flx-alitem-strch {
  -webkit-align-items: stretch;
  align-items: stretch;
}

/*水平揃え　縦・横の中央揃え */
.flx-alitem-c {
  -webkit-align-items: center;
  align-items: center;
}

/*水平揃え　下揃え */
.flx-alitem-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

/*水平揃え　ベースライン揃え */
.flx-alitem-base {
  -webkit-align-items: baseline;
  align-items: baseline;
}

/*複数行にした揃え方 */
/*初期値 */
.flx-alcont-strt {
  -webkit-align-content: flex-start;
  align-content: flex-start;
}

/*親要素の開始位置から配置。上揃え */
.flx-alcont-strch {
  -webkit-align-content: stretch;
  align-content: stretch;
}

/*親要素の終点から配置。下揃え */
.flx-alcont-end {
  -webkit-align-content: flex-end;
  align-content: flex-end;
}

/*中央揃え */
.flx-alcont-c {
  -webkit-align-content: center;
  align-content: center;
}

/*最初と最後の子要素を上下の端に配置し、残りの要素は均等に間隔をあけて配置 */
.flx-alcont-s-btw {
  -webkit-align-content: space-between;
  align-content: space-between;
}

/*上下端にある子要素も含め、均等に間隔をあけて配置 */
.flx-alcont-s-ard {
  -webkit-align-content: space-around;
  align-content: space-around;
}

/* 並び順変更 */
.flex-order-1 {
  order: 1;
}

.flex-order-2 {
  order: 2;
}

/*pcスタイル */
.inbox {
  width: 1080px;
  margin: 0 auto;
  box-sizing: border-box;
}

.pc-none {
  display: none;
}

.current a {
  color: var(--main-color);
}

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

/*-------▽▽フォント▽▽----------*/
body {
  font-size: 1.6rem;
  line-height: 1.5;
}

/*--------△△フォント△△---------*/
/*======================================================
 * ▽▽---共通スタイル---▽▽
 * =======================================================*/
html {
  scroll-padding: 0;
}

section {
  padding: 100px 0;
}

.dl-item {
  display: flex;
}

.com-txt {
  font-weight: 500;
  line-height: 2.19;
}
.com-txt:not(:last-of-type) {
  margin-bottom: 20px;
}

.com-btn {
  width: 240px;
  height: 50px;
  margin-top: 50px;
  display: grid;
  place-items: center;
  border-radius: 50vw;
  position: relative;
  background: var(--main-color);
  color: var(--white);
}
.com-btn:link, .com-btn:visited {
  color: var(--white);
}
.com-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/btn-arw.png") center/contain no-repeat;
  inset: 0 18px 0 auto;
  margin: auto 0;
}
.com-btn:hover {
  opacity: 1;
  background: var(--sub-color);
  transform: scale(0.95);
}

.add-btn {
  width: 100%;
  height: 60px;
  overflow: hidden;
  padding-left: 50px;
  margin: 0;
}
.add-btn .icon {
  width: 85px;
  background: rgba(255, 255, 255, 0.8);
  height: 100%;
  display: grid;
  place-items: center;
  position: absolute;
  left: 0;
  padding-left: 10px;
}
.add-btn .icon img {
  width: 30px;
}
.add-btn:hover {
  background: var(--font-color);
}

.site-arw::after {
  background-image: url(../img/common/site-arw.png);
}

.pdf-btn {
  width: 670px;
  height: 70px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 35px;
  background: var(--sub-color);
}
.pdf-btn::after {
  width: 22px;
  right: 40px;
  background-image: url(../img/common/dw-arw.png);
}

.line-btn {
  background: var(--line-color);
}

.insta-btn {
  background: var(--sub-color);
}

.flex > .ttl01 {
  width: 100%;
}

.ttl01 {
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
  display: grid;
  justify-items: center;
  margin-bottom: 50px;
  gap: 10px;
}
.ttl01 .en {
  font-size: 2.5rem;
  color: var(--main-color);
}
.ttl01.txt-le {
  justify-items: start;
}
.ttl01 .big {
  font-size: 1.3158em;
}

.ttl02 {
  font-size: 3.5rem;
  font-weight: 900;
}
.ttl02 .big {
  font-size: 1.176em;
}

.ttl03 {
  font-size: 3rem;
  font-weight: 900;
}

.ttl04 {
  font-size: 2.8rem;
  font-weight: 900;
}

.ttl05 {
  font-size: 2.5rem;
  font-weight: 900;
}

.ttl06 {
  font-size: 2rem;
}

.ttl07 {
  font-size: 1.8rem;
}
.ttl07 .big {
  line-height: 1.8;
  font-size: 1.0555em;
}

.txt-cap {
  font-size: 1.4rem;
}

.com-tel {
  display: grid;
  justify-items: start;
}
.com-tel a {
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: url("../img/common/tel-icon.png") left center/auto no-repeat;
  padding-left: 55px;
  box-sizing: border-box;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag-list .tag {
  color: var(--sub-color);
  background: #fff;
  border: 1px solid var(--sub-color);
  padding: 5px 10px;
  font-size: 1.2rem;
}

.com-kado {
  border-radius: 10px;
}
.com-kado > img {
  border-radius: 10px;
}

.com-sdw {
  box-shadow: 11px 11px 0 rgba(0, 0, 0, 0.06);
}

.com-pd-box {
  padding: 30px;
}

.mark {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.mark::before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  background: color-mix(in srgb, var(--main-color) 22%, transparent);
  border-radius: 50vw;
  bottom: 5px;
  z-index: -1;
}

.wave-list li {
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  align-content: center;
  gap: 10px;
  aspect-ratio: 1;
  background: url(../img/common/wave-bg.png) center/contain no-repeat;
}

.num {
  font-size: 2.5rem;
  color: var(--accent-color);
  display: inline-grid;
  place-items: center;
  width: 60px;
  aspect-ratio: 0.95;
  letter-spacing: 0.06em;
  padding-bottom: 3px;
  padding-left: 3px;
  background: url(../img/common/num-bg.png) center/contain no-repeat;
}

.ttl-bd-01 {
  position: relative;
  padding-bottom: 20px;
}
.ttl-bd-01::before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  background: color-mix(in srgb, var(--main-color) 22%, transparent);
  border-radius: 50vw;
  bottom: 0;
}

.ttl-bd-02 {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.ttl-bd-02::before {
  content: "";
  display: block;
  width: 100%;
  height: 12px;
  position: absolute;
  background: color-mix(in srgb, var(--sub-color) 22%, transparent);
  border-radius: 50vw;
  bottom: 0;
}

.ttl-bd-03 {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 20px;
}
.ttl-bd-03::before {
  content: "";
  display: block;
  width: 70px;
  height: 12px;
  position: absolute;
  background: var(--main-color);
  border-radius: 50vw;
  inset: auto 0 0 0;
  margin: 0 auto;
}

.ttl-pd {
  padding: 15px 30px;
}

.ttl-deco-01 {
  display: inline-block;
  padding: 0 50px;
  background: url(../img/common/ttl-deco-le.png) left no-repeat, url(../img/common/ttl-deco-ri.png) right no-repeat;
}
.ttl-deco-01.ft-wt {
  background: url(../img/common/ttl-deco-wt-le.png) left no-repeat, url(../img/common/ttl-deco-wt-ri.png) right no-repeat;
}

.flex > .ttl-deco-02 {
  width: 100%;
}

.ttl-deco-02 {
  position: relative;
  margin-bottom: 10px;
  z-index: 1;
}
.ttl-deco-02::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background: url(../img/common/deco-line.png) center/100% no-repeat;
  inset: 0;
  margin: auto 0;
  z-index: -1;
}
.ttl-deco-02.ttl07 span {
  border-radius: 8px;
  padding: 3px 10px;
}

.grades-item .ttl-deco-02::before {
  background: var(--main-color);
}
.grades-item .ttl-deco-02 span {
  background: var(--bg-color-02);
  position: relative;
  padding-right: 10px;
}
.grades-item .ttl-deco-02 span::before {
  content: "■";
  color: var(--main-color);
}

.box-bd-top {
  position: relative;
}
.box-bd-top::before {
  content: "";
  display: block;
  width: 95%;
  height: 2px;
  position: absolute;
  background: url(../img/common/deco-line.png) center/100% no-repeat;
  inset: 25px 0 auto 0;
  margin: 0 auto;
}

.box-bd-btm {
  position: relative;
}
.box-bd-btm::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background: url(../img/common/deco-line.png) center/100% no-repeat;
  inset: auto 0 -10px 0;
}

.bg-ptn {
  position: relative;
  background: url(../img/common/bg01.png);
  padding: 30px;
  margin: 10px 0;
}
.bg-ptn::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background: url(../img/common/deco-line.png) center/100% no-repeat;
  inset: -10px 0 auto 0;
}
.bg-ptn::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  background: url(../img/common/deco-line.png) center/100% no-repeat;
  inset: auto 0 -10px 0;
}

/*infotableスタイル*/
.com-desc-tbl {
  margin-bottom: 40px;
}
.com-desc-tbl .dl-item {
  display: flex;
  justify-content: space-between;
}
.com-desc-tbl .dl-item:not(:last-child) {
  border-bottom: 2px solid var(--bg-color);
}
.com-desc-tbl .dl-item dt {
  text-align: center;
  width: 242px;
  padding: 25px 10px;
  display: inline-grid;
  align-content: center;
}
.com-desc-tbl .dl-item dd {
  width: 838px;
  padding: 25px 45px;
  font-weight: 500;
}
.com-desc-tbl .dl-item dd .tel-txt {
  display: block;
}

/*======================================================
 * △△---共通スタイル---△△
 * =======================================================*/
/*---------------------------▽▽---heder---▽▽------------------------*/
#header {
  width: 100%;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 100;
  padding: 17px 40px;
}
#header .hd-logo img {
  display: block;
}
#header .hd-right #nav .nav-list {
  gap: 60px;
}
#header .hd-right #nav .nav-list .nav-item {
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a {
  padding-bottom: 5px;
  opacity: 1;
  position: relative;
}
#header .hd-right #nav .nav-list .nav-item > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--main-color);
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: 0.5s;
}
#header .hd-right #nav .nav-list .nav-item > a:hover::after {
  transform: scale(1);
}
#header .hd-right #nav .nav-list .nav-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  background: var(--main-color);
  inset: 0 -35px 0 auto;
  margin: auto 0;
  border-radius: 50vw;
}

/*---------------------------△△---heder---△△------------------------*/
/*---------------------------▽▽---MV---▽▽------------------------*/
.top-mv {
  position: relative;
}
.top-mv .mv-ct {
  position: absolute;
  width: 32.97%;
  left: 5.2%;
  bottom: 23%;
  margin: auto 0;
}
/* 2025/08/21 動画に変更 */
/* .top-mv .mv-img {
  width: 83.33%;
  margin-left: auto;
}
.top-mv img {
  width: 100%;
} */
.top-mv .mv-video-wrap {
  width: 64%;
  margin-left: auto;
}
.top-mv .mv-video-wrap .mv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*---------------------------△△---MV---△△------------------------*/
/*--------▽▽---NEWS---▽▽---------- */
#top-news .inbox {
  position: relative;
}
#top-news .inbox .ttl01 {
  width: 200px;
  margin: 0;
  padding: 0;
  display: grid;
  align-items: center;
}
#top-news .inbox .news-list {
  width: 780px;
  gap: 45px;
}
#top-news .inbox .news-list .news-item a {
  width: 230px;
  gap: 15px;
}
#top-news .inbox .news-list .news-item a:hover {
  transform: translateY(-10px);
}
#top-news .inbox .news-list .news-item a .com-img {
  width: 100%;
  aspect-ratio: 1.4;
}
#top-news .inbox .news-list .news-item a time {
  line-height: 1;
}
#top-news .inbox .news-list .news-item a h4 {
  width: 100%;
}
#top-news .inbox .com-btn {
  position: absolute;
  left: 0;
  top: 140px;
  width: 200px;
}

/*------------△△---NEWS---△△---------*/
#top-course .ttl01 {
  font-size: 4.1rem;
}
#top-course .ttl01 .ttl-deco {
  background: url("../img/top/intro-ttl-icon.png") left center/auto no-repeat;
  padding-left: 135px;
  box-sizing: border-box;
}
#top-course .ttl01 .ft-clr01 {
  font-size: 1.195em;
}
#top-course .season-bnr .season-box {
  border: 2px solid var(--font-color);
}
#top-course .season-bnr .season-01 {
  background: #fde9ea;
}
#top-course .season-bnr .season-02 {
  background: #e1f3f8;
}
#top-course .season-bnr .season-03 {
  background: #f9eacc;
}
#top-course .season-bnr .season-04 {
  background: #e0ebf2;
}
#top-course .expe-box {
  margin-top: 40px;
  display: grid;
  justify-items: center;
  gap: 30px;
}
#top-course .expe-box h4 {
  width: 100%;
  font-size: 6.5rem;
  padding: 5px 20px 10px;
  background: url(../img/common/bg04.png);
}
#top-course .expe-box h4 .big {
  font-size: 1.1538em;
  margin-right: 10px;
}
#top-course .expe-box h4 .italic {
  position: relative;
  display: inline-block;
  bottom: -10px;
  transform: rotate(15deg);
}
#top-course .expe-box .txt-box {
  width: 585px;
  padding-bottom: 50px;
  margin-bottom: 50px;
}
#top-course .expe-box .txt-box .com-btn {
  width: 400px;
  height: 60px;
  position: absolute;
  inset: auto 0 -35px 0;
  margin: 0 auto;
  z-index: 10;
}
#top-course .expe-box .expe-ill {
  position: absolute;
  bottom: 30px;
}
#top-course .expe-box .ill-le {
  left: 30px;
}
#top-course .expe-box .ill-ri {
  right: 30px;
}

#top-about .inbox .txt-box {
  width: 530px;
}
#top-about .about-img {
  position: absolute;
  left: calc(50% + 100px);
}
#top-about .about-img-01 {
  top: 100px;
  width: calc(50% - 100px);
  height: 510px;
}
#top-about .about-img-02 {
  bottom: 100px;
}

.sec-img {
  width: 100%;
  height: 500px;
}

#top-service {
  padding-top: 0;
}
#top-service .inbox {
  gap: 80px;
}
#top-service .top-box {
  padding: 70px 0 0;
  margin-top: -130px;
  position: relative;
  z-index: 10;
}
#top-service .top-box .srv-li li {
  width: 255px;
  padding-bottom: 30px;
}
#top-service .srv-box .txt-box {
  width: 470px;
}
#top-service .srv-box .txt-box h4 {
  margin-bottom: 20px;
}
#top-service .srv-box .txt-box .ttl01 {
  margin-bottom: 0;
}
#top-service .srv-box .txt-box .ttl07 {
  margin-top: 30px;
}
#top-service .srv-box .img-01 {
  transform: translateX(-100px);
}
#top-service .srv-box .img-02 {
  transform: translateX(100px);
}

#top-achieve .achieve-box {
  padding: 0 40px;
  padding-right: 90px;
  border: 15px solid #fff;
  background: url(../img/common/bg03.png);
  position: relative;
}
#top-achieve .achieve-box::after {
  content: "";
  display: block;
  width: 40px;
  height: 100%;
  position: absolute;
  background: url(../img/common/btn-arw.png) center/20px no-repeat, var(--sub-color);
  right: 0;
}
#top-achieve .achieve-box .achieve-ill {
  transform: translateY(15px);
}

#common-contact .inbox {
  margin-bottom: -220px;
  padding: 70px 60px;
  position: relative;
  z-index: 100;
}
#common-contact .inbox .txt-box .ttl01 {
  margin-bottom: 30px;
}
#common-contact .inbox .add-box {
  width: 480px;
  gap: 30px;
}
#common-contact .inbox .add-box .btn-li {
  gap: 20px;
}

.side-btn {
  position: fixed;
  z-index: 100;
  right: 0;
  bottom: 20px;
}

#footer {
  padding: 300px 0 40px;
  position: relative;
  background: url(../img/common/bg04.png);
}
#footer .ft-area .ft-le {
  width: 50%;
  display: grid;
  justify-items: start;
  gap: 20px;
}
#footer .ft-area .ft-le .ft-logo {
  padding: 15px;
}
#footer .ft-area .ft-le .ft-info-box {
  display: grid;
  gap: 5px;
  font-size: 1.5rem;
  line-height: 2;
}
#footer .ft-area .ft-le .ft-info-box .ft-info {
  display: grid;
}
#footer .ft-area .ft-ri {
  width: 50%;
  gap: 80px;
}
#footer .ft-area .ft-ri .nav-list {
  display: grid;
  gap: 30px;
}
#footer .ft-area .ft-ri .nav-list .nav-item {
  line-height: 1;
}
#footer .ft-area .ft-ri .nav-list .nav-item a {
  padding-left: 25px;
  position: relative;
}
#footer .ft-area .ft-ri .nav-list .nav-item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  position: absolute;
  background: #fff;
  inset: 0 auto 0 0;
  margin: auto 0;
  border-radius: 50vw;
}
#footer .copyright {
  font-size: 1.2rem;
  margin-top: 45px;
}

/*==========================================
 * -▽▽---下層ページ---▽▽
 * ===========================================*/
/*---------------------------▽▽---SV---▽▽------------------------*/
.sv {
  position: relative;
}
.sv .sv-catch {
  position: absolute;
  width: clamp(1080px, 77%, 1480px);
  inset: 0;
  margin: auto;
  z-index: 10;
  font-size: 4rem;
  display: grid;
  align-content: center;
  justify-items: start;
}
.sv .sv-catch span {
  padding: 5px 10px;
}
.sv .sv-img {
  width: 83.33%;
  margin-left: auto;
}
.sv .sv-img img {
  width: 100%;
}

/*---------------------------△△---SV---△△------------------------*/
/*---------------------------▽▽---breadcrumbs---▽▽------------------------*/
.breadcrumbs-area {
  position: relative;
  z-index: 10;
}
.breadcrumbs-area .breadcrumbs {
  position: absolute;
  left: 0;
  right: 0;
  top: 15px;
  font-size: 1.5rem;
}
.breadcrumbs-area .breadcrumbs li:not(:first-child)::before {
  content: ">";
  padding: 0 15px;
}

/*---------------------------△△---breadcrumbs---△△------------------------*/
/*-----------▽▽---select---▽▽--------*/
.select-area {
  width: 300px;
  height: 50px;
  margin-left: auto;
  margin-right: 0;
}
.select-area .select-box {
  font-size: 1.5rem;
}
.select-area .select-box option {
  font-size: 1.5rem;
}
/*------------△△---select---△△---------*/
#about-concept .ttl01 {
  width: auto;
}
#about-concept .txt-box {
  width: 548px;
  min-height: 790px;
}
#about-concept .ccpt-img {
  position: absolute;
  width: calc(50% - 100px);
  height: 520px;
  left: 0;
  bottom: 100px;
}

#about-feature ol {
  gap: 40px;
  margin-bottom: 50px;
}
#about-feature ol li .feat-img {
  width: 480px;
}
#about-feature ol li .txt-box {
  width: 440px;
  margin-right: 30px;
  margin-top: 25px;
}
#about-feature ol li .txt-box h4 {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 20px;
}
#about-feature ol li:nth-child(odd) {
  flex-direction: row-reverse;
}
#about-feature ol li:nth-child(odd) .txt-box {
  margin-right: 0;
  margin-left: 30px;
}
#about-feature .point-box {
  position: relative;
  padding-bottom: 50px;
}
#about-feature .point-box .ttl07 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
#about-feature .point-box .txt-box {
  margin-left: 40px;
}
#about-feature .point-box .point-ill {
  position: absolute;
  bottom: -10px;
  right: 40px;
}

.fac-box .ttl04 {
  padding: 10px 30px;
  margin-bottom: 30px;
}
.fac-box ul {
  gap: 45px;
}
.fac-box ul li {
  width: 330px;
  aspect-ratio: 1.32;
}
.fac-box:nth-of-type(even) .ttl04 {
  background: var(--sub-color) !important;
}
.fac-box:not(:last-of-type) {
  margin-bottom: 80px;
}

.map {
  height: 370px;
}

/* ↓↓↓↓↓↓↓↓中学生小学生↓↓↓↓↓↓↓↓ */
.worries-area .worr-box {
  padding: 60px;
  margin-bottom: 100px;
}
.worries-area .worr-box::after {
  content: "";
  display: block;
  width: 74px;
  height: auto;
  aspect-ratio: 0.925;
  position: absolute;
  background: url("../img/common/worr-arw.png") center/contain no-repeat;
  inset: auto 0 -60px 0;
  margin: 0 auto;
}
.worries-area .worr-box .worr-li {
  gap: 20px 300px;
}
.worries-area .worr-box .worr-li li {
  width: 286px;
  border-radius: 25px;
  padding: 15px;
  min-height: 90px;
}
.worries-area .worr-box .worr-ill {
  position: absolute;
  inset: auto 0 90px 0;
  margin: 0 auto;
}
.worries-area table {
  margin-top: 50px;
  border-collapse: separate;
  border-spacing: 0 20px;
}
.worries-area table .bf-ttl span {
  position: relative;
}
.worries-area table .bf-ttl span::before {
  content: "";
  display: block;
  width: 58px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/worr-deco.png") center/contain no-repeat;
  left: -70px;
  top: -30px;
}
.worries-area table .af-ttl span {
  position: relative;
}
.worries-area table .af-ttl span::before {
  content: "";
  display: block;
  width: 39px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/worr-deco-le.png") center/contain no-repeat;
  left: -50px;
  top: -5px;
}
.worries-area table .af-ttl span::after {
  content: "";
  display: block;
  width: 27px;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  background: url("../img/common/worr-deco-ri.png") center/contain no-repeat;
  right: -30px;
  bottom: -5px;
}
.worries-area table tbody {
  display: grid;
  gap: 20px;
}
.worries-area table tr {
  display: flex;
  gap: 60px;
}
.worries-area table th, .worries-area table td {
  width: 510px;
}
.worries-area table th {
  padding: 10px;
}
.worries-area table td {
  padding: 20px;
  display: grid;
  align-content: center;
}
.worries-area table td:first-child {
  background: var(--worries-bg-color);
  position: relative;
}
.worries-area table td:first-child::after {
  content: "";
  display: block;
  width: 58px;
  height: auto;
  aspect-ratio: 1.7575;
  position: absolute;
  background: url("../img/common/worr-arw-02.png") center/contain no-repeat;
  inset: 0 -58px 0 auto;
  margin: auto 0;
}
.worries-area table td:last-child {
  background: var(--worries-color-02);
}

#elementary-worries .worr-li li:nth-child(even) {
  transform: translateY(55px);
}
#elementary-worries table {
  margin-bottom: 80px;
}

.contents-area .ctt-box:not(:last-of-type) {
  margin-bottom: 100px;
}
.contents-area .ctt-box > h4 {
  margin-top: -20px;
  margin-bottom: 60px;
}
.contents-area .ctt-box > h4 span {
  display: inline-block;
  min-width: 360px;
  padding: 5px 10px !important;
}
.contents-area .ctt-box > .ttl-bd-01 {
  margin-bottom: 30px;
}

#elementary-contents .ctt-box > h4 {
  margin-top: -40px;
}
#elementary-contents .ctt-box > h4 span {
  min-width: 490px;
}
#elementary-contents .btm-box .txt-box {
  width: 528px;
}

.comit-li {
  margin-bottom: 50px;
}
.comit-li li {
  width: 240px;
  background: url(../img/junior/up-arw.png) right 30px bottom 30px no-repeat, #fff;
}
.comit-li li .ttl03 {
  line-height: 1;
  margin-top: 10px;
}
.comit-li li .ttl03 .ft-clr01 {
  font-size: 1.8333em;
}

.comit-box {
  margin-bottom: 50px;
}
.comit-box .txt-box {
  width: 650px;
  margin: 0 auto;
  padding: 40px 20px;
  display: grid;
  gap: 30px;
  background: url(../img/common/bg01.png);
}
.comit-box .comit-ill {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.comit-box .comit-ill-le {
  left: 0;
}
.comit-box .comit-ill-ri {
  right: 0;
}

.exam-li {
  gap: 30px;
  margin: 40px 0 70px;
}
.exam-li li {
  width: 180px;
}

.com-content-li li {
  width: 510px;
}

#junior-model .model-li {
  gap: 100px;
}
#junior-model .model-li > li {
  padding: 50px 60px;
}
#junior-model .model-li > li .model-img {
  width: 150px;
}
#junior-model .model-li > li .txt-box {
  width: 770px;
}
#junior-model .model-li > li .txt-box .ttl05 {
  margin-bottom: 30px;
}
#junior-model .model-li > li .txt-box .ttl-deco-02 {
  margin-top: 40px;
  margin-bottom: 20px;
}
#junior-model .model-li > li .txt-box .model-time {
  gap: 50px;
}
#junior-model .model-li > li .txt-box .model-time .dl-item {
  line-height: 1;
  gap: 10px;
}
#junior-model .model-li > li .txt-box .model-time .dl-item dt {
  width: 35px;
}
#junior-model .model-li > li .txt-box ul li {
  margin: 0;
}

.price-area .table-wrap {
  margin-bottom: 20px;
}
.price-area .table-wrap table {
  table-layout: fixed;
  border-collapse: collapse;
  border: 1px solid var(--font-color-02);
}
.price-area .table-wrap table th, .price-area .table-wrap table td {
  padding: 10px;
  text-align: center;
  border: 1px solid var(--font-color-02);
}
.price-area .pdf-btn {
  margin: 70px auto 0;
}

#elementary-feature ol li {
  padding: 60px 35px;
  width: 320px;
}
#elementary-feature ol li .num {
  inset: -80px 0 auto 0;
  margin: 0 auto;
}

#elementary-price table th:first-child {
  width: 220px;
}

#sec-btn-box .inbox {
  width: 1280px;
  padding: 60px 100px;
}
#sec-btn-box .inbox .com-btn {
  margin: 0;
  width: 510px;
}
#sec-btn-box .inbox .com-btn::after {
  transform: rotate(90deg);
}

#achieve-grades .grades-li {
  gap: 60px 0;
}

.grades-item {
  width: 510px;
  display: grid;
  gap: 15px;
}
.grades-item .top-box {
  margin-bottom: 10px;
}
.grades-item .top-box .gra-img {
  width: 120px;
}
.grades-item .top-box .right-box {
  width: 300px;
  gap: 5px;
}
.grades-item .top-box .right-box .ttl06 {
  padding: 5px 10px;
}
.grades-item .bfaf-box {
  display: flex;
  justify-content: center;
  align-items: end;
  gap: 70px;
  background: url(../img/achieve/bf-arw.png) center left 190px no-repeat;
}
.grades-item .bfaf-box .bf {
  padding-bottom: 10px;
}
.grades-item .bfaf-box .bf span {
  letter-spacing: 0.04em;
  font-size: 4rem;
}
.grades-item .bfaf-box .af span {
  letter-spacing: 0.04em;
  font-size: 6rem;
}
.grades-item .up-box {
  font-size: 7rem;
  font-weight: 900;
}
.grades-item .up-box small {
  font-size: 4rem;
}
.grades-item .up-box .ft-clr03 {
  display: inline-block;
  padding-right: 40px;
  position: relative;
  letter-spacing: 0.04em;
}
.grades-item .up-box .ft-clr03::after {
  content: "";
  display: block;
  width: 45px;
  height: auto;
  aspect-ratio: 0.865;
  position: absolute;
  background: url("../img/achieve/up-arw.png") center/contain no-repeat;
  right: 0px;
  bottom: 15px;
}

.pass-li {
  display: grid;
  gap: 70px;
}
.pass-li .pass-item .child-list {
  margin-top: 30px;
}
.pass-li .pass-item .child-list li {
  width: 510px;
  padding: 30px 40px;
}
.pass-li .pass-item .child-list li .ttl04 {
  margin-bottom: 30px;
}

/*--------------------その他共通ページ --------------------*/
.com-other-page {
  padding: 100px 0;
}

/*---------------------------▽▽---site.html---▽▽------------------------*/
#site-map .site-list {
  padding: 70px 0 0;
}
#site-map .site-list li {
  font-size: 1.8rem;
}
#site-map .site-list li a {
  display: block;
  padding: 20px 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  color: var(--font-color);
  position: relative;
}
#site-map .site-list li a::after {
  content: "";
  display: block;
  width: 10px;
  height: 12px;
  background: var(--main-color);
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto 0;
}
#site-map .site-list li a:hover {
  background: color-mix(in srgb, var(--main-color) 50%, transparent);
}

/*---------------------------△△---site.html---△△------------------------*/
/*---------------------------▽▽---404.html---▽▽------------------------*/
#notfound .inbox .com-txt {
  text-align: center;
}
#notfound .inbox .com-txt a {
  text-decoration: underline;
  color: var(--font-color);
}

/*---------------------------△△---404.html---△△------------------------*/
/*---------------------------▽▽---privacy.html---▽▽------------------------*/
#privacy .privacy-box {
  margin-bottom: 50px;
  padding: 0;
}
#privacy .privacy-box .ttl02 {
  text-align: left;
  padding: 10px 30px;
  margin-bottom: 20px;
  background: var(--main-color);
  color: #fff;
  border-radius: 10px;
}

/*---------------------------△△---privacy.html---△△------------------------*/
/*---------------------------▽▽---news.html---▽▽------------------------*/
#news .news-ttl {
  margin-bottom: 50px;
}
#news .select-area {
  margin-bottom: 40px;
}
#news .select-area .select-box {
  padding: 10px 0;
  background: none;
}
#news .news-area {
  margin-bottom: 60px;
}
#news .news-area .news-list .news-item {
  border-bottom: 1px solid color-mix(in srgb, var(--main-color) 50%, transparent);
  line-height: 1.5;
}
#news .news-area .news-list .news-item a {
  display: block;
  padding: 30px 0;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 20px;
  align-items: flex-start;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box time {
  width: 100px;
}
#news .news-area .news-list .news-item a .news-txt-box .data-box .tag-list {
  width: 980px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-ttl {
  font-weight: 500;
  font-size: 2.3rem;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
#news .news-area .news-list .news-item a .news-txt-box .list-txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
#news .news-area .news-list .news-item .thumbnail-on {
  display: flex;
  justify-content: space-between;
}
#news .news-area .news-list .news-item .thumbnail-on .thumb {
  width: 200px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box {
  width: 840px;
}
#news .news-area .news-list .news-item .thumbnail-on .news-txt-box .data-box .tag-list {
  width: 740px;
}

/*detail */
#detail .detail-box {
  margin-bottom: 50px;
}
#detail .detail-box .data-box {
  display: flex;
  line-height: 1.5;
  gap: 30px;
  font-size: 1.5rem;
  margin-bottom: 70px;
  align-items: center;
}
#detail .detail-box .data-box time {
  width: 120px;
}
#detail .detail-box .data-box .tag-list {
  width: 780px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#detail .detail-box .data-box .tag-list .tag a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
#detail .detail-box .thumb {
  margin-bottom: 20px;
  width: 400px;
  height: 300px;
}
#detail .detail-box .detail-ttl {
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding: 0 0 20px;
  text-align: left;
  border-bottom: 2px solid #555;
}
#detail .detail-box .detail-txt {
  font-size: 1.6rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
  padding: 30px 0 60px;
}
#detail .detail-box .detail-txt img {
  margin: 10px;
}

/*pagenation*/
.pagenation {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 50px 0 30px;
}
.pagenation li {
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  border: 2px solid var(--main-color);
  font-size: 1.8rem;
  background: #fff;
}
.pagenation li a, .pagenation li span {
  line-height: 1;
  padding: 12px 18px;
  box-sizing: border-box;
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current {
  background: var(--main-color);
  color: #fff;
}

.pagenation-detail {
  position: relative;
  height: 50px;
  margin-top: 60px;
}
.pagenation-detail p a {
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  letter-spacing: 0.2em;
  line-height: 1;
  box-sizing: border-box;
  border-radius: 5px;
  padding: 18px 0;
  height: 50px;
  background: var(--main-color);
  position: absolute;
}
.pagenation-detail .left a {
  top: 0;
  left: 0;
  width: 70px;
}
.pagenation-detail .right a {
  top: 0;
  right: 0;
  width: 70px;
}
.pagenation-detail .center a {
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 160px;
}

/*---------------------------△△---news.html---△△------------------------*/
/*---------------------------▽▽---contact.html---▽▽------------------------*/
#contact .contact-ttl {
  margin-bottom: 100px;
  text-align: center;
}
#contact .table-wrapper {
  margin-bottom: 50px;
}
#contact .table-wrapper .contact-form-table tr {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
#contact .table-wrapper .contact-form-table tr th {
  font-weight: 700;
  width: 300px;
  box-sizing: border-box;
  background: var(--main-color);
  padding: 16px 10px;
  color: #fff;
}
#contact .table-wrapper .contact-form-table tr th .required-mark {
  background: var(--sub-color);
  padding: 2px 4px;
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr td {
  width: 770px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 500;
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td input, #contact .table-wrapper .contact-form-table tr td textarea, #contact .table-wrapper .contact-form-table tr td select, #contact .table-wrapper .contact-form-table tr td .error-text, #contact .table-wrapper .contact-form-table tr td .contact-address-txt {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  width: 100%;
}
#contact .table-wrapper .contact-form-table tr td label {
  font-family: "游ゴシック", "Meiryo", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}
#contact .table-wrapper .contact-form-table tr td .select-area {
  margin: 0;
}
#contact .table-wrapper .contact-form-table tr td .select-area select {
  width: auto;
}
#contact .table-wrapper .contact-form-table tr td .p-postal-code {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .birth-txt {
  width: 80px;
}
#contact .table-wrapper .contact-form-table tr td .error-text {
  font-weight: 500;
}
#contact .table-wrapper .contact-form-table tr .check-box-confirmation {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
#contact .table-wrapper .contact-form-table tr .h-adr input {
  height: 45%;
}
#contact .privacy-agree {
  display: block;
}
#contact .privacy-agree a {
  text-decoration: underline;
}

.check {
  display: flex;
  justify-content: space-between;
  width: 60%;
  margin: 50px auto;
}
.check .contact-recaptcha-wrap {
  margin: 0;
}

.contact-submits-wrap .contact-check-btn {
  width: 300px;
  height: 74px;
  background: none;
  color: #fff;
  background: var(--main-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}
.contact-submits-wrap .contact-back-btn {
  border: none;
  background: #bebebe;
  margin-bottom: 50px;
  font-size: 1.6rem;
}

.complete-area .ttl01 {
  margin-bottom: 100px;
}

.complete-box {
  color: var(--font-color);
  line-height: 1.5;
  text-align: center;
}
.complete-box a {
  display: inline-block;
  text-decoration: underline;
  margin: 30px 0;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.7;
  pointer-events: none;
}

/*---------------------------△△---contact.html---△△------------------------*/