@charset "UTF-8";
/* ===========================================
*  
*  default styles
* 
* ======================================== */
body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 400;
  color: #000000;
  min-width: 1280px;
  margin: 0 auto;
  position: relative;
}

/* ===========================================
*
* common-styles
*
* ======================================== */
/* 
margin クラス
-------------------------*/
.mt-min {
  margin-top: 10px;
}

.mt-smr {
  margin-top: 20px;
}

.mt-sm {
  margin-top: 30px;
}

.mt-nm {
  margin-top: 40px;
}

.mt-rg {
  margin-top: 50px;
}

.mt-md {
  margin-top: 60px;
}

.mt-lg {
  margin-top: 70px;
}

.mt-lgr {
  margin-top: 80px;
}

.mb-min {
  margin-bottom: 10px;
}

.mb-smr {
  margin-bottom: 20px;
}

.mb-sm {
  margin-bottom: 30px;
}

.mb-nm {
  margin-bottom: 40px;
}

.mb-rg {
  margin-bottom: 50px;
}

.mb-md {
  margin-bottom: 60px;
}

.mb-lg {
  margin-bottom: 70px;
}

.mb-lgr {
  margin-bottom: 80px;
}

/* 
sp時に非表示
-------------------------*/
.sp-none {
  display: block;
}

/* 
pc時に非表示
-------------------------*/
.pc-none {
  display: none !important;
}

/* 
tel style
-------------------------*/
.tel {
  letter-spacing: 0em;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  pointer-events: none;
  position: relative;
}
.tel__text {
  font-weight: 400;
  font-size: 0.6666666667em;
  margin-right: 0.25em;
  display: inline-block;
}
.tel__text::first-letter {
  font-size: 1.5em;
}
.tel--white {
  position: relative;
}
.tel--white::before {
  content: "";
  width: 1.12em;
  height: 1.2em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url("../images/icon_tel_white.png") no-repeat center/contain;
}

/*
 snsクラス
-------------------------*/
.sns {
  display: flex;
  align-items: center;
  gap: 18px;
}
.sns__icon {
  width: 31px;
}
.sns__icon.mail {
  width: 32px;
}
.sns__icon.twitter {
  width: 35px;
}
.sns__icon img {
  width: 100%;
}

/* 
imgタイトル
-------------------------*/
/* SP時は高さを個別で指定する必要があります */
.title-img--center img {
  margin: 0 auto;
}

.title-img--left img {
  margin-right: auto;
}

.title-img--right img {
  margin-left: auto;
}

/* 
title style
-------------------------*/
.cmn-title {
  font-size: 30px;
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  font-weight: 700;
}
.cmn-title--left {
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.cmn-title--right {
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
}
.cmn-title--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cmn-title__main {
  font-size: 1em;
  letter-spacing: 0.025em;
}
.cmn-title__icon {
  margin-bottom: 11px;
}
.cmn-title__sub {
  line-height: 1;
  font-size: 0.5em;
  margin-bottom: 20px;
}

/* 
文章テキスト スタイル
-------------------------*/
.cmn-sentence {
  line-height: 2.25;
}
.cmn-sentence p::before, .cmn-sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.cmn-sentence p::before {
  margin-top: calc((1 - 2.25) * 0.5em);
}
.cmn-sentence p::after {
  margin-bottom: calc((1 - 2.25) * 0.5em);
}
.cmn-sentence p:not(:last-child) {
  margin-bottom: 2.25em;
}

/* 
共通セクショニング スタイル
-------------------------*/
.sec {
  padding: 100px 0;
}

/* table
-------------------------*/
.main-table {
  line-height: 1.75;
}
.main-table tr {
  display: flex;
  align-items: center;
  border-bottom: 1px dotted #333333;
}
.main-table tr:not(:last-child) {
  margin-bottom: 10px;
}
.main-table th {
  font-weight: 500;
}
.main-table th,
.main-table td {
  padding-block: 0.75em;
  vertical-align: middle;
}

/* 
inner クラス
-------------------------*/
.inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}

.wide-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

/*------------------------------
*
* btn style
*
------------------------------*/
.btn {
  display: block;
  line-height: 1;
  text-align: center;
}
.btn--primary {
  background-color: #f38391;
  color: #fff;
}
.btn--regular {
  max-width: 210px;
  width: 100%;
  padding: 1.0625em 1em;
}
.btn--medium {
  padding: 1.0625em 1em;
  width: 300px;
}
.btn--large {
  max-width: 500px;
  padding: 1.0625em 1em;
  width: 100%;
}
.btn-deco {
  position: relative;
  z-index: 1;
  display: inline-block;
  text-align: left;
  font-size: 14px;
}
.btn-deco::after {
  content: "";
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  transition: all 0.3s;
  z-index: -1;
  transform-origin: center;
}
.btn-deco:hover::after {
  transform: translate(50%, -50%) scale(1.1);
}
.btn-deco--yellow::after {
  background-color: #e7d330;
}
.btn-deco--green::after {
  background-color: #27b049;
}
.btn--center {
  margin: 0 auto;
}
.btn--left {
  margin-right: auto;
}
.btn--right {
  margin-left: auto;
}

/*------------------------------
*
* pagenation style
*
------------------------------*/
.pagenation {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.pagenation li {
  width: 2.375em;
  height: 2.375em;
  display: block;
  font-size: 1em;
  line-height: 2.375em;
  text-align: center;
  color: #b3b3b3;
  background: #eff0f2;
}
.pagenation li:not(:last-child) {
  margin-right: 2px;
}
.pagenation .current {
  background-color: #e95198;
  color: #ffffff;
}

/*------------------------------
*
* breadclumb style
*
------------------------------*/
.wrapper {
  position: relative;
}

.bread-clumb {
  width: 100%;
}
.bread-clumb__list {
  display: flex;
  width: 100%;
  overflow: hidden;
  padding: 30px 0 0;
  line-height: 1;
}
.bread-clumb__item {
  display: flex;
  align-items: center;
}
.bread-clumb__item:not(:last-child)::after {
  content: "＞";
  margin: 0 1em;
  color: #000000;
}
.bread-clumb__item:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  color: #f38391;
}
.bread-clumb__link {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: all 0.3s;
  color: #000000;
}
.bread-clumb__link:hover {
  color: #f38391;
}

/*------------------------------
*
* prev next style
*
------------------------------*/
.prev-next__area {
  display: flex;
  position: relative;
  line-height: 1.2;
  font-size: 16px;
  margin: 80px auto 0;
}
.prev-next__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 120px;
}
.prev-next__link.prev::before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #f38391;
  border-left: 2px solid #f38391;
  transform: rotate(-45deg);
}
.prev-next__link.next {
  margin-left: auto;
}
.prev-next__link.next::after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  border-top: 2px solid #f38391;
  border-right: 2px solid #f38391;
  transform: rotate(45deg);
}
.prev-next__link.back {
  padding: 0 12px;
  border-left: 1px solid #f38391;
  border-right: 1px solid #f38391;
  text-align: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.prev-next__link.prev, .prev-next__link.next, .prev-next__link.back {
  transition: all 0.3s;
}
.prev-next__link.prev::before, .prev-next__link.prev::after, .prev-next__link.next::before, .prev-next__link.next::after, .prev-next__link.back::before, .prev-next__link.back::after {
  transition: all 0.3s;
}
.prev-next__link.prev:hover, .prev-next__link.next:hover, .prev-next__link.back:hover {
  color: #f38391;
}
.prev-next__link.prev:hover::before, .prev-next__link.prev:hover::after, .prev-next__link.next:hover::before, .prev-next__link.next:hover::after, .prev-next__link.back:hover::before, .prev-next__link.back:hover::after {
  border-color: #f38391;
}

/* ===========================================
*
* header style
*
* ======================================== */
.header {
  width: 100%;
  align-items: center;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
}
.header-inner {
  padding-left: min(47px, 2.4479166667%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  min-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.header__logo {
  width: min(203px, 100% - 1110px);
  min-width: 155px;
}
.header__logo img {
  width: 100%;
}
.header-right {
  width: 850px;
  margin-left: auto;
  margin-right: min(40px, 2.0833333333%);
}
.header-info {
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  font-size: 13px;
}
.header-info__time {
  margin-right: 45px;
}
.header-info__day {
  margin-right: 14px;
}
.header-info__day__item {
  display: inline-block;
  border-radius: 50%;
  width: 1.6923076923em;
  height: 1.6923076923em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.header-info__day__item:not(:last-child) {
  margin-right: 4px;
}
.header-btn {
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}
.header-btn__line {
  border-right: 1px solid #fff;
  font-size: 12px;
}
.header-btn__line span {
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
.header-btn__contact {
  font-size: 14px;
}
.header-btn__contact img {
  margin-bottom: 14px;
}
.header-nav {
  flex-direction: column;
  align-items: flex-end;
  margin-top: 12px;
  width: 100%;
  font-weight: 500;
}
.header-nav__list {
  justify-content: flex-end;
  align-items: center;
}
.header-nav__item {
  position: relative;
}
.header-nav__item:not(:last-child) {
  margin-right: 2em;
}
.header-nav__item:first-child .header-nav__link::after {
  content: "";
  width: 1.625em;
  height: 1em;
  background: url(../images/nav_icon.png) no-repeat top center/contain;
  transition: opacity 0.3s;
  position: absolute;
  opacity: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  top: -0.5em;
}
.header-nav__item:first-child .header-nav__link.current::after {
  opacity: 1;
}
.header-nav__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  line-height: 1.375;
}
.header-nav__link:hover {
  color: #f38391;
  opacity: 1;
}
.header-nav__link:hover::after {
  opacity: 1;
}
.header-nav__link.current {
  color: #f38391;
}
.header-nav__link.current::after {
  opacity: 1;
}

@media screen and (max-width: 1350px) {
  .header-nav__item {
    font-size: 15px;
  }
  .header-right {
    width: 830px;
  }
}
/* ===========================================
*
* nav menu style
*
* ======================================== */
.nav-menu {
  width: 100%;
  box-sizing: border-box;
  background-color: #f38391;
}
.nav-menu__list {
  display: flex;
  justify-content: space-between;
}
.nav-menu__item {
  width: 20%;
  position: relative;
  z-index: 1;
}
.nav-menu__link {
  position: relative;
  text-align: center;
  transition: all 0.3s;
  padding-block: 1em;
}
.nav-menu__link:hover {
  color: #f6c145;
  opacity: 1;
}
.nav-menu__link.current {
  color: #f6c145;
}
.nav-menu__link.current::after {
  width: 2em;
}

/* 
ドロップダウンメニュー
-------------------------*/
.nav-menu__item {
  /* ホバーした時ドロップダウンメニューを表示 */
}
.nav-menu__item.nav-menu__droptarget:hover .nav-menu__drop {
  visibility: visible;
  opacity: 1;
}

.nav-menu__droptarget > a {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}
.nav-menu__droptarget > a::before {
  content: "";
  width: 0.25em;
  height: 0.25em;
  border-bottom: 1px solid #f6c145;
  border-right: 1px solid #f6c145;
  top: 50%;
  transform: translate(0%, -50%) rotate(45deg);
  position: absolute;
  right: 20px;
}

.nav-menu__drop {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
}
.nav-menu__drop__item:not(:last-child) {
  margin-bottom: 2px;
}
.nav-menu__drop__item {
  position: relative;
}
.nav-menu__drop__item.nav-menu__droptarget:hover .nav-menu__drop-in {
  visibility: visible;
  opacity: 1;
}
.nav-menu__drop__link {
  transition: all 0.3s;
  background-color: #fff;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 1em 1em;
  line-height: 1;
}
.nav-menu__drop__link:hover {
  color: #f38391;
}
.nav-menu__drop__link.current {
  color: #f38391;
}
.nav-menu__drop-in {
  /* ドロップダウンメニューないにさらに階層がある場合は以下使用 */
  position: absolute;
  top: 0;
  right: -5px;
  transform: translateX(100%);
  width: 200px;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
}
.nav-menu__drop-in__item:not(:last-child) {
  margin-bottom: 2px;
}
.nav-menu__drop-in__link {
  background-color: #fff;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 1em 1em;
  line-height: 1;
  transition: all 0.3s;
}
.nav-menu__drop-in__link:hover {
  color: #f38391;
}
.nav-menu__drop-in__link.current {
  color: #f38391;
}

/* ===========================================
*
* main style  top page
*
* ======================================== */
/*------------------------------
*
* main visual
*
------------------------------*/
.main-visual {
  width: 100%;
  height: 49.1145833333vw;
  min-height: 629px;
  max-height: 943px;
  position: relative;
  z-index: 1;
  margin-top: 137px;
  overflow: hidden;
}
.main-visual__img {
  width: 85.3125%;
  height: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-29.304029304%);
  top: 0;
  z-index: -1;
}
.main-visual__catch {
  width: 42.34375%;
  max-width: 813px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: max(-50px, 50% - 960px);
  transform: translate(0%, -50%);
  z-index: 20;
}

/*------------------------------
*
* news section
*
------------------------------*/
.news {
  padding-top: 130px;
  padding-bottom: 150px;
  position: relative;
  z-index: 5;
}
.news__container {
  justify-content: space-between;
  align-items: flex-start;
}
.news__title {
  font-size: 30px;
  margin-bottom: 80px;
}
.news__title .cmn-title__main {
  letter-spacing: 0;
}
.news__title .cmn-title__sub {
  height: 13px;
}
.news .article-container {
  width: 570px;
}
.news__left {
  padding-top: 15px;
  width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}
.news__left::after {
  content: "";
  width: 95px;
  position: absolute;
  right: 55px;
  bottom: 10px;
  translate: 0 100%;
  height: 168px;
  background: url(../images/top/news_illust.png) no-repeat top center/contain;
}

/*------------------------------
*
* top-point 
*
------------------------------*/
.top-point {
  padding-top: 45px;
  padding-bottom: 80px;
  min-height: 474px;
  position: relative;
  z-index: 1;
  background: url(../images/top/point_bg02.png) no-repeat bottom 120px left 60px/auto;
}
.top-point::before {
  position: absolute;
  z-index: 1;
  content: "";
  width: calc(50% - 634px);
  min-width: 0px;
  height: 621px;
  background: url(../images/top/point_bg01.png) no-repeat top left/auto;
  top: -184px;
  right: 0;
}
.top-point__title {
  font-size: 32px;
  margin-bottom: 48px;
}
.top-point__title .cmn-title__main {
  letter-spacing: 0;
}
.top-point__title .cmn-title__main .big {
  font-size: 1.25em;
}
.top-point__title .cmn-title__sub {
  height: 23px;
  margin-bottom: 16px;
}
.top-point__block {
  width: 484px;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-point__sentence {
  width: 195px;
  margin-bottom: 50px;
}
.top-point__img {
  width: 925px;
  position: absolute;
  z-index: -1;
  left: calc(50% - 960px);
  top: 0;
}
.top-point__img img {
  width: 100%;
}
.top-point__child {
  width: 317px;
  position: absolute;
  z-index: 1;
  top: 245px;
  left: calc(50% + 336px);
}
.top-point__container {
  justify-content: center;
  gap: 40px 120px;
  margin-top: 100px;
}
.top-point-item {
  width: 430px;
}
.top-point-item:nth-child(even) {
  margin-top: 40px;
}
.top-point-item:nth-child(1) .top-point-item__img::after {
  background: url(../images/top/point_item_deco01.png) no-repeat top center/contain;
  width: 128.1395348837%;
  height: 42.9032258065%;
  left: 50%;
  transform: translate(-52.5%, 51%);
}
.top-point-item:nth-child(2) .top-point-item__img::after {
  background: url(../images/top/point_item_deco02.png) no-repeat top center/contain;
  width: 12.0930232558%;
  height: 24.1935483871%;
  right: 0;
  transform: translate(36.5384615385%, 30.6666666667%);
}
.top-point-item:nth-child(3) .top-point-item__img::after {
  background: url(../images/top/point_item_deco03.png) no-repeat top center/contain;
  width: 20.2325581395%;
  height: 20%;
  right: 0;
  transform: translate(47.1264367816%, 40.3225806452%);
}
.top-point-item:nth-child(4) .top-point-item__img::after {
  background: url(../images/top/point_item_deco04.png) no-repeat top center/contain;
  width: 22.5581395349%;
  height: 27.4193548387%;
  right: 0;
  transform: translate(46.3917525773%, 40%);
}
.top-point-item__img {
  width: 100%;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.top-point-item__img::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: 0;
}
.top-point-item__img img {
  width: 100%;
  z-index: -1;
  position: relative;
}
.top-point-item__title {
  font-size: 33px;
  margin-bottom: 25px;
  text-align: center;
  font-weight: 500;
}
.top-point-item__title strong {
  font-weight: 900;
  font-size: 1.1515151515em;
}

@media screen and (max-width: 1310px) {
  .top-point__child {
    left: calc(50% + 320px);
  }
}
/*------------------------------
*
* top-video
*
------------------------------*/
.top-video {
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.top-video::before {
  content: "";
  width: 100%;
  height: 455px;
  background: url(../images/bg_stripe_pink.png) repeat center/auto;
  position: absolute;
  z-index: -2;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-video::after {
  content: "";
  width: 100%;
  max-width: 1437px;
  height: 570px;
  background: url(../images/top/video_bg.png) no-repeat top center/auto;
  bottom: -46px;
  z-index: -1;
  position: absolute;
  left: 48.5%;
  transform: translate(-50%, 0%);
}
.top-video__title {
  font-size: 32px;
  margin-bottom: 30px;
}
.top-video__title .cmn-title__main {
  letter-spacing: 0;
}
.top-video__title .cmn-title__main .big {
  font-size: 1.25em;
}
.top-video__title .cmn-title__sub {
  height: 39px;
  margin-bottom: 7px;
}
.top-video__title__logo {
  height: 1.25em;
  margin-left: -0.25em;
}
.top-video__movie {
  width: 100%;
  height: 500px;
  position: relative;
}
.top-video__movie > iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  background-color: #eeeeee;
}
.top-video__container {
  width: 920px;
  padding: 30px;
  background-color: #fffce7;
  border-radius: 35px;
}

/*------------------------------
*
* top-school
*
------------------------------*/
.top-school {
  padding-top: 163px;
  padding-bottom: 300px;
  position: relative;
  overflow: hidden;
  background: url(../images/top/school_deco.png) no-repeat bottom 373px left 6.1458333333%/auto;
  z-index: 1;
}
.top-school__title {
  font-size: 32px;
  margin-bottom: 59px;
}
.top-school__title .cmn-title__main {
  position: relative;
}
.top-school__title .cmn-title__main::before {
  content: "";
  position: absolute;
  width: 2.34375em;
  height: 0.96875em;
  background: url(../images/top/school_bubble.png) no-repeat top center/contain;
  right: 0;
  top: -1px;
  transform: translate(53.3333333333%, -74.1935483871%);
}
.top-school__title .cmn-title__sub {
  height: 23px;
  margin-bottom: 16px;
}
.top-school__block {
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top-school__sentence {
  margin-bottom: 50px;
}
.top-school__img {
  width: 893px;
  position: absolute;
  z-index: -1;
  right: calc(50% - 823px);
  top: 0;
}
.top-school__img img {
  width: 100%;
}

/*------------------------------
*
* top-contact
*
------------------------------*/
.top-contact {
  padding-top: 0px;
  position: relative;
  z-index: 1;
}
.top-contact::after {
  content: "";
  width: 100%;
  height: 440px;
  background: url(../images/top/contact_bg.jpg) no-repeat center/cover;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-contact__title {
  padding-top: 0.9375em;
  margin-bottom: 4px;
  position: relative;
  z-index: 5;
}
.top-contact__title .cmn-title__sub {
  margin-bottom: 6px;
  height: 16px;
}
.top-contact__title::after {
  content: "";
  width: 10.625em;
  height: 4.5em;
  background: url(../images/top/ttl_contact_bg.png) repeat top center/contain;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-contact__sub-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.59;
  padding-bottom: 26px;
  background: url(../images/top/contact_ttl_b.png) repeat-x bottom left/auto;
  margin-bottom: 30px;
}
.top-contact__left {
  width: 485px;
}
.top-contact__container {
  background-color: rgba(255, 207, 213, 0.95);
  border-radius: 16px;
  padding: 70px 80px 80px;
  width: 1080px;
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-height: 397px;
  box-sizing: border-box;
  z-index: 1;
}
.top-contact__container::after {
  content: "";
  width: 107.1489361702%;
  height: 560px;
  background: url(../images/top/contact_deco.png) repeat center right/auto;
  position: absolute;
  z-index: -1;
  top: 0;
  right: 50px;
  transform: translate(0%, -23%);
}
.top-contact__img {
  width: 349px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  transform: translate(13.1805157593%, 37.6811594203%);
}
.top-contact-info {
  flex-direction: column;
  align-items: center;
  width: 400px;
}
.top-contact-info__title {
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 14px;
}
.top-contact-info__tel {
  font-weight: 700;
  font-size: 48px;
  margin-bottom: 20px;
  line-height: 1;
}
.top-contact-info__time {
  font-size: 13px;
}
.top-contact-info__btns {
  justify-content: center;
  gap: 13px;
  margin-top: 36px;
}
.top-contact-info__btn {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.075em;
  width: 160px;
  padding: 1.25em 1.1333333333em;
  border-radius: 5em;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: 0.3s;
}
.top-contact-info__btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 13px;
  height: 14px;
  top: 50%;
  right: 14px;
  transform: translate(0, -50%);
  background: url(../images/btn_arrow_white.png) no-repeat center/contain;
}
.top-contact-info__btn:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.top-contact-info__btn:hover::after {
  transform: translate(50%, -50%);
}
.top-contact-info__btn--line {
  background-color: #06c755;
  box-shadow: 4px 4px 0px 0px #0da84d;
}
.top-contact-info__btn--contact {
  background-color: #f7ac1d;
  box-shadow: 4px 4px 0px 0px #de9710;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.top-contact-info__btn--contact img {
  margin-right: 0.5em;
  width: 1.8em;
}

@media screen and (max-width: 1380px) {
  .top-contact__img {
    transform: translate(0%, 37.6811594203%);
  }
}
/*------------------------------
*
* top-link
*
------------------------------*/
.top-link {
  padding-bottom: 150px;
  padding-top: 85px;
  position: relative;
  z-index: 1;
  /* overflow: hidden; */
}
.top-link::after {
  content: "";
  width: 97%;
  max-width: 1609px;
  height: 459px;
  background: url(../images/top/links_bg.png) no-repeat top left/auto;
  z-index: -1;
  position: absolute;
  top: 27px;
  left: 2.96875%;
  transform: translate(0%, 0%);
}
.top-link__container {
  justify-content: center;
  gap: 90px;
}
.top-link-item {
  width: 450px;
  position: relative;
  z-index: 1;
}
.top-link-item__title {
  writing-mode: vertical-lr;
  background-color: #fff;
  letter-spacing: 0.12em;
  font-size: 27px;
  padding: 24px 5px;
  position: absolute;
  top: -58px;
  left: 34px;
  font-weight: 700;
}
.top-link-item__title > span {
  font-weight: 900;
}
.top-link-item__en {
  height: 23px;
  display: inline-block;
  padding-right: 30px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
}
.top-link-item__btn {
  width: 79px;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(-36.7088607595%, 17.7215189873%);
}
.top-link-item__img {
  width: 100%;
}

.pagetop-btn {
  position: absolute;
  left: 0;
  width: 135px;
  z-index: 1;
  bottom: -27px;
}
.pagetop-btn img {
  width: 100%;
}

@media screen and (min-width: 1921px) {
  .top-link::after {
    content: "";
    left: 47%;
    transform: translate(-50%, 0%);
  }
}
/* ===========================================
*
* under page  
*
* ======================================== */
/*------------------------------
*
* main style sub visual
*
------------------------------*/
.sub-visual {
  width: 100%;
  position: relative;
  z-index: 1;
  height: 370px;
  margin-top: 170px;
  box-sizing: border-box;
}
.sub-visual::before {
  content: "";
  width: 624px;
  height: 401px;
  position: absolute;
  left: 30px;
  position: absolute;
  top: 50%;
  background: url(../images/sv_deco.png) no-repeat top center/contain;
  transform: translateY(-51%);
}
.sub-visual > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
}
.sub-visual__catch {
  position: absolute;
  z-index: 20;
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.75);
  font-size: 40px;
  font-weight: 700;
  text-align: right;
  left: 0;
  bottom: 45px;
  padding: 1.4em 0 0.8em;
  padding-left: max(100px, 50vw - 540px);
}
.sub-visual__catch__main {
  display: inline-block;
  padding-right: 1.05em;
}
.sub-visual__catch__sub {
  height: 1.925em;
  position: absolute;
  z-index: 1;
  top: 0;
  left: max(100px, 50vw - 540px);
  transform: translate(0, -50%);
}
.sub-visual__catch::before {
  content: "";
  width: 211px;
  height: 168px;
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(0, -69.6428571429%);
  background: url(../images/sv_flug.png) no-repeat left center/contain;
}

.gallery-page .sub-visual__catch__main {
  width: 730px;
}

.themes-page .sub-visual__catch__main {
  width: 730px;
}

.event-page .sub-visual__catch__main {
  width: 880px;
}

.event-page .sub-visual__catch__sub {
  width: 100%;
}

.class-page .sub-visual__catch__main {
  width: 470px;
  padding-right: 1.75em;
}

.concept-page .sub-visual__catch__main {
  padding-left: 1.5em;
  text-align: center;
}

.trial-page .sub-visual__catch__main {
  width: 775px;
  text-align: center;
  padding-left: 1em;
}

.gallery-page .sub-visual__catch__main {
  padding-left: 5em;
}

.privacy-page .sub-visual__catch,
.site-page .sub-visual__catch,
.news-page .sub-visual__catch,
.notfound-page .sub-visual__catch,
.complete-page .sub-visual__catch,
.contact-page .sub-visual__catch {
  padding-block: 1em;
  white-space: nowrap;
}
.privacy-page .sub-visual__catch__main,
.site-page .sub-visual__catch__main,
.news-page .sub-visual__catch__main,
.notfound-page .sub-visual__catch__main,
.complete-page .sub-visual__catch__main,
.contact-page .sub-visual__catch__main {
  padding-left: 150px;
}

/* ===========================================
*
* main style concept page
*
* ======================================== */
.concept-bg {
  background: url(../images/concept/bg.png) no-repeat top 375px left max(-320px, 50vw - 960px)/auto;
}

/*------------------------------
*
* throught
*
------------------------------*/
.throught {
  padding: 54px 0 154px;
}
.throught__title {
  margin-bottom: 50px;
}
.throught__sentence {
  font-size: 19px;
  letter-spacing: 0.3em;
  font-weight: 500;
  line-height: 2.5263157895em;
  text-align: center;
}
.throught__container {
  margin-top: 150px;
}
.throught-item {
  justify-content: space-between;
  width: 100%;
}
.throught-item:not(:last-child) {
  margin-bottom: 100px;
}
.throught-item:nth-child(even) {
  flex-direction: row-reverse;
}
.throught-item__title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #4db6e6;
  margin-bottom: 50px;
}
.throught-item__title span {
  padding-bottom: 22px;
  background: url(../images/concept/ttl_border.png) repeat-x bottom left/auto;
}
.throught-item__block {
  width: 472px;
}
.throught-item__content {
  line-height: 1.75;
}
.throught-item__content p::before, .throught-item__content p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.throught-item__content p::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.throught-item__content p::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.throught-item__content p:not(:last-child) {
  margin-bottom: 1.75em;
}
.throught-item__img {
  width: 50%;
}

/*------------------------------
*
* feature
*
------------------------------*/
.feature {
  background: url(../images/bg_stripe_pink.png) repeat center/auto;
  padding: 74px 0 138px;
  position: relative;
  z-index: 1;
}
.feature__title {
  margin-bottom: 80px;
}
.feature::before {
  position: absolute;
  top: -12px;
  left: max(5px, 50% - 680px);
  content: "";
  width: 355px;
  height: 188px;
  background: url(../images/concept/feature_deco.png) no-repeat top center/contain;
  z-index: -1;
}
.feature__container {
  gap: 70px 80px;
  position: relative;
  z-index: 1;
}
.feature-item {
  background-color: #fff;
  border-radius: 25px;
  padding-bottom: 40px;
  overflow: hidden;
  width: 500px;
  box-shadow: 0px 6px 15.2px 0.8px rgba(0, 0, 0, 0.06);
}
.feature-item__img {
  margin-bottom: 29px;
  width: 100%;
}
.feature-item__img img {
  width: 100%;
}
.feature-item__title {
  padding-inline: 60px;
  margin-bottom: 12px;
  letter-spacing: 0.025em;
  font-size: 20px;
  font-weight: 700;
  color: #f38391;
}
.feature-item__content {
  padding-inline: 63px;
  line-height: 1.75;
}
.feature-item__child {
  position: absolute;
  width: 295px;
  right: 20px;
  top: 0;
  transform: translateY(-100%);
}

/*------------------------------
*
* info
*
------------------------------*/
.info__title {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 23px;
}
.info__title .cmn-title__icon {
  margin-bottom: 0;
  margin-right: 0.5em;
}
.info__img {
  width: 370px;
}
.info-table {
  width: 590px;
}
.info-table th {
  width: 185px;
}
.info-table td {
  width: calc(100% - 185px);
}
.info__container {
  justify-content: space-between;
}
.info .googlemap {
  margin-top: 80px;
  height: 350px;
}

/* ===========================================
*
* main style themes page
*
* ======================================== */
.themes {
  padding: 74px 0 157px;
  background: url(../images/themes/worrie_bg.png) no-repeat top 342px left max(-335px, 50vw - 975px)/auto;
}

/*------------------------------
*
* worrie
*
------------------------------*/
.worrie-page-link {
  align-items: center;
  justify-content: center;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 107px;
  gap: 20px;
}
.worrie-page-link__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.2em;
  width: 200px;
  height: 100px;
  position: relative;
  z-index: 1;
}
.worrie-page-link__btn::before {
  content: "";
  width: 28px;
  height: 14px;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%, 100%);
}
.worrie-page-link__btn > span {
  font-size: 19px;
  line-height: 1.3157894737em;
  padding: 0 9px;
  min-width: 135px;
  color: #fff;
  border-radius: 2em;
  margin-bottom: 8px;
}
.worrie-page-link__btn:nth-child(1) {
  background: url(../images/themes/btn_bg01.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(1) > span {
  background-color: #f2a1b3;
}
.worrie-page-link__btn:nth-child(1)::before {
  background: url(../images/themes/btn_arrow01.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(2) {
  background: url(../images/themes/btn_bg02.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(2) > span {
  background-color: #f7ac1d;
}
.worrie-page-link__btn:nth-child(2)::before {
  background: url(../images/themes/btn_arrow02.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(3) {
  background: url(../images/themes/btn_bg03.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(3) > span {
  background-color: #4fc9ef;
}
.worrie-page-link__btn:nth-child(3)::before {
  background: url(../images/themes/btn_arrow03.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(4) {
  background: url(../images/themes/btn_bg04.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(4) > span {
  background-color: #27b049;
}
.worrie-page-link__btn:nth-child(4)::before {
  background: url(../images/themes/btn_arrow04.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(5) {
  background: url(../images/themes/btn_bg05.png) no-repeat top center/contain;
}
.worrie-page-link__btn:nth-child(5) > span {
  background-color: #616161;
}
.worrie-page-link__btn:nth-child(5)::before {
  background: url(../images/themes/btn_arrow05.png) no-repeat top center/contain;
}

.worrie {
  margin: 0 auto;
  width: 84.2708333333%;
  max-width: 1618px;
  min-width: 1280px;
  padding: 26px 0 57px;
  scroll-margin-top: 110px;
}
.worrie:not(:last-child) {
  margin-bottom: 62px;
}
.worrie__title {
  margin-bottom: 45px;
  padding-right: 31px;
  line-height: 1.2;
}
.worrie__title .cmn-title__main {
  letter-spacing: 0.2em;
}
.worrie__sentence {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 2.5263157895em;
}
.worrie__container {
  justify-content: space-between;
}
.worrie__block {
  width: 613px;
  min-height: 525px;
  box-sizing: border-box;
  padding: 85px 26px 0 0;
  background: url(../images/themes/worrie_shape.png) no-repeat top center/100%;
  position: relative;
  z-index: 1;
}
.worrie__block::after {
  content: "";
  width: 519px;
  height: 130px;
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 50%;
  transform: translate(-47.5%, 7.6923076923%);
}
.worrie-case {
  margin-top: 77px;
  width: 388px;
}
.worrie-case__title {
  border-radius: 10px 10px 0 0;
  font-size: 25px;
  padding: 0.23em 0.92em;
  margin-bottom: 30px;
  color: #fff;
  font-weight: 500;
}
.worrie-case-list__item {
  font-size: 18px;
  padding-bottom: 1em;
  font-feature-settings: "palt";
}
.worrie-case-list__item:not(:last-child) {
  margin-bottom: 16px;
}
.worrie-recommend {
  margin-top: 40px;
  padding: 40px 50px 46px;
  border-radius: 18px;
  background-color: #faf7d8;
}
.worrie-recommend__title {
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 19px;
}
.worrie-recommend-list__item {
  color: #4db6e6;
  font-size: 18px;
  background-color: #fff;
}
.worrie-recommend-list__item:not(:last-child) {
  margin-bottom: 10px;
}
.worrie-recommend-list__link {
  padding: 0.9166666667em 50px;
  position: relative;
  z-index: 1;
}
.worrie-recommend-list__link::after {
  content: "";
  width: 11px;
  height: 13px;
  background: url(../images/themes/arrow.png) no-repeat center/contain;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translateY(-50%);
}
.worrie:nth-child(1) {
  background-color: #ffeef0;
}
.worrie:nth-child(1) .worrie__block::after {
  background: url(../images/themes/worrie_deco01.png) no-repeat top center/contain;
}
.worrie:nth-child(1) .worrie-case-list__item {
  background: url(../images/themes/pink_border.png) repeat-x left bottom/auto;
}
.worrie:nth-child(1) .worrie__title {
  padding-right: 40px;
}
.worrie:nth-child(1) .worrie-case__title {
  background-color: #f38391;
}
.worrie:nth-child(2) {
  background-color: #ffebc5;
}
.worrie:nth-child(2) .worrie__block::after {
  background: url(../images/themes/worrie_deco02.png) no-repeat top center/contain;
}
.worrie:nth-child(2) .worrie-case-list__item {
  background: url(../images/themes/orange_border.png) repeat-x left bottom/auto;
}
.worrie:nth-child(2) .worrie-case__title {
  background-color: #ec6941;
}
.worrie:nth-child(3) {
  background-color: #d7f3fd;
}
.worrie:nth-child(3) .worrie__block::after {
  background: url(../images/themes/worrie_deco03.png) no-repeat top center/contain;
}
.worrie:nth-child(3) .worrie-case-list__item {
  background: url(../images/themes/blue_border.png) repeat-x left bottom/auto;
}
.worrie:nth-child(3) .worrie-case__title {
  background-color: #0068b7;
}
.worrie:nth-child(4) {
  background-color: #ceecd6;
}
.worrie:nth-child(4) .worrie__block::after {
  background: url(../images/themes/worrie_deco04.png) no-repeat top center/contain;
}
.worrie:nth-child(4) .worrie-case-list__item {
  background: url(../images/themes/green_border.png) repeat-x left bottom/auto;
}
.worrie:nth-child(4) .worrie-case__title {
  background-color: #27b049;
}
.worrie:nth-child(5) {
  background-color: #e5e5e5;
}
.worrie:nth-child(5) .worrie__block::after {
  background: url(../images/themes/worrie_deco05.png) no-repeat top center/contain;
}
.worrie:nth-child(5) .worrie-case-list__item {
  background: url(../images/themes/gray_border.png) repeat-x left bottom/auto;
}
.worrie:nth-child(5) .worrie-case__title {
  background-color: #616161;
}

/* ===========================================
*
* main style class page
*
* ======================================== */
.class-bg {
  background: url(../images/class/class_bg.png) no-repeat top 259px left max(-335px, 50vw - 975px)/auto;
}

/*------------------------------
*
* dojo
*
------------------------------*/
.dojo {
  padding-top: 67px;
}
.dojo__title {
  margin-bottom: 60px;
}
.dojo__title .cmn-title__sub {
  font-size: 19px;
  color: #4db6e6;
  letter-spacing: 0.3em;
  margin-top: 17px;
  margin-bottom: 0;
}
.dojo__sub-title {
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 40px;
}
.dojo__container {
  justify-content: space-between;
  align-items: stretch;
  flex-direction: row-reverse;
}
.dojo__img {
  width: 498px;
}
.dojo__right {
  padding-top: 95px;
  width: 580px;
  position: relative;
  z-index: 1;
}
.dojo__illust {
  width: 245px;
  right: 0;
  bottom: -20px;
  position: absolute;
}
.dojo__sentence {
  line-height: 1.75em;
}
.dojo__sentence p::before, .dojo__sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.dojo__sentence p::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.dojo__sentence p::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.dojo__sentence p:not(:last-child) {
  margin-bottom: 1.75em;
}
.dojo__link {
  margin-top: 1.75em;
  color: #0068b7;
  display: flex;
  align-items: center;
}
.dojo__link img {
  margin-left: 10px;
}
.dojo__flex {
  margin-top: 60px;
  justify-content: space-between;
  align-content: start;
}
.dojo-item {
  width: 190px;
  height: 190px;
  box-sizing: border-box;
  border: 5px solid;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 29px 20px;
}
.dojo-item__title {
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
  padding: 0 5px;
  position: relative;
  z-index: 1;
}
.dojo-item__title::before {
  content: attr(data-text);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  color: #fff;
  -webkit-text-stroke: 4px #fff;
}
.dojo-item__content {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6em;
  font-feature-settings: "palt";
}
.dojo-item:nth-child(1) {
  border-color: #f38391;
}
.dojo-item:nth-child(1) .dojo-item__title {
  background: linear-gradient(transparent 67.5%, #f38391 32.5%);
}
.dojo-item:nth-child(2) {
  border-color: #27b049;
}
.dojo-item:nth-child(2) .dojo-item__title {
  background: linear-gradient(transparent 67.5%, #27b049 32.5%);
}
.dojo-item:nth-child(3) {
  border-color: #4fc9ef;
}
.dojo-item:nth-child(3) .dojo-item__title {
  background: linear-gradient(transparent 67.5%, #4fc9ef 32.5%);
}
.dojo-item:nth-child(4) {
  border-color: #9964b8;
}
.dojo-item:nth-child(4) .dojo-item__title {
  background: linear-gradient(transparent 67.5%, #9964b8 32.5%);
}
.dojo-item:nth-child(5) {
  border-color: #44c5bf;
}
.dojo-item:nth-child(5) .dojo-item__title {
  background: linear-gradient(transparent 67.5%, #44c5bf 32.5%);
}

/*------------------------------
*
* experience
*
------------------------------*/
.experience {
  padding-top: 46px;
  scroll-margin-top: 110px;
}
.experience__title {
  margin-bottom: 96px;
}
.experience__title .cmn-title__main {
  position: relative;
  z-index: 1;
}
.experience__title .cmn-title__main::after {
  content: "";
  width: 1.6666666667em;
  height: 1.4333333333em;
  position: absolute;
  background: url(../images/class/icon_seed.png) no-repeat top center/contain;
  top: 50%;
  right: 0;
  transform: translate(166%, -50%);
}
.experience__title .cmn-title__sub {
  font-size: 19px;
  color: #27b049;
  margin: 18px auto 0;
  letter-spacing: 0.3em;
}
.experience__container {
  justify-content: space-between;
  align-items: center;
}
.experience__img {
  width: 557px;
}
.experience__left {
  width: 455px;
}
.experience__sentence {
  line-height: 1.75;
}
.experience__sentence p::before, .experience__sentence p::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.experience__sentence p::before {
  margin-top: calc((1 - 1.75) * 0.5em);
}
.experience__sentence p::after {
  margin-bottom: calc((1 - 1.75) * 0.5em);
}
.experience__sentence p:not(:last-child) {
  margin-bottom: 2.25em;
}
.experience__sub-title {
  font-size: 38px;
  font-weight: 500;
  margin: 0 auto 50px;
}
.experience__sub-title::after {
  content: "";
  margin: 10px auto 0;
  width: 1.2105263158em;
  height: 0.4736842105em;
  display: block;
  background: url(../images/class/hatake_deco.png) no-repeat top center/contain;
}
.experience__sub-title__main {
  position: relative;
  z-index: 1;
}
.experience__sub-title__main::before {
  content: "";
  width: 1.6285714286em;
  height: 2.5263157895em;
  position: absolute;
  background: url(../images/class/icon_kakashi.png) no-repeat top center/contain;
  top: 50%;
  right: 0;
  transform: translate(152.6315789474%, -50%);
}
.experience__flex {
  justify-content: space-between;
  align-items: flex-start;
  margin: 80px 0 0;
}
.experience .cmn-card__container {
  margin-top: 140px;
}
.experience-item {
  width: 340px;
}
.experience-item__img {
  margin-bottom: 28px;
  width: 100%;
}
.experience-item__content {
  line-height: 1.75;
}

.cmn-card__container {
  gap: 99px 40px;
  scroll-margin-top: 80px;
}

.cmn-card {
  width: 518px;
  box-sizing: border-box;
  border: 2px solid #f38391;
  border-radius: 10px;
  padding: 18px 52px 36px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.cmn-card::before {
  content: "";
  width: 79px;
  height: 48px;
  display: block;
  position: absolute;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -100%);
  background: url(../images/class/card_hutaba.png) no-repeat top center/contain;
}
.cmn-card__name {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 5px;
  min-height: 1.7333333333em;
}
.cmn-card__title {
  text-align: center;
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #f38391;
  line-height: 1.3684210526em;
  margin-bottom: 6px;
}
.cmn-card__img {
  width: 100%;
  height: 240px;
  margin-bottom: 17px;
  overflow: hidden;
  border-radius: 20px;
}
.cmn-card__content {
  line-height: 1.75;
}
.cmn-card__btn {
  text-align: right;
  margin-top: 26px;
}
.cmn-card__btn .btn {
  pointer-events: none;
}

/*------------------------------
*
* course
*
------------------------------*/
.course {
  padding: 62px 0 180px;
}
.course__title {
  margin-bottom: 80px;
}
.course__img {
  width: 100%;
}
.course .cmn-card {
  border-color: #6eb92b;
}
.course .cmn-card__container {
  margin-bottom: 88px;
}

/* ===========================================
*
* trial page
*
* ======================================== */
/*------------------------------
*
* free
*
------------------------------*/
.free {
  padding: 67px 0 100px;
  background: url(../images/trial/free_bg.png) no-repeat top 248px left max(-342px, 50vw - 975px)/auto;
}
.free__title {
  margin-bottom: 64px;
}
.free__sub-title {
  color: #27b049;
  line-height: 1.6;
  margin-bottom: 0;
}
.free__sub-title .cmn-title__main {
  letter-spacing: 0.2em;
}
.free__img {
  width: 1001px;
  margin: -9px auto 73px;
}
.free__sentence {
  font-size: 20px;
  line-height: 1.75;
  padding: 0 50px;
}

/*------------------------------
*
* trial-contact
*
------------------------------*/
.trial-contact {
  padding: 0 0 226px;
}
.trial-contact__title {
  padding-top: 0.9375em;
  margin-bottom: 4px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.trial-contact__title .cmn-title__sub {
  margin-bottom: 6px;
  height: 16px;
}
.trial-contact__title::after {
  content: "";
  width: 10.625em;
  height: 4.5em;
  background: url(../images/top/ttl_contact_bg.png) repeat top center/contain;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.trial-contact__sub-title {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.59;
  padding-bottom: 26px;
  background: url(../images/top/contact_ttl_b.png) repeat-x bottom left/auto;
  margin-bottom: 30px;
}
.trial-contact__left {
  width: 50%;
}
.trial-contact__container {
  background-color: rgba(255, 207, 213, 0.95);
  border-radius: 16px;
  padding: 90px 70px 65px;
  margin: 0 auto;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-height: 397px;
  box-sizing: border-box;
  z-index: 1;
}
.trial-contact__img {
  width: 349px;
  position: absolute;
  z-index: 1;
  bottom: 0;
  right: 0;
  transform: translate(13.1805157593%, 61%);
}
.trial-contact-info {
  flex-direction: column;
  align-items: center;
  width: 385px;
  padding: 60px 0px 0 0;
}
.trial-contact-info__title {
  font-weight: 500;
  font-size: 23px;
  margin-bottom: 10px;
}
.trial-contact-info__tel {
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
}
.trial-contact-info__btns {
  justify-content: center;
  gap: 13px;
  margin-top: 30px;
}
.trial-contact-info__btn {
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  letter-spacing: 0.075em;
  width: 160px;
  padding: 1.25em 1.1333333333em;
  border-radius: 5em;
  position: relative;
  z-index: 1;
  text-align: center;
  transition: 0.3s;
}
.trial-contact-info__btn::after {
  content: "";
  transition: 0.3s;
  position: absolute;
  width: 13px;
  height: 14px;
  top: 50%;
  right: 14px;
  transform: translate(0, -50%);
  background: url(../images/btn_arrow_white.png) no-repeat center/contain;
}
.trial-contact-info__btn:hover {
  transform: translate(4px, 4px);
  box-shadow: none;
}
.trial-contact-info__btn:hover::after {
  transform: translate(50%, -50%);
}
.trial-contact-info__btn--line {
  background-color: #06c755;
  box-shadow: 4px 4px 0px 0px #0da84d;
}
.trial-contact-info__btn--contact {
  background-color: #f7ac1d;
  box-shadow: 4px 4px 0px 0px #de9710;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.trial-contact-info__btn--contact img {
  margin-right: 0.5em;
  width: 1.8em;
}

@media screen and (max-width: 1380px) {
  .trial-contact__img {
    transform: translate(0%, 61%);
  }
}
/*------------------------------
*
* see
*
------------------------------*/
.see {
  background: url(../images/trial/see_bg.png) no-repeat top center/cover;
  padding: 121px 0 140px;
}
.see__title {
  margin-bottom: 94px;
}
.see__container {
  gap: 40px;
  padding: 0 50px;
  margin-bottom: 150px;
}
.see-list__item {
  box-shadow: 0px 2px 16px 0px rgba(0, 0, 0, 0.23);
  border-radius: 11px;
  padding: 30px 10px 30px 36px;
  border: 1px solid #c9c9c9;
  background-color: #fff;
}
.see-list__item:not(:last-child) {
  margin-bottom: 30px;
}
.see-list__item__title {
  line-height: 1.75;
  font-weight: 700;
}
.see-list__item__info {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-top: 12px;
}
.see-list:nth-child(1) {
  position: relative;
}
.see-list:nth-child(1) .see-list__img {
  position: absolute;
  left: 0;
  bottom: -40px;
}
.see-list:nth-child(1) .see-list__item {
  margin-left: auto;
}
.see-list:nth-child(1) .see-list__item:nth-child(1) {
  width: 390px;
}
.see-list:nth-child(1) .see-list__item:nth-child(1) .see-list__item__title {
  color: #567db8;
  font-size: 21px;
}
.see-list:nth-child(1) .see-list__item:nth-child(2) {
  width: 431px;
}
.see-list:nth-child(1) .see-list__item:nth-child(2) .see-list__item__title {
  color: #f38391;
  font-size: 25px;
}
.see-list:nth-child(1) .see-list__item:nth-child(3) {
  width: 300px;
}
.see-list:nth-child(1) .see-list__item:nth-child(3) .see-list__item__title {
  color: #f4a828;
  font-size: 18px;
}
.see-list:nth-child(2) {
  padding-top: 38px;
}
.see-list:nth-child(2) .see-list__item:nth-child(1) {
  width: 391px;
}
.see-list:nth-child(2) .see-list__item:nth-child(1) .see-list__item__title {
  color: #f4a828;
  font-size: 21px;
}
.see-list:nth-child(2) .see-list__item:nth-child(2) {
  width: 465px;
}
.see-list:nth-child(2) .see-list__item:nth-child(2) .see-list__item__title {
  color: #567db8;
  font-size: 21px;
}
.see-list:nth-child(2) .see-list__item:nth-child(3) {
  width: 433px;
}
.see-list:nth-child(2) .see-list__item:nth-child(3) .see-list__item__title {
  color: #418d60;
  font-size: 22px;
}
.see-item {
  justify-content: space-between;
}
.see-item__left {
  width: 500px;
  padding: 33px 0 0 93px;
}
.see-item__left__img {
  width: 410px;
}
.see-item__title {
  margin-bottom: 94px;
  padding-left: 0.7em;
  position: relative;
  z-index: 1;
  white-space: nowrap;
  font-size: 25px;
}
.see-item__title .cmn-title__main {
  letter-spacing: 0.2em;
}
.see-item__title::before {
  content: "";
  width: 1.8em;
  height: 1.8em;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
  transform: translateY(-50%);
  background: url(../images/trial/ttl_deco.png) no-repeat center/contain;
}
.see-item__right {
  width: 503px;
}
.see-item__right__img {
  width: 370px;
  margin-bottom: 53px;
}
.see-item__box {
  padding: 50px 38px 50px 36px;
}
.see-item__list {
  font-size: 19px;
  line-height: 1.75;
}
.see-item__list li {
  padding-left: 1em;
  text-indent: -1em;
}
.see-item__list li:not(:last-child) {
  margin-bottom: 16px;
}
.see-item__list li mark {
  padding: 0 5px;
}
.see-item__list li:nth-child(1) mark {
  background: linear-gradient(transparent 50%, #facd89 48%);
}
.see-item__list li:nth-child(2) mark {
  background: linear-gradient(transparent 50%, #d2e8c7 48%);
}
.see-item__list li:nth-child(3) mark {
  background: linear-gradient(transparent 50%, #d1f0ff 48%);
}
.see-item__list li:nth-child(4) mark {
  background: linear-gradient(transparent 50%, #fcdeeb 48%);
}
.see-item__content {
  line-height: 1.75;
  margin-top: 40px;
}
.see__btns {
  margin-top: 87px;
  padding: 0 50px;
  justify-content: space-between;
}
.see__btn {
  width: 435px;
  border-radius: 11px;
  font-size: 30px;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: #fff;
  padding: 0.75em 1em;
  letter-spacing: 0.2em;
}
.see__btn::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform-origin: center;
  right: 42px;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.see__btn--event {
  background-color: #f19ec2;
}
.see__btn--class {
  background-color: #0da84d;
}

/*------------------------------
*
* voice
*
------------------------------*/
.voice {
  overflow: hidden;
  background: url(../images/trial/voice_bg.png) no-repeat top 77px left max(-342px, 50vw - 975px)/auto;
}
.voice__title {
  margin-bottom: 67px;
}
.voice__container {
  gap: 50px;
}
.voice-item {
  padding: 27px 20px 29px;
  background-color: #f2f2f2;
  width: 515px;
}
.voice-item__left {
  width: calc(100% - 164px);
  padding-top: 20px;
}
.voice-item__img {
  width: 150px;
  height: 150px;
}
.voice-item__title {
  font-weight: 700;
  font-size: 27px;
  line-height: 1.3333333333em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-bottom: 20px;
}
.voice-item__flex {
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-bottom: 27px;
}
.voice-item__flex::after {
  content: "";
  width: 515px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.voice-item__content {
  margin-top: 36px;
  font-size: 18px;
  line-height: 1.75em;
}
.voice-item__content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.voice-item__more {
  margin-top: 18px;
  font-weight: 500;
  font-size: 14px;
}

/*------------------------------
*
* qa
*
------------------------------*/
.qa {
  position: relative;
  z-index: 1;
  padding: 68px 0 150px;
  background: url(../images/bg_stripe_green.png) repeat center/auto;
}
.qa__title {
  margin-bottom: 70px;
}
.qa-list__item {
  background-color: #fff;
  border-radius: 19px;
  border: 1px solid #f7ac1d;
  overflow: hidden;
}
.qa-list__item:not(:last-child) {
  margin-bottom: 28px;
}
.qa-list__item .question__mark, .qa-list__item .answer__mark {
  z-index: 1;
  font-size: 27px;
  font-weight: 700;
  width: 50px;
  height: 50px;
  box-sizing: border-box;
  line-height: 1.8518518519em;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  vertical-align: middle;
  border-radius: 50%;
}
.qa-list__item .question {
  position: relative;
  font-size: 20px;
  padding: 16px 50px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background-color: #f7ac1d;
}
.qa-list__item .question__mark {
  background-color: #fff;
  color: #f7ac1d;
}
.qa-list__item .question__content {
  box-sizing: border-box;
  width: calc(100% - 80px);
}
.qa-list__item .answer {
  position: relative;
  padding: 26px 50px 30px;
}
.qa-list__item .answer__mark {
  background-color: #f7ac1d;
  color: #fff;
}
.qa-list__item .answer__content {
  line-height: 2;
  width: calc(100% - 80px);
}
.qa-list__item .answer__content::before, .qa-list__item .answer__content::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}
.qa-list__item .answer__content::before {
  margin-top: calc((1 - 2) * 0.5em);
}
.qa-list__item .answer__content::after {
  margin-bottom: calc((1 - 2) * 0.5em);
}

/* ===========================================
*
* main style event page
*
* ======================================== */
.event-bg {
  background: url(../images/event/time_schedule_bg.png) no-repeat top 248px left max(-335px, 50vw - 975px)/auto;
}

/*------------------------------
    *
* timetable
*
------------------------------*/
.timetable {
  padding: 151px 0 135px;
  background: url(../images/event/time_table_bg.png) no-repeat top 248px left max(-335px, 50vw - 975px)/auto;
}
.timetable__title {
  margin-bottom: 94px;
}
.timetable__img {
  width: 982px;
  margin: 0 auto;
}
.timetable__img img {
  width: 100%;
}

/*------------------------------
*
* timeschedule
*
------------------------------*/
.timeschedule {
  position: relative;
  z-index: 1;
  padding-block: 0 146px;
}
.timeschedule::after {
  content: "";
  width: 100%;
  height: 169px;
  background: url(../images/bg_stripe_green.png) repeat center/auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: -1;
}
.timeschedule__title {
  height: 169px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.timeschedule__container {
  justify-content: center;
  position: relative;
  z-index: 1;
}
.timeschedule__left, .timeschedule__right {
  width: 540px;
}
.timeschedule__left .timeschedule-list {
  position: relative;
  z-index: 1;
}
.timeschedule__left .timeschedule-list__item {
  padding-left: 128px;
}
.timeschedule__left .timeschedule-list__item:nth-child(1) .timeschedule-list__item__img {
  left: 10px;
  bottom: 0;
  transform: translateY(62%);
  width: 100px;
  z-index: -1;
}
.timeschedule__left .timeschedule-list__item:nth-child(2) {
  height: 151px;
}
.timeschedule__left .timeschedule-list__item:nth-child(3) {
  height: 190px;
  align-items: flex-end;
}
.timeschedule__left .timeschedule-list__item:nth-child(3) .timeschedule-list__item__img {
  left: 0;
  bottom: 0;
  transform: translateY(25%);
  width: 100px;
  z-index: -1;
}
.timeschedule__left .timeschedule-list__item:nth-child(4) {
  height: 119px;
}
.timeschedule__left .timeschedule-list__item:nth-child(5) {
  height: 160px;
}
.timeschedule__left .timeschedule-list__item:nth-child(5) .timeschedule-list__item__img {
  left: 290px;
  bottom: 0;
  transform: translateY(16%);
  width: 153px;
  z-index: -1;
}
.timeschedule__left .timeschedule-list__item:nth-child(6) {
  height: 130px;
  align-items: flex-end;
}
.timeschedule__right .timeschedule-list__item {
  padding-left: 100px;
}
.timeschedule__right .timeschedule-list__item:nth-child(2) {
  height: 151px;
}
.timeschedule__right .timeschedule-list__item:nth-child(3) {
  padding-top: 27px;
  height: 190px;
}
.timeschedule__right .timeschedule-list__item:nth-child(3) .timeschedule-list__item__img {
  right: 48px;
  bottom: 0;
  transform: translateY(56%);
  width: 122px;
}
.timeschedule-list {
  padding-top: 60px;
}
.timeschedule-list__item {
  min-height: 104px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 1.5555555556em;
  padding: 35px 70px 22px 0px;
  box-sizing: border-box;
  border-bottom: 1px dotted #000000;
}
.timeschedule-list__item .text {
  text-align: center;
  min-width: 100px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  color: #fff;
}
.timeschedule-list__item .text > span {
  text-align: center;
  line-height: 20px;
  border-radius: 3em;
  display: inline-block;
  background-color: #eb6100;
  padding: 0 10px;
}
.timeschedule-list__item .time {
  font-size: 1.3888888889em;
  display: block;
  width: 100%;
  margin-bottom: 5px;
}
.timeschedule-list__item__img {
  position: absolute;
  z-index: 5;
}
.timeschedule .enjoy {
  margin-top: 82px;
}
.timeschedule .enjoy__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 5;
  width: 470px;
  margin-bottom: 20px;
}
.timeschedule .enjoy__title__sub {
  height: 40px;
}
.timeschedule .enjoy__title__main {
  font-size: 20px;
  font-weight: 16px;
  margin-top: 11px;
}
.timeschedule .enjoy .timeschedule-list {
  padding-top: 0;
}
.timeschedule .enjoy .timeschedule-list__item:nth-child(2) {
  height: 160px;
}
.timeschedule .enjoy .timeschedule-list__item:nth-child(2) .timeschedule-list__item__img {
  left: 0px;
  bottom: 0;
  transform: translateY(75%);
  width: 100px;
}
.timeschedule .enjoy .timeschedule-list__item:nth-child(5) {
  height: 160px;
}
.timeschedule .enjoy .timeschedule-list__item:nth-child(6) .timeschedule-list__item__img {
  left: 300px;
  bottom: 0;
  transform: translateY(54%);
  width: 153px;
  z-index: 1;
}
.timeschedule .enjoy .timeschedule-list__item:nth-child(3), .timeschedule .enjoy .timeschedule-list__item:nth-child(6), .timeschedule .enjoy .timeschedule-list__item:nth-child(4) {
  height: 140px;
}
.timeschedule-time {
  width: 120px;
  position: absolute;
  top: 169px;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 1;
}
.timeschedule-time::after {
  content: "";
  width: 50%;
  height: calc(100% - 20px);
  background-color: #f19ec2;
  z-index: -1;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.timeschedule-time-list {
  padding-top: 60px;
}
.timeschedule-time-list__item {
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
}
.timeschedule-time-list__item:not(:last-child) {
  margin-bottom: 31px;
}
.timeschedule-time-list__item > span {
  font-size: 14px;
  text-align: center;
  display: inline-block;
  background-color: #fff;
  line-height: 1.4285714286em;
  padding-inline: 10px;
  border-radius: 2em;
}
.timeschedule-time-list__item:nth-child(3) {
  margin-bottom: 39px;
}
.timeschedule-time-list:nth-child(1) .timeschedule-time-list__item {
  background-color: #8fc31f;
}
.timeschedule-time-list:nth-child(1) .timeschedule-time-list__item > span {
  color: #8fc31f;
}
.timeschedule-time-list:nth-child(2) {
  margin-top: 98px;
}
.timeschedule-time-list:nth-child(2) .timeschedule-time-list__item {
  background-color: #f38391;
}
.timeschedule-time-list:nth-child(2) .timeschedule-time-list__item > span {
  color: #f38391;
}
.timeschedule-time-list:nth-child(2) .timeschedule-time-list__item:nth-child(3) {
  margin-bottom: 22px;
}
.timeschedule .puzzle {
  margin-left: auto;
  padding-top: 375px;
  width: 540px;
  position: relative;
  z-index: 1;
}
.timeschedule .puzzle-item__title {
  width: 388px;
  margin-left: auto;
  margin-right: 50px;
  margin-bottom: 75px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #9964b8;
  padding: 0.35em 3em;
  position: relative;
  z-index: 1;
}
.timeschedule .puzzle-item__title::after, .timeschedule .puzzle-item__title::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.1em 0 1.1em 1.1em;
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
}
.timeschedule .puzzle-item__title::before {
  left: 0;
  border-width: 1.1em 0 1.1em 1.1em;
  border-color: transparent transparent transparent #fff;
}
.timeschedule .puzzle-item__title::after {
  right: 0;
  border-width: 22px 22px 22px 0;
  border-color: transparent #fff transparent transparent;
}
.timeschedule .puzzle-item-schedule {
  width: 50%;
}
.timeschedule .puzzle-item-schedule:not(:last-child) {
  margin-bottom: 50px;
}
.timeschedule .puzzle-item-schedule:nth-child(1) {
  width: 320px;
}
.timeschedule .puzzle-item-schedule:nth-child(1) .timeschedule-list__item {
  padding-left: 100px;
}
.timeschedule .puzzle-item-schedule:nth-child(2) {
  width: 220px;
}
.timeschedule .puzzle-item-schedule:nth-child(2) .timeschedule-list__item:nth-child(1) {
  margin-bottom: 14px;
}
.timeschedule .puzzle-item-schedule__day {
  padding: 0.1388888889em 0.5em;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  color: #fff;
  margin-bottom: 14px;
}
.timeschedule .puzzle-item-schedule__day.wed {
  background-color: #27b049;
  margin-left: 100px;
}
.timeschedule .puzzle-item-schedule__day.fri {
  background-color: #f7ac1d;
  margin-bottom: 42px;
}
.timeschedule .puzzle-item-schedule__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 1em;
  width: 330px;
  margin-left: 160px;
  font-weight: 600;
  border-radius: 5em;
  background-color: #f39800;
  color: #fff;
}
.timeschedule .puzzle-item-schedule__btn img {
  margin-right: 23px;
}
.timeschedule .puzzle .timeschedule-list {
  padding-top: 0;
}
.timeschedule .puzzle .timeschedule-list__item {
  padding: 0 0 21px 0;
  min-height: unset;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.timeschedule .puzzle .timeschedule-list__item:not(:last-child) {
  margin-bottom: 42px;
}
.timeschedule .puzzle .timeschedule-list__item .min {
  margin-right: 32px;
}
.timeschedule .puzzle .timeschedule-list__item .content {
  vertical-align: middle;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.timeschedule .puzzle__img {
  margin-left: auto;
  margin-top: 77px;
  margin-right: 20px;
  width: 377px;
}
.timeschedule__img {
  width: 100%;
  margin-top: 214px;
}
.timeschedule__img img {
  width: 100%;
}

/*------------------------------
*
* annual-schedule
*
------------------------------*/
.annual-schedule {
  padding-top: 67px;
  background: url(../images/bg_stripe_pink.png) repeat center/auto;
}
.annual-schedule__title {
  margin-bottom: 55px;
}
.annual-schedule__container {
  gap: 10px 40px;
  justify-content: center;
}
.annual-schedule-item {
  min-height: 160px;
  padding-right: 40px;
  padding-left: 25px;
  justify-content: center;
  width: 470px;
  box-sizing: border-box;
  border-radius: 11px;
  border: 3px solid;
}
.annual-schedule-item__content {
  width: 250px;
  margin-left: auto;
  font-size: 20px;
}
.annual-schedule-item__content .small {
  font-size: 0.85em;
}
.annual-schedule-item__content .indent {
  padding-left: 1em;
  text-indent: -1em;
}
.annual-schedule-item:nth-child(1) {
  border-color: #f38391;
}
.annual-schedule-item:nth-child(2) {
  border-color: #e48450;
}
.annual-schedule-item:nth-child(3) {
  border-color: #f3da83;
}
.annual-schedule-item:nth-child(4) {
  border-color: #27b049;
}
.annual-schedule-item:nth-child(5) {
  border-color: #4fc9ef;
}
.annual-schedule-item:nth-child(6) {
  border-color: #bf4f7c;
}
.annual-schedule-item:nth-child(7) {
  border-color: #e2532d;
}
.annual-schedule-item:nth-child(8) {
  border-color: #8fc31f;
}
.annual-schedule-item:nth-child(9) {
  border-color: #7d7d7d;
}
.annual-schedule-item:nth-child(10) {
  border-color: #9964b8;
}
.annual-schedule-item:nth-child(11) {
  border-color: #448aca;
}
.annual-schedule-item:nth-child(12) {
  border-color: #44c5bf;
}

/*------------------------------
*
* event
*
------------------------------*/
.event {
  scroll-margin-top: 110px;
}
.event__title {
  margin-bottom: 17px;
}
.event__container {
  margin-top: 90px;
  gap: 90px 40px;
  padding: 0 50px;
}
.event-item {
  width: 470px;
}
.event-item__title {
  background-color: #f38391;
  font-size: 20px;
  padding: 0.475em 1em;
  border-radius: 10px 10px 0 0;
  color: #fff;
  font-weight: 500;
}
.event-item__content {
  margin-top: 30px;
  padding: 0 20px;
}
.event-item__content p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.event-item__img {
  height: 260px;
  width: 100%;
}

/* ===========================================
*
* main style gallery page
*
* ======================================== */
.gallery-bg {
  background: url(../images/class/class_bg.png) no-repeat top 342px left max(-335px, 50vw - 975px)/auto;
}

.gallery {
  padding: 67px 0 180px;
}
.gallery__title {
  margin-bottom: 47px;
}
.gallery__title .cmn-title__main {
  letter-spacing: 0.2em;
}
.gallery__container {
  gap: 47px 20px;
}
.gallery-card {
  width: 255px;
}
.gallery-card__img {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #f38391;
}
.gallery-card__title {
  line-height: 2;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  margin-top: 0.5em;
}

/*------------------------------
* 
* news,blog
* 
------------------------------*/
.article-card__container {
  align-items: stretch;
  gap: 25px;
}

.article-item {
  width: 100%;
  box-sizing: border-box;
  gap: 20px 20px;
}
.article-item:not(:last-child) {
  margin-bottom: 60px;
}
.article-item article {
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.article-item__flex {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.article-item__content {
  width: calc(100% - 178px);
  padding-bottom: 24px;
  background: url(../images/article_border.png) repeat-x bottom left/auto;
}
.article-item__img {
  width: 130px;
  position: relative;
  z-index: 1;
}
.article-item__img::after {
  overflow: hidden;
  border-radius: 5px;
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  z-index: -1;
  position: absolute;
  top: 7px;
  left: 5px;
  background: url(../images/bg_stripe_yellow.png) repeat center/auto;
  z-index: -1;
}
.article-item__img__main {
  overflow: hidden;
  border-radius: 5px;
  width: 100%;
  height: 130px;
}
.article-item__title {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0em;
  width: 100%;
  margin-block: -0.25em;
}
.article-item__title > span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.article-item__date {
  line-height: 1;
  font-size: 15px;
}
.article-item .category-wrapper {
  width: calc(100% - 100px);
}

/*---------- detail ここから ----------*/
.category {
  display: inline-block;
  font-size: 14px;
  color: #ffffff;
  background-color: #eee;
  color: #333;
  border-radius: 5px;
  line-height: 1;
  min-width: 100px;
  text-align: center;
  padding: 0.3928571429em 8px;
}
.category-news {
  color: #f38391;
  background-color: #ffe7ea;
}
.category-blog {
  color: #27b049;
  background-color: #d9f7e0;
}
.category-column {
  color: #f7ac1d;
  background-color: #f7efdf;
}
.category-btn-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 10px;
}
.category-btn-wrapper .btn {
  padding: 0.5em 1.5em 0.6em;
  border: 1px solid #333333;
  border-radius: 3em;
  display: inline-block;
  font-size: 15px;
  transition: 0.3s;
}
.category-btn-wrapper .btn:hover {
  color: #fff;
  background-color: #333333;
}
.category-btn-wrapper .btn.current {
  color: #fff;
  background-color: #333333;
}
.category-btn-wrapper .btn-news {
  border-color: #f38391;
  color: #f38391;
}
.category-btn-wrapper .btn-news:hover {
  color: #fff;
  background-color: #f38391;
  opacity: 1;
}
.category-btn-wrapper .btn-news.current {
  color: #fff;
  background-color: #f38391;
  opacity: 1;
}
.category-btn-wrapper .btn-blog {
  border-color: #27b049;
  color: #27b049;
}
.category-btn-wrapper .btn-blog:hover {
  color: #fff;
  background-color: #27b049;
  opacity: 1;
}
.category-btn-wrapper .btn-blog.current {
  color: #fff;
  background-color: #27b049;
  opacity: 1;
}
.category-btn-wrapper .btn-column {
  border-color: #f7ac1d;
  color: #f7ac1d;
}
.category-btn-wrapper .btn-column:hover {
  color: #fff;
  background-color: #f7ac1d;
  opacity: 1;
}
.category-btn-wrapper .btn-column.current {
  color: #fff;
  background-color: #f7ac1d;
  opacity: 1;
}
.category-wrapper {
  align-items: center;
  justify-content: flex-start;
  gap: 8px 10px;
}

.sec-article {
  position: relative;
  z-index: 5;
}
.sec-article .article {
  margin: 0 auto;
}
.sec-article .detail-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.sec-article .detail-date {
  order: 1;
}
.sec-article .detail-category {
  order: 2;
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-top: 12px;
}
.sec-article .detail-title {
  order: 3;
  font-size: 30px;
  width: 100%;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 0;
  padding-left: 0.75em;
  border-left: 5px solid #f38391;
}
.sec-article .detail-img {
  margin: 0 auto;
  width: 100%;
  margin-top: 40px;
}
.sec-article .detail-content {
  margin-top: 40px;
}

/*------------------------------
* 
* sitemap
* 
------------------------------*/
.sitemap-list {
  max-width: 600px;
  margin: 0 auto;
}
.sitemap-list__item:not(:last-child) {
  margin-bottom: 5px;
}
.sitemap-list__link {
  font-size: 15px;
  width: 100%;
  padding: 0.8em 1em;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f38391;
  transition: all 0.3s;
}
.sitemap-list__link::after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #f38391;
  border-right: 2px solid #f38391;
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s;
}
.sitemap-list__link:hover {
  color: #f38391;
}
.sitemap-list__link:hover::after {
  right: 1em;
}

/*------------------------------
* 
* privacy
* 
------------------------------*/
.privacy-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5em;
  margin-bottom: 20px;
  border-left: 5px solid #f38391;
  padding-left: 0.75em;
}

.privacy-box {
  margin-bottom: 40px;
}

.privacy-box:last-child {
  margin-bottom: 0;
}

.side {
  position: fixed;
  z-index: 101;
  right: 0;
  bottom: 10%;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.side-item:not(:last-child) {
  margin-bottom: 10px;
}
.side-item-sns {
  width: 86px;
}
.side-item-sns img {
  width: 100%;
}
.side-item-bnr {
  margin-top: 20px;
  margin-right: 17px;
  width: 182px;
}
.side-item-bnr img {
  width: 100%;
}

/* ===========================================
*
* footer style
*
* ======================================== */
.footer {
  position: relative;
  background: url(../images/footer_img_l.png) no-repeat top 174px left max(-282px, 50vw - 922px)/auto, url(../images/footer_img_r.png) no-repeat top 145px right max(-264px, 50vw - 907px)/auto, url(../images/footer_bg.png) no-repeat top center/max(1920px, 100%) auto;
}
.footer-inner {
  justify-content: space-between;
  padding: 120px 50px 90px;
}
.footer__logo {
  width: 292px;
  margin-bottom: 28px;
}
.footer-left {
  width: 320px;
}
.footer-nav {
  padding-top: 44px;
  width: 510px;
  display: flex;
  justify-content: flex-end;
  gap: 0 42px;
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6666666667em 0;
}
.footer-nav__link {
  line-height: 1;
  font-size: 15px;
  font-weight: 500;
}
.footer-nav__link:hover {
  opacity: 0.7;
}
.footer-nav__sns {
  margin-top: 53px;
}
.footer-info {
  align-items: center;
  width: 100%;
  font-weight: 500;
}
.footer-info__main {
  font-size: 15px;
  margin-bottom: 19px;
}
.footer-info__tel {
  color: #0da84d;
  font-weight: 700;
}
.footer-info__tel > span {
  font-weight: 700;
}
.footer-info__address {
  margin-bottom: 29px;
  line-height: 1.75em;
}
.footer-info__time {
  font-size: 13px;
}
.footer__copy {
  font-size: 15px;
  font-weight: 500;
  width: 100%;
  display: block;
  text-align: center;
  padding: 0.5833333333em 1em;
  color: #ffffff;
  background-color: #0da84d;
}

.trial-page .footer {
  background: url(../images/footer_img_l.png) no-repeat top 174px left max(-282px, 50vw - 922px)/auto, url(../images/footer_img_r.png) no-repeat top 145px right max(-264px, 50vw - 907px)/auto, url(../images/footer_bg.png) no-repeat top center/max(1920px, 100%) auto, url(../images/bg_stripe_green.png) repeat center/auto;
}/*# sourceMappingURL=style.css.map */