@charset "UTF-8";
/*==========================================
パンくずリスト
===========================================*/
div .bread {
  display: none;
}

/*==========================================
テーブルレイアウト
===========================================*/
.com-table {
  text-align: left;
}
.com-table tr {
  display: block;
  padding: 6% 0;
}
.com-table tr th,
.com-table tr td {
  display: block;
}
.com-table tr th {
  margin-bottom: 4%;
}
.com-table tr td a[href^="tel:"],
.com-table tr td a[href^="mailto:"] {
  text-decoration: underline;
}

/*==========================================
共通タイトル
===========================================*/
.section-title {
  padding-top: 6vw;
  margin-bottom: 10%;
  text-align: center;
  background: url(../img/common/section-ttl_deco.png) top center/20% no-repeat;
}
.section-title .title-en {
  display: block;
  font-size: var(--font-size-16);
  color: var(--secondary-color);
  letter-spacing: 0.1em;
}
.section-title .title-ja {
  display: block;
  color: var(--primary-color);
  font-size: var(--font-size-21);
  letter-spacing: 0.1em;
  line-height: 1.7;
  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-20);
  color: var(--primary-color);
  letter-spacing: 0.2em;
  margin-bottom: 4%;
}

.sub-title {
  border-left: 0.75vw solid var(--color-gray);
  padding-left: 4%;
  font-size: var(--font-size-17);
  color: var(--accent-color);
  margin-bottom: 4%;
  line-height: 1.5;
}

/*==========================================
共通ブロック・要素
===========================================*/
.com-content {
  text-align: left;
}
.com-content p {
  margin-bottom: 8%;
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
}
.com-content p:last-child {
  margin-bottom: 0;
}

#g-map .map {
  /*==========================================
  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: 4vw;
}

.com-button {
  height: 15vw;
  border-radius: 2vw;
  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 5vw;
  position: relative;
}
.com-button::before {
  position: absolute;
  content: "";
  width: calc(100% - 1vw);
  height: calc(100% - 1vw);
  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: 32%;
  height: 15vw;
  background: url(../img/common/com-check_txt.svg) center/100% no-repeat;
  inset: 0 auto 0 0;
  z-index: 1;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 1.25vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sp-menu-btn-wrp .sp-menu-btn {
  width: 14.5vw;
  height: 14.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn span {
  width: 60%;
  height: 1px;
  background: var(--primary-color);
}
.sp-menu-btn-wrp .sp-menu-btn .top {
  top: 4.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn .middle {
  top: 0;
  bottom: 0;
}
.sp-menu-btn-wrp .sp-menu-btn .bottom {
  top: 9.5vw;
}
.sp-menu-btn-wrp .sp-menu-btn-txt {
  color: var(--color-white);
  top: -2vw;
  font-size: var(--font-size-10);
}

.sp-menu-btn.active .top {
  transform: translateY(2.5vw) translateX(0px) rotate(45deg);
}

.sp-menu-btn.active .bottom {
  transform: translateY(-2.75vw) translateX(0px) rotate(-45deg);
}

/*  drawer inbox
------------------------------------ */
#drawer-nav {
  padding: 8% 6% 15%;
  background: var(--background-color);
}
#drawer-nav .drawer-logo {
  width: 50%;
  margin-bottom: 10%;
  text-align: left;
}
#drawer-nav nav {
  margin-bottom: 12%;
}
#drawer-nav nav .drawer-link {
  padding: 6% 0;
  border-bottom: 1px solid var(--color-gray);
  font-size: var(--font-size-17);
}
#drawer-nav nav .drawer-dropdown {
  padding: 3% 12% 3% 0;
}
#drawer-nav nav .drawer-dropdown span {
  display: block;
}
#drawer-nav nav .drawer-dropdown span:before, #drawer-nav nav .drawer-dropdown span:after {
  background: var(--color-black);
}
#drawer-nav nav .nav-en {
  color: var(--primary-color);
  font-size: var(--font-size-16);
}
#drawer-nav nav .nav-ja {
  font-size: var(--font-size-13);
}
#drawer-nav nav .nav-ja::before {
  padding: 0 1vw;
  content: "/";
}
#drawer-nav nav .current {
  padding-left: 11%;
  position: relative;
  text-decoration: underline;
  background: url(../img/common/nav_deco.png) left center/5vw no-repeat;
  color: var(--primary-color);
}
#drawer-nav nav .current span:after {
  opacity: 0 !important;
}
#drawer-nav nav .drawer-dropdown-bx {
  margin: 3% 0;
  padding-left: 4%;
  box-sizing: border-box;
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link:before {
  border-left: 1px solid var(--body-font-color);
  border-bottom: 1px solid var(--body-font-color);
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .c-official__button-list {
  margin-bottom: 10%;
}
#drawer-nav .drawer__subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
  margin-top: 10%;
}
#drawer-nav .drawer__subpage-item a {
  text-decoration: underline;
}

/*==========================================
コンポーネントファイル
===========================================*/
.c-contact__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5vw;
}
.c-contact__list .com-tel {
  text-align: center;
  line-height: 1.1;
}
.c-contact__list .com-tel .tel__num {
  font-size: var(--font-size-24);
  color: var(--secondary-color);
  letter-spacing: 0.15em;
  padding-left: 6vw;
}
.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: 65vw;
}
.c-contact__list .com-mail .mail__button span {
  width: auto;
  padding-left: 6vw;
  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: 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-official__button-list .official__button {
  width: 55vw;
}

/*==========================================
header
===========================================*/
#header {
  width: 100%;
  background: url(../img/common/header_bg.png) top -11vw center/cover no-repeat;
  position: absolute;
  inset: 0 0 auto;
  z-index: 1001;
  padding: 4% 4% 0;
  height: 34vw;
}
#header .header__logo {
  width: 40%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
#top-mv {
  height: 100vw;
  position: relative;
  overflow: hidden;
  background: url(../img/top/mv/mv_bg.png) right center/cover no-repeat;
}
#top-mv::before {
  position: absolute;
  content: "";
  width: 31%;
  height: 26vw;
  inset: auto 2.8645% 0 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: 70%;
  z-index: 100;
  border-radius: 12vw;
  background: var(--background-color);
  background: radial-gradient(circle farthest-corner at center center, rgba(var(--background-color-rgb), 0.7) 55%, rgba(var(--color-white-rgb), 0.1) 100%);
  padding: 5% 3%;
}
#top-mv .mv__wrap {
  width: 83.3333%;
  height: 100%;
}
#top-mv #mv__slider {
  height: 100vw;
  position: relative;
}
#top-mv #mv__slider li {
  height: 100%;
}
#top-mv #mv__slider li:nth-child(1) {
  background: linear-gradient(to right, transparent 0%, transparent 85%, #fff 100%), url(../img/top/mv/slider01_bg.png) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(2) {
  background: linear-gradient(to right, transparent 0%, transparent 85%, #fff 100%), url(../img/top/mv/slider02_bg.png) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(3) {
  background: linear-gradient(to right, transparent 0%, transparent 85%, #fff 100%), url(../img/top/mv/slider03_bg.png) center/cover no-repeat;
}
#top-mv #mv__slider li:nth-child(4) {
  background: linear-gradient(to right, transparent 0%, transparent 85%, #fff 100%), url(../img/top/mv/slider04_bg.png) center/cover no-repeat;
}
#top-mv #mv__slider .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv #mv__slider .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv #mv__slider .bx-pager {
  display: none;
}

/*==========================================
nav
===========================================*/
.com-nav--style {
  background: var(--background-color);
}
.com-nav--style .com-nav__item {
  position: relative;
}
.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 .com-nav__link {
  display: block;
}
.com-nav--style .com-nav__item .current {
  display: block;
  padding-left: 8vw;
  background: url(../img/common/nav_deco.png) center left/5vw no-repeat;
}
.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: 12% 0 18%;
  background: url(../img/top/about-btm_bg.png) bottom center/cover no-repeat;
}
#top-about .about__content {
  padding: 10% 0 0 0;
  position: relative;
  margin-bottom: 15%;
}
#top-about .about__content::before {
  width: 40%;
  height: 29vw;
  position: absolute;
  content: "";
  background: url(../img/top/about-ttl_deco.png) center/100% no-repeat;
  inset: -7vw auto auto -5vw;
}
#top-about .about__button-list {
  margin-top: 12%;
}
#top-about .about__button-list .about__button-item {
  width: 100%;
  margin-bottom: 12%;
}
#top-about .about__button-list .about__button-item:last-child {
  margin-bottom: 0;
}
#top-about .about__button-list .about__button-item .about__button-check::after {
  inset: -8vw auto auto -3vw;
}

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

#top-class .class__wrap {
  padding: 12% 0;
}
#top-class .class__list .class__item {
  margin-bottom: 12%;
}
#top-class .class__list .class__item:last-child {
  margin-bottom: 0;
}
#top-class .class__list .class__item-img {
  margin-bottom: 4%;
  width: 100%;
}
#top-class .class__list .class__item-img img {
  border-radius: 4vw;
}
#top-class .class__list .class__item-content {
  background: url(../img/top/class-item-lt_deco.png) left 3% top/22% no-repeat, url(../img/top/class-item-rt_deco.png) right 3% top/22% no-repeat, url(../img/top/class-item-lb_deco.png) left 3% bottom/22% no-repeat, url(../img/top/class-item-rb_deco.png) right 3% bottom/22% no-repeat, url(../img/top/class-item-btm_deco.png) bottom center/22% no-repeat;
  padding: 10% 0 12%;
}
#top-class .class__list .class__item-label {
  margin-bottom: 5%;
  text-align: center;
}
#top-class .class__list .class__item-label span {
  display: inline-block;
  background: var(--background-color);
  border-radius: 3vw;
  font-size: var(--font-size-13);
  padding: 1vw 3vw;
}
#top-class .class__list .class__item-title {
  margin-bottom: 5%;
}
#top-class .class__list .class__item-title .title-ja {
  font-size: var(--font-size-21);
}
#top-class .class__list .class__item-button {
  width: 85%;
  margin: 0 auto;
}

/*
# top-other-class
------------------------*/
#top-other-class {
  padding: 18% 0;
}
#top-other-class .other-class__title {
  background: url(../img/top/other-class-ttl_deco.png) left bottom/28% no-repeat;
  padding-bottom: 4%;
}
#top-other-class .other-class__list .other-class__item {
  background: var(--color-white);
  border-radius: 4vw;
  margin-bottom: 12%;
  padding: 7% 5%;
}
#top-other-class .other-class__list .other-class__item:last-child {
  margin-bottom: 0;
}
#top-other-class .other-class__list .other-class__item-title {
  color: var(--primary-color);
  font-size: var(--font-size-17);
  letter-spacing: 0.2em;
  margin-bottom: 4%;
}
#top-other-class .other-class__list .other-class__item-content {
  padding-left: 5%;
  border-left: 0.75vw solid var(--color-gray);
}

/*
# top-contact
------------------------*/
#top-contact {
  padding: 10% 8% 15%;
  background: url(../img/top/contact_bg.jpg) center/cover no-repeat;
}
#top-contact .contact__inbox {
  padding: 12% 5% 10%;
  position: relative;
  background: url(../img/top/contact-content_bg.png) center no-repeat, var(--color-white);
  border-radius: 4vw;
}
#top-contact .contact__inbox::before, #top-contact .contact__inbox::after {
  position: absolute;
  content: "";
}
#top-contact .contact__inbox::before {
  width: 114%;
  height: 108%;
  background: url(../img/top/contact-l_frame.png) left bottom/45% no-repeat, url(../img/top/contact-r_frame.png) top right/45% no-repeat;
  inset: -5vw auto auto -6vw;
}
#top-contact .contact__inbox::after {
  width: 50%;
  height: 66vw;
  background: url(../img/top/contact_ill.png) center/100% no-repeat;
  inset: auto -12vw -1vw auto;
}
#top-contact .com-contact__content {
  background: none;
}

.com-contact__content {
  background: url(../img/top/contact-list_bg.png) center/cover no-repeat;
  padding: 10% 5%;
  z-index: 10;
}
.com-contact__content.contact__content-check::after {
  inset: -4vw auto auto -5vw;
}

/*
# top-news
------------------------*/
#top-news {
  padding: 18% 0 32%;
  background: url(../img/top/news_img.png) left 3% bottom 3vw/45% no-repeat;
}
#top-news .news__title {
  margin-bottom: 0;
}
#top-news .news__title .title-en {
  display: inline-block;
  padding: 0 12vw;
  background: url(../img/top/news-ttl_deco.png) left center/6vw no-repeat;
}
#top-news .news__post-list .news__post {
  text-align: left;
  margin-bottom: 8%;
}
#top-news .news__post-list .news__post:last-child {
  margin-bottom: 0;
}
#top-news .news__post-list .news__post-link {
  display: block;
  padding: 6% 4%;
  border-radius: 3.5vw;
  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 time {
  display: block;
  color: var(--secondary-color);
  font-size: var(--font-size-14);
  margin-bottom: 2%;
}
#top-news .news__post-list .news__post-title {
  padding-left: 3vw;
  font-size: var(--font-size-15);
  border-left: 1vw solid var(--color-gray);
}
#top-news .news__post-list .news__post .category-label {
  margin-top: 3%;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.5vw;
  color: var(--primary-color);
  font-size: var(--font-size-13);
}
#top-news .news__button {
  width: -moz-fit-content;
  width: fit-content;
  margin: 15% 0 0 auto;
  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: 15% 0 25%;
  overflow: hidden;
}
.section-end::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 100%;
  height: 21vw;
  background: url(../img/common/com-bg_deco.png) bottom center/100% no-repeat;
  inset: auto 0 0;
}

#top-guidance .guidance__title {
  padding-top: 9vw;
}
#top-guidance .guidance__table {
  margin-bottom: 15%;
  background: var(--color-white);
  border-radius: 4vw;
  padding: 8% 7%;
}

/*==========================================
footer
===========================================*/
#footer .footer__inner {
  background: url(../img/common/ft_bg.jpg) center/cover no-repeat;
  padding: 15% 0;
  text-align: center;
}
#footer .footer__logo {
  width: 55%;
  display: inline-block;
  margin-bottom: 7%;
}
#footer .footer__address {
  margin-bottom: 7%;
}
#footer .footer__official-button-list {
  margin-bottom: 7%;
}
#footer .footer__nav {
  padding: 10% 6%;
}
#footer .footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
#footer .footer__nav-item {
  width: 50%;
  margin-bottom: 8%;
}
#footer .footer__nav-item .nav-en {
  font-size: var(--font-size-13);
}
#footer .footer__nav-item .nav-ja {
  font-size: var(--font-size-12);
}

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

.pagetop {
  width: 24%;
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 50vw;
  position: relative;
  overflow: hidden;
  background: url(../img/sv/sv_bg.jpg) right center/cover;
}
.lower-sv::before {
  position: absolute;
  content: "";
  width: 23%;
  height: 19vw;
  inset: auto auto 0 0;
  z-index: 1;
  background: url(../img/sv/sv_ill.png) center bottom/100% no-repeat;
}
.lower-sv .sv__title {
  width: 88%;
  margin: 0 auto;
  position: absolute;
  inset: auto 0 14%;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  z-index: 100;
  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 span {
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
}
.lower-sv .sv__title .title-ja {
  font-size: var(--font-size-23);
  color: var(--primary-color);
  letter-spacing: 0.2em;
}
.lower-sv .sv__title .title-en {
  font-size: var(--font-size-18);
  font-family: var(--sub-font-family);
  color: var(--accent-color);
}
.lower-sv .sv__bg {
  width: 78%;
  height: 100%;
  position: absolute;
  inset: 0 auto 0 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

/*==========================================
teacher
===========================================*/
#teacher-archive .teacher__title {
  padding-top: 9%;
}
#teacher-archive .teacher__post {
  margin-bottom: 13%;
  background: var(--color-white);
  border-radius: 4vw;
  padding: 10% 5%;
}
#teacher-archive .teacher__post:last-child {
  margin-bottom: 0;
}
#teacher-archive .teacher__post-headline {
  margin-bottom: 10%;
}
#teacher-archive .teacher__post-title {
  font-size: var(--font-size-21);
}
#teacher-archive .teacher__post-img {
  width: 90%;
  height: 85vw;
  margin: 0 auto 6%;
  border-radius: 4vw;
}
#teacher-archive .teacher__post-img img {
  border-radius: 4vw;
}
#teacher-archive .teacher__post-item {
  margin-bottom: 6%;
}
#teacher-archive .teacher__post-item:last-child {
  margin-bottom: 0;
}
#teacher-archive .teacher__post-item .post__item-content {
  padding-left: 5%;
}
#teacher-archive .teacher__post-item .post__item-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 4vw 4%;
}
#teacher-archive .teacher__post-item .post__item-gallery .post__gallery-item {
  width: 48%;
  height: 32vw;
  border-radius: 3.5vw;
}

/*==========================================
information
===========================================*/
/*
# info-reason
------------------------*/
#info-reason {
  background: url(../img/information/information_reason-bg.jpg) center/cover no-repeat;
}
#info-reason .reason__list .reason__item {
  background: url(../img/top/news-ttl_deco.png) right 2vw top 2vw/7% no-repeat, var(--color-white);
  border-radius: 4vw;
  padding: 10% 5%;
  margin-bottom: 12%;
}
#info-reason .reason__list .reason__item:last-child {
  margin-bottom: 0;
}
#info-reason .reason__list .reason__item-title {
  text-align: center;
  margin-bottom: 5%;
}
#info-reason .reason__list .reason__item-title .title-ja {
  font-size: var(--font-size-19);
  color: var(--primary-color);
}
#info-reason .reason__list .reason__item-title .title-en {
  font-size: var(--font-size-16);
  color: var(--accent-color);
  display: block;
}

/*
# info-flow
------------------------*/
#info-flow {
  padding: 18% 0;
}
#info-flow .flow__item {
  margin-bottom: 13%;
  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: 10% 5%;
  border-radius: 4vw;
  position: relative;
}
#info-flow .flow__item::after {
  position: absolute;
  content: "";
  width: 14%;
  height: 16vw;
  background: url(../img/information/flow_arw.png) center/100% no-repeat;
  inset: auto 0 -11vw;
  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-17);
  position: relative;
  padding-left: 24%;
  margin-bottom: 5%;
}
#info-flow .flow__item-title .title-num {
  position: absolute;
  inset: -2vw auto auto 0;
  width: 23%;
  height: 13vw;
  padding: 2vw 3vw 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-21);
  line-height: 1.1;
  text-align: center;
}
#info-flow .flow__item-title .title-num small {
  font-size: var(--font-size-16);
  display: block;
}
#info-flow .com-contact__content {
  margin-top: 8%;
}

/*
# info-faq
------------------------*/
#info-faq .faq__item {
  background: var(--color-white);
  border-radius: 4vw;
  padding: 10% 5%;
  margin-bottom: 12%;
}
#info-faq .faq__item:last-child {
  margin-bottom: 0;
}
#info-faq .faq__item-title, #info-faq .faq__item-content {
  position: relative;
  padding-left: 14%;
}
#info-faq .faq__item-title::before, #info-faq .faq__item-content::before {
  position: absolute;
  width: 8vw;
  height: 8vw;
  border-radius: 0.75vw;
  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-17);
  margin-bottom: 6%;
}
#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__content {
  padding: 12% 8%;
  border-radius: 4vw;
  margin-bottom: 12%;
  background: url(../img/kids/com_class-concept-frame-top.png) top center/95% no-repeat, url(../img/kids/com_class-concept-frame-btm.png) bottom center/95% no-repeat, var(--color-white);
}
.com-concept__section .concept__content-title {
  font-size: var(--font-size-16);
}
.com-concept__section .concept__content-text {
  font-size: var(--font-size-18);
  color: var(--primary-color);
}

/*
# com-content__section
------------------------*/
.com-content__section {
  padding: 16% 0;
}
.com-content__section .content__item {
  margin-bottom: 10%;
}
.com-content__section .content__item:last-child {
  margin-bottom: 0;
}
.com-content__section .content__item-title {
  font-size: var(--font-size-17);
  margin-bottom: 3%;
}

/*
# c-timetable__section
------------------------*/
.c-timetable__section .timetable__text {
  margin-bottom: 10%;
}
.c-timetable__section .timetable__wrap {
  padding: 10% 5%;
  border-radius: 4vw;
  background: var(--color-white);
  overflow-x: auto;
}
.c-timetable__section .timetable__wrap th,
.c-timetable__section .timetable__wrap td {
  white-space: nowrap;
}
.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 {
  padding: 4vw 3vw;
  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 {
  text-align: left;
  font-size: var(--font-size-15);
  color: var(--body-font-color);
}

/*
# c-price__section
------------------------*/
.c-price__section .price__wrap-left {
  margin-bottom: 15%;
  text-align: center;
}
.c-price__section .price__wrap-post .price__item {
  margin-bottom: 8%;
}
.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: 4vw;
  padding: 3% 4%;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 5vw;
}
.c-price__section .price__wrap-post .price__membership-fee .membership__title {
  font-size: var(--font-size-16);
}
.c-price__section .price__wrap-post .price__membership-fee .membership__price {
  font-size: var(--font-size-18);
}
.c-price__section .price__wrap-post .price__plan-fee .plan__price {
  text-align: right;
  font-size: var(--font-size-20);
  color: var(--accent-color);
}
.c-price__section .price__wrap-post .price__plan-fee .plan__price small {
  font-size: var(--font-size-13);
}

/*
# c-lesson__section
------------------------*/
.c-lesson__section .lesson__title {
  padding-top: 10%;
}
.c-lesson__section .lesson__list {
  background: var(--color-white);
  padding: 10% 5%;
  border-radius: 4vw;
}
.c-lesson__section .lesson__list .lesson__item {
  width: 100%;
  height: 50vw;
  border-radius: 3.5vw;
  margin-bottom: 8%;
}
.c-lesson__section .lesson__list .lesson__item:last-child {
  margin-bottom: 0;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.global-select {
  width: 64%;
  margin: 0 0 23% auto;
}
.global-select select {
  padding: 6% 10% 6% 6%;
}

/*==========================================
news
===========================================*/
.column__wrap .column__list .column__post a {
  padding: 14% 0;
}
.column__wrap .column__list .column__post:first-child a {
  padding-top: 0;
}
.column__wrap .column__list .column__post-meta {
  margin-bottom: 4%;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
.column__wrap .column__list .column__post-meta time {
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 2vw;
  gap: 1vw 1.5vw;
}
.column__wrap .column__list .column__post-meta .category-label li {
  padding: 0 0.75vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-title {
  font-size: var(--font-size-17);
  margin: 3% 0;
}
.column__wrap .column__list .column__post-body {
  font-size: var(--font-size-13);
}
.column__wrap .column__list .more-btn {
  width: 45%;
  font-size: 3.2vw;
  margin: inherit;
  margin-left: auto;
  font-weight: bold;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  box-sizing: border-box;
  padding: 3% 2%;
  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: 40%;
  height: 33vw;
}
.column__wrap .column__list .column__post:has(.column__post-thumb) .column__post-meta {
  width: 55%;
}

/*----------------------------------
詳細ページのカテゴリー表示(タイトル下部)
----------------------------------*/
.single__post-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 10%;
}
.single__post-meta time {
  font-size: var(--font-size-13);
  width: 27%;
  font-weight: normal;
  padding: 0.5vw 0;
}
.single__post-meta .category-label {
  display: flex;
  width: 70%;
  flex-wrap: wrap;
  align-items: center;
  gap: 1vw;
}
.single__post-meta .category-label li {
  font-size: var(--font-size-13);
}
.single__post-meta .category-label li a {
  padding: 0 1vw;
}

/*==========================================
contact
===========================================*/
#contact .contact__form {
  margin-bottom: 15%;
}
#contact .contact__form-item .contact__form-label .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
}
#contact .contact__form-item .contact__form-input {
  padding: 3% 0;
}
#contact .contact__form-item .contact__form-input .contact__form-list li {
  margin-bottom: 5%;
}
#contact .contact__form-item .contact__form-input .contact__form-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form-item .contact__form-input textarea {
  height: 37vw;
}
#contact .contact__form-item.contact__form-privacy .contact__form-label {
  text-align: left;
}
#contact .contact__form-value {
  padding: 3%;
}
#contact .contact__form-select {
  width: 50%;
  position: relative;
}
#contact .contact__form-select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form-select select {
  padding: 6% 7% 6% 4%;
}
#contact .contact__form #pc01,
#contact .contact__form #pc02 {
  width: 95px;
}
#contact .contact__form #date1,
#contact .contact__form #date2,
#contact .contact__form #date3 {
  width: 73%;
}
#contact .contact__form #address {
  margin-top: 4%;
}
#contact .contact__form .upload-item-wrap .select-img-wrap {
  display: flex;
  justify-content: space-between;
}
#contact .contact__form .upload-item-wrap .thumb {
  width: 45%;
  margin-right: 25px;
}
#contact .contact__form .upload-item-wrap .ancion-btn-wrap {
  width: 50%;
}
#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 .contact__submits-wrap {
  margin-top: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
}
#contact .contact__submits-wrap .contact__submits-check {
  width: 75%;
}
#contact .contact__submits-wrap .contact__submits-back {
  width: 52%;
}
#contact .contact__submits-wrap .contact__submits-send {
  width: 40%;
}
#contact input[type=button],
#contact input[type=submit],
#contact .contact-submits-wrap button {
  padding: 6% 2%;
}
#contact input[type=submit],
#contact select {
  -webkit-appearance: none;
}

/*==========================================
privacy
===========================================*/
#privacy .privacy__content {
  margin-bottom: 15%;
  text-align: left;
}
#privacy .privacy__content:last-child {
  margin-bottom: 0;
}

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

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