@charset "UTF-8";
/*==========================================
PC共通
===========================================*/
html {
  font-size: 62.5%;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table tr {
  display: flex;
  padding: 20px 0;
}
.com-table tr th {
  padding: 15px 5px;
  width: 125px;
  vertical-align: top;
}
.com-table tr td {
  width: calc(100% - 125px);
  padding: 15px 20px;
}
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
パンくずリスト
===========================================*/
div .bread {
  font-size: var(--font-size-14);
  position: relative;
  z-index: 100;
  padding: 10px 0;
  background: var(--color-white);
}
div .bread .breadcrumbs {
  width: 1080px;
  margin: 0 auto;
  gap: 10px 0;
}
div .bread li {
  color: var(--primary-color);
  position: relative;
  padding: 0 20px;
}
div .bread li:first-child {
  padding-left: 0;
}
div .bread li:not(:first-child):after {
  width: 1px;
  height: 15px;
  content: "";
  background: var(--body-font-color);
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto 0;
}
div .bread li:last-child:after {
  content: "";
}
div .bread li a {
  color: var(--body-font-color);
}
div .bread li a:hover {
  text-decoration: underline;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  padding-top: 43px;
  margin-bottom: 20px;
  text-align: center;
  background: url(../img/common/section-ttl_deco.png) top center no-repeat;
}
.section-title .title-en {
  display: block;
  font-size: var(--font-size-18);
  color: var(--secondary-color);
  letter-spacing: 0.1em;
}
.section-title .title-ja {
  display: block;
  color: var(--primary-color);
  font-size: var(--font-size-30);
  letter-spacing: 0.2em;
  line-height: 1.5;
  text-shadow: 1px 1px 0 var(--color-white), -1px 1px 0 var(--color-white), 1px -1px 0 var(--color-white), -1px -1px 0 var(--color-white);
}
.section-title.no-bg {
  background: none;
  padding-top: 0;
}

.headline-title {
  font-size: var(--font-size-24);
  color: var(--primary-color);
  letter-spacing: 0.2em;
  margin-bottom: 25px;
}

.sub-title {
  border-left: 3px solid var(--color-gray);
  padding-left: 10px;
  font-size: var(--font-size-18);
  color: var(--accent-color);
  margin-bottom: 10px;
  line-height: 1.5;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content p {
  margin-bottom: 35px;
}
.com-content p:last-child {
  margin-bottom: 0;
}

.com-text {
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}

#g-map .map {
  height: 100%;
  /*==========================================
  iframe レスポンシブ　アスペクト比を保ちながら縦横を伸縮
  ===========================================*/
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#g-map .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
#g-map .map iframe {
  border-radius: 20px;
}

.com-button {
  height: 60px;
  border-radius: 8px;
  text-align: center;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.2em;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-15);
  padding: 0 10px;
  position: relative;
}
.com-button::before {
  position: absolute;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid rgba(var(--color-gray-rgb), 0.5);
  inset: 0;
  margin: auto;
  border-radius: inherit;
  z-index: 1;
}
.com-button:hover {
  opacity: 1;
  border-radius: 0;
  background: var(--primary-color);
}
.com-button:hover::before {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.com-button:hover span::before {
  right: 0;
}
.com-button span {
  width: 100%;
  position: relative;
  color: var(--color-white);
}
.com-button span::before {
  transition: all 0.3s ease;
  content: "\f231";
  inset: 0 5px 0 auto;
  color: inherit;
  font-size: var(--font-size-12);
}

.com-check__text {
  position: relative;
}
.com-check__text::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 77px;
  background: url(../img/common/com-check_txt.svg) center no-repeat;
  inset: 0 auto 0 0;
  z-index: 1;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  gap: 15px 25px;
}
.c-contact__list .com-tel {
  text-align: right;
  line-height: 1.1;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-25);
  color: var(--secondary-color);
  letter-spacing: 0.2em;
  padding-left: 25px;
}
.c-contact__list .com-tel .tel__num::before {
  content: "\f5b4";
  color: inherit;
  font-size: var(--font-size-17);
  z-index: 1;
}
.c-contact__list .com-tel .tel__text {
  display: block;
}
.c-contact__list .com-mail .mail__button {
  width: 245px;
}
.c-contact__list .com-mail .mail__button span {
  width: auto;
  padding-left: 25px;
  display: inline-block;
}
.c-contact__list .com-mail .mail__button span::before {
  content: "\f32c";
  font-size: var(--font-size-16);
  inset: 0 auto 0 0;
  font-weight: var(--font-weight-regular);
}

.c-official__button-list {
  gap: 30px;
}
.c-official__button-list .official__button {
  width: 220px;
}
.c-official__button-list .official__button span::before {
  content: "\f3dd";
  right: 10px;
  font-size: var(--font-size-15);
  font-weight: var(--font-weight-regular);
}

/*==========================================
header
===========================================*/
#header {
  width: 100%;
  background: url(../img/common/header_bg.png) top center no-repeat;
  position: absolute;
  inset: 0 0 auto;
  z-index: 1001;
  padding: 15px 1.5625% 0;
  height: 120px;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: clamp(550px, 42.916vw, 824px);
  position: relative;
  overflow: hidden;
  background: url(../img/top/mv/mv_bg.png) right center/cover no-repeat;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
}
#top-mv::before {
  position: absolute;
  content: "";
  width: 24.7395%;
  height: 389px;
  inset: auto 2.8645% 14.199% auto;
  background: url(../img/top/mv/mv_ill.png) center/100% no-repeat;
  z-index: 101;
}
#top-mv .mv__catch {
  position: absolute;
  inset: auto 6.5104% 13.9563% auto;
  width: 28.3333%;
  z-index: 102;
}
#top-mv .mv__wrap {
  width: 83.3333%;
  height: 100%;
}
#top-mv #mv__slider {
  height: clamp(550px, 42.916vw, 824px);
  position: relative;
}
#top-mv #mv__slider li {
  height: 100%;
}
#top-mv #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/slider01_bg.png) center no-repeat;
  background-size: cover;
}
#top-mv #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/slider02_bg.png) center no-repeat;
  background-size: cover;
}
#top-mv #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/slider03_bg.png) center no-repeat;
  background-size: cover;
}
#top-mv #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/slider04_bg.png) center no-repeat;
  background-size: cover;
}
#top-mv .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .bx-pager {
  display: none;
}

/*==========================================
nav
===========================================*/
.com-nav--style {
  background: var(--background-color);
  padding: 20px 0;
}
.com-nav--style .com-nav__list {
  gap: 10px 40px;
}
.com-nav--style .com-nav__item {
  position: relative;
  text-align: center;
  line-height: 1.5;
}
.com-nav--style .com-nav__item::after {
  position: absolute;
  content: "";
  width: 23px;
  height: 17px;
  background: url(../img/common/nav_deco.png) center/100% no-repeat;
  inset: 0 -30px 0 auto;
  margin: auto 0;
}
.com-nav--style .com-nav__item:nth-child(7)::after, .com-nav--style .com-nav__item:last-child::after {
  background: none;
}
.com-nav--style .com-nav__item:hover .nav-ja {
  color: var(--primary-color);
}
.com-nav--style .com-nav__item:hover .nav-ja::before, .com-nav--style .com-nav__item:hover .nav-ja::after {
  width: 50%;
  border-bottom: 1px solid var(--primary-color);
}
.com-nav--style .com-nav__item .current .nav-ja {
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
}
.com-nav--style .com-nav__item .current .nav-ja::before, .com-nav--style .com-nav__item .current .nav-ja::after {
  border-bottom: none;
}
.com-nav--style .nav-en {
  display: block;
  color: var(--primary-color);
  font-size: var(--font-size-18);
  letter-spacing: 0.1em;
}
.com-nav--style .nav-ja {
  font-size: var(--font-size-13);
  letter-spacing: 0.2em;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}
.com-nav--style .nav-ja::before, .com-nav--style .nav-ja::after {
  content: "";
  width: 0;
  bottom: 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--primary-color);
  position: absolute;
}
.com-nav--style .nav-ja::before {
  left: 50%;
}
.com-nav--style .nav-ja::after {
  right: 50%;
}

/*==========================================
top
===========================================*/
/*
# top-about
------------------------*/
#top-about {
  padding: 55px 0 115px;
  background: url(../img/top/about-l_bg.png) left center no-repeat, url(../img/top/about-r_bg.png) right center no-repeat, url(../img/top/about-btm_bg.png) bottom -500px center no-repeat;
}
#top-about .about__title {
  text-align: left;
  margin-bottom: 30px;
}
#top-about .about__title .title-ja:first-line {
  font-size: var(--font-size-25);
}
#top-about .about__content {
  width: 640px;
  padding: 50px 0 0 45px;
  background: url(../img/top/about-ttl_deco.png) left -7px top -55px no-repeat;
}
#top-about .about__button-list {
  gap: 15px 30px;
  margin-top: 50px;
}
#top-about .about__button-list .about__button-item {
  width: 280px;
}
#top-about .about__button-list .about__button-item .about__button-check::after {
  inset: -43px auto auto -5px;
}

/*
# top-class
------------------------*/
.bg-ribbon {
  background: url(../img/top/class-bg_deco.png) left 3.125% center no-repeat, url(../img/top/class-bg_deco.png) right 3.125% center no-repeat;
}

#top-class .class__wrap {
  padding: 70px 0;
}
#top-class .class__title {
  margin-bottom: 40px;
}
#top-class .class__list {
  row-gap: 55px;
}
#top-class .class__list .class__item {
  width: 500px;
}
#top-class .class__list .class__item-img {
  margin-bottom: 15px;
}
#top-class .class__list .class__item-img img {
  border-radius: 30px;
}
#top-class .class__list .class__item-content {
  background: url(../img/top/class-item-lt_deco.png) left 15px top no-repeat, url(../img/top/class-item-rt_deco.png) right 15px top no-repeat, url(../img/top/class-item-lb_deco.png) left 15px bottom no-repeat, url(../img/top/class-item-rb_deco.png) right 15px bottom no-repeat, url(../img/top/class-item-btm_deco.png) bottom center no-repeat;
  padding-bottom: 45px;
}
#top-class .class__list .class__item-label {
  margin-bottom: 15px;
  text-align: center;
}
#top-class .class__list .class__item-label span {
  display: inline-block;
  background: var(--background-color);
  border-radius: 15px;
  font-size: var(--font-size-13);
  padding: 6px 30px;
}
#top-class .class__list .class__item-title {
  margin-bottom: 15px;
}
#top-class .class__list .class__item-title .title-ja {
  font-size: var(--font-size-25);
}
#top-class .class__list .class__item-button {
  width: 280px;
  margin: 0 auto;
}

/*
# top-other-class
------------------------*/
#top-other-class {
  padding: 90px 0 100px;
}
#top-other-class .other-class__title {
  width: 640px;
  margin: 0 auto 10px;
  background: url(../img/top/other-class-ttl_deco.png) left bottom no-repeat;
  padding-bottom: 15px;
}
#top-other-class .other-class__title .title-ja {
  font-size: var(--font-size-25);
}
#top-other-class .other-class__list {
  width: 1000px;
  margin: 0 auto;
}
#top-other-class .other-class__list .other-class__item {
  background: var(--color-white);
  border-radius: 30px;
  margin-bottom: 30px;
  padding: 30px 35px;
}
#top-other-class .other-class__list .other-class__item:last-child {
  margin-bottom: 0;
}
#top-other-class .other-class__list .other-class__item-title {
  width: 370px;
  color: var(--primary-color);
  font-size: var(--font-size-18);
  letter-spacing: 0.2em;
}
#top-other-class .other-class__list .other-class__item-content {
  width: 550px;
  padding-left: 15px;
  border-left: 3px solid var(--color-gray);
}

/*
# top-contact
------------------------*/
#top-contact {
  padding: 50px 0 75px;
  background: url(../img/top/contact_bg.jpg) center/cover no-repeat;
}
#top-contact .contact__inbox {
  padding: 35px 0 80px;
  position: relative;
  background: url(../img/top/contact-content_bg.png) center no-repeat, var(--color-white);
  border-radius: 30px;
}
#top-contact .contact__inbox::before, #top-contact .contact__inbox::after {
  position: absolute;
  content: "";
}
#top-contact .contact__inbox::before {
  width: 1145px;
  height: 540px;
  background: url(../img/top/contact-l_frame.png) left top no-repeat, url(../img/top/contact-r_frame.png) bottom right no-repeat;
  inset: -50px auto auto -30px;
}
#top-contact .contact__inbox::after {
  width: 283px;
  height: 452px;
  background: url(../img/top/contact_ill.png) center/100% no-repeat;
  inset: auto 0 -30px auto;
}

.com-contact__content {
  width: 844px;
  margin: 0 auto;
  background: url(../img/top/contact-list_bg.png) center no-repeat;
  padding: 50px 0;
  z-index: 10;
}
.com-contact__content-check::after {
  top: -15px;
}
.com-contact__content .c-contact__list {
  justify-content: center;
}
.com-contact__content .c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-30);
}
.com-contact__content .c-contact__list .com-mail .mail__button {
  width: 300px;
  height: 70px;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 85px 0 120px;
}
#top-news .inbox {
  min-height: 385px;
  position: relative;
  background: url(../img/top/news_img.png) left bottom no-repeat;
}
#top-news .news__title {
  text-align: left;
  margin-bottom: 0;
}
#top-news .news__title .title-en {
  background: url(../img/top/news-ttl_deco.png) left 62px center no-repeat;
}
#top-news .news__post-list {
  width: 790px;
}
#top-news .news__post-list .news__post {
  text-align: left;
  margin-bottom: 20px;
}
#top-news .news__post-list .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  display: block;
  padding: 15px 45px;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: rgba(var(--color-gray-rgb), 1) 0px 10px 10px -2px;
  position: relative;
}
#top-news .news__post-list .news__post-link::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 60%;
  inset: 0 auto 0 25px;
  margin: auto 0;
  background: var(--color-gray);
  z-index: 1;
}
#top-news .news__post-list .news__post-link:hover {
  opacity: 1;
  background: var(--background-color);
  transform: translateY(5px);
  box-shadow: none;
}
#top-news .news__post-list .news__post-link:hover::before {
  background: var(--primary-color);
}
#top-news .news__post-list .news__post time {
  display: block;
  color: var(--secondary-color);
  font-size: var(--font-size-18);
}
#top-news .news__post-list .news__post-title {
  font-size: var(--font-size-15);
}
#top-news .news__post-list .news__post .category-label {
  gap: 7px;
  color: var(--primary-color);
  font-size: var(--font-size-13);
}
#top-news .news__button {
  width: 130px;
  position: absolute;
  inset: 105px auto auto 0;
  color: var(--primary-color);
  display: block;
  border-bottom: 3px solid var(--color-gray);
}
#top-news .news__button span {
  display: block;
}
#top-news .news__button span::before {
  transition: all 0.3s;
  content: "\f231";
  font-size: var(--font-size-12);
  inset: 0 8px 0 auto;
  font-weight: var(--font-weight-regular);
}
#top-news .news__button:hover {
  opacity: 1;
  border-color: var(--primary-color);
}
#top-news .news__button:hover span::before {
  right: 0;
}

/*
# top-info
------------------------*/
.section-end {
  position: relative;
  z-index: 1;
  padding: 80px 0 150px;
  overflow: hidden;
}
.section-end::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 1066px;
  background: url(../img/common/com-bg_deco.png) bottom center/100% no-repeat;
  inset: auto 0 0;
}

#top-guidance .guidance__title {
  padding-top: 45px;
}
#top-guidance .guidance__inbox {
  gap: 75px 40px;
}
#top-guidance .guidance__table {
  width: 620px;
  background: var(--color-white);
  border-radius: 30px;
  padding: 30px 35px;
}
#top-guidance .guidance__table tr {
  padding: 0;
  border-bottom: none;
}
#top-guidance .guidance__table tr th {
  border-right: 3px solid var(--color-gray);
}
#top-guidance #g-map {
  width: 420px;
}

/*==========================================
footer
===========================================*/
#footer .footer__inner {
  background: url(../img/common/ft_bg.jpg) center/cover no-repeat;
  padding: 95px 0 35px;
  text-align: center;
}
#footer .footer__logo {
  display: inline-block;
  margin-bottom: 20px;
}
#footer .footer__address {
  margin-bottom: 30px;
}
#footer .footer__official-button-list {
  margin-bottom: 30px;
}
#footer .footer__contact-list {
  justify-content: center;
}
#footer .footer__nav-list {
  width: 1080px;
  margin: 0 auto;
}

#copyright {
  background: var(--secondary-color);
  padding: 10px 0;
  color: var(--color-white);
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-11);
}
#copyright a {
  color: var(--color-white);
  text-decoration: underline;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 500px;
  position: relative;
  overflow: hidden;
  background: url(../img/sv/sv_bg.jpg) right center/cover;
}
.lower-sv::before {
  position: absolute;
  content: "";
  width: 24.7395%;
  height: 389px;
  inset: auto 8.59375% 0 auto;
  background: url(../img/sv/sv_ill.png) center bottom/100% no-repeat;
}
.lower-sv .sv__title {
  width: 1080px;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 31%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
}
.lower-sv .sv__title span {
  width: 540px;
  text-align: center;
}
.lower-sv .sv__title .title-ja {
  font-size: var(--font-size-38);
  color: var(--primary-color);
  letter-spacing: 0.2em;
  text-shadow: 1px 1px 0 var(--color-white), -1px 1px 0 var(--color-white), 1px -1px 0 var(--color-white), -1px -1px 0 var(--color-white);
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-30);
  font-family: var(--sub-font-family);
  color: var(--accent-color);
}
.lower-sv .sv__bg {
  width: 50%;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
}

#teacher-sv .sv__bg {
  background: url(../img/sv/teacher-sv_bg.png) center/cover no-repeat;
}

#information-sv .sv__bg {
  background: url(../img/sv/information-sv_bg.png) center/cover no-repeat;
}

#kids-sv .sv__bg {
  background: url(../img/sv/kids-sv_bg.png) center/cover no-repeat;
}

#junior-sv .sv__bg {
  background: url(../img/sv/junior-sv_bg.png) center/cover no-repeat;
}

#senior-sv .sv__bg {
  background: url(../img/sv/senior-sv_bg.png) center/cover no-repeat;
}

#beginner-sv .sv__bg {
  background: url(../img/sv/beginner-sv_bg.png) center/cover no-repeat;
}

#news-sv .sv__bg {
  background: url(../img/sv/news-sv_bg.png) center/cover no-repeat;
}

#contact-sv .sv__bg {
  background: url(../img/sv/contact-sv_bg.png) center/cover no-repeat;
}

#complete-sv .sv__bg {
  background: url(../img/sv/complete-sv_bg.png) center/cover no-repeat;
}

#privacy-sv .sv__bg {
  background: url(../img/sv/privacy-sv_bg.png) center/cover no-repeat;
}

#site-sv .sv__bg {
  background: url(../img/sv/site-sv_bg.png) center/cover no-repeat;
}

#e404-sv .sv__bg {
  background: url(../img/sv/e404-sv_bg.png) center/cover no-repeat;
}
#e404-sv .sv__title .title-ja {
  font-size: var(--font-size-35);
}

/*==========================================
teacher
===========================================*/
#teacher-archive .teacher__title {
  padding-top: 50px;
}
#teacher-archive .teacher__post {
  width: 1000px;
  margin: 0 auto 50px;
  background: var(--color-white);
  border-radius: 30px;
  padding: 35px 40px;
}
#teacher-archive .teacher__post:last-child {
  margin-bottom: 0;
}
#teacher-archive .teacher__post-headline {
  position: relative;
  min-height: 350px;
  margin-bottom: 15px;
}
#teacher-archive .teacher__post-title {
  font-size: var(--font-size-30);
}
#teacher-archive .teacher__post-profile {
  width: 580px;
  margin-left: auto;
}
#teacher-archive .teacher__post-img {
  width: 280px;
  height: 350px;
  position: absolute;
  inset: 0 auto auto 0;
  border-radius: 30px;
}
#teacher-archive .teacher__post-img img {
  border-radius: 30px;
}
#teacher-archive .teacher__post-item {
  margin-bottom: 20px;
}
#teacher-archive .teacher__post-item:last-child {
  margin-bottom: 0;
}
#teacher-archive .teacher__post-item .post__item-content {
  padding-left: 15px;
}
#teacher-archive .teacher__post-item .post__item-gallery {
  gap: 20px 31px;
}
#teacher-archive .teacher__post-item .post__item-gallery .post__gallery-item {
  width: 282px;
  height: 174px;
  border-radius: 20px;
}

/*==========================================
information
===========================================*/
/*
# info-reason
------------------------*/
#info-reason {
  background: url(../img/information/information_reason-bg.jpg) center/cover no-repeat;
}
#info-reason .reason__list {
  gap: 30px;
}
#info-reason .reason__list .reason__item {
  width: 340px;
  background: url(../img/top/news-ttl_deco.png) right 8px top 5px no-repeat, var(--color-white);
  border-radius: 30px;
  padding: 15px 20px 25px;
}
#info-reason .reason__list .reason__item-title {
  text-align: center;
  margin-bottom: 15px;
}
#info-reason .reason__list .reason__item-title .title-ja {
  font-size: var(--font-size-20);
  color: var(--primary-color);
}
#info-reason .reason__list .reason__item-title .title-en {
  font-size: var(--font-size-18);
  color: var(--accent-color);
  display: block;
}

/*
# info-flow
------------------------*/
#info-flow {
  padding: 90px 0 75px;
}
#info-flow .flow__item {
  width: 1000px;
  margin: 0 auto 95px;
  background: url(../img/information/flow-frame_top.png) top 5px center no-repeat, url(../img/information/flow-frame_btm.png) bottom 5px center no-repeat, var(--color-white);
  padding: 40px 75px 40px 145px;
  border-radius: 30px;
  position: relative;
}
#info-flow .flow__item::after {
  position: absolute;
  content: "";
  width: 64px;
  height: 84px;
  background: url(../img/information/flow_arw.png) center/100% no-repeat;
  inset: auto 0 -84px;
  margin: 0 auto;
}
#info-flow .flow__item:last-child {
  margin-bottom: 0;
}
#info-flow .flow__item:last-child::after {
  background: none;
}
#info-flow .flow__item-title {
  font-size: var(--font-size-20);
  position: relative;
}
#info-flow .flow__item-title .title-num {
  position: absolute;
  inset: -8px auto auto -100px;
  width: 94px;
  height: 62px;
  padding: 6px 10px 0 0;
  background: url(../img/information/flow-num_bg.png) center/100% no-repeat;
  font-family: var(--sub-font-family);
  text-shadow: 1px 1px 0 var(--color-white), -1px 1px 0 var(--color-white), 1px -1px 0 var(--color-white), -1px -1px 0 var(--color-white);
  font-size: var(--font-size-30);
  line-height: 1.1;
  text-align: center;
}
#info-flow .flow__item-title .title-num small {
  font-size: var(--font-size-20);
  display: block;
}

/*
# info-faq
------------------------*/
#info-faq .faq__item {
  background: var(--color-white);
  border-radius: 30px;
  padding: 40px 35px;
  margin-bottom: 20px;
}
#info-faq .faq__item:last-child {
  margin-bottom: 0;
}
#info-faq .faq__item-title, #info-faq .faq__item-content {
  position: relative;
  padding-left: 45px;
}
#info-faq .faq__item-title::before, #info-faq .faq__item-content::before {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  inset: 0 auto auto 0;
  line-height: 0;
  text-align: center;
  font-size: var(--font-size-15);
}
#info-faq .faq__item-title {
  font-size: var(--font-size-18);
}
#info-faq .faq__item-title::before {
  background: var(--background-color);
  color: inherit;
  content: "Q";
}
#info-faq .faq__item-content::before {
  background: var(--color-gray);
  content: "A";
}

/*==========================================
class
===========================================*/
/*
# com-concept__section
------------------------*/
.com-concept__section {
  background: url(../img/kids/com_class-concept-bg.jpg) center/cover no-repeat;
}
.com-concept__section .concept__wrap {
  gap: 45px;
}
.com-concept__section .concept__content {
  width: 350px;
  padding: 45px 40px;
  border-radius: 30px;
  background: url(../img/kids/com_class-concept-frame-top.png) top center no-repeat, url(../img/kids/com_class-concept-frame-btm.png) bottom center no-repeat, var(--color-white);
}
.com-concept__section .concept__content-title {
  font-size: var(--font-size-18);
}
.com-concept__section .concept__content-text {
  font-size: var(--font-size-20);
  color: var(--primary-color);
}

/*
# com-content__section
------------------------*/
.com-content__section {
  padding: 90px 0 180px;
}
.com-content__section .content__item {
  margin-bottom: 30px;
}
.com-content__section .content__item:last-child {
  margin-bottom: 0;
}
.com-content__section .content__item-title {
  font-size: var(--font-size-20);
  margin-bottom: 10px;
}

/*
# c-timetable__section
------------------------*/
.c-timetable__section .timetable__text {
  text-align: center;
  margin-bottom: 40px;
}
.c-timetable__section .timetable__wrap {
  padding: 40px 35px;
  border-radius: 30px;
  background: var(--color-white);
}
.c-timetable__section .timetable__table {
  width: 100%;
  border-spacing: 10px;
}
.c-timetable__section .timetable__table .thead__item {
  text-align: center;
  margin-bottom: 15px;
  padding: 0 0 25px;
}
.c-timetable__section .timetable__table .thead__item span {
  display: inline-block;
  width: 90px;
  text-align: center;
  background: var(--background-color);
  border-radius: 8px;
  color: var(--primary-color);
  font-size: var(--font-size-16);
  padding: 5px 10px;
}
.c-timetable__section .timetable__table tbody tr {
  border-bottom: 1px solid var(--color-gray);
}
.c-timetable__section .timetable__table tbody tr:last-child {
  border-bottom: none;
}
.c-timetable__section .timetable__table .tbody__item {
  width: 110px;
  padding: 15px 0;
  font-size: var(--font-size-13);
  color: var(--primary-color);
  text-align: center;
  vertical-align: middle;
}
.c-timetable__section .timetable__table .tbody__item:not(:first-child) {
  border-right: 1px solid var(--color-gray);
}
.c-timetable__section .timetable__table .tbody__item:last-child {
  border-right: none;
}
.c-timetable__section .timetable__table .tbody__item-title {
  width: 165px;
  text-align: left;
  font-size: var(--font-size-15);
  color: var(--body-font-color);
}

/*
# c-price__section
------------------------*/
.c-price__section .price__wrap-left {
  width: 325px;
}
.c-price__section .price__wrap-left .price__title {
  text-align: left;
}
.c-price__section .price__wrap-post {
  width: 680px;
}
.c-price__section .price__wrap-post .price__item {
  margin-bottom: 20px;
}
.c-price__section .price__wrap-post .price__item:last-child {
  margin-bottom: 0;
}
.c-price__section .price__wrap-post .price__membership-fee {
  background: var(--background-color);
  border-radius: 30px;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 40px;
}
.c-price__section .price__wrap-post .price__membership-fee .membership__title {
  font-size: var(--font-size-18);
}
.c-price__section .price__wrap-post .price__membership-fee .membership__price {
  font-size: var(--font-size-25);
}
.c-price__section .price__wrap-post .price__plan-fee .plan__price {
  text-align: right;
  font-size: var(--font-size-25);
  color: var(--accent-color);
}
.c-price__section .price__wrap-post .price__plan-fee .plan__price small {
  font-size: var(--font-size-15);
}

/*
# c-lesson__section
------------------------*/
.c-lesson__section .lesson__title {
  padding-top: 40px;
}
.c-lesson__section .lesson__list {
  background: var(--color-white);
  padding: 50px;
  width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  gap: 27px;
}
.c-lesson__section .lesson__list .lesson__item {
  width: 282px;
  height: 174px;
  border-radius: 20px;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.global-select {
  width: 300px;
  margin: 0 0 45px auto;
}
.global-select select {
  padding: 15px 37px 15px 15px;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 45px 0;
}
.column__wrap .column__list .column__post-meta time {
  width: 95px;
}
.column__wrap .column__list .column__post-meta time,
.column__wrap .column__list .column__post-meta .category-label {
  font-size: var(--font-size-14);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 115px);
  gap: 5px;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 2px 10px;
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-23);
  margin: 10px 0;
}
.column__wrap .column__list .more-btn {
  width: 125px;
  font-size: var(--font-size-14);
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 5px 0;
  display: block;
  color: var(--color-white);
  transition: all 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb {
  width: 210px;
  height: 200px;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-thumb .img-eff {
  width: 100%;
  height: 100%;
  transition-duration: 0.3s;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 820px;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single__post-meta {
  margin-bottom: 20px;
}
.single__post-meta time {
  font-size: var(--font-size-14);
  width: 95px;
  padding: 3px 0;
}
.single__post-meta .category-label {
  width: calc(100% - 95px);
  font-size: var(--font-size-14);
  gap: 5px;
  margin-left: 10px;
}
.single__post-meta .category-label li a {
  padding: 3px 10px;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  width: 980px;
  margin: 0 auto 55px;
}
#contact .contact__form-item .contact__form-label {
  margin-bottom: 20px;
}
#contact .contact__form-item .contact__form-label .required {
  margin-left: 10px;
}
#contact .contact__form-item .contact__form-input .contact__form-list {
  gap: 15px;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: center;
}
#contact .contact__form-value {
  padding: 20px 15px;
}
#contact .contact__form-select {
  width: 200px;
}
#contact .contact__form-select::after {
  inset: 0 16px 0 auto;
  width: 8px;
  height: 8px;
}
#contact .contact__form-select select {
  padding: 15px 30px 15px 10px;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 150px;
}
#contact .contact__form #address {
  margin-top: 15px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 300px;
}
#contact .contact__form textarea {
  height: 260px;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 200px;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 130px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .ancion-btn,
#contact .contact__form .upload-item-wrap .ancion-btn-wrap .upload-button {
  font-size: var(--font-size-13);
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact__submits-wrap button {
  height: 75px;
}
#contact .contact__submits-wrap {
  gap: 35px;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 304px;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 270px;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 240px;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy__content {
  margin-bottom: 70px;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

/*==========================================
site
===========================================*/
#site-map .sitemap__item-link {
  padding: 2% 0 2% 3%;
}

/*==========================================
プライバシーポリシー(LPフレーム時)
===========================================*/