@charset "UTF-8";
/*================================================================
ALL
================================================================*/
html {
  /* 自動調整を無効にし、常に 100% のサイズで表示する */
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 0; /* 丸みを消す場合 */
}

button, input, textarea, select {
  font: inherit; /* ブラウザ固有のフォントを継承させる */
  border: none; /* 枠線を消す */
  outline: none; /* フォーカス時の枠線を調整 */
  background: none; /* 背景をリセット */
  padding: 0; /* 余白をリセット */
}

body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "Osaka", sans-serif;
}
body ul {
  padding-left: 0;
  margin-bottom: 0;
}
body li {
  list-style: none;
}
body .flexbox {
  display: flex;
  justify-content: space-between;
}
body a {
  text-decoration: none;
  color: black;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
}
body .link-button {
  color: red;
  border: solid 1px red;
  padding: 0 3%;
  border-radius: 30px;
  margin: 50px auto 0 auto;
  line-height: 2.5;
  font-weight: bold;
  font-size: 18px;
}
body .pc-none {
  display: none !important;
}
body .sp-none {
  display: block !important;
}
body .position {
  position: relative;
}
body .button {
  width: 60%;
  margin: 0 auto;
  text-align: center;
  line-height: 4;
  background: orange;
  color: white;
  font-weight: bold;
}
body .button2 {
  width: 80%;
  margin: 50px auto;
  text-align: center;
  color: white;
  font-size: 18px;
  line-height: 4;
  font-weight: bold;
}
body .mabono {
  margin-bottom: 0 !important;
}
body .clearfix::after {
  clear: both;
  content: "";
  display: block;
}
body .swiper-wrapper {
  width: 100%;
  height: 300px;
}
body .swiper-wrapper .swiper-slide {
  color: #ffffff;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: 300px;
}
body iframe {
  width: 55%;
}
@media screen and (max-width: 768px) {
  body iframe {
    width: 100%;
  }
}
body hr {
  margin: 100px 0;
}
@media screen and (max-width: 768px) {
  body hr {
    margin: 0 !important;
  }
}

@media screen and (max-width: 768px) {
  body h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
  body .flexbox {
    display: block;
  }
  body .sp-flexbox {
    display: flex;
    justify-content: space-between;
  }
  body .sp-flexbox > div {
    width: 48%;
  }
  body .button {
    margin-top: 40px;
  }
  body .button2 {
    font-size: 16px;
    margin-top: 40px;
    width: 60%;
    line-height: 4;
  }
  body .button3 {
    position: unset;
  }
  body .left-content,
  body .left-content2,
  body .right-content,
  body .right-content2 {
    width: 100%;
  }
  body .sp-none {
    display: none !important;
  }
  body .pc-none {
    display: block !important;
  }
  body .link-button {
    font-size: 14px;
    padding: 0;
    width: 80%;
    text-align: center;
    line-height: 3;
    margin-bottom: 30px;
  }
}
/*================================================================
header
================================================================*/
.header-inner {
  background: black;
  color: white;
}
.header-inner__nav {
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  padding: 10px 40px;
  margin: 0 auto 30px auto;
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 768px) {
  .header-inner__nav {
    padding: 10px 20px;
    transform: translate(-50%, 0);
    left: 50%;
    top: 0;
    display: flex !important;
  }
}
@media screen and (max-width: 768px) {
  .header-inner__nav h1 {
    width: 20%;
  }
}
.header-inner__nav ul {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .header-inner__nav ul {
    width: 100%;
    display: none;
  }
}
.header-inner__nav ul li {
  width: 15%;
  align-content: center;
  font-weight: bold;
}
.header-inner__nav ul li:last-child {
  background: red;
  border-radius: 50px;
}
.header-inner__nav ul li:last-child a {
  color: white;
}
.header-inner__nav ul li a {
  display: block;
  width: 100%;
  text-align: center;
}
.header-inner__nav ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  background: #000000;
  bottom: 4px; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.header-inner__nav ul li a:hover::after {
  visibility: visible;
  bottom: 12px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .header-inner__content {
    margin-top: 4rem;
  }
}
.header-inner__content .flexbox {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox {
    display: flex;
  }
}
.header-inner__content .flexbox .left {
  width: 12%;
  padding-top: 10%;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .left {
    padding-top: 25%;
  }
}
.header-inner__content .flexbox .center {
  width: 78%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .center {
    height: 480px;
  }
}
.header-inner__content .flexbox .center video {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .center video {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
    min-width: 100%;
    min-height: 100%;
  }
}
.header-inner__content .flexbox .center p {
  position: absolute;
  bottom: 5%;
  left: -13%;
  font-size: 65px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .center p {
    font-size: 28px;
    bottom: 16%;
  }
}
.header-inner__content .flexbox .center p span {
  font-size: 100px;
  letter-spacing: 20px;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .center p span {
    font-size: 50px;
  }
}
.header-inner__content .flexbox .center img {
  position: absolute;
  bottom: 5%;
  right: 5%;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .center img {
    width: 35%;
    top: 20%;
    right: 5%;
  }
}
.header-inner__content .flexbox .right {
  width: 2%;
  padding-top: 10%;
}
@media screen and (max-width: 768px) {
  .header-inner__content .flexbox .right {
    width: 4%;
    padding-top: 25%;
  }
}
.header-inner__content__text {
  font-size: 30px;
  font-weight: bold;
  line-height: 5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .header-inner__content__text {
    font-size: 14px;
    line-height: normal;
    width: 75%;
    margin: 0 auto;
    padding: 20px 0;
  }
}

/*================================================================
MAIN
================================================================*/
main {
  background: black;
  color: white;
}
main .mainvisual .main-visual img {
  width: 100%;
}
main .container {
  width: 100%;
}
main .container .main-content {
  padding: 100px 80px;
}
@media screen and (max-width: 768px) {
  main .container .main-content {
    padding: 30px;
  }
}
main .container .main-content__title-box__mini-title {
  margin-top: 20px;
  display: block;
  font-weight: bold;
}
main .container .main-content__title-box__text {
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  main .container .main-content__title-box__text {
    font-size: 14px;
    margin: 30px 0;
  }
}
main .red {
  background: black;
}
main .red .main-content {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  main .red .main-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main .red .main-content .flexbox figure {
  width: 30% !important;
}
@media screen and (max-width: 768px) {
  main .red .main-content .flexbox figure {
    width: 100% !important;
  }
}
main .white {
  background: white;
  color: white;
}
main .white .main-content {
  padding: 60px;
}
@media screen and (max-width: 768px) {
  main .white .main-content figure {
    margin-bottom: 20px;
  }
}
main .news {
  background: white;
  color: white;
}
main .news .left-content {
  width: 30%;
  color: black;
}
@media screen and (max-width: 768px) {
  main .news .left-content {
    width: 100%;
  }
}
main .news .left-content img {
  margin: 0;
}
main .news .right-content {
  width: 67%;
}
@media screen and (max-width: 768px) {
  main .news .right-content {
    width: 100%;
  }
}
main .news .news-list__item {
  border-bottom: dotted 1px grey;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  main .news .news-list__item {
    padding: 5px 0;
  }
}
main .news .news-list__item:last-child {
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  main .news .news-list__item:last-child {
    margin-bottom: 0;
  }
}
main .news .news-list__item:first-child {
  border-top: dotted 1px grey;
}
main .news .news-list__item a {
  display: block;
  width: 100%;
}
main .news .news-list__item span {
  display: inline-block;
  font-size: 14px;
  color: grey;
  line-height: 2;
  width: 13%;
}
@media screen and (max-width: 768px) {
  main .news .news-list__item span {
    font-size: 12px;
    width: 25%;
    display: block;
  }
}
main .news .news-list__item p {
  font-size: 18px;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  main .news .news-list__item p {
    font-size: 14px;
    line-height: normal;
  }
}
@media screen and (max-width: 768px) {
  main .about .main-content__title-box {
    width: 50%;
    margin: 0 0 0 auto;
  }
}
main .about .main-content__title-box img {
  margin: 0 0 0 auto;
}
main .about .main-content__title-box__mini-title {
  text-align: right;
}
main .about .main-content__title-box__text {
  margin-bottom: 80px;
}
main .about .flexbox {
  justify-content: flex-start;
  margin-bottom: 80px;
}
main .about .flexbox .left-content {
  width: 50%;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  main .about .flexbox .left-content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  main .about .flexbox .left-content img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
main .about .flexbox .right-content {
  width: 45%;
}
@media screen and (max-width: 768px) {
  main .about .flexbox .right-content {
    width: 100%;
    margin-top: -40px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  main .about .flexbox .right-content {
    margin-top: 0;
  }
}
main .about .flexbox .right-content p {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .about .flexbox .right-content p {
    font-size: 22px;
  }
}
main .lesson {
  background: white;
  color: white;
}
main .lesson p, main .lesson span {
  color: black;
}
main .lesson .main-content__title-box__text {
  width: 58%;
}
@media screen and (max-width: 768px) {
  main .lesson .main-content__title-box__text {
    width: 100%;
    font-size: 14px;
  }
}
main .lesson .flexbox {
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .lesson .flexbox {
    padding-bottom: 0;
  }
}
main .lesson .flexbox div {
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  main .lesson .flexbox div {
    width: 100%;
    margin-bottom: 30px;
  }
}
main .lesson .flexbox div .abso {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 100%;
}
main .lesson .flexbox div .abso p {
  color: white;
  font-size: 14px;
  margin-top: 10px;
}
main .price .main-content__title-box {
  text-align: right;
}
main .price .main-content__title-box img {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  main .price .main-content__title-box img {
    width: 50%;
  }
}
main .price__img-box img {
  width: 100%;
}
main .price__content {
  text-align: center;
}
main .price__content img {
  margin: 0 auto 40px auto;
}
main .price__content .pc-none {
  margin-top: 40px;
}
main .price__content__box {
  border: solid 2px red;
  padding-bottom: 30px;
}
main .price__content__box h3 {
  background: red;
  font-size: 28px;
  margin-bottom: 30px;
  padding: 15px 0;
}
main .price__content__box .h3-minitext {
  display: block;
  font-size: 14px;
  font-weight: normal;
}
main .price__content__box .text {
  font-weight: normal;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  main .price__content__box .text {
    padding: 0 10px;
  }
}
main .price__content__box .price-data {
  font-size: 43px;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main .price__content__box .price-data {
    font-size: 32px;
  }
}
main .price__content__box .price-data-minitext {
  display: block;
  font-size: 14px;
  border: solid 1px white;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 15px;
  margin: 0 auto;
}
main .price__content__flexbox {
  margin: 50px 0 100px 0;
}
@media screen and (max-width: 768px) {
  main .price__content__flexbox {
    margin-bottom: 40px;
  }
}
main .price__content__flexbox__item {
  width: 31.5%;
}
@media screen and (max-width: 768px) {
  main .price__content__flexbox__item {
    width: 100%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  main .price__content__flexbox__item img {
    display: none;
  }
}
main .trial {
  color: black;
  background: white;
}
main .trial .flexbox__left-content {
  width: 30%;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox__left-content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  main .trial .flexbox__left-content h2 {
    width: 40%;
  }
}
main .trial .flexbox__right-content {
  width: 66%;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox__right-content {
    width: 100%;
  }
}
main .trial .flexbox2 {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  border-bottom: solid 1px grey;
  padding-bottom: 50px;
}
main .trial .flexbox2__left {
  width: 44%;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__left {
    width: 34%;
    margin-right: 0;
  }
}
main .trial .flexbox2__right {
  width: 52%;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right {
    width: 62%;
  }
}
main .trial .flexbox2__right div {
  display: flex;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right div {
    margin-bottom: 10px;
    height: 20px;
  }
}
main .trial .flexbox2__right div img {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right div img {
    margin-right: 5px;
  }
}
main .trial .flexbox2__right div span {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right div span {
    font-size: 12px;
    line-height: 2;
  }
}
main .trial .flexbox2__right__text {
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right__text {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  main .trial .flexbox2__right__sub-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  main .trial .flexbox2__right__sub-text {
    font-size: 12px;
  }
}
main .contact .flexbox .right-content {
  width: 55%;
}
@media screen and (max-width: 768px) {
  main .contact .flexbox .right-content {
    width: 100%;
    margin: 35px 0;
  }
}
main .contact .flexbox .right-content div {
  text-align: center;
  border: solid 1px white;
  padding: 30px 0;
  margin-bottom: 20px;
}
main .contact .flexbox .right-content div .text {
  font-size: 32px;
  font-weight: bold;
}
main .contact .flexbox .right-content div a {
  color: red;
  border: solid 1px red;
  border-radius: 30px;
  line-height: 2.5;
  padding: 0 35px;
  margin: 10px auto 10px;
}
main .contact .flexbox .right-content div span {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content {
    padding: 20px 10px;
    overflow-x: scroll;
  }
}
main .banner-area .main-content .flexbox {
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content .flexbox {
    width: 1000px;
    display: flex !important;
  }
}
main .banner-area .main-content .flexbox figure {
  width: 45%;
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content .flexbox figure {
    width: 100%;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content .flexbox figure:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content .flexbox2 {
    width: 100%;
    display: block !important;
  }
}
main .banner-area .main-content .flexbox2 figure {
  width: 45%;
}
@media screen and (max-width: 768px) {
  main .banner-area .main-content .flexbox2 figure {
    width: 100%;
  }
}
main .banner-area .main-content .mano {
  margin: 0;
}

@media screen and (max-width: 768px) {
  main .flexbox {
    display: block;
  }
}
/*================================================================
FOOTER
================================================================*/
footer .footer-container {
  padding: 50px 80px;
}
@media screen and (max-width: 768px) {
  footer .footer-container {
    padding: 30px;
  }
}
footer .footer-container__title-box {
  justify-content: start;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer-container__title-box {
    display: flex;
  }
}
footer .footer-container__title-box h3 {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  footer .footer-container__title-box h3 {
    width: 25%;
  }
}
footer .footer-container__title-box h3 {
  margin-right: 20px;
}
footer .footer-container__title-box h3 img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  footer .footer-container__title-box h3 img {
    margin: 10px 0;
    display: block;
  }
}
footer .footer-container__title-box__text {
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  footer .footer-container__title-box__text {
    font-size: 12px;
    font-weight: bold;
    width: 80%;
  }
}
footer .footer-container__content {
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  footer .footer-container__content {
    display: block;
  }
}
footer .footer-container__content__list {
  margin-right: 80px;
}
footer .footer-container__content__list p {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer-container__content__list p {
    margin-bottom: 30px;
    font-size: 18px;
  }
}
footer .footer-container__content__list__item {
  font-weight: bold;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  footer .footer-container__content__list__item {
    font-size: 12px;
    line-height: 3;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-container__content__list__item a {
    display: block;
  }
}
footer .copylight {
  line-height: 3;
  text-align: center;
  display: block;
  font-size: 12px;
}

/*================================================================
page-ALL
================================================================*/
.page {
  background: black;
}
.page .header-inner nav {
  margin-bottom: 0;
}
.page footer {
  background: white;
  margin-top: 50px;
}
.page .main-visual {
  position: relative;
  margin-bottom: 130px;
}
@media screen and (max-width: 768px) {
  .page .main-visual {
    height: 400px;
    margin-bottom: 50px;
  }
}
.page .main-visual figure img {
  max-width: 100%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .main-visual figure img {
    height: 100%;
    max-height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.page .main-visual .title-img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: -moz-fit-content;
  width: fit-content;
}
.page .main-visual .title-img img {
  border-radius: 0 !important;
}
@media screen and (max-width: 768px) {
  .page .height0 {
    height: 0 !important;
    margin-bottom: 30% !important;
  }
}
.page section {
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page section {
    width: 100%;
    padding: 30px 20px;
  }
}
.page .page-title {
  margin-bottom: 50px;
  font-family: monospace;
}
@media screen and (max-width: 768px) {
  .page .page-title {
    margin-bottom: 0;
  }
}
.page .caution {
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  .page .caution {
    font-size: 10px;
  }
}

/*================================================================
page - NEWS
================================================================*/
@media screen and (max-width: 768px) {
  .news h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
  }
}
.news h2 img {
  margin: 0 auto;
}
.news__list__item {
  float: left;
  width: 48%;
  padding: 2% 0;
  margin: 0 4% 0 0;
  border-bottom: solid red 1px;
}
@media screen and (max-width: 768px) {
  .news__list__item {
    float: none;
    width: 100%;
    display: flex !important;
    margin: 0;
    padding: 20px 0;
  }
}
.news__list__item:first-child {
  border-top: solid red 1px;
}
.news__list__item:nth-child(2) {
  border-top: solid red 1px;
}
@media screen and (max-width: 768px) {
  .news__list__item:nth-child(2) {
    border-top: none;
  }
}
.news__list__item:nth-child(2n) {
  margin: 0;
}
.news__list__item__textbox {
  margin-left: 20px;
  position: relative;
  width: 70%;
}
.news__list__item__textbox__title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .news__list__item__textbox__title {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.news__list__item__textbox__text {
  font-size: 13px;
}
@media screen and (max-width: 768px) {
  .news__list__item__textbox__text {
    font-size: 10px;
  }
}
.news__list__item__textbox__day {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .news__list__item__textbox__day {
    font-size: 10px;
  }
}
.news__list__item__img {
  width: 27%;
}
.news__list__item__img img {
  width: 100%;
}
.news__banner h2 {
  margin-bottom: 50px;
}
.news__banner__list {
  justify-content: space-around !important;
}
.news__banner__list__item {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .news__banner__list__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .news__banner__list__item:nth-child(2n) {
    margin-top: 30px;
  }
}
.news__banner .sp-none {
  margin-bottom: 50px;
}

/*================================================================
page - studio
================================================================*/
.studio__maintext {
  text-align: center;
}
.studio__maintext h2 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .studio__maintext h2 {
    font-size: 26px;
  }
}
.studio__maintext__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .studio__maintext__title {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.studio__maintext__text {
  width: 60%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .studio__maintext__text {
    width: 100%;
    font-size: 14px;
  }
}
.studio__gallery__list__item {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .studio__gallery__list__item {
    width: 100%;
  }
}
.studio__gallery__list__item img {
  width: 100%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .studio__access__content {
    display: block;
  }
}
.studio__access__content figure {
  width: 45%;
}
@media screen and (max-width: 768px) {
  .studio__access__content figure {
    width: 100%;
    margin-bottom: 30px;
  }
}
.studio__access__content__textbox {
  width: 42%;
}
@media screen and (max-width: 768px) {
  .studio__access__content__textbox {
    width: 100%;
  }
}
.studio__access__content__textbox__title {
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .studio__access__content__textbox__title {
    font-size: 24px;
  }
}
.studio__access__content__textbox__text {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .studio__access__content__textbox__text {
    font-size: 12px;
  }
}
.studio__access__content__textbox__sub-text {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .studio__access__content__textbox__sub-text {
    font-size: 12px;
  }
}
.studio__access__content__textbox__sub-text span {
  display: block;
  font-size: 11px;
  color: darkgray;
  margin-top: 10px;
}
.studio__access__content__textbox__sub-title {
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .studio__access__content__textbox__sub-title {
    font-size: 16px;
  }
}

/*================================================================
page - schedule
================================================================*/
.schedule__lesson .scroll-content {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .schedule__lesson .scroll-content {
    overflow-y: scroll;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .schedule__lesson__list {
    width: 1000px;
    display: flex !important;
  }
}
.schedule__lesson__list__item {
  width: calc(14.2857142857% - 30px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__list__item {
    width: calc(14.2857142857% - 15px);
  }
}
.schedule__lesson__list__item__title {
  background: red;
  line-height: 2.5;
  font-weight: bold;
}
.schedule__lesson__list__item__text-box div {
  padding: 10px;
  margin-top: 10px;
  border: solid 1px red;
}
.schedule__lesson__list__item__text-box__title {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__list__item__text-box__title {
    font-size: 13px;
  }
}
.schedule__lesson__list__item__text-box span {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__list__item__text-box span {
    font-size: 10px;
  }
}
.schedule__lesson__list__item__text-box__text {
  font-size: 16px;
  font-family: monospace;
}
.schedule__lesson__category {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__category {
    margin-top: 50px;
  }
}
.schedule__lesson__category__item {
  width: 31%;
  padding: 2%;
  float: left;
  border: solid 1px red;
  margin-right: 3%;
  text-align: center;
  height: 350px;
}
.schedule__lesson__category__item:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__category__item {
    width: 100%;
    float: none;
    margin-bottom: 30px;
    padding: 5%;
    height: auto;
  }
}
.schedule__lesson__category__item figure {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px auto;
}
.schedule__lesson__category__text {
  margin-bottom: 10px;
}
.schedule__lesson__category__sub-text {
  margin-top: 30px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .schedule__lesson__category__sub-text {
    font-size: 14px;
  }
}
.schedule__content__box {
  text-align: center;
  margin-bottom: 20px;
}
.schedule__content__box__title {
  font-weight: bold;
  font-size: 18px;
  line-height: 3;
}
.schedule__content__box__text {
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .schedule__content__box__text {
    font-size: 12px;
    width: 100%;
  }
}
.schedule__instructor__list__item {
  float: left;
  width: 25%;
  padding: 2%;
}
@media screen and (max-width: 768px) {
  .schedule__instructor__list__item {
    width: 50%;
    height: 230px;
  }
}
.schedule__instructor__list__item__title {
  font-weight: bold;
  color: red;
  font-size: 24px;
  font-family: monospace;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .schedule__instructor__list__item__title {
    font-size: 16px;
  }
}
.schedule__instructor__list__item__text {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .schedule__instructor__list__item__text {
    font-size: 10px;
  }
}

/*================================================================
page - pre
================================================================*/
.pre__section__content {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}
.pre__section__content h3 {
  line-height: 2;
  background: red;
  color: white;
  font-size: 25px;
}
.pre__section__content__item {
  padding: 50px 0;
}
.pre__section__content__item__title {
  font-weight: bold;
  line-height: 2;
  margin-bottom: 10px;
}
.pre__section__content__item__title2 {
  font-size: 28px;
  text-align: center;
}
.pre__section__content__item__text {
  font-size: 14px;
  color: darkgrey;
}
.pre__section__content__item__text2 {
  font-size: 18px;
  text-align: center;
}
.pre__section__content__item__text3 {
  line-height: 3;
}
.pre__section__content__item img {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.pre__section__content__item .flexbox, .pre__section__content__item .flexbox2 {
  padding: 40px 0 0;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox, .pre__section__content__item .flexbox2 {
    width: 100%;
    margin: 0;
  }
}
.pre__section__content__item .flexbox__item, .pre__section__content__item .flexbox2__item {
  width: 21%;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox__item, .pre__section__content__item .flexbox2__item {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 25px;
  }
}
.pre__section__content__item .flexbox__item p, .pre__section__content__item .flexbox2__item p {
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox__item p, .pre__section__content__item .flexbox2__item p {
    line-height: 2;
  }
}
.pre__section__content__item .flexbox2 {
  justify-content: space-evenly;
  display: flex;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox2 {
    display: block;
  }
}
.pre__section__content__item .flexbox2__item {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox2__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .pre__section__content__item .flexbox2__item figure {
    height: 200px;
  }
}
.pre__section__content__item .flexbox2__item figure img {
  max-height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.pre__section__content__item2 {
  border: solid 1px red;
}
@media screen and (max-width: 768px) {
  .pre__section__content__item2 {
    padding: 50px 20px;
  }
}
.pre__section__content__line {
  position: relative;
}

/*================================================================
page - about
================================================================*/
.about .number {
  margin: 30px;
}
.about .number img {
  margin: 0 auto;
}
.about__section .span1 {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 3;
  font-weight: normal;
}
.about__section__content {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .about__section__content {
    margin-bottom: 50px;
  }
}
.about__section__content h3 {
  text-align: center;
  font-size: 38px;
}
@media screen and (max-width: 768px) {
  .about__section__content h3 {
    font-size: 29px;
  }
}
.about__section__content__subtitle {
  width: 50%;
  line-height: 2.5;
  border: solid 1px white;
  border-radius: 50px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about__section__content__subtitle {
    font-size: 18px;
    width: 100%;
    padding: 10px 0;
    line-height: 1.5;
  }
}
.about__section__content__mainv img {
  margin: 30px auto 50px auto;
}
.about__section__content .flexbox {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .about__section__content .flexbox {
    margin-bottom: 30px;
  }
}
.about__section__content .about-flexbox-1 .flexbox__item {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-1 .flexbox__item {
    width: 100%;
    margin-top: 30px;
  }
}
.about__section__content .about-flexbox-1 .flexbox__item h4 {
  font-size: 30px;
  text-align: center;
  background: red;
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-1 .flexbox__item h4 {
    font-size: 20px;
  }
}
.about__section__content .about-flexbox-1 .flexbox__item p {
  font-size: 28px;
  line-height: 3;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-1 .flexbox__item p {
    font-size: 18px;
  }
}
.about__section__content .about-flexbox-2 {
  margin: 70px 0;
}
.about__section__content .about-flexbox-2__item {
  width: 49%;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-2__item {
    width: 100%;
    margin-bottom: 50px;
  }
}
.about__section__content .about-flexbox-2__item__title {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-2__item__title {
    margin-bottom: 20px;
  }
}
.about__section__content .about-flexbox-2__item__content {
  width: 65%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-2__item__content {
    width: 100%;
  }
}
.about__section__content .about-flexbox-2__item__content p {
  font-weight: bold;
  font-size: 20px;
}
.about__section__content .about-flexbox-2__item__content span {
  display: block;
  margin-top: 20px;
  color: darkgrey;
  font-size: 15px;
}
.about__section__content .about-flexbox-2__item__content img {
  margin-bottom: 20px;
}
.about__section__content .about-flexbox-3 {
  margin: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-3 {
    margin: 20px 0 0;
  }
}
.about__section__content .about-flexbox-3 p {
  width: 60%;
  font-size: 20px;
  font-weight: bold;
  margin: auto 0;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-3 p {
    width: 90%;
    margin: 20px auto auto;
    font-size: 18px;
  }
}
.about__section__content .about-flexbox-4 {
  margin: 50px 0 0;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-4 {
    margin: 20px 0 0;
  }
}
.about__section__content .about-flexbox-4 div {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-4 div {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .about__section__content .about-flexbox-5 figure {
    margin-bottom: 40px;
  }
}
.about__section__content .contact-box {
  margin-top: 50px;
}
.about__section__content .contact-box__item {
  width: 48%;
  text-align: center;
  border: solid 1px white;
  padding: 30px 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .about__section__content .contact-box__item {
    width: 100%;
  }
}
.about__section__content .contact-box__item .text {
  font-size: 32px;
  font-weight: bold;
}
.about__section__content .contact-box__item a {
  color: red;
  border: solid 1px red;
  border-radius: 30px;
  line-height: 2.5;
  padding: 0 35px;
  margin: 10px auto 10px;
}
.about__section__content .contact-box__item span {
  font-size: 14px;
}
.about__section .redbox {
  padding: 50px 80px;
  border: solid 1px red;
}
@media screen and (max-width: 768px) {
  .about__section .redbox {
    padding: 30px 20px;
  }
}
.about__section .redbox figure img {
  margin: 0 auto;
}
.about__section .redbox .clearfix {
  margin: 20px auto 0;
}
.about__section .redbox .clearfix div {
  float: left;
  width: 33.3333%;
  padding: 1%;
}
@media screen and (max-width: 768px) {
  .about__section .redbox .clearfix div {
    float: none;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.about__section .redbox__content figure {
  position: relative;
}
.about__section .redbox__content__item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.about__section .redbox__content__item__spantitle {
  text-align: center;
  font-weight: bold;
  display: block;
  font-size: 26px;
}
.about__section .redbox__content__item__spantext {
  padding: 10px 20px;
  display: block;
  font-size: 14px;
  text-align: center;
}
.about__section .redbox__title {
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 2;
  border-bottom: solid 1px red;
}
@media screen and (max-width: 768px) {
  .about__section .redbox__title {
    font-size: 25px;
    line-height: 1.5;
    text-decoration: underline;
    text-decoration-color: red;
    border-bottom: none;
  }
}
.about__section .redbox a {
  color: red;
  display: block;
  margin: 50px auto 0;
  border: solid 1px red;
  border-radius: 40px;
  padding: 0 30px;
  line-height: 2.5;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about__section .redbox a {
    margin-top: 30px;
  }
}

/*================================================================
page - 会社概要
================================================================*/
.corp h2 {
  font-weight: bold;
  color: red;
  font-size: 65px;
  font-family: monospace;
  text-align: center;
}
.corp .minitext {
  display: block;
  font-size: 18px;
  color: white;
}
.corp__content {
  margin: 50px 0;
}
.corp__content__textbox {
  float: left;
  width: 50%;
  padding: 2.5%;
  height: 160px;
}
@media screen and (max-width: 768px) {
  .corp__content__textbox {
    float: none;
    width: 100%;
  }
}
.corp__content__textbox__title {
  font-weight: bold;
  border-bottom: solid 1px red;
  margin-bottom: 20px;
  font-size: 20px;
}
.corp__content__textbox__text {
  font-size: 16px;
}/*# sourceMappingURL=style.css.map */