@charset "utf-8";
/* ==========================================================================
Layout [ header / main / side / footer... ]
========================================================================== */

body {
}

/* header
---------------------------------------------------------------*/
#header {
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  transition: 1s;
}
.header__inner {
  margin: 0 auto;
  position: relative;
}
.logo {
  display: none;
}
#btnMenu{
  position: fixed;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height:60px;
  z-index: 10000;
}
#btnMenu span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background: #444;
  width: 45%;
}
#btnMenu span:nth-of-type(1) {
  top:17px;
}
#btnMenu span:nth-of-type(2) {
  top:29px;
}
#btnMenu span:nth-of-type(3) {
  top:41px;
}

/*activeクラスが付与されると線が回転して×に*/
#btnMenu.active span:nth-of-type(1) {
  top: 24px;
  left: 14px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
#btnMenu.active span:nth-of-type(2) {
  opacity: 0;
}
#btnMenu.active span:nth-of-type(3){
  top: 36px;
  left: 14px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.nav__wrap {
  background-color: #fff;
  height: 100vh;
  overflow-y: auto;
  text-align: center;
  box-sizing: border-box;
  padding: 60px 0 120px;
  display: none;
  z-index: 9999;
}
.nav__wrap.active {
  display: block;
}
.nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo__sp {
  margin-bottom: 48px;
}
.nav__item {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: .2em;
  font-size: 16px;
  margin-bottom: 40px;
  color: #444;
  font-weight: bold;
}


/* Main
---------------------------------------------------------------*/
#main {
  overflow: hidden;
  margin-bottom: 80px;
}

/* footer
---------------------------------------------------------------*/
#footer {
  padding: 40px 0 80px;
  text-align: center;
  position: relative;
}
.footer__logo {
  width: 220px;
  margin-bottom: 30px;
  display: inline-block;
}
.footer__logo img {
  width: 100%;
}
.footer__sns {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.footer__sns li {
  margin: 0 10px;
}
.footer__sns img {
  width: 60px;
}
.footer__nav {
  display: none;
}
.footer__navsub {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 10px;
}
.footer__navsub__item {
  margin: 0 1em 30px;
  font-size: 16px;
}
.footer__navsub__item a {
  color: #606060;
}
.copyright {
  font-size: 12px;
  letter-spacing: .1em;
}

/* ==========================================================================
Project [ articles / ranking / promo... ]
========================================================================== */
/* TOPページ */
.mv {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.mv__bg {
  width: 100%;
  height: 100%;
  background-image: url(./assets/img/sp/kv.jpg);
  background-size: cover;
  background-position: center center;
  position: absolute;
  left: 0;
  top: 0;
}
.mv .nav__wrap {
  display: none;
}
.mv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.mv__logo {
  width: 114px;
  margin-bottom: 24px;
}
.mv__txt {
  color: #fff;
  font-size: 20px;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  letter-spacing: .2em;
  margin-left: 1em;
  line-height: 1.7;
}
.concept .container__inner {
}
.concept__body {
  width: calc(100% - 40px);
  margin: 0 auto 50px;
}
.concept__img {
  width: 100%;
}
.concept__lead {
  font-size: 32px;
  margin-bottom: 24px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  letter-spacing: .1em;
}
.concept__txt {
  font-size: 13px;
  line-height: 2.2em;
  letter-spacing: .2em;
}
.top__bnr {
  width: calc(100% - 40px);
  margin: 0 auto 60px;
}
.top__bnr__item {
  width: 100%;
  margin-bottom: 12px;
}
.top__news__list {
  margin: 0 20px 40px;
}
.top__news__item {
  border-bottom: 1px solid #606060;
  margin-bottom: 20px;
}
.top__news__item a {
  padding: 15px 0;
  display: block;
}
.top__news__item a time {
  font-size: 13px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: .25em;
}
.top__news__item__ttl {
  font-size: 14px;
  letter-spacing: .15em;
}
.top__movie .container__inner {
  margin: 0 20px;
  position: relative;
  height: 0;
  padding-top: 51%;
}
.top__movie iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.top__studio__wrap {
  margin: 0 20px 0;
}
.top__studio__wrap:not(:last-of-type) {
  margin-bottom: 60px;
}
.top__studio__wrap .heading01 {
  font-size: 18px;
}
.top_studio_openinghours {
  text-align: center;
  font-size: 20px;
  letter-spacing: .3em;
}
.top_studio_openinghours span {
  font-size: 14px;
}
.top__studio__access {
  text-align: center;
  font-size: 14px;
  letter-spacing: .3em;
  margin-bottom: 32px;
}
.top__studio__map iframe {
  width: 100%;
  height: 280px;
}
.top__about .container__inner {
}
.top__about__img {
  margin: 0 20px;
}
.top__about__body {
  padding-top: 30px;
}
.top__about__txt {
  text-align: center;
  font-size: 14px;
  line-height: 2.37em;
  letter-spacing: .18em;
  margin-bottom: 40px;
}
.top__about .btn__wrap {
}
.top__instagram .container__ttl {
  margin-bottom: 20px;
}
.top__instagram .heading01 {
  font-size: 16px;
}
.top__instagram .heading01 img {
  width: 22px;
  display: inline-block;
  margin-right: 16px;
  position: relative;
  top: -3px;
}
.top__program__list {
  margin-bottom: 40px;
}
.top__program__item {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
  display: block;
}
.top__program__item__body {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top__program__item__ttl {
  color: #fff;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: .15em;
  text-shadow: 0 0 10px rgba(0,0,0,.9);
  padding-left: 14px;
}
.top__program__item__txt {
  height: 50%;
  background-color: rgba(0,0,0,.3);
  color: #fff;
  font-size: 14px;
  letter-spacing: .2em;
  padding: 10px 14px;
  box-sizing: border-box;
}
.top__trial__txt {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  margin-bottom: 24px;
  letter-spacing: .3em;
}
.top__price__wrap:not(:last-of-type) {
  margin-bottom: 100px;
}
.top__price .heading01 {
  font-size: 18px;
}
.top__trial__price {
  text-align: center;
  letter-spacing: .1em;
  font-size: 13px;
  margin-bottom: 40px;
}
.top__trial__price span {
  font-size: 25px;
  color: #00b7b7;
}
.top__price__list {
  margin: 0 20px;
}
.top__price__item {
  display: flex;
  border-bottom: 1px solid #606060;
  padding: 20px 0;
  align-items: center;
}
.top__price__item__ttl {
  width: 6em;
  font-size: 14px;
  line-height: 1.8;
}
.top__price__item__txt {
  width: calc(100% - 6em);
}
.top__price__item__txt dl {
  display: flex;
  font-size: 14px;
}
.top__price__item__txt dl:not(:last-of-type) {
  margin-bottom: 24px;
}
.top__price__item__txt dt {
  width: 7em;
  text-align: center;
  position: relative;
}
.top__price__item__txt__dt:after {
  content: "：";
  position: absolute;
  right: 0;
}
.top__price__item__txt dd {
  width: calc(100% - 6em);
  padding-left: 10px;
}
.top__faq .container__inner {
  padding-bottom: 80px;
}
.faq__item {
  margin: 0 20px 20px;
}
.faq__que {
  position: relative;
}
.faq__que::before,
.faq__que::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  border-radius: 5px;
  background: #606060;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq__que::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .4s;
}
.faq__que.active::after {
  transform: rotate(0);
  transition: 0.5s;
}
.faq__que p {
  border-bottom: 1px solid #606060;
  padding: 15px 32px 15px 32px;
  font-size: 14px;
  letter-spacing: .2em;
  position: relative;
  line-height: 1.8;
  transition: opacity .4s;
}
.faq__que p:before {
  content: "Q";
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}
.faq__que p:hover {
  cursor: pointer;
  opacity: .5;
}
.faq__ans p {
  padding: 20px 0 20px 124px;
  padding: 15px 0 15px 32px;
  font-size: 14px;
  letter-spacing: .2em;
  position: relative;
  line-height: 1.8;
}
.faq__ans p:before {
  content: "A";
  color: #00b7b7;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  position: absolute;
  left: 0;
  top: 6px;
}
.fixed__btn {
  position: fixed;
  z-index: 10000;
  bottom: 0;
  left: 0;
  width: 100%;
  display: block;
}
.fixed__btn:after {
  content: "";
  display: block;
  clear: both;
}
.fixed__btn a {
  display: block;
  width: 50%;
  float: left;
}
.cta__contact {
  background-color: #e8e8e8;
  padding: 50px 0;
  text-align: center;
}
.cta__contact__ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 20px;
  margin-bottom: 32px;
  letter-spacing: .5em;
}
.cta__contact__wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}
.cta__contact__head {
}
.cta__contact__btns {
  display: none;
}
.cta__contact__head__ttl {
  font-size: 18px;
  letter-spacing: .2em;
  margin-bottom: 10px
}
.cta__contact__tel {
  font-size: 30px;
  letter-spacing: .1em;
}
.cta__contact__tel__hours {
  font-size: 12px;
  margin-bottom: 16px;
}
.cta__contact__btn {
  background-color: #00a199;
  color: #fff;
  text-align: center;
  min-width: 300px;
  padding: 20px 0;
  font-size: 15px;
  letter-spacing: .15em;
  display: inline-block;
}
.cta__contact__btn__experience {
  width: 323px;
  height: 62px;
  background-color: #00a199;
  color: #fff;
  display: flex;
  align-items: center;
  font-size: 11px;
  padding-left: 32px;
  box-sizing: border-box;
  position: relative;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
}
.cta__contact__btn__experience:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 8px;
  height: 8px;
  border:2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 24px;
  top: 50%;
}
.cta__contact__btn__experience span {
  font-size: 19px;
}
.cta__contact__btn__lesson {
  width: 323px;
  height: 62px;
  color: #00a199;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: 11px;
  padding-top: 4px;
  padding-left: 32px;
  box-sizing: border-box;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.cta__contact__btn__lesson:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #00a199;
  line-height: 1;
  width: 8px;
  height: 8px;
  border:2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 24px;
  top: 50%;
}
.cta__contact__btn__lesson span:nth-of-type(2) {
  font-size: 19px;
}

.top__studio__cta {
}
.top__studio__cta .cta__contact__btn__lesson {
  border: 1px solid #00a199;
  margin-top: 24px;
}


.topic__list {
  margin: 0 20px;
}
.topic__item div {
  max-width: 100%;
}
.topic__item > a ,
.topic__item__inner {
  display: block;
  border: 1px solid #606060;
  padding: 16px 10px 30px;
  margin-bottom: 30px;
}
.topic__item__head {
  border-bottom: 1px solid #606060;
  padding: 10px;
  margin-bottom: 24px;
}
.topic__item__head time {
  width: 200px;
  font-size: 14px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  letter-spacing: .25em;
}
.topic__item__ttl {
  font-size: 16px;
  letter-spacing: .15em;
}
.topic__item__body {
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .15em;
  padding: 0 10px 20px;
}
.topic__item__body p {
  margin-bottom: 1em;
}
.topic__item__body em {
  font-style: italic;
}
.topic__item__body strong {
  font-weight: bold;
}
.topic__item__body h1 ,
.topic__item__body h2 {
  font-weight: bold;
  font-size: 18px;
  padding: 6px 10px;
  margin-bottom: 16px;
  background: #00a199;
  color: #fff;
  border-radius: 5px;
}
.topic__item__body h3 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}
.topic__item__body h4 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}
.topic__item__body blockquote {
  background-color: #eee;
  padding: 20px;
  margin-bottom: 20px;
}
.topic__item__body ul ,
.topic__item__body ol {
  padding-left: 20px;
}
.topic__item__body li {
  list-style: disc;
  margin-bottom: 8px;
}
.topic__item__body ol li {
  list-style: auto;
  margin-bottom: 8px;
}
.topic__item__more {
  float: right;
  font-size: 16px;
  color: #00a199;
  letter-spacing: .2em;
  padding-right: 50px;
  position: relative;
  margin-right: 10px;
}
.topic__item__more:after {
  content: "";
  width: 44px;
  height: 6px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(./assets/img/icon_arrow_more.svg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 44px auto;
  transition: .5s;
}
.aboutus__wrap {
  margin-top: 70px;
}
.about01__txt ,
.about01 .heading02 {
  text-align: center;
}
.about01__txt {
  font-size: 13px;
  line-height: 2.25;
  letter-spacing: .1em;
  margin-bottom: 60px;
}
.aboutus__img1 {
  width: 100%;
}
.aboutus__inner {
  margin-bottom: 70px
}
.aboutus__img {
  width: 100%;
}
.aboutus__body {
  margin: 0 20px 30px;
}
.aboutus__body__num {
  font-size: 48px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  color: #ebebeb;
  display: inline-block;
  margin-right: 10px;
}
.aboutus__body__ttl {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .1em;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  top: -4px;
}
.aboutus__body__txt {
  font-size: 13px;
  line-height: 2.3;
}
.trial {
  margin: 0 20px;
  box-sizing: border-box;
  padding: 48px 20px;
  border: 1px solid #606060;
}
.trial__ttl {
  font-size: 18px;
  letter-spacing: .4em;
  margin-bottom: 20px;
  text-align: center;
}

.container.program__wrap {
  margin-left: 20px;
  margin-right: 20px;
}
.program__theme {
  width: 100%;
  margin: 0 auto;
  display: block;
}
.program__wrap .heading01 {
  font-size: 20px;
  line-height: 2;
}
.program__txt {
  text-align: center;
  font-size: 13px;
  letter-spacing: .3em;
  line-height: 1.8;
  margin-bottom: 40px;
}
.program__nav {
  display: flex;
  justify-content: space-between;
}
.program__nav__item {
  max-width: 30.8333%;
  width: 100%;
}
.program__nav__item a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  display: block;
  background-color: #ebebeb;
  text-align: center;
  font-size: 15px;
  padding: 8px 0 14px;
  width: 100%;
  letter-spacing: .2em;
  position: relative;
}
.program__nav__item a:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #444;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(135deg);
  position: absolute;
  left: 50%;
  bottom: 8px;
}
.program__head {
  margin-bottom: 32px;
}
.program__img {
  margin-bottom: 40px;
}
.program__body {
}
.program__body__ttl {
  font-size: 24px;
  color: #00a199;
  margin-bottom: 24px;
  letter-spacing: .4em;
}
.program__body__txt {
  font-size: 13px;
  line-height: 2.3;
}
.program__content {
}
.program__class {
  border: 1px solid #444;
  margin-bottom: 40px;
  padding: 20px;
}
.program__class__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  padding: 10px 0 20px;
  letter-spacing: .2em;
  text-align: center;
}
.program__class__txt {
  font-size: 13px;
  line-height: 2.3;
}
.program__class__note {
  font-size: 13px;
  line-height: 1.8;
  margin-top: 10px;
}
#focus {
  margin-bottom: 70px;
}

.thanks__ttl {
  text-align: center;
  font-size: 24px;
  letter-spacing: .5em;
  color: #00a199;
  margin-bottom: 50px;
  font-weight: 600;
}
.thanks__txt {
  font-size: 13px;
  line-height: 2.1;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: .1em;
}
.thanks__link {
  color: #00a199;
  font-size: 16px;
  display: inline-block;
  letter-spacing: .1em;
}

/* 20240407 投稿タイプ「スタジオ」追加 */
.studio__list {
}
.studio__item {
  width: calc(100% - 40px);
  margin: 0 auto 40px;
}
.studio__item__link {
  display: block;
  box-sizing: border-box;
  border: 1px solid #00a199;
  padding: 10px 10px 20px;
}
.studio__item__img {
  margin-bottom: 24px;
}
.studio__item__img img {
  width: 100%;
}
.studio__item__ttl {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: .2em;
}
.studio__item__detail {
  display: flex;
  letter-spacing: .3em;
  margin-bottom: 16px;
  font-size: 13px;
}
.studio__item__detail__icon {
  width: 32px;
  padding-left: 4px;
}
.studio__item__detail__icon img {
  width: 18px;
}
.studio__item__detail__txt {
  padding-top: 2px;
}
.studio__item .btn__wrap {
  margin-top: 32px;
}
.studio__item .btn {
  border: 1px solid #00a199;
  background-color: #fff;
  color: #00a199;
}

.studio__slider__wrap {
  overflow: hidden;
  margin-bottom: 40px;
  /*width: calc(100% - 40px);*/
  width: 100%;
}
.studio__slider {
  display: none;
}
.studio__slider.slick-slider {
  display: block;
}
.studio__slider__item {
  width: 86vw;
  margin: 0 2vw;
}
.studio__slider .slick-dots {
  bottom: -30px;
}
.studio__slider .slick-dots li button:before {
  font-size: 12px;
  color: #e8e8e8;
  opacity: 1;
}
.studio__slider .slick-dots li.slick-active button:before {
  color: #00a199;
}
.studio__map {
  margin: 0 20px 30px;
}
.studio__map iframe {
  width: 100%;
  height: 280px;
}
.studio__table {
  display: flex;
  flex-wrap: wrap;
  margin: 0 20px 30px;
}
.studio__table__ttl {
  width: 120px;
  background-color: #2aa199;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #606060;
  margin-top: -1px;
  letter-spacing: .3em;
  font-size: 13px;
  padding: 16px 10px;
}
.studio__table__txt {
  width: calc(100% - 120px);
  border: 1px solid #606060;
  margin-top: -1px;
  padding: 16px 10px;
  font-size: 13px;
  letter-spacing: .15em;
}
.studio__table__txt a {
  color: #2aa199;
}
.studio__freearea {
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: .15em;
  padding: 0 20px 20px;
}
.studio__freearea a {
  color: #2aa199;
}
.studio__freearea p {
  margin-bottom: 1em;
}
.studio__freearea em {
  font-style: italic;
}
.studio__freearea strong {
  font-weight: bold;
}
.studio__freearea h1 ,
.studio__freearea h2 {
  font-weight: bold;
  font-size: 18px;
  padding: 6px 10px;
  margin-bottom: 16px;
  background: #00a199;
  color: #fff;
  border-radius: 5px;
}
.studio__freearea h3 {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}
.studio__freearea h4 {
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}
.studio__freearea blockquote {
  background-color: #eee;
  padding: 20px;
  margin-bottom: 20px;
}
.studio__freearea ul ,
.studio__freearea ol {
  padding-left: 20px;
}
.studio__freearea li {
  list-style: disc;
  margin-bottom: 8px;
}
.studio__freearea ol li {
  list-style: auto;
  margin-bottom: 8px;
}

/* ==========================================================================
Component [ grid / button / form / media... ]
========================================================================== */
.container {
  max-width: 100%;
  margin: 70px auto 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}
.container__ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  color: #00a199;
  letter-spacing: .5em;
  z-index: 1;
  text-align: center;
  margin-bottom: 40px;
}
.container__inner {
  max-width: 100%;
  margin: 0 auto;
}
.link {
  color: #00b7b7;
  text-decoration: underline!important;
}

/* lv */
.lv {
  background-image: url(./assets/img/sp/lv_topic.jpg);
  background-size: cover;
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lv__aboutus {
  background-image: url(./assets/img/sp/lv_aboutus.jpg);
}
.lv__program {
  background-image: url(./assets/img/sp/lv_program.jpg);
}
.lv__none {
  background: none;
  align-items: flex-end;
  height: 88px;
}
.lv__txt {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: .5em;
  text-align: center;
}

/* grid */
.grid {
  clear: both;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
}

/* column */
.col-sp-1 { width: 8.33333333%; }
.col-sp-2 { width: 16.66666667%; }
.col-sp-3 { width: 25%; }
.col-sp-4 { width: 33.33333333%; }
.col-sp-5 { width: 41.66666667%; }
.col-sp-6 { width: 50%; }
.col-sp-7 { width: 58.33333333%; }
.col-sp-8 { width: 66.66666667%; }
.col-sp-9 { width: 75%; }
.col-sp-10 { width: 83.33333333%; }
.col-sp-11 { width: 91.66666667%; }
.col-sp-12 { width: 100%; }

/* btn */
.btn__wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}
.btn {
  background-color: #00a199;
  color: #fff;
  text-align: center;
  min-width: 300px;
  padding: 14px 0;
  font-size: 22px;
  letter-spacing: .25em;
  display: inline-block;
}


/* heading */
.heading01 {
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 24px;
  letter-spacing: .5em;
  margin-bottom: 24px;
}
.heading02 {
  text-align: center;
  font-size: 20px;
  letter-spacing: .2em;
  margin-bottom: 40px;
}

/* form */
.form__wrap {
  margin: 70px 20px 0;
}
.form__item {
  width: 100%;
  padding: 6px 0;
  margin-bottom: 24px;
}
.form__item__lead {
  padding: 4px 0;
  font-size: 16px;
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.form__item__lead.hissu p:after {
  content: "*必須";
  font-size: 13px;
  color: #f00;
  margin-left: 6px;
  display: inline-block;
}
.form__item__content {
  vertical-align: top;
}
.input {
  -webkit-appearance: none;
  border: none;
  background: none;
  border-radius: 0;
  border: 1px solid #444;
  padding: 13px 10px;
  box-sizing: border-box;
  font-size: 16px;
}
.form__item__content.select {
  position: relative;
}
.form__item__content.select:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #111;
  line-height: 1;
  width: 10px;
  height: 10px;
  border:2px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 15px;
}
.input__l {
  width: 100%;
}
.input__m {
  width: 200px;
}
.input__s {
  width: 160px;
}
.form__note {
  font-size: .8125rem;
}
.form__btn {
  margin-top: 50px;
  text-align: center;
}
.btn--submit {
  border: none;
  -webkit-appearance: none;
  font-size: 20px;
  padding: 20px 0;
}

.form__wrap .checkbox {
  padding: 5px 0;
  text-align: center;
}
.form__wrap .checkbox input[type=checkbox].checkbox__item{
  display: none;
}
.form__wrap .checkbox label {
  display: inline-block;
}

/* spanの左側にボタンを配置するスペースを作る */
.form__wrap .checkbox .checkbox__item + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.form__wrap .checkbox .checkbox__item + span::after,
.form__wrap .checkbox .checkbox__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #444;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.form__wrap .checkbox .checkbox__item + span::after {
  opacity: 0;
  width: 10px;
  height: 15px;
  transform: rotate(45deg);
  left: 5px;
  border: none;
  border-right: 3px solid #00a199;
  border-bottom: 3px solid #00a199;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.form__wrap .checkbox .checkbox__item:checked + span {
  color: #00a199;
}

.form__wrap .checkbox .checkbox__item:checked + span::after {
  opacity: 1;
}

/* ラジオボタンを隠す */
.form__wrap .radio {
  padding: 5px 0;
}
.form__wrap .radio input[type=radio].radio__item{
  display: none;
}

.form__wrap .radio label {
  display: inline-block;
  font-weight: bold;
}

/* spanの左側にボタンを配置するスペースを作る */
.form__wrap .radio .radio__item + span {
  padding-left: 30px;
  display: inline-block;
  position: relative;
}

/* 各パーツを作成 */
.form__wrap .radio .radio__item + span::after,
.form__wrap .radio .radio__item + span::before {
  content: '';
  display: block;
  position: absolute;
  border: 1px solid #AAAAAA;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
}

/* after上書き */
.form__wrap .radio .radio__item + span::after {
  opacity: 0;
  width: 14px;
  height: 14px;
  top: 6px;
  left: 3px;
  border: none;
  background: #00a199;
}

/*
  checked状態
  文字のcolorとボタンのopacityを変更
*/
.form__wrap .radio .radio__item:checked + span {
  color: #00a199;
}
.form__wrap .radio .radio__item:checked + span::after {
  opacity: 1;
}

.mwform-checkbox-field {
  margin-bottom: 10px;
}
.form__item__course .form__item__content p.u-fc-red {
  padding-left: 2em;
}
.mwform-checkbox-field-text {
  font-size: 14px;
  letter-spacing: .1em;
}

/* pager */
.wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  box-sizing: border-box;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.wp-pagenavi .pages {
  display: none;
}
.wp-pagenavi a ,
.wp-pagenavi span {
  width: 28px;
  padding: 5px 0;
  color: #444;
  display: block;
  font-size: .875rem;
  text-align: center;
  margin-right: 4px;
  font-size: 16px;
}
.wp-pagenavi .last,
.wp-pagenavi .first {
  width: 50px;
}
.wp-pagenavi span.current {
  background-color: #e8e8e8;
}
.pager {
  width: calc(100% - 80px);
  margin: 0 auto;
  position: relative;
  text-align: center;
  font-size: 16px;
  letter-spacing: .2em;
  min-height: 30px;
}
.pager__prev {
  float: left;
}
.pager__back {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pager__next {
  float: right;
}
.pager__prev span,
.pager__next span {
  display: none;
}

/* breadcrumbs */

/* skip */
.skip {
  width: 1px;
  color: #000000;
  font-size: 0.1%;
  line-height: 0.1;
  background-color: #FFFFFF;
  position: absolute;
  left: -3000px;
  z-index: 20000;
}
a.skip {
  background-color: #FFFFFF;
  text-align: center;
  padding: 2px 0;
  top: auto;
}
a.skip:active {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.8;
  top: 0;
  left: 0;
}
a.skip:focus {
  display: block;
  width: 99.99%;
  font-size: 100%;
  line-height: 1.8;
  top: 0;
  left: 0;
}

.txt {
  font-size: 13px;
  line-height: 2.25;
  letter-spacing: .05em;
}


/* トップページ ブログ 2024/12/03追加*/
.brog_date {
  font-size: 14px;
  color: #00a199;
  margin: 10px;
}

.brog_title {
  font-size: 16px;
  margin: 10px;
}

.brog_card.studio__item img {
  width: 100%;
}

/* ブログ一覧の修正 2024/12/03追加 */
.top__blog {
  margin-top: 60px;
}

.blog_cards.top__news__list {
  margin: 0 0 40px;
}

.brog_card.studio__item{
  width: 100%;
  padding: 10px 10px;
  border: 1px solid #bbb;
  text-align: center;
}

.pc_only {
  display: none;
  color: red;
}

.blog__item > a {
  padding: 16px 10px;
  gap:16px
}

.blog__item__thumbnail {
  text-align: center;
}

.blog__item__ttl {
  padding: 16px 16px;
}

.blog_card img {
  width: 100%;
}

.blog_card_text {
  gap: 16px;
}

.brog_date, .brog_title {
  text-align: left;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.date_more {
  padding: 0 16px;
}