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

/*==========================================
共通タイトル
===========================================*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-regular);
  letter-spacing: var(--body-letter-spacing);
}

.section-title {
  text-align: center;
  margin-bottom: 12%;
}
.section-title span {
  font-weight: var(--font-weight-regular);
}
.section-title .title-en {
  display: inline-block;
  line-height: 1.1;
  letter-spacing: 0;
  background: linear-gradient(0deg, var(--gradation-color-end) 20%, var(--gradation-color-start) 89%);
  background: -webkit-linear-gradient(90deg, var(--gradation-color-end) 20%, var(--gradation-color-start) 89%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--font-size-29);
  font-family: var(--font-family-secondary);
}
.section-title .title-ja {
  display: block;
  line-height: 1.6;
  font-size: var(--font-size-23);
}
.section-title .title-ja small {
  display: block;
  font-size: var(--font-size-20);
}

.headline-title {
  text-align: left;
  font-size: var(--font-size-21);
  padding-left: 9%;
  position: relative;
  margin-bottom: 8%;
}
.headline-title::before {
  position: absolute;
  content: "";
  inset: 4vw auto auto 0;
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background: var(--background-color-gradation);
}

.sub-title {
  text-align: center;
  font-size: var(--font-size-19);
  margin-bottom: 6%;
}

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

#g-map {
  width: 95%;
  margin: 0 auto;
}
#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;
  border-radius: 37px;
}

.com-tel {
  line-height: 1.2;
  width: -moz-fit-content;
  width: fit-content;
}
.com-tel .tel__num {
  font-size: var(--font-size-27);
}
.com-tel .tel__num small {
  font-size: var(--font-size-17);
}
.com-tel .tel__txt {
  display: block;
}

.com-button--gradation {
  padding: 2vw 0 0 5vw;
  z-index: 1;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
}
.com-button--gradation::before {
  width: 11vw;
  height: 11vw;
  background: var(--background-color-gradation);
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  content: "";
  opacity: 0.5;
  inset: 0 auto auto 0;
}

.com-button--rounded {
  border-radius: 9vw;
  text-align: center;
  height: 16vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}
.com-button--rounded:hover {
  transform: scale(0.95);
  background: var(--body-font-color);
  color: var(--color-white);
}
.com-button--rounded:hover .has-arr::before, .com-button--rounded:hover .has-arr::after {
  background: var(--color-white);
}

.has-arr {
  padding-right: 7vw;
  position: relative;
  display: inline-block;
}
.has-arr::before, .has-arr::after {
  position: absolute;
  content: "";
  background: var(--body-font-color);
  transition: all 0.3s;
}
.has-arr::before {
  width: 6vw;
  height: 1px;
  inset: auto 0 3vw auto;
}
.has-arr::after {
  height: 1.5vw;
  width: 1px;
  inset: auto 0.5vw 3.1vw auto;
  transform: rotate(-45deg);
}

/*==========================================
テーブルレイアウト
===========================================*/
.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;
}

/*==============================================
ドロワーメニュー
==============================================*/
/*drawer btn 上下左右で設定可能
------------------------------------ */
.sp-menu-btn-wrp {
  top: 2vw;
  right: 3%;
  bottom: auto;
  left: auto;
  background: var(--background-color-gradation);
  border-radius: 5vw;
  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: 70%;
  height: 2px;
  background: var(--color-white);
}
.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-9);
}

.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: 15% 7%;
  background: var(--footer-background-color);
}
#drawer-nav .drawer-logo {
  width: 40%;
  margin-bottom: 10%;
  text-align: left;
}
#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 .current {
  padding-left: 11%;
  position: relative;
  text-decoration: underline;
}
#drawer-nav nav .current::before {
  position: absolute;
  inset: 0 auto 0 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 6vw;
  height: 6vw;
  border-radius: 50%;
  background: var(--background-color-gradation);
}
#drawer-nav nav .current::before {
  left: 0;
}
#drawer-nav nav .current::after {
  left: 3%;
}
#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(--color-black);
  border-bottom: 1px solid var(--color-black);
}
#drawer-nav nav .drawer-dropdown-bx > li > .drawer-link span {
  padding: 0 0 0 5%;
}
#drawer-nav .sns-lists {
  margin: 10% auto;
  gap: 3vw 5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#drawer-nav .drawer-address {
  margin: 10% auto;
}
#drawer-nav .drawer-address li {
  font-size: var(--font-size-14);
  margin-bottom: 6%;
}
#drawer-nav .drawer-address li:last-child {
  margin-bottom: 0;
}
#drawer-nav .drawer-subpage {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  font-size: var(--font-size-12);
  gap: 4vw;
}
#drawer-nav .drawer-subpage-item a {
  text-decoration: underline;
}

/*==========================================
header
===========================================*/
#header {
  position: absolute;
  inset: 0 0 auto;
  width: 100%;
  padding: 3% 4% 0;
  z-index: 1001;
}
#header .header__logo {
  width: 40%;
  line-height: 1;
}
#header .header__right {
  display: none;
}

/*==========================================
mv
===========================================*/
.mv__frame {
  position: relative;
  z-index: 1;
  margin-top: 21vw;
}
.mv__frame::before, .mv__frame::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  background: var(--background-color-gradation);
  opacity: 0.35;
}
.mv__frame::before {
  inset: auto auto 10vw -10vw;
  width: 40vw;
  height: 40vw;
  z-index: 99;
}
.mv__frame::after {
  inset: -35vw -20vw auto auto;
  width: 60vw;
  height: 60vw;
  z-index: -1;
}

#top-mv {
  height: 80vw;
}
#top-mv .mv__slider-wrap {
  height: 100%;
  width: 92%;
  margin-left: auto;
  border-radius: 8vw 0 0 20vw;
  /*==========================================
  メインビジュアル(スライダー)
  ===========================================*/
}
#top-mv .mv__slider-wrap #mv__slider {
  height: 80vw;
  position: relative;
}
#top-mv .mv__slider-wrap #mv__slider li {
  height: 100%;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(1) {
  background: url(../img/top/mv/mv_slide01.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(2) {
  background: url(../img/top/mv/mv_slide02.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(3) {
  background: url(../img/top/mv/mv_slide03.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap #mv__slider li:nth-child(4) {
  background: url(../img/top/mv/mv_slide04.jpg) center no-repeat;
  background-size: cover;
}
#top-mv .mv__slider-wrap .bx-wrapper {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#top-mv .mv__slider-wrap .bx-viewport {
  overflow: visible !important;
  margin: auto;
  text-align: center;
}
#top-mv .mv__slider-wrap .bx-pager {
  display: none;
}
#top-mv .mv__slider-wrap li {
  border-radius: 8vw 0 0 20vw;
}
#top-mv .mv__catch {
  width: 75%;
  position: absolute;
  inset: auto auto 14.2857% 0;
  z-index: 100;
}

/*==========================================
top
===========================================*/
/* top-about
------------------------*/
#top-about {
  margin-bottom: 18%;
}
#top-about .about__title .title-ja {
  font-size: var(--font-size-21);
}
#top-about .about__main {
  position: relative;
  padding: 15% 0;
  background: url(../img/top/about_ill.png) left 0.78125% bottom 4vw/35% no-repeat;
}
#top-about .about__img {
  margin-bottom: 8%;
}
#top-about .about__img img {
  border-radius: 10vw;
}
#top-about .about__button {
  margin-left: auto;
}

/* top-class
------------------------*/
.bg-side-deco {
  position: relative;
  z-index: 1;
  padding-bottom: 28%;
}
.bg-side-deco::before {
  width: 100%;
  height: 28vw;
  position: absolute;
  content: "";
  z-index: -1;
  background: url(../img/common/com-side_deco.png) center/100% no-repeat;
  inset: 15vw 0 auto;
}

#top-class .class__title .title-ja small {
  font-size: var(--font-size-18);
}
#top-class .class__list {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  gap: 6vw 4%;
}
#top-class .class__list .class__item {
  width: 48%;
}
#top-class .class__list .class__item-img {
  border-radius: 20vw;
  padding: 1.2vw;
  margin-bottom: 5%;
  text-align: center;
}
#top-class .class__list .class__item-img img {
  border-radius: 20vw;
}
#top-class .class__list .class__item-fig {
  font-size: var(--font-size-18);
  line-height: 1.5;
  text-align: center;
}
#top-class .class__txt--main {
  margin: 10% 0 12%;
}
#top-class .class__button {
  width: 100%;
  margin: 0 auto;
}

/* top-movie
------------------------*/
#top-movie {
  padding: 30% 0 27%;
  position: relative;
  background: url(../img/top/movie-left_ill.png) left 6.25% bottom/16% no-repeat, url(../img/top/movie-right_ill.png) right 3.6458% bottom/18% no-repeat, linear-gradient(to right, rgb(255, 231, 239) 0%, rgb(249, 235, 223) 100%);
}
#top-movie .movie__title {
  position: absolute;
  inset: -5vw 0 auto;
  margin-bottom: 0;
}
#top-movie .movie__title .title-ja {
  font-size: var(--font-size-21);
}
#top-movie .movie__title .title-ja small {
  font-size: var(--font-size-19);
}
#top-movie .movie__frame {
  text-align: center;
}
#top-movie .movie__frame .movie__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
#top-movie .movie__frame .movie__video video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 37px;
}

/* top-voice
------------------------*/
#top-voice {
  padding: 18% 0;
  position: relative;
  z-index: 1;
}
#top-voice::before {
  width: 55vw;
  height: 55vw;
  position: absolute;
  content: "";
  border-radius: 50%;
  inset: 12vw -27.5vw auto auto;
  background: rgba(var(--color-white-rgb), 0.5);
  opacity: 0.5;
  z-index: -1;
}
#top-voice .voice__img {
  margin-bottom: 8%;
}
#top-voice .voice__img img {
  border-radius: 12vw;
}
#top-voice .voice__button {
  margin-left: auto;
}

/* top-news
------------------------*/
#top-news {
  padding: 18% 0;
}
#top-news .news__wrap {
  background: var(--color-white);
  border-radius: 16vw;
  padding: 10% 6%;
  position: relative;
}
#top-news .news__post-list .news__post {
  border-bottom: 1px solid var(--color-gray);
}
#top-news .news__post-list .news__post a {
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
  padding: 6% 0;
}
#top-news .news__post-list .news__post a:hover {
  background: rgba(var(--gradation-color-start-rgb), 0.2);
}
#top-news .news__post-list .news__post a:hover .news__post-title {
  text-decoration: underline;
}
#top-news .news__post-list .news__post time,
#top-news .news__post-list .news__post .category-label li {
  font-size: var(--font-size-14);
}
#top-news .news__post-list .news__post time {
  width: 29%;
}
#top-news .news__post-list .news__post .category-label {
  width: 71%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.5vw;
}
#top-news .news__post-list .news__post .category-label li {
  padding: 0 2vw;
  position: relative;
}
#top-news .news__post-list .news__post .category-label li::before {
  position: absolute;
  content: "";
  inset: 0 auto 0 0;
  margin: auto 0;
  width: 1px;
  height: 3vw;
  background: var(--body-font-color);
}
#top-news .news__post-list .news__post-title {
  width: 100%;
  font-size: var(--font-size-16);
}
#top-news .news__button {
  margin: 8% 0 0 auto;
  font-size: var(--font-size-15);
  width: -moz-fit-content;
  width: fit-content;
}

/* top-recruit
------------------------*/
#top-recruit {
  background: var(--background-color-gradation);
}
#top-recruit .inbox {
  padding: 18% 8% 36%;
  position: relative;
  background: url(../img/top/recruit_ill.png) left 5% bottom/40% no-repeat;
}
#top-recruit .recruit__title .title-en {
  -webkit-text-fill-color: var(--color-white);
  color: var(--color-white);
  background: none;
}
#top-recruit .recruit__title .title-ja {
  color: var(--color-white);
}
#top-recruit .recruit__subtitle {
  font-size: var(--font-size-20);
  margin-bottom: 6%;
  text-align: center;
}
#top-recruit .recruit__content {
  color: var(--color-white);
}
#top-recruit .recruit__content .com-tel {
  width: 100%;
  display: block;
  text-align: center;
  line-height: 1.2;
}
#top-recruit .recruit__content .com-tel .tel__num {
  color: var(--color-white);
}

/*==========================================
footer
===========================================*/
#footer {
  background: var(--footer-background-color);
  padding: 13% 0 11%;
}
#footer .footer__headline {
  border-bottom: 1px solid var(--color-gray);
  padding-bottom: 8%;
}
#footer .footer__headline-left {
  margin-bottom: 10%;
}
#footer .footer__headline-left .footer__logo {
  width: 42%;
  display: block;
  margin: 0 auto 7%;
}
#footer .footer__headline-left .footer__address {
  font-size: var(--font-size-15);
}
#footer .footer__headline-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5vw 6vw;
}
#footer .footer__headline-list .footer__list-item .com-button--rounded {
  width: 41vw;
  height: 12vw;
  border: 1px solid;
  background: var(--footer-background-color);
}
#footer .footer__headline-list .footer__list-item .com-button--rounded:hover {
  background: var(--body-font-color);
}
#footer .footer__nav {
  font-size: var(--font-size-14);
  margin: 8% 0;
  text-align: right;
}
#footer .footer__nav .nav__item {
  margin-bottom: 4%;
}
#footer .footer__nav .nav__item:last-child {
  margin-bottom: 0;
}
#footer .footer__nav a:hover {
  text-decoration: underline;
}

#copyright {
  word-break: normal;
  text-align: center;
}
#copyright small {
  font-size: var(--font-size-12);
}
#copyright a {
  text-decoration: underline;
}

/*==========================================
ページトップ
===========================================*/
.pagetop {
  width: 8%;
  position: fixed;
  bottom: 8%;
  right: 3%;
  z-index: 999;
}
.pagetop a {
  display: block;
}
.pagetop a:hover {
  transform: scale(0.8);
}

/*==========================================
sv
===========================================*/
.lower-sv {
  height: 43vw;
}
.lower-sv .sv__title {
  font-size: var(--font-size-22);
  background: var(--color-white);
  padding: 2%;
  position: absolute;
  inset: auto auto 22.222% 0;
  border-radius: 0 7vw 7vw 0;
  width: 80%;
  text-align: center;
  z-index: 100;
}
.lower-sv .sv__bg {
  width: 84%;
  height: 100%;
  border-radius: 17vw 0 0 17vw;
  margin-left: auto;
}

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

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

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

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

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

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

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

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

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

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

/*==========================================
class
===========================================*/
/* class-archive
------------------------*/
#class-archive .archive__list .archive__post {
  width: 100%;
  margin-bottom: 12%;
}
#class-archive .archive__list .archive__post:last-child {
  margin-bottom: 0;
}
#class-archive .archive__list .archive__post-img {
  width: 100%;
  height: 53vw;
  padding: 1vw;
  border-radius: 12vw 12vw 0 0;
}
#class-archive .archive__list .archive__post-img img {
  border-radius: 12vw 12vw 0 0;
}
#class-archive .archive__list .archive__post-title {
  padding: 2% 0;
  font-size: var(--font-size-21);
}

/* class-price
------------------------*/
#class-price .price__joining {
  border-radius: 18vw;
  padding: 5%;
  color: var(--color-white);
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: baseline;
  flex-wrap: wrap;
}
#class-price .price__joining .joining__title {
  width: 50%;
  font-size: var(--font-size-18);
  text-align: center;
}
#class-price .price__joining .joining__price {
  width: 45%;
  font-size: var(--font-size-14);
  text-align: center;
}
#class-price .price__joining .joining__txt-intax {
  width: 100%;
  border-top: 1px solid;
  padding: 4% 3%;
  margin-top: 4%;
  font-size: var(--font-size-14);
}
#class-price .price__inner-section {
  margin-top: 13%;
}
#class-price .price__subtitle {
  font-size: var(--font-size-21);
  margin-bottom: 7%;
  text-align: center;
}
#class-price .monthly__lead {
  text-align: center;
  font-size: var(--font-size-13);
  margin-bottom: 8%;
}
#class-price .monthly__list {
  border-radius: 12vw;
  padding: 6% 0;
  background: var(--color-orange-light);
}
#class-price .monthly__list-item {
  border-bottom: 1px solid var(--color-gray);
  padding: 4%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  align-items: baseline;
}
#class-price .monthly__list-item:last-child {
  border-bottom: none;
}
#class-price .monthly__list-item dt {
  width: 50%;
  font-size: var(--font-size-16);
}
#class-price .monthly__list-item dd {
  width: 45%;
  font-size: var(--font-size-14);
  text-align: right;
}
#class-price .schedule__table-wrap {
  overflow-x: auto;
  display: block;
}
#class-price .schedule__table-wrap .schedule__table {
  width: 100%;
  background: var(--footer-background-color);
  border-radius: 58px;
  padding: 10px 0;
}
#class-price .schedule__table-wrap .schedule__table tr {
  border-bottom: 1px solid var(--color-gray);
}
#class-price .schedule__table-wrap .schedule__table tbody tr:last-child {
  border-bottom: none;
}
#class-price .schedule__table-wrap .schedule__table th,
#class-price .schedule__table-wrap .schedule__table td {
  vertical-align: middle;
  text-align: center;
  padding: 2vw;
  max-width: 200px;
  min-width: 85px;
  white-space: nowrap;
  font-size: var(--font-size-15);
}
#class-price .schedule__table-wrap .schedule__table th {
  color: var(--color-pink-light);
}
#class-price .schedule__table-wrap .schedule__table th:first-child {
  width: 205px;
}
#class-price .schedule__table-wrap .schedule__table td:first-child {
  position: sticky;
  left: 0;
  font-size: var(--font-size-14);
  background: var(--footer-background-color);
}

/*==========================================
instructor
===========================================*/
/* instructor-lecture
------------------------*/
#instructor-lecture .lecture__img {
  margin-bottom: 8%;
}
#instructor-lecture .lecture__img img {
  border-radius: 12vw 12vw 0 0;
}
#instructor-lecture .lecture__content .name {
  text-align: right;
}

/* instructor-profile
------------------------*/
#instructor-profile .profile__list {
  background: var(--color-orange-light);
  border-radius: 12vw;
}
#instructor-profile .profile__list .profile__item {
  padding: 10% 5%;
}

/* instructor-policy
------------------------*/
#instructor-policy {
  position: relative;
  z-index: 1;
  padding-bottom: 18%;
}
#instructor-policy::before {
  width: 100%;
  height: calc(100% - 100vw);
  position: absolute;
  content: "";
  z-index: -1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffe7ef+0,f9ebdf+100 */
  background: linear-gradient(to right, rgb(255, 231, 239) 0%, rgb(249, 235, 223) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  inset: auto 0 20vw;
}
#instructor-policy .policy__item {
  background: var(--footer-background-color);
  border-radius: 12vw;
  padding: 10% 6%;
  margin-bottom: 12%;
}
#instructor-policy .policy__item:last-child {
  margin-bottom: 0;
}

/*==========================================
voice
===========================================*/
#voice-archive .voice__category-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6vw 5vw;
  margin-bottom: 12%;
}
#voice-archive .voice__post {
  width: 100%;
  background: var(--color-white);
  border-radius: 18vw 0 0 0;
  padding: 10% 6%;
  margin-bottom: 15%;
}
#voice-archive .voice__post:last-child {
  margin-bottom: 0;
}
#voice-archive .voice__post-fig {
  display: grid;
  grid-template-columns: repeat(1, 0fr);
  grid-template-rows: repeat(0, 2fr);
  grid-column-gap: 5vw;
}
#voice-archive .voice__post-icon {
  width: 22vw;
  height: 22vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  grid-area: 1/1/3/2;
}
#voice-archive .voice__post-icon img {
  max-width: 16vw;
}
#voice-archive .voice__post-cap {
  font-size: var(--font-size-20);
  line-height: 1.6;
  grid-area: 1/2/2/3;
  text-align: left;
}
#voice-archive .voice__post-category-list {
  font-size: var(--font-size-15);
  grid-area: 2/2/3/3;
}
#voice-archive .voice__post-comment {
  margin-top: 6%;
}

/*==========================================
info
===========================================*/
/* info-gallery
------------------------*/
#info-gallery .gallery__list .gallery__item {
  width: 100%;
  height: 56vw;
  border-radius: 18vw 18vw 0 0;
  margin-bottom: 12%;
}
#info-gallery .gallery__list .gallery__item:last-child {
  margin-bottom: 0;
}
#info-gallery .gallery__list .gallery__item img {
  border-radius: 18vw 18vw 0 0;
}

/* info
------------------------*/
#info-school .school__table {
  margin-bottom: 15%;
  border-radius: 12vw;
  background: var(--color-orange-light);
  padding: 6% 4%;
}

/*==========================================
一覧ぺージ用カテゴリ(セレクトボックス)
===========================================*/
.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%;
  /*==========================================
  Flexbox
  ===========================================*/
  display: flex;
  width: 100%;
  justify-content: space-between;
  box-sizing: border-box;
  flex-wrap: wrap;
  align-items: baseline;
}
.column__wrap .column__list .column__post-meta time {
  width: 17vw;
  font-size: var(--font-size-11);
}
.column__wrap .column__list .column__post-meta .category-label {
  width: calc(100% - 19vw);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  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-16);
  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 tr th .required {
  /*==========================================
  上下中央揃え
  ===========================================*/
  position: absolute;
  top: 50%; /* Safari用 */
  transform: translateY(-50%);
  z-index: 10;
  right: 10px;
  background: var(--color-white);
  padding: 3px;
  font-size: var(--font-size-12);
}
#contact .contact__form tr td {
  padding: 3% 0;
}
#contact .contact__form tr td .label-list li {
  margin-bottom: 5%;
}
#contact .contact__form tr td .label-list li:last-child {
  margin-bottom: 0;
}
#contact .contact__form tr td textarea {
  height: 37vw;
}
#contact .contact__form tr.privacy-check th {
  text-align: left;
}
#contact .contact__form .form-field {
  padding: 3%;
}
#contact .contact__form .contact__select {
  width: 50%;
  position: relative;
}
#contact .contact__form .contact__select::after {
  inset: 0 5% 0 auto;
  width: 1.5vw;
  height: 1.5vw;
}
#contact .contact__form .contact__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: 15px;
}
#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 .check-btn {
  width: 75%;
}
#contact .contact__submits-wrap .back-btn {
  width: 52%;
}
#contact .contact__submits-wrap .send-btn {
  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;
}
#privacy .privacy__content p {
  margin-bottom: 8%;
}
#privacy .privacy__content p:last-child {
  margin-bottom: 0;
}
#privacy .privacy__content ul {
  margin-top: 8%;
}

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

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