@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  overflow-x: hidden;
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

body {
  overflow-x: hidden;
  background-color: #ffffff;
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.js-fadeTrigger,
.js-fadeTrigger2 {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.fadeOff {
  -webkit-animation-name: fadeOffAnime;
  animation-name: fadeOffAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeOffAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}
@keyframes fadeOffAnime {
  from {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
}
.fadeUp2 {
  -webkit-animation-name: fadeUpAnime2;
  animation-name: fadeUpAnime2;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.fadeOff2 {
  -webkit-animation-name: fadeOffAnime2;
  animation-name: fadeOffAnime2;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

@-webkit-keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

@keyframes fadeUpAnime2 {
  from {
    opacity: 0;
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}
@-webkit-keyframes fadeOffAnime2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
}
@keyframes fadeOffAnime2 {
  from {
    opacity: 1;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate(-50%, 100px);
    transform: translate(-50%, 100px);
  }
}
/* overflow: hidden; を削除 */
.js-fadeTrigger,
.fadeUp,
.fadeOff {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 新しいアニメーションクラス */
.img-fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-fadeOff {
  -webkit-animation-name: fadeOffAnime;
  animation-name: fadeOffAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.breadcrumb {
  display: none;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    display: block;
    font-size: 0.875rem;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    line-height: 2.1428571429;
    letter-spacing: 0.001em;
    color: #949494;
    max-width: 81.25rem;
    padding: 0.6875rem 1.5625rem 0;
    margin-right: auto;
    margin-left: auto;
  }
}

.section-title1 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
@media screen and (min-width: 768px) {
  .section-title1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.section-title1__main {
  font-size: 27px;
  font-size: 1.6875rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.001em;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  color: #141414;
}
@media screen and (min-width: 768px) {
  .section-title1__main {
    font-size: 3.75rem;
  }
}

.section-title1__main::before {
  content: "";
  display: inline-block;
  width: 21px;
  width: 1.3125rem;
  aspect-ratio: 1/1;
  background-image: url(../img/square1.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -5px;
  top: -0.3125rem;
  left: -15px;
  left: -0.9375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section-title1__main::before {
    width: 2.875rem;
    top: -1.375rem;
    left: -1.125rem;
  }
}

.section-title1__main::after {
  content: "";
  display: inline-block;
  width: 122px;
  width: 7.625rem;
  height: 77px;
  height: 4.8125rem;
  background-image: url(../img/dot-gray-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -103%;
  right: -68%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section-title1__main::after {
    background-image: url(../img/dot.png);
    width: 15.75rem;
    height: 10.875rem;
    top: -54%;
    right: -58%;
  }
}

.section-title2 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .section-title2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.section-title2__main {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Anton", sans-serif;
  position: relative;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .section-title2__main {
    font-size: 6.6875rem;
  }
}

.section-title2__main::before {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  aspect-ratio: 1/1;
  background-image: url(../img/square1.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: -16px;
  left: -1rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section-title2__main::before {
    width: 3.3125rem;
    top: -1.5rem;
    left: -1.5625rem;
  }
}

.section-title2__sub {
  margin-left: 2px;
  margin-left: 0.125rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .section-title2__sub {
    font-size: 1.875rem;
    margin-right: 0;
    margin-left: auto;
  }
}

.section-title2::before {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  aspect-ratio: 1/1;
  background-image: url(../img/square1.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -20px;
  top: -1.25rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .section-title2::before {
    width: 3.5625rem;
    top: -1.625rem;
    left: -0.75rem;
  }
}

.section-title3 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 35px;
  padding: 0 2.1875rem;
}
@media screen and (min-width: 768px) {
  .section-title3 {
    padding: 0;
  }
}

.section-title3__main {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
  font-family: "Anton", sans-serif;
  position: relative;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .section-title3__main {
    line-height: 1.125;
    font-size: 5rem;
    padding: 0;
  }
}

.section-title3__main span {
  color: #c90000;
}

.section-title3__main::before {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  aspect-ratio: 1/1;
  background-image: url(../img/square1.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -10px;
  top: -0.625rem;
  left: -15px;
  left: -0.9375rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .section-title3__main::before {
    width: 3.5625rem;
    top: -1.375rem;
    left: -2.1875rem;
  }
}

.section-title3__sub {
  margin-left: 2px;
  margin-left: 0.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 900;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: -0.06em;
  color: #c90000;
}
@media screen and (min-width: 768px) {
  .section-title3__sub {
    font-size: 1.375rem;
    font-weight: 500;
    margin-right: auto;
    margin-left: 0;
  }
}

.btn {
  overflow: visible;
}

.btn a {
  display: inline-block;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  border-radius: 100px;
  box-sizing: border-box;
  background: #c90000;
  color: #fff;
  padding: 16px 10px 16px 36px;
  padding: 1rem 0.625rem 1rem 2.25rem;
  letter-spacing: 0.01em;
  text-align: left;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.001em;
  -webkit-box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.35);
  box-shadow: 2px 3px 10px rgba(0, 0, 0, 0.35);
}
@media screen and (min-width: 768px) {
  .btn a {
    width: 28.75rem;
    font-size: 1.25rem;
    padding: 1.5625rem 0.625rem 1.5625rem 4.125rem;
  }
}

.btn a::after {
  display: block;
  content: "";
  position: absolute;
  right: 12px;
  right: 0.75rem;
  top: 50%;
  margin-top: -20px;
  margin-top: -1.25rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background: url(../img/arrow-red.png) no-repeat center;
  background-size: 1.1875rem 1.125rem;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .btn a::after {
    right: 1.8125rem;
    background-size: 1.4375rem 1.4375rem;
  }
}

.btn a span {
  display: block;
  position: relative;
}

.btn a span::before {
  display: block;
  content: "";
  position: absolute;
  right: -1px;
  right: -0.0625rem;
  top: 50%;
  margin-top: -20px;
  margin-top: -1.25rem;
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.5rem 0.875rem;
  border-radius: 100%;
  -webkit-transition: background-color 0.3s ease, background-image 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, background-image 0.3s ease,
    -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease,
    background-image 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease,
    background-image 0.3s ease, -webkit-transform 0.3s ease;
  /* 背景画像の変更にもアニメーションを適用 */
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  opacity: 1;
  -webkit-transform: scale(0);
  transform: scale(0);
  /* 初期状態では縮小して表示しない */
  background-color: #fff;
  /* 初期状態の背景色は白 */
  border: 2px solid #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .btn a span::before {
    right: 1.5%;
    top: 10%;
    width: 3.75rem;
    height: 3.75rem;
  }
}

.btn a span::after {
  display: block;
  content: "";
  position: absolute;
  right: -3px;
  right: -0.1875rem;
  top: 55%;
  margin-top: -23px;
  margin-top: -1.4375rem;
  width: 44px;
  width: 2.75rem;
  height: 44px;
  height: 2.75rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 0.5rem 0.875rem;
  border-radius: 100%;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-image: url(../img/arrow-white.png);
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .btn a span::after {
    right: 1.5%;
    top: 21%;
    width: 3.75rem;
    height: 3.75rem;
  }
}

.btn a span::before {
  opacity: 1;
  /* 初期状態で不透明 */
  -webkit-transform: scale(0);
  transform: scale(0);
  /* 初期状態では縮小して表示しない */
  background-color: #fff;
  /* 初期状態の背景色は白 */
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease;
  transition: transform 0.3s ease, background-color 0.3s ease,
    -webkit-transform 0.3s ease;
  /* 両方の変化にアニメーションを適用 */
}

.btn a:hover span::before,
.btn a.hover-effect span::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  /* ホバー時に元のサイズに拡大 */
  background-color: rgb(201, 0, 0);
  /* 背景色を赤に変更（透明度100%） */
}

.btn a:hover::after,
.btn a.hover-effect::after {
  background-image: url(../img/arrow-white.png);
  /* ホバー時の背景画像に変更 */
  background-color: transparent;
  /* 念のため背景色を透明に設定 */
}
@media screen and (min-width: 768px) {
  .btn a:hover::after,
  .btn a.hover-effect::after {
    right: 1.8125rem;
    background-size: 1.4375rem 1.4375rem;
  }
}

.strength__number {
  display: block;
  margin-right: auto;
  margin-left: auto;
  width: 106px;
  width: 6.625rem;
  height: auto;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
@media screen and (min-width: 768px) {
  .strength__number {
    margin-left: 0;
    width: 14.375rem;
  }
}

.strength__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.5909090909;
  letter-spacing: -0.04em;
  margin-top: -14px;
  margin-top: -0.875rem;
  color: #ffffff;
}
@media screen and (min-width: 500px) {
  .strength__caption {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .strength__caption {
    font-size: 2.625rem;
    margin-top: -2.75rem;
    padding-left: 1.4375rem;
    line-height: 1.5416666667;
  }
}
@media screen and (min-width: 1280px) {
  .strength__caption {
    font-size: 3rem;
  }
}

.strength__img-sp {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 10px;
  margin-top: 0.625rem;
}

.strength__img-pc {
  position: relative;
  z-index: 1;
}

.strength__img2-sp {
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.strength__img2-sp::before {
  content: "";
  display: inline-block;
  width: 36.77%;
  aspect-ratio: 114/92;
  background-image: url(../img/index/dot-sp.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -24%;
  right: -21%;
  z-index: -1;
}

.strength__img2-pc {
  position: relative;
  z-index: 1;
  margin-bottom: 300px;
}

.strength__img2-pc::before {
  content: "";
  display: inline-block;
  width: 26.98%;
  aspect-ratio: 252/174;
  background-image: url(../img/index/dot.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: -13%;
  right: -14%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .strength__item-sp {
    display: none;
  }
}

.strength__item-sp .strength__caption {
  padding-left: 0;
  margin-left: 8%;
  font-size: 5.641025641vw;
}
.strength__item-sp .strength__img-sp {
  margin-top: 13px;
  margin-top: 0.8125rem;
  margin-left: 9%;
  width: 80%;
}
.strength__item-sp .strength__title .btn {
  margin-left: 9%;
}

@media screen and (min-width: 768px) {
  .strength__img-pc.strength-item-pc__item {
    margin-top: -6%;
  }
}

.strength-item-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-item-pc {
    display: block;
  }
}

.strength-item-pc__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1250px;
  max-width: 78.125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
}

.strength-item-pc__item {
  width: 54%;
}

.strength-item-pc .strength__img-pc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.strength-item-pc .strength__img-pc::before {
  bottom: 10%;
  left: -13%;
}
.strength-item-pc .strength__title .btn {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .strength-item-pc .strength__title .btn {
    margin-top: 2.3125rem;
  }
}

.studio-item {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    color-stop(10%, #ffffff),
    color-stop(10%, #333333),
    to(#333333)
  );
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #ffffff 10%,
    #333333 10%,
    #333333 100%
  );
  padding: 0 20px 20.5px;
  padding: 0 1.25rem 1.28125rem;
}

.studio-item .studio-item__inner {
  max-width: 600px;
  max-width: 37.5rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
.studio-item .studio-item__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .studio-item .studio-item__name {
    font-size: 1.875rem;
  }
}
.studio-item .studio-item__name::after {
  content: "";
  display: inline-block;
  width: 50px;
  height: 26px;
  background-image: url(../img/index/map-pin.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 4px;
  right: -62px;
}
.studio-item .studio-item__name {
  margin-top: 11px;
  margin-top: 0.6875rem;
}
.studio-item .btn {
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .studio-item .btn {
    text-align: center;
  }
}

.box {
  width: 170px;
}
@media screen and (min-width: 768px) {
  .box {
    width: 370px;
  }
}

.box2 {
  width: 210px;
  width: 13.125rem;
  margin: 0 50px;
}
@media screen and (min-width: 768px) {
  .box2 {
    width: 23.875rem;
    margin: 0 150px;
  }
}

.tts-week {
  margin-top: -2px;
  margin-top: -0.125rem;
}
@media screen and (min-width: 768px) {
  .tts-week {
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.tts-day {
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.001em;
  text-align: center;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .tts-day {
    width: 10.5rem;
    margin-top: 0;
    letter-spacing: -0.04em;
  }
}

.day {
  background-color: #df0808;
  padding: 9px 0 10px;
  padding: 0.5625rem 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .day {
    height: 2.3125rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.day__theday {
  color: #ffffff;
}

.tt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 4px;
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .tt {
    margin-top: 0.875rem;
  }
}

.tt__time {
  color: #ffffff;
  padding: 2px 0 3px;
  padding: 0.125rem 0 0.1875rem;
}
@media screen and (min-width: 768px) {
  .tt__time {
    height: 1.5625rem;
  }
}

.tt__contents {
  color: #333333;
  padding: 5px 0;
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .tt__contents {
    padding: 0;
    height: 4.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .tt__contents.three {
    line-height: 1.1875;
  }
}

@media screen and (min-width: 768px) {
  .tt__contents p {
    white-space: nowrap;
    font-size: 0.8125rem;
  }
}

@media screen and (min-width: 768px) {
  .tt__contents span {
    font-size: 0.8125rem;
    display: inline;
  }
}

.tt--pink .tt__time {
  background-color: #cc5050;
}

.tt--pink .tt__contents {
  background-color: #f5b2b2;
}

.tt--blue .tt__time {
  background-color: #217bb1;
}

.tt--blue .tt__contents {
  background-color: #b7e4ff;
}

.tt--green .tt__time {
  background-color: #7b7f35;
}

.tt--green .tt__contents {
  background-color: #d2ffb2;
}

.tt--yellow .tt__time {
  background-color: #d96d00;
}

.tt--yellow .tt__contents {
  background-color: #ffe76e;
}

.tts-week {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .tts-week {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 0.6875rem;
    margin-top: 2.4375rem;
  }
}

.jenre {
  position: relative;
}

.jenre__title-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .jenre__title-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.jenre__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .jenre__title {
    font-size: 2.875rem;
    padding: 0 0.3125rem;
  }
}

.jenre__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 2.8205128205vw;
  padding: 0 3.8461538462vw;
}
@media screen and (min-width: 390px) {
  .jenre__tags {
    gap: 0.6875rem;
    padding: 0 0.9375rem;
  }
}

.jenre__tag {
  width: 75px;
  width: 4.6875rem;
  font-size: 3.8461538462vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1;
  height: 31px;
  height: 1.9375rem;
  letter-spacing: 0.001em;
  color: #333333;
  background-color: #f3f3f3;
  border-radius: 20px;
  margin-top: 8px;
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 390px) {
  .jenre__tag {
    width: 6.1875rem;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .jenre__tag {
    width: 8.125rem;
    font-size: 1.25rem;
    height: 2.5rem;
  }
}

.jenre__caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .jenre__caption {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    max-width: 61.75rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.75rem;
  }
}

.jenre__instructors-title {
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4545454545;
  letter-spacing: 0.001em;
  text-align: center;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .jenre__instructors-title {
    font-size: 1.875rem;
    margin-top: 3.1875rem;
  }
}

.jenre__instructors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 11px;
  gap: 0.8125rem 0.6875rem;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .jenre__instructors {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 56.25rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 1.9375rem;
    gap: 1.25rem 0.9375rem;
  }
}

.jenre__movie {
  display: block;
  aspect-ratio: 350/192;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .jenre__movie {
    max-width: 56.25rem;
    overflow: hidden;
    margin-right: auto;
    margin-left: auto;
    margin-top: 3.125rem;
  }
}

.jenre__movie iframe {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.course-detail__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .course-detail__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4.8%;
  }
}

.course-detail__title-sp {
  font-size: clamp(11.008px, -66.672px + 24.27vw, 28px);
  font-size: clamp(0.688rem, -4.167rem + 24.27vw, 1.75rem);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}

.course-detail__img {
  aspect-ratio: 335/201;
  margin-top: 36px;
  margin-top: 2.25rem;
  -webkit-box-shadow: 10px 10px 0 #ffcb00;
  box-shadow: 10px 10px 0 #ffcb00;
}
@media screen and (min-width: 768px) {
  .course-detail__img {
    max-width: 37.5rem;
    aspect-ratio: 600/393;
    width: 100%;
    margin-top: 0;
    -webkit-box-shadow: 26px 25px 0 #ffcb00;
    box-shadow: 26px 25px 0 #ffcb00;
  }
}

.course-detail__img picture,
.course-detail__img picture img,
.course-detail__img picture source {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.course-detail__caption {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.001em;
  color: #141414;
  margin-top: 36px;
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .course-detail__caption {
    font-size: 1.125rem;
    line-height: 2;
  }
}

.course-detail__title-sp {
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .course-detail__title-sp {
    display: none;
  }
}

.course-detail__title-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .course-detail__title-pc {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
  }
}

@media screen and (min-width: 768px) {
  .course-detail__caption {
    margin-top: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .course-detail__contents-box {
    max-width: 32.75rem;
    margin-bottom: 12%;
    margin-right: 5%;
  }
}

.coourse-detail__img-bg {
  padding-right: 10px;
  padding-right: 0.625rem;
}

.course-detail__contents-box {
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course-detail__contents-box {
    margin-top: -2.75rem;
  }
}

.general .course-detail__contents-box {
  padding: 0 15px 0;
}

.l-course-detail__title-sp {
  padding: 0 15px;
  padding: 0 0.9375rem;
}

.jenre__bg {
  width: 31.5384615385vw;
  aspect-ratio: 123/72;
  position: absolute;
  top: -19px;
  top: -1.1875rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .jenre__bg {
    width: 23.8125rem;
    aspect-ratio: 381/225;
    top: -5.5625rem;
    right: 0;
  }
}

.hiphop .jenre__bg {
  width: 54.8717948718vw;
  aspect-ratio: 214/72;
  position: absolute;
  top: -19px;
  top: -1.1875rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .hiphop .jenre__bg {
    width: 41.5rem;
    aspect-ratio: 664/225;
    top: -5.5625rem;
    right: 0;
  }
}

.j-k-pop .jenre__bg {
  width: 53.0769230769vw;
  aspect-ratio: 207/72;
  position: absolute;
  top: -19px;
  top: -1.1875rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .j-k-pop .jenre__bg {
    width: 41.5rem;
    aspect-ratio: 644/225;
    top: -5.5625rem;
    right: 0;
  }
}

.lock .jenre__bg {
  width: 34.8717948718vw;
  aspect-ratio: 136/72;
  position: absolute;
  top: -19px;
  top: -1.1875rem;
  right: 0;
}
@media screen and (min-width: 768px) {
  .lock .jenre__bg {
    width: 26.3125rem;
    aspect-ratio: 421/225;
    top: -5.5625rem;
    right: 0;
  }
}

.jenre__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .jenre__inner {
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.jenre {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .jenre {
    margin-top: 6.375rem;
  }
}

.page-top {
  width: 60px;
  width: 3.75rem;
  aspect-ratio: 1/1;
  position: relative;
  cursor: pointer;
  z-index: 99;
  display: none;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 3.9375rem;
  }
}

.main-contents {
  background-color: #fbfbfb;
}

.footer__inner {
  padding: 54px 15px 23px;
  padding: 3.375rem 0.9375rem 6.3rem;
  background-color: #5d5d5d;
  text-align: center;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 2.75rem 0.9375rem 1.625rem;
  }
}

.footer__title {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.001em;
}
@media screen and (min-width: 768px) {
  .footer__title {
    font-size: 2.875rem;
  }
}

.footer__sns-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 165px;
  max-width: 10.3125rem;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .footer__sns-box {
    max-width: 13.125rem;
    margin-top: 2.3125rem;
  }
}

.footer__sns-icon {
  width: 43.21px;
  width: 2.700625rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .footer__sns-icon {
    width: 3.4375rem;
  }
}

.footer__sns-icon picture {
  width: 100%;
}

.footer__address {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.001em;
  margin-top: 34px;
  margin-top: 2.125rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -moz-text-align-last: left;
  text-align-last: left;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .footer__address {
    font-size: 1rem;
    margin-top: 2.375rem;
  }
}

.footer__tel {
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1.44;
  letter-spacing: 0.001em;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .footer__tel {
    margin-top: 1.875rem;
  }
}

.footer__tel a {
  display: inline-block;
  font-size: 34px;
  font-size: 2.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4411764706;
  letter-spacing: 0.001em;
  margin-left: 15px;
  margin-left: 0.9375rem;
}

.footer__links {
  display: none;
}
@media screen and (min-width: 768px) {
  .footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.75rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 5.9375rem;
  }
}

.footer__link {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.001em;
  text-decoration: underline;
}

.footer__copy {
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.5;
  letter-spacing: 0.001em;
  margin-top: 58px;
  margin-top: 3.625rem;
  color: #888888;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 1.1375rem;
    font-size: 0.875rem;
  }
}

#header {
  height: 76px;
  height: 4.75rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}
@media screen and (min-width: 768px) {
  #header {
    height: 10.0625rem;
  }
}

.header__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0;
    position: relative;
  }
}

.header__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: inherit;
  position: relative;
  z-index: 50;
  padding-left: 11px;
  padding-left: 0.6875rem;
  background-color: #ffffff;
}
@media screen and (min-width: 768px) {
  .header__upper {
    height: 6.875rem;
    max-width: 78.125rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
  }
}

.header__upper-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 17px;
  gap: 1.0625rem;
  padding-right: 16.5px;
  padding-right: 1.03125rem;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__upper-right {
    padding-right: 0;
  }
}

.header__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 29px;
  max-width: 1.8125rem;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(8px);
  transform: translateY(8px);
}
@media screen and (min-width: 768px) {
  .header__mail {
    display: none;
  }
}

.header__mail picture,
.header__mail picture img,
.header__mail picture source .header__mail-pc picture,
.header__mail-pc picture img,
.header__mail-pc picture source {
  width: 100%;
  display: inline-block;
}

.header__mail-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__mail-pc {
    aspect-ratio: 250/110;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    height: 6.875rem;
    z-index: 55;
  }
}

.header__mail-pc picture img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: auto;
}

.header__mail-pc picture {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__logo {
  max-width: 255px;
  max-width: 15.9375rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 26.8125rem;
  }
}

.header__logo a {
  width: inherit;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2%;
}

.header__logo-icon {
  width: 16%;
}

.header__logo-text {
  width: 82%;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1.44;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  padding-top: 2%;
}
@media screen and (min-width: 768px) {
  .header__logo-text {
    font-size: 2.625rem;
    line-height: 1.4761904762;
  }
}

.header__logo-text span {
  color: #c90000;
}

.header__lower {
  width: 100%;
  background-color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .header__lower {
    height: 3.25rem;
  }
}

.header__lower-inner {
  max-width: 1250px;
  max-width: 78.125rem;
  margin-right: auto;
  margin-left: auto;
  height: 100%;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
    width: 100%;
    height: inherit;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.header__nav-item span {
  padding: 0 15px;
  padding: 0 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  text-transform: uppercase;
  position: relative;
}

.header__nav-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.header__nav-item > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #c90000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}

.header__nav-item:hover > a::after {
  width: 100%;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 40px;
  width: 2.5rem;
  height: inherit;
  background-color: #ffffff;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 33px;
  width: 2.0625rem;
  height: 4px;
  background-color: #1a1a1a;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -6px;
  top: -0.375rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 6px;
  top: 0.375rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 6px;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 104px 0;
  padding: 6.5rem 0;
  position: fixed;
  z-index: 30;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}

.header__drawer-nav {
  max-width: 190px;
  max-width: 11.875rem;
  margin-right: auto;
  margin-left: auto;
}

.header__drawer.is-open {
  right: 0;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-item {
  position: relative;
}

.header__drawer-item a,
.header__drawer-item span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.5;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  text-align: left;
}

.header__drawer-item::before {
  content: "";
  display: inline-block;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background-image: url(../img/square1.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 37%;
  left: -17%;
}
.header__drawer-item.header__drawer-item--drop::before {
  top: 12%;
}

.header__mail-drawer .header__drawer-item::before {
  background-image: none;
}

.header__drawer-close {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.001em;
  color: #ffffff;
  background-color: #333333;
  padding-left: 11%;
  border-radius: 30px;
  width: 67vw;
  margin-top: 14%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header__drawer-close-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 0px;
  left: 21%;
  top: 16px;
}

.header__drawer-close-icon::before,
.header__drawer-close-icon::after {
  content: "";
  display: block;
  width: 100%;
  /*バツ線の長さ*/
  height: 2px;
  /*バツ線の太さ*/
  background: #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 0% 50%;
  position: absolute;
  top: calc(14% - 5px);
  left: 29%;
}

.header__drawer-close-icon::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  left: auto;
  right: 3%;
}

.dropdown__lists {
  -webkit-transform: scaleY(0);
  transform: scaleY(0);
  /*デフォルトでは非表示の状態にしておく*/
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*変形を適応する基準をtopとする*/
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  /*表示の変化を0.3秒に指定*/
  width: 250px;
  width: 15.625rem;
  position: absolute;
  top: 110px;
  top: 6.875rem;
  right: 0;
}

.header__mail-container:hover .dropdown__lists {
  -webkit-transform: scaleY(1);
  transform: scaleY(1);
  z-index: 55;
}

.dropdown__list {
  background-color: #333333;
  color: #ffffff;
  height: 50px;
  height: 3.125rem;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: relative;
}

/* .dropdown__list::before {
  content: "";
  width: 17px;
  width: 1.0625rem;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  bottom: 47%;
  left: 14%;
} */

.dropdown__list::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #707070;
  position: absolute;
  bottom: 0;
  left: 0;
}

.dropdown__list:hover {
  background-color: #5d5d5d;
}

.dropdown__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  height: 100%;
  padding-left: 0;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.001em;
}

.header__mail-drawer {
  padding: 99px 0;
  padding: 6.1875rem 0;
  position: fixed;
  z-index: 30;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(51, 51, 51, 0.9);
  overflow-y: scroll;
  scrollbar-width: none;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.header__mail-drawer .header__drawer-nav {
  max-width: 190px;
  max-width: 14rem;
}
.header__mail-drawer .header__drawer-item a {
  color: #ffffff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2.5;
  padding: 4px 0;
  padding: 0.25rem 0;
  letter-spacing: -0.01em;
}
.header__mail-drawer .header__drawer-item {
  position: relative;
}
.header__mail-drawer .header__drawer-item:before {
  content: "";
  width: 26px;
  width: 1.625rem;
  height: 2px;
  background-color: #ffffff;
  position: absolute;
  top: 50%;
  left: -20%;
}
.header__mail-drawer .header__drawer-close {
  border: 1px solid #ffffff;
  margin-top: 12%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header__mail-drawer.is-open {
  right: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  bottom: 0;
  content: "" !important;
  height: 0;
  margin: auto;
  position: absolute;
  top: 0;
  width: 0;
}

.l-beginner-to-pro {
  padding: 29px 0 0;
  padding: 1.8125rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-beginner-to-pro {
    padding: 5.5625rem 0 6.125rem;
  }
}

.l-inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1300px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-news {
  padding: 70px 0 42px;
  padding: 4.375rem 0 2.625rem;
}
@media screen and (min-width: 768px) {
  .l-news {
    padding: 8.125rem 0 1.875rem;
  }
}

.l-page-top {
  position: fixed;
  right: 2%;
  bottom: 13%;
}

.l-studio {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (min-width: 768px) {
  .l-studio {
    margin-top: 5.375rem;
  }
}

.l-instructor {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 27px;
  padding-bottom: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .l-instructor {
    margin-top: 5.125rem;
  }
}

.kidsjr .main-contents,
.general .main-contents {
  padding: 45px 0 128px;
  padding: 2.8125rem 0 8rem;
}
@media screen and (min-width: 768px) {
  .kidsjr .main-contents,
  .general .main-contents {
    padding: 7.75rem 0 8.625rem;
  }
}

.kids-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .kids-title {
    max-width: 81.25rem;
    padding: 7.75rem 1.5625rem 8.4375rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .kidsjr .section-title1,
  .general .section-title1 {
    margin-left: 1.125rem;
  }
}

.kidsjr .section-title1__main {
  letter-spacing: -0.04em;
}

@media screen and (min-width: 768px) {
  .kidsjr .section-title1__main::before {
    top: -0.5rem;
  }
}

.kidsjr .section-title1__main::after {
  top: -96%;
  right: -72%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .kidsjr .section-title1__main::after {
    top: -103%;
    right: -45%;
  }
}

@media screen and (min-width: 768px) {
  .kidsjr .instructors__name {
    font-size: 0.9375rem;
  }
}

.jenre__tag.kids {
  background-color: #ffcb00;
}

.jenre__tag.general {
  background-color: #d092ff;
}

.general .course-detail__img {
  -webkit-box-shadow: 10px 10px 0 #d092ff;
  box-shadow: 10px 10px 0 #d092ff;
}
@media screen and (min-width: 768px) {
  .general .course-detail__img {
    -webkit-box-shadow: 26px 25px 0 #d092ff;
    box-shadow: 26px 25px 0 #d092ff;
  }
}
@media screen and (min-width: 768px) {
  .general .instructors__name {
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .general .section-title1__main::before {
    top: -0.4375rem;
  }
}

.general .section-title1__main::after {
  top: -100%;
  right: -154%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .general .section-title1__main::after {
    right: -69%;
  }
}

.jenres {
  margin-top: 135px;
  margin-top: 8.4375rem;
}
@media screen and (min-width: 768px) {
  .jenres {
    margin-top: 6.375rem;
  }
}

.course-all .main-contents {
  padding: 48px 0 92px;
  padding: 3rem 0 5.75rem;
}
@media screen and (min-width: 768px) {
  .course-all .main-contents {
    padding: 5.0625rem 0 9.125rem;
  }
}

.course-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .course-title {
    padding: 7.8125rem 1.5625rem 7.5625rem;
    max-width: 81.25rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .course-all .section-title1 {
    margin-left: 1.125rem;
  }
}

.course-title .section-title1__main::after {
  top: -103%;
  right: -325%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .course-title .section-title1__main::after {
    top: -103%;
    right: -128%;
  }
}

.caption {
  padding: 0 35px;
  padding: 0 2.1875rem;
}

.caption__main {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4230769231;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .caption__main {
    font-size: 2.875rem;
    line-height: 1.4347826087;
    letter-spacing: -0.01em;
  }
}

.caption__sub {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.001em;
  color: #333333;
  margin-top: 17px;
  margin-top: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .caption__sub {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-top: 1.25rem;
    text-align: center;
  }
}

.caption__main span {
  color: #c90000;
}

.course {
  max-width: 600px;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .course {
    max-width: 80.625rem;
  }
}

.course__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course__title {
    font-size: 2.875rem;
    padding: 0;
  }
}

.course__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .course__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 7rem;
  }
}

.course__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5px;
  margin-top: 0.3125rem;
  padding-left: 15px;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course__tags {
    margin-top: 0.75rem;
    padding-left: 0;
  }
}

.course__tag {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.001em;
  color: #333333;
  background-color: #f3f3f3;
  border-radius: 20px;
  text-align: center;
  margin-top: 8px;
  margin-top: 0.5rem;
  margin-right: 3px;
  margin-right: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .course__tag {
    font-size: 1.125rem;
    margin-right: 1.1875rem;
  }
}

.course__tag.jazz {
  width: 87px;
  width: 5.4375rem;
}

.course__tag.hiphop,
.course__tag.waack,
.course__tag.lock {
  width: 106px;
  width: 6.625rem;
}

.course__tag.pop {
  width: 114px;
  width: 7.125rem;
}

.l-course__img {
  padding-right: 10px;
  padding-right: 0.625rem;
}

.course__img-container {
  -webkit-box-shadow: 10px 10px 0 #d092ff;
  box-shadow: 10px 10px 0 #d092ff;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .course__img-container {
    max-width: 41.8125rem;
    margin-top: 0;
    -webkit-box-shadow: 31px 32px 0 #d092ff;
    box-shadow: 31px 32px 0 #d092ff;
  }
}

.course__img {
  aspect-ratio: 337/202;
}
@media screen and (min-width: 768px) {
  .course__img {
    max-width: 41.8125rem;
    margin-top: 1.25rem;
  }
}

.course__lower {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .course__lower {
    margin-top: 0;
  }
}

.course__caption {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.001em;
  color: #333333;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course__caption {
    font-size: 1.25rem;
    padding: 9.875rem 0 0;
  }
}

.course .btn {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .course .btn {
    margin-top: 4.0625rem;
    text-align: center;
  }
}

.course.course-general {
  margin-top: 68px;
  margin-top: 4.25rem;
}
@media screen and (min-width: 768px) {
  .course.course-general {
    margin-top: 3.5rem;
  }
}

.course.course-kids {
  margin-top: 49px;
  margin-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  .course.course-kids {
    margin-top: 6.25rem;
  }
}
.course.course-kids .course__img-container {
  -webkit-box-shadow: 10px 10px 0 #ffcb00;
  box-shadow: 10px 10px 0 #ffcb00;
}
@media screen and (min-width: 768px) {
  .course.course-kids .course__img-container {
    -webkit-box-shadow: 31px 32px 0 #ffcb00;
    box-shadow: 31px 32px 0 #ffcb00;
  }
}

.debut-title {
  padding: 30px 35px 21px;
  padding: 1.875rem 2.1875rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .debut-title {
    max-width: 81.25rem;
    padding: 5.3125rem 1.5625rem 3.6875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.debut-page .section-title1__main::after {
  content: "";
  display: inline-block;
  width: 134px;
  width: 8.375rem;
  height: 77px;
  height: 4.8125rem;
  background-image: url(../img/debut/dot_debut-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -103%;
  right: -68%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .debut-page .section-title1__main::after {
    background-image: url(../img/dot.png);
    width: 15.75rem;
    height: 10.875rem;
    top: -54%;
    right: -58%;
  }
}

@media screen and (min-width: 768px) {
  .debut-page .section-title1 {
    margin-left: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .debut-title__caption {
    margin-left: 1.125rem;
  }
}

.debut-title__caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2857142857;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .debut-title__caption {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.4666666667;
    margin-top: 1.5625rem;
  }
}

.debut-title .section-title1__main {
  letter-spacing: -0.04em;
}

.debut-title .section-title1__main::after {
  top: -26%;
  right: -115%;
}
@media screen and (min-width: 768px) {
  .debut-title .section-title1__main::after {
    top: -36%;
    right: -76%;
  }
}

.momo {
  padding: 0 20px 48px;
  padding: 0 1.25rem 3rem;
  margin-top: 33px;
  margin-top: 2.0625rem;
}
@media screen and (min-width: 768px) {
  .momo {
    margin-top: 1.875rem;
    max-width: 52.3125rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 1.25rem 2.625rem;
  }
}

.momo__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  text-align: center;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .momo__title {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.momo__title span {
  color: #c90000;
}

.momo__name {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4666666667;
  letter-spacing: 0.001em;
  color: #f54792;
  text-align: center;
  margin-top: 29px;
  margin-top: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .momo__name {
    margin-top: 1.375rem;
  }
}

.momo__description {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.001em;
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 21px;
  margin-top: 1.3125rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .momo__description {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 0.25rem;
    padding: 0;
  }
}

.momo__img {
  position: relative;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .momo__img {
    margin-top: 1.25rem;
  }
}

.momo__img a {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 0.9285714286;
  letter-spacing: 0.001em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 12px 0 10px;
  padding: 0.75rem 0 0.625rem;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .momo__img a {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.momo__img a::after {
  content: "";
  display: inline-block;
  width: 18px;
  width: 1.125rem;
  height: 18px;
  height: 1.125rem;
  background-image: url(../img/link.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  right: 24%;
}
@media screen and (min-width: 768px) {
  .momo__img a::after {
    width: 2.125rem;
    height: 2.125rem;
    right: 32%;
  }
}

@media screen and (min-width: 768px) {
  .momo-coming--sp {
    display: none;
  }
}

.momo-coming--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .momo-coming--pc {
    display: block;
    margin-top: 0;
  }
}

.momo-coming {
  background-color: #1a1a1a;
  color: #ffffff;
  position: relative;
}

.momo-coming::before {
  content: "";
  position: absolute;
  right: 0;
  top: -19px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  border-width: 0 20px 20px 20px;
}

.momo-coming__inner {
  padding: 49px 35px 98px;
  padding: 3.0625rem 2.1875rem 6.125rem;
}
@media screen and (min-width: 768px) {
  .momo-coming__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 73.75rem;
    padding: 4.375rem 1.5625rem 3.125rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .momo-coming__left {
    max-width: 32.1875rem;
    width: 100%;
    padding: 2.3125rem 0 0 2rem;
  }
}

.momo-coming__title {
  padding: 0 25px;
  padding: 0 1.5625rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.001em;
}
@media screen and (min-width: 390px) {
  .momo-coming__title {
    font-size: 1.25rem;
    padding: 0 1.8125rem;
  }
}
@media screen and (min-width: 768px) {
  .momo-coming__title {
    font-size: 1.875rem;
    line-height: 1.4666666667;
    padding: 0;
  }
}

.momo-coming__img {
  padding: 0 31px;
  padding: 0 1.9375rem;
  max-width: 500px;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 31px;
  margin-top: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .momo-coming__img {
    padding: 0;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
}

.momo-coming__caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: 28px;
  margin-top: 1.75rem;
}
@media screen and (min-width: 768px) {
  .momo-coming__caption {
    letter-spacing: -0.01em;
    font-size: 1rem;
    line-height: 2.5;
  }
}

.momo-coming__img2 {
  padding: 0 65px;
  padding: 0 4.0625rem;
  max-width: 400px;
  max-width: 25rem;
  margin-right: auto;
  margin-left: auto;
  margin-top: 39px;
  margin-top: 2.4375rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .momo-coming__img2 {
    max-width: 11.6875rem;
    padding: 0;
    margin-top: 1.625rem;
  }
}

.momo-coming__img2::after {
  content: "";
  display: inline-block;
  width: 215px;
  width: 13.4375rem;
  height: 154px;
  height: 9.625rem;
  background-image: url(../img/debut/dot-momo.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 48%;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .momo-coming__img2::after {
    top: 55%;
    left: -109%;
  }
}

.artist__inner {
  padding: 28px 0 0;
  padding: 1.75rem 0 0;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .artist__inner {
    padding: 4.75rem 0 0;
  }
}

.artist {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
  padding: 0 35px;
  padding: 0 2.1875rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .artist {
    max-width: 59.1875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0;
    margin-top: 3.375rem;
  }
}

.artist__img {
  max-width: 239px;
  max-width: 14.9375rem;
  width: 100%;
  position: relative;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .artist__img {
    max-width: 27.4375rem;
    width: 46%;
    margin-left: 0;
    margin-right: 0;
  }
}

.artist__img picture {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.artist__img picture img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 239/195;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .artist__img picture img {
    aspect-ratio: 439/359;
  }
}

.artist__img picture source {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 239/195;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .artist__img picture source {
    aspect-ratio: 439/359;
  }
}

.artist__link {
  display: block;
  background-color: rgba(51, 51, 51, 0.85);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  color: #ffffff;
  padding: 3px 11px 6px 0;
  padding: 0.1875rem 0.6875rem 0.375rem 0;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .artist__link {
    font-size: 1rem;
    padding: 1rem 0.6875rem;
  }
}

.artist__link::after {
  content: "";
  display: inline-block;
  width: 22px;
  width: 1.375rem;
  height: 22px;
  height: 1.375rem;
  background-image: url(../img/debut/link.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: 50%;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  right: 8px;
  right: 0.5rem;
}
@media screen and (min-width: 768px) {
  .artist__link::after {
    width: 2.5rem;
    height: 2.5rem;
    right: 3.9375rem;
  }
}

.artist__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: 6px;
  margin-top: 0.375rem;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .artist__name {
    text-align: left;
    font-size: 1.875rem;
    line-height: 1.3333333333;
  }
}

.artist__data {
  text-align: left;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: -3px;
  margin-top: -0.1875rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .artist__data {
    max-width: 28.9375rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.875;
    margin-top: 1.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .artist__contents {
    max-width: 28.9375rem;
    width: 100%;
    text-align: left;
  }
}

.performance-history {
  margin-top: 61px;
  margin-top: 3.8125rem;
}
@media screen and (min-width: 768px) {
  .performance-history {
    margin-top: 7.25rem;
  }
}

.performance-history__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}

.performance-history__title-bg {
  background-color: #333333;
  padding: 14px 0 17px 30px;
  padding: 0.875rem 0 1.0625rem 1.875rem;
  max-width: 600px;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .performance-history__title-bg {
    padding: 0.9375rem 0 1.0625rem 1.875rem;
    max-width: 62.5rem;
    width: 100%;
  }
}

.performance-history__title h2.section-title-s {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.001em;
  color: #ffffff;
  position: relative;
}
@media screen and (min-width: 768px) {
  .performance-history__title h2.section-title-s {
    font-size: 1.75rem;
    line-height: 1.4285714286;
    padding-left: 1.0625rem;
  }
}

.performance-history__title h2.section-title-s::before {
  content: "";
  display: inline-block;
  width: 15px;
  width: 0.9375rem;
  height: 23px;
  height: 1.4375rem;
  letter-spacing: 0.1em;
  background-image: url(../img/slash.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 4px;
  top: 0.25rem;
  left: -19px;
  left: -1.1875rem;
}
@media screen and (min-width: 768px) {
  .performance-history__title h2.section-title-s::before {
    width: 1.34rem;
    height: 2.1875rem;
    left: -0.875rem;
  }
}

.performance {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .performance {
    max-width: 62.5rem;
  }
}

.performance__genre {
  height: 40px;
  height: 2.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333333;
  line-height: 1.4285714286;
  background-color: #e1e1e1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 12px 0 11px 15px;
  padding: 0.75rem 0 0.6875rem 0.9375rem;
  position: relative;
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .performance__genre {
    padding: 0.75rem 0 2.9375rem 2.8125rem;
    font-size: 1.25rem;
    line-height: 1.45;
    border-bottom: none;
  }
}

.performance__genre:after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 16px;
  right: 1rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #a1a1a1;
  border-right: solid 2px #a1a1a1;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .performance__genre:after {
    display: none;
  }
}

.performance__genre.open:after {
  top: 50%;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.performance__event,
.event__items,
.event__item {
  width: 100%;
}

.event__item {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2.7142857143;
  letter-spacing: 0.001em;
  color: #333333;
  padding: 0 0 0 20px;
  padding: 0 0 0 1.25rem;
  background-color: #fbfbfb;
}
@media screen and (min-width: 768px) {
  .event__item {
    padding: 0 0 0 2.75rem;
    font-size: 1rem;
    line-height: 2.8125;
  }
}

.event__items li:nth-child(2n-1) {
  background-color: #f3f3f3;
}

.step-out-academy {
  padding: 0 20px 106px;
  padding: 0 1.25rem 6.625rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .step-out-academy {
    margin-top: 7.125rem;
    max-width: 65.625rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 0 1.5625rem 7.125rem;
  }
}

.instructor-hana {
  padding-top: 72px;
  padding-top: 4.5rem;
}
@media screen and (min-width: 768px) {
  .instructor-hana {
    padding-top: 7.375rem;
  }
}

.instructor__img {
  position: relative;
}

.instructor__img-inner {
  aspect-ratio: 210/264;
  position: relative;
  z-index: 1;
  max-width: 210px;
  max-width: 13.125rem;
  margin-right: auto;
  margin-left: auto;
  -webkit-transform: translateX(-8px);
  transform: translateX(-8px);
}
@media screen and (min-width: 768px) {
  .instructor__img-inner {
    max-width: 23.875rem;
    aspect-ratio: 382/477;
  }
}

.instructor__img-inner picture {
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  height: 100%;
  position: relative;
}

.instructor__img-inner picture img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.instructor__img-inner picture source {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.instructor__img-inner::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-image: url(../img/graduation-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 17px;
  top: 1.0625rem;
  left: 16px;
  left: 1rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .instructor__img-inner::after {
    top: 1.9375rem;
    left: 1.6875rem;
  }
}

.instructor__img::before {
  content: "";
  display: inline-block;
  width: 139px;
  width: 8.6875rem;
  height: 96px;
  height: 6rem;
  background-image: url(../img/dot-sp.png);
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: -49px;
  top: -3.0625rem;
  left: 15px;
  left: 0.9375rem;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .instructor__img::before {
    width: 15.75rem;
    height: 10.875rem;
    top: -3.75rem;
    left: 0.9375rem;
    background-image: url(../img/dot.png);
    left: -4.25rem;
  }
}

.instructor__class-items {
  margin-top: -11px;
  margin-top: -0.6875rem;
}
@media screen and (min-width: 768px) {
  .instructor__class-items {
    margin-top: -0.25rem;
  }
}

.instructor__class-item {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.001em;
  margin-top: 19px;
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .instructor__class-item {
    margin-top: 1.75rem;
  }
}

.instructor__class-item.class--imafuku {
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .instructor__class-item.class--imafuku {
    margin-top: 1.75rem;
  }
}

.l-class__studio {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-class__studio {
    -moz-text-align-last: left;
    text-align-last: left;
  }
}

.class__studio {
  display: inline-block;
  color: #fbfbfb;
  padding: 6px 29px;
  padding: 0.375rem 1.8125rem;
  border-radius: 15px;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.001em;
}

.class__studio--red {
  background-color: #c90000;
}

.class__studio--blue {
  background-color: #0028c9;
}

.class__generation {
  color: #fbfbfb;
  background-color: #333333;
  text-align: center;
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (min-width: 768px) {
  .class__generation {
    width: 9.75rem;
  }
}

.class__generation--general {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.class__generation--kids {
  margin-top: 14px;
  margin-top: 0.875rem;
}

.class__course {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 6px 12px 7px;
  padding: 0.375rem 0.75rem 0.4375rem;
  gap: 4px;
  background-color: #ebebeb;
  border-bottom: 1px solid #ffffff;
}
@media screen and (min-width: 768px) {
  .class__course {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 26.875rem;
    padding: 0.4375rem 0.9375rem 0.4375rem 0.75rem;
  }
}

.class__course-name {
  font-weight: 700;
  color: #333333;
}

.class__course-time {
  color: #333333;
}

.instructor__main-inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .instructor__main-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 125px;
    -webkit-transform: translateX(-4.6%);
    transform: translateX(-4.6%);
  }
}

.instructor__name {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .instructor__name {
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 1.0625rem;
    margin-top: 0;
  }
}

.instructor__name h1 {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .instructor__name h1 {
    font-size: 4.5rem;
    line-height: 1.5;
  }
}

.instructor__name p {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .instructor__name p {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.instructor__contents {
  margin-top: 51px;
  margin-top: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .instructor__contents {
    margin-top: 2.8125rem;
  }
}

.instructor__contents-inner {
  padding: 0 35px 71px;
  padding: 0 2.1875rem 4.4375rem;
}
@media screen and (min-width: 768px) {
  .instructor__contents-inner {
    max-width: 55.9375rem;
    padding: 0 1.5625rem 8.1875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.l-section-title-s {
  padding: 0 22px;
  padding: 0 1.375rem;
}

h2.instructor__profile-title.section-title-s,
h2.instructor__message-title.section-title-s {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.001em;
  color: #333333;
  position: relative;
}

.section-title-s::before {
  content: "";
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 19.5px;
  height: 1.21875rem;
  letter-spacing: 0.1em;
  background-image: url(../img/slash.png);
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  top: 0.125rem;
  left: -22px;
  left: -1.375rem;
}

.instructor__profile-title.section-title-s {
  letter-spacing: 0.2em;
}

.instructor__profile-contents {
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .instructor__profile-contents {
    margin-top: 1.375rem;
  }
}

ul.instructor__profile-contents li.instructor__profile-content {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  ul.instructor__profile-contents li.instructor__profile-content {
    margin-top: 0.88125rem;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0;
  }
}

.instructor__profile-content span {
  font-weight: 700;
}

.instructor__message {
  margin-top: 54px;
  margin-top: 3.375rem;
}
@media screen and (min-width: 768px) {
  .instructor__message {
    margin-top: 3.9375rem;
  }
}

.instructor__message-content {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: 14px;
  margin-top: 0.875rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .instructor__message-content {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.instructor__btn {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .instructor__btn {
    text-align: center;
    margin-top: 5.3125rem;
  }
}

.instructor__btn.btn a {
  padding: 18px 10px 18px 38px;
  padding: 1.125rem 0.625rem 1.125rem 2.375rem;
  letter-spacing: 0.01em;
}
@media screen and (min-width: 768px) {
  .instructor__btn.btn a {
    padding: 1.5625rem 0.625rem 1.5625rem 3.3125rem;
  }
}

.instructor-all .main-contents {
  padding: 36px 0 20px;
  padding: 2.25rem 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .instructor-all .main-contents {
    padding: 2.1875rem 0 10.3125rem;
  }
}

.instructors-title {
  height: 80px;
  height: 5rem;
  padding: 30px 35px 20px;
  padding: 1.875rem 2.1875rem 1.25rem;
  position: relative;
}
.instructors-title .section-title1__main {
  letter-spacing: -0.06em;
}
@media screen and (min-width: 768px) {
  .instructors-title {
    height: 17.90625rem;
    max-width: 81.25rem;
    padding: 5.375rem 1.5625rem 5.5rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .instructor-all .section-title1 {
    margin-left: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .instructor-all .section-title1__main::after {
    top: -82%;
    right: -60%;
  }
}

#instructors {
  background-color: #fbfbfb;
}

.instructors__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .instructors__inner {
    max-width: 78.125rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 3.125rem;
  }
}

.CardList {
  display: grid;
  grid-gap: 0.6875rem 0.625rem;
  grid-template-columns: repeat(2, minmax(150px, 2fr));
}
@media screen and (min-width: 768px) {
  .CardList {
    grid-gap: 3.75rem 1.25rem;
    grid-template-columns: repeat(3, minmax(209px, 370px));
  }
}

.instructors__name {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.2857142857;
  color: #ffffff;
  background-color: #1a1a1a;
  padding: 10px 0 11px 20px;
  padding: 0.625rem 0 0.6875rem 1.25rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .instructors__name {
    font-size: 1.25rem;
    padding: 0.75rem 0 0.75rem 2.4375rem;
  }
}

.instructors__name::before {
  content: "";
  display: inline-block;
  width: 23px;
  width: 1.4375rem;
  height: 23px;
  height: 1.4375rem;
  background-image: url(../img/slash-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 6px;
  left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .instructors__name::before {
    background-image: url(../img/slash-pc.png);
    width: 2.125rem;
    height: 1.3125rem;
    left: 1.0625rem;
  }
}

.instructors__name::after {
  content: "";
  display: inline-block;
  width: 23px;
  width: 1.4375rem;
  height: 10px;
  height: 0.625rem;
  background-image: url(../img/arrow-white.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -5px;
  right: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .instructors__name::after {
    width: 0.875rem;
    height: 0.875rem;
    right: 11%;
  }
}

.instructors__name span {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0.001em;
}

.instructors__name.instructors__name--team {
  padding: 4px 0 8px 20px;
  padding: 0.25rem 0 0.5rem 1.25rem;
  line-height: 1;
  height: 39px;
  height: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .instructors__name.instructors__name--team {
    padding: 0.75rem 0 0.75rem 2.4375rem;
    line-height: 1.2857142857;
    height: auto;
  }
}

.instructors__img picture source,
.instructors__img picture img {
  aspect-ratio: 170/166;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .instructors__img picture source,
  .instructors__img picture img {
    aspect-ratio: 370/360;
  }
}

.price-title .section-title1__main::after {
  top: -103%;
  right: -318%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .price-title .section-title1__main::after {
    top: -95%;
    right: -123%;
  }
}

.price-list .main-contents {
  padding: 52px 0 76px;
  padding: 3.25rem 0 4.75rem;
}
@media screen and (min-width: 768px) {
  .price-list .main-contents {
    padding: 6.25rem 0 9.5625rem;
  }
}

.price-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .price-title {
    max-width: 81.25rem;
    padding: 7.375rem 1.5625rem 7.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .price-list .section-title1 {
    margin-left: 1.125rem;
  }
}

.price-section__inner {
  padding: 0 35px;
  padding: 0 2.1875rem;
}

@media screen and (min-width: 768px) {
  .l-price-section__title {
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.price-section__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.1071428571;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .price-section__title {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.price-section__title span {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .price-section__title span {
    font-size: 1.125rem;
    line-height: 2.2222222222;
    margin-left: 42px;
  }
}

.price-list table,
.price-list table th,
.price-list table td {
  border: 1px solid #c1c1c1;
  border-collapse: collapse;
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.001em;
}

.price-general-initiation__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .price-general-initiation__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 100%;
  }
}

.price-list table {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price-list table {
    max-width: 62.5rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-transform: translateX(-2.5%);
    transform: translateX(-2.5%);
  }
}

.price-general-trial__table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .price-general-trial__table tbody {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.price-list table th {
  background-color: #f5f5f5;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  width: 21.875%;
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .price-list table th {
    font-size: 1rem;
    padding: 11px 0;
    width: 21.1%;
    line-height: 1.875;
  }
}

.price-general-initiation__row th.price-general-initiation__head {
  width: 100%;
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (min-width: 768px) {
  .price-general-initiation__row th.price-general-initiation__head {
    width: 17.3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.price-list table td {
  background-color: #ffffff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4285714286;
  padding: 8px 6px 8px 8px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .price-list table td {
    font-size: 1rem;
    line-height: 1.875;
    padding: 18px 22px 19px;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    letter-spacing: 0.04em;
  }
}

@media screen and (min-width: 768px) {
  .price-list table td.price-general-initiation__data {
    padding: 10px 22px 17px;
    letter-spacing: 0.02em;
  }
}

.price-general-initiation__row th {
  line-height: 2.1428571429;
}
@media screen and (min-width: 768px) {
  .price-general-initiation__row th {
    line-height: 1.875;
    width: 17.5%;
  }
}

.price-general-initiation__table {
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .price-general-initiation__table {
    margin-top: 2.6875rem;
  }
}

.price-general-ticket__table {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .price-general-ticket__table {
    margin-top: 1.5rem;
  }
}

.price-general-trial__table {
  margin-top: 9px;
  margin-top: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .price-general-trial__table {
    margin-top: 1.5rem;
  }
}

.price-general-ticket__head.price-general-ticket__header,
.price-general-trial__head.price-general-trial__header {
  padding: 6px 0;
  padding: 0.375rem 0;
}
@media screen and (min-width: 768px) {
  .price-general-ticket__head.price-general-ticket__header,
  .price-general-trial__head.price-general-trial__header {
    -moz-text-align-last: left;
    text-align-last: left;
    padding: 0.625rem 2.0625rem;
  }
}

.price-general-number {
  width: 22%;
}
@media screen and (min-width: 768px) {
  .price-general-number {
    width: 21.4%;
  }
}

.price-list table td.price-general-ticket__data,
.price-list table td.price-general-trial__data {
  line-height: 1.2857142857;
}

.price-general-trial__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .price-general-trial__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media screen and (min-width: 768px) {
  .price-general-trial__contents .price-general-trial__head,
  .price-general-trial__contents .price-general-trial__data {
    width: 100%;
  }
}

.price-general-trial__caption,
.price-kids-ticket__head.price-kids-ticket__header,
.price-kids-trial__caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  background-color: #f5f5f5;
  color: #333333;
  border-top: 1px solid #c1c1c1;
  border-right: 1px solid #c1c1c1;
  border-left: 1px solid #c1c1c1;
}
@media screen and (min-width: 768px) {
  .price-general-trial__caption,
  .price-kids-ticket__head.price-kids-ticket__header,
  .price-kids-trial__caption {
    font-size: 1rem;
    text-align: left;
    padding: 16px 30px 20px;
  }
}

.price-general-trial__caption {
  padding: 8px 8px;
}
@media screen and (min-width: 768px) {
  .price-general-trial__caption {
    padding: 16px 31px;
  }
}

.price-general-trial__head.price-general-number {
  padding: 4px 8px 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .price-general-trial__head.price-general-number {
    -moz-text-align-last: left;
    text-align-last: left;
    padding: 16px 29px;
  }
}

@media screen and (min-width: 768px) {
  .price-general-trial__contents .price-general-trial__data {
    padding: 17px 29px 20px;
  }
}

.price-kids {
  margin-top: 37px;
  margin-top: 2.3125rem;
}
@media screen and (min-width: 768px) {
  .price-kids {
    margin-top: 5.125rem;
  }
}

.price-kids-monthly {
  margin-top: 11px;
  margin-top: 0.6875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price-kids-monthly {
    margin-top: 2.3125rem;
  }
}

.price-kids-monthly tbody,
.price-kids-trial__table tbody {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .price-kids-monthly tbody,
  .price-kids-trial__table tbody {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.price-kids-monthly__row {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .price-kids-monthly__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

.price-kids-monthly__row th,
.price-kids-monthly__row td {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.price-list table th.price-kids-monthly__head {
  width: 21.875%;
  padding: 7px 8px 6px;
}
@media screen and (min-width: 768px) {
  .price-list table th.price-kids-monthly__head {
    width: 100%;
    text-align: left;
    padding: 7px 19px 14px;
  }
}

.price-list table td.price-kids-monthly__data {
  width: 39.375%;
  padding: 7px 8px 6px;
}
@media screen and (min-width: 768px) {
  .price-list table td.price-kids-monthly__data {
    width: auto;
    padding: 11px 19px 15px;
  }
}

@media screen and (min-width: 768px) {
  .price-kids-monthly__row.header {
    width: 100%;
    max-width: 24.6%;
  }
}

.price-kids-monthly__row.header th:first-child {
  width: 21.875%;
}
@media screen and (min-width: 768px) {
  .price-kids-monthly__row.header th:first-child {
    width: auto;
    height: 33%;
  }
}

.price-kids-monthly__row.header .age {
  width: 39.375%;
  padding: 7px 8px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .price-kids-monthly__row.header .age {
    width: auto;
    padding: 13px 18px;
  }
}

.price-kids-trial__table {
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .price-kids-trial__table {
    margin-top: 1.875rem;
  }
}

.price-kids-trial__caption {
  padding: 7px 8px;
}
@media screen and (min-width: 768px) {
  .price-kids-trial__caption {
    padding: 16px 30px;
  }
}

.price-kids-trial__head.price-kids-number {
  width: 21.875%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .price-kids-trial__head.price-kids-number {
    width: 100%;
    text-align: left;
    padding: 17px 30px;
  }
}

.price-kids-trial__row.price-kids-trial__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .price-kids-trial__row.price-kids-trial__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

@media screen and (min-width: 768px) {
  .price-list table td.price-kids-trial__data {
    padding: 11px 30px 15px;
  }
}

.privacy-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .privacy-title {
    max-width: 81.25rem;
    padding: 7.375rem 1.5625rem 7.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .privacy .section-title1 {
    margin-left: 1.125rem;
  }
}

.privacy .main-contents {
  padding-top: 40px;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .privacy .main-contents {
    padding-top: 7.1875rem;
  }
}

.privacy-policy {
  padding: 0 20px 144px;
  padding: 0 1.25rem 9rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy {
    padding: 0 1.5625rem 12.3125rem;
    max-width: 81.25rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.privacy-policy__inner {
  background-color: #ffffff;
  padding: 21px 15px 33px;
  padding: 1.3125rem 0.9375rem 2.0625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .privacy-policy__inner {
    padding: 4.4375rem 7.8125rem 1.125rem;
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.privacy-policy__inner ul {
  margin-top: 27px;
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__inner ul {
    list-style: disc;
    list-style-position: inside;
  }
}

.privacy-policy__inner ul li::marker {
  font-size: 10px;
}

.privacy-policy__inner p:last-child {
  margin-top: 28px;
  margin-top: 1.75rem;
}

.privacy .section-title1__main {
  letter-spacing: -0.05em;
}

.privacy .section-title1__main::after {
  top: -103%;
  right: -33%;
}
@media screen and (min-width: 768px) {
  .privacy .section-title1__main::after {
    top: -98%;
    right: -3%;
  }
}

.schedule-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .schedule-title {
    max-width: 81.25rem;
    padding: 7.375rem 1.5625rem 7.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .schedule-page .section-title1 {
    margin-left: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .schedule-page .section-title1__main {
    letter-spacing: -0.04em;
  }
}

.schedule-page .main-contents {
  padding: 42px 20px 65px;
  padding: 2.625rem 1.25rem 4.0625rem;
}
@media screen and (min-width: 768px) {
  .schedule-page .main-contents {
    padding: 6.25rem 1.5625rem 9.5625rem;
  }
}

.schedule-page .section-title1__main::after {
  top: -99%;
  right: -81%;
}
@media screen and (min-width: 768px) {
  .schedule-page .section-title1__main::after {
    right: -48%;
  }
}

.class-types {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 12px;
  margin-top: 0.75rem;
  -webkit-column-gap: 0.8125rem;
  -moz-column-gap: 0.8125rem;
  column-gap: 0.8125rem;
  row-gap: 10px;
  row-gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .class-types {
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-column-gap: 3.375rem;
    -moz-column-gap: 3.375rem;
    column-gap: 3.375rem;
    margin-top: 0;
    row-gap: 0;
  }
}

.class-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.class-type__color {
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .class-type__color {
    /* width: 5.75rem; */
    width: 2.3125rem;
    height: 2.3125rem;
  }
}

.class-type p {
  margin-left: 7px;
  margin-left: 0.4375rem;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7142857143;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 390px) {
  .class-type p {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .class-type p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.class1 .class-type__color {
  background-color: #f5b2b2;
}

.class2 .class-type__color {
  background-color: #d2ffb2;
}

.class3 .class-type__color {
  background-color: #b7e3ff;
}

.class4 .class-type__color {
  background-color: #ffe76e;
}

.schedule {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .schedule {
    margin-top: 2.5rem;
  }
}

.schedule__caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .schedule__caption {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
    gap: 1.125rem;
  }
}

.schedule__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .schedule__title {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.schedule__time {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.001em;
  color: #333333;
}

.schedule__time span {
  font-weight: 700;
}

.day {
  position: relative;
}

.day:after {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  right: 16px;
  right: 1rem;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .day:after {
    display: none;
  }
}

.day.open:after {
  top: 50%;
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
}

.schedule-imafuku .day {
  background-color: #0028c9;
}

.schedule-caption {
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .schedule-caption__inner {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-right: auto;
    margin-left: auto;
    margin-top: 5.125rem;
  }
}

.schedule-caption p {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .schedule-caption p {
    font-size: 1rem;
    line-height: 1.875;
  }
}

.schedule-caption p a {
  text-decoration: underline;
}

ul.schedule__item > li:last-child {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}

.schedule.schedule-imafuku {
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .schedule.schedule-imafuku {
    margin-top: 6.9375rem;
  }
}

.tt__contents.tt__contents-parent {
  position: relative;
}

.tt__contents-child {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1;
  position: absolute;
  bottom: 11px;
  right: 50%;
  -webkit-transform: translateX(148%);
  transform: translateX(148%);
}
@media screen and (min-width: 768px) {
  .tt__contents-child {
    position: static;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.l-class-types {
  max-width: 600px;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-class-types {
    max-width: none;
  }
}

.class-types {
  max-width: 500px;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .class-types {
    max-width: none;
  }
}

.schedule {
  max-width: 600px;
  max-width: 37.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .schedule {
    max-width: none;
  }
}

.sitemap-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .sitemap-title {
    max-width: 81.25rem;
    padding: 7.375rem 1.5625rem 7.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .sitemap-page .section-title1 {
    margin-left: 1.125rem;
  }
}

.sitemap {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 2.625;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  background-color: #ffffff;
  padding: 22px 67px 48px 39px;
  padding: 1.375rem 4.1875rem 3rem 2.4375rem;
}
@media screen and (min-width: 768px) {
  .sitemap {
    max-width: 81.25rem;
    margin-right: auto;
    margin-left: auto;
    padding: 3.0625rem 0 3rem 7.5625rem;
  }
}

.sitemap-page .main-contents {
  padding: 40px 20px 69px;
  padding: 2.5rem 1.25rem 4.3125rem;
}
@media screen and (min-width: 768px) {
  .sitemap-page .main-contents {
    padding: 6.625rem 1.5625rem 9.6875rem;
  }
}

.sitemap__inner ul {
  list-style: none;
}

.sitemap__inner > ul > li.sitemap__item > a {
  position: relative;
}
.sitemap__inner > ul > li.sitemap__item > span {
  position: relative;
}

.sitemap__inner > ul > li.sitemap__item > a::before {
  content: "";
  display: inline-block;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  background-image: url(../img/square1.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -23px;
}
.sitemap__inner > ul > li.sitemap__item > span::before {
  content: "";
  display: inline-block;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  background-image: url(../img/square1.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: -23px;
}

.sitemap__inner > ul > li ul {
  margin-left: 32px;
  margin-left: 2rem;
}

.sitemap__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.sitemap__item-ch {
  position: relative;
}

.sitemap__item-ch::before {
  content: "└";
  display: inline-block;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 2px;
  left: -29px;
}

.sitemap__item > a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.sitemap__item > a:hover {
  color: #c90000;
}

.sitemap__item > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #c90000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}

.sitemap__item:hover > a::after {
  width: 100%;
}

.sitemap__item-ch > a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.sitemap__item-ch > a:hover {
  color: #c90000;
}

.sitemap__item-ch > a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background-color: #c90000;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  display: block;
}

.sitemap__item-ch:hover > a::after {
  width: 100%;
}

.sitemap-page .section-title1__main::after {
  top: -103%;
  right: -109%;
}
@media screen and (min-width: 768px) {
  .sitemap-page .section-title1__main::after {
    top: -93%;
    right: -64%;
  }
}

.studio-title {
  padding: 30px 0 20px 35px;
  padding: 1.875rem 0 1.25rem 2.1875rem;
}
@media screen and (min-width: 768px) {
  .studio-title {
    padding: 7.875rem 1.5625rem 8.1875rem;
    max-width: 81.25rem;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .studio .section-title1 {
    margin-left: 1.125rem;
  }
}

.studio-title .section-title1__main {
  letter-spacing: -0.05em;
}

.studio-title .section-title1__main::after {
  right: -230%;
}
@media screen and (min-width: 768px) {
  .studio-title .section-title1__main::after {
    top: -63px;
    right: -107%;
  }
}

.studio .mv__inner {
  margin-top: 34px;
  margin-top: 2.125rem;
}
@media screen and (min-width: 768px) {
  .studio .mv__inner {
    margin-top: 0;
  }
}
.studio .mv__upper {
  position: relative;
  width: 100%;
}
.studio .mv__upper picture,
.studio .mv__upper picture img,
.studio .mv__upper picture source {
  aspect-ratio: 390/252;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .studio .mv__upper picture,
  .studio .mv__upper picture img,
  .studio .mv__upper picture source {
    aspect-ratio: 1920/479;
  }
}
.studio .mv__title {
  position: absolute;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1.4666666667;
  letter-spacing: 0.2em;
  color: #ffffff;
  top: 51%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .studio .mv__title {
    top: 53%;
    font-size: 5rem;
    line-height: 1.4625;
  }
}

.mv__lower {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 17px 35px 0;
  padding: 1.0625rem 2.1875rem 0;
  gap: 5px;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .mv__lower {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
    margin-top: 0.3125rem;
    gap: 0.5rem;
  }
}

.mv__lower picture {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__lower picture {
    width: 33.3333333333%;
  }
}

.mv__lower picture img,
.mv__lower picture source {
  aspect-ratio: 320/147;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv__lower picture img,
  .mv__lower picture source {
    aspect-ratio: 635/291;
  }
}

.access {
  margin-top: 47px;
  margin-top: 2.9375rem;
}
@media screen and (min-width: 768px) {
  .access {
    margin-top: 2.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .acess__inner {
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.access__title {
  padding: 0 35px;
  padding: 0 2.1875rem;
  font-size: 38px;
  font-size: 2.375rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .access__title {
    font-size: 3.75rem;
    line-height: 1.4666666667;
    padding: 0;
    letter-spacing: -0.03em;
  }
}

.access__title + span {
  padding: 0 35px;
  padding: 0 2.1875rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.04em;
  color: #c90000;
  display: block;
}
@media screen and (min-width: 768px) {
  .access__title + span {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1;
    margin-top: -0.875rem;
    padding: 0;
  }
}

.access__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .access__info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 6.2%;
    margin-top: 2.25rem;
  }
}

.access__data {
  margin-top: 30px;
  margin-top: 1.875rem;
  padding: 0 25px;
  padding: 0 1.5625rem;
}
@media screen and (min-width: 390px) {
  .access__data {
    padding: 0 2.1875rem;
  }
}
@media screen and (min-width: 768px) {
  .access__data {
    width: 41%;
    margin-top: 1.125rem;
    padding: 0;
  }
}

.access__studio-name {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.001em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .access__studio-name {
    font-size: 1.625rem;
    line-height: 1.5384615385;
  }
}

.access__map {
  width: 100%;
  aspect-ratio: 390/248;
  margin-top: 6px;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .access__map {
    max-width: 41.25rem;
    aspect-ratio: 660/420;
    margin-top: 0;
  }
}

.access__map iframe {
  height: 100%;
  width: 100%;
}

.access__tel {
  font-size: 26px;
  font-size: 1.625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.1538461538;
  letter-spacing: 0.001em;
  margin-top: 13px;
  margin-top: 0.8125rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .access__tel {
    font-size: 1.875rem;
    line-height: 1;
    margin-top: 1.4375rem;
  }
}

.access__tel a {
  margin-left: 5px;
  margin-left: 0.3125rem;
}

.access__address {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: 15px;
  margin-top: 0.9375rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .access__address {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 2.1875rem;
  }
}

.access__caption {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.001em;
  margin-top: 27px;
  margin-top: 1.6875rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .access__caption {
    font-size: 1rem;
    line-height: 1.875;
    margin-top: 27px;
  }
}

.access__tt {
  padding: 0 35px;
  padding: 0 2.1875rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .access__tt {
    text-align: center;
    margin-top: 3.125rem;
  }
}

#imafuku {
  margin-top: 81px;
  margin-top: 5.0625rem;
}
@media screen and (min-width: 768px) {
  #imafuku {
    margin-top: 6.625rem;
  }
}
#imafuku .mv__upper,
#imafuku .mv__lower picture {
  background-color: #bbbbbb;
}
#imafuku .mv__title {
  text-align: center;
  top: 44%;
}
@media screen and (min-width: 768px) {
  #imafuku .mv__title {
    top: 45%;
  }
}
#imafuku .mv__title-sub {
  position: absolute;
  font-size: 17px;
  font-size: 1.0625rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4705882353;
  letter-spacing: 0;
  color: #ffffff;
  top: 73%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #imafuku .mv__title-sub {
    top: 61%;
    font-size: 1.875rem;
    line-height: 1.4666666667;
  }
}

#studio-detail {
  margin-top: 55px;
  margin-top: 3.4375rem;
  padding: 0 35px 77px;
  padding: 0 2.1875rem 4.8125rem;
}
@media screen and (min-width: 768px) {
  #studio-detail {
    margin-top: 4.875rem;
    padding: 0 0 9.75rem;
  }
}

@media screen and (min-width: 768px) {
  .studio-detail__inner {
    margin-top: 3.75rem;
    max-width: 81.25rem;
    padding: 0 1.5625rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.studio-detail__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #1a1a1a;
}
@media screen and (min-width: 768px) {
  .studio-detail__title {
    font-size: 2.875rem;
    line-height: 1.4347826087;
  }
}

.studio-detail__table {
  max-width: 500px;
  max-width: 31.25rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.7857142857;
  letter-spacing: 0.001em;
  color: #333333;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .studio-detail__table {
    max-width: 41.25rem;
    width: 100%;
    font-size: 1rem;
    line-height: 3.125;
    margin-top: 2rem;
  }
}

.studio-detail__item {
  font-weight: 500;
  width: 25.6%;
}
@media screen and (min-width: 768px) {
  .studio-detail__item {
    width: 34.6%;
  }
}

.studio-detail__table td {
  vertical-align: top;
}

.about {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.about__inner {
  padding: 80px 0 0;
  padding: 5rem 0 0;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (min-width: 768px) {
  .about__inner {
    max-width: 81.875rem;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding: 9rem 1.875rem 0;
  }
}

.about__title {
  padding: 0 35px;
  padding: 0 2.1875rem;
}
@media screen and (min-width: 768px) {
  .about__title {
    aspect-ratio: 266/207;
    position: relative;
    padding: 0 0 2.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .about__title::after {
    content: "";
    display: inline-block;
    width: 15.75rem;
    aspect-ratio: 252/174;
    background-image: url(../img/dot.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    top: 24%;
    right: -82%;
    z-index: -1;
  }
}

.about-item1 {
  padding: 0 35px;
  padding: 0 2.1875rem;
}

.about__upper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .about__upper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 0 8.25rem 0 10.4375rem;
    margin-top: 1.6875rem;
    gap: 6.25rem;
  }
}

.about__img {
  margin-top: 27px;
  margin-top: 1.6875rem;
  padding: 0 77px;
  padding: 0 4.8125rem;
}
@media screen and (min-width: 768px) {
  .about__img {
    margin-top: 0;
    padding: 0;
    max-width: 17.875rem;
  }
}

.about__name {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.001em;
  text-align: center;
  margin-top: 23px;
  margin-top: 1.4375rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .about__name {
    font-size: 1.625rem;
    line-height: 1.4230769231;
    text-align: left;
    margin-top: 0;
  }
}

.about__profile {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  margin-top: 30px;
  margin-top: 1.875rem;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .about__profile {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.about__profile span {
  color: #c90000;
}

.about__content {
  max-height: 250px;
  -webkit-transition: max-height 0.5s ease;
  transition: max-height 0.5s ease;
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.001em;
  color: #333333;
  margin-top: 58px;
  margin-top: 3.625rem;
}
@media screen and (min-width: 600px) {
  .about__content {
    max-height: 180px;
  }
}
@media screen and (min-width: 768px) {
  .about__content {
    max-height: none;
    text-align: center;
    line-height: 2.5;
    margin-top: 0;
  }
}

.about__content-container {
  overflow: hidden;
  position: relative;
  padding-bottom: 51px;
  padding-bottom: 3.1875rem;
}
@media screen and (min-width: 768px) {
  .about__content-container {
    margin-top: 3.6875rem;
    padding-bottom: 3.1875rem;
  }
}

.about__content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 250px;
  /* 透明度が変わる範囲の高さ */
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(30%, rgba(255, 255, 255, 0.7)),
    to(rgb(255, 255, 255))
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgb(255, 255, 255) 100%
  );
}
@media screen and (min-width: 600px) {
  .about__content::after {
    height: 180px;
  }
}
@media screen and (min-width: 768px) {
  .about__content::after {
    display: none;
  }
}

.about__content.no-after::after {
  display: none;
}

.about .btn.read-more-btn {
  padding: 0 30px;
  padding: 0 1.875rem;
  margin-top: -9px;
  margin-top: -0.5625rem;
}
@media screen and (min-width: 768px) {
  .about .btn.read-more-btn {
    display: none;
  }
}
.about .btn a.no-barba::after,
.about .btn a:hover::after,
.about .btn a.hover-effect::after {
  -webkit-transform: translate(3px, -3px) rotate(90deg);
  transform: translate(3px, -3px) rotate(90deg);
}
.about .btn a.no-barba.reverse::after,
.about .btn a:hover.reverse::after,
.about .btn a.hover-effect.reverse::after {
  -webkit-transform: translate(3px, 2px) rotate(-90deg);
  transform: translate(3px, 2px) rotate(-90deg);
}
.about .btn a::after {
  right: 12px;
  right: 0.75rem;
  top: 50%;
}
.about .btn a span::before {
  right: -1px;
  top: 49%;
}

.about__catch {
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.3333333333;
  letter-spacing: -0.03em;
  color: #1a1a1a;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about__catch {
    font-size: 3.5rem;
    letter-spacing: -0.05em;
  }
}

.about__catch span {
  color: #c90000;
}

.about__img2 {
  width: 100%;
  margin-top: 13px;
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .about__img2 {
    margin-top: 2.9375rem;
    aspect-ratio: 1250/400;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .about__img2-sp {
    display: none;
  }
}

.about__img2-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .about__img2-pc {
    display: block;
  }
}

.about-item2 .about__content-container {
  margin-top: 45px;
  margin-top: 2.8125rem;
  padding: 0 35px 41px;
  padding: 0 2.1875rem 2.5625rem;
}
.about-item2 .about__content {
  margin-top: 0;
}
.about-item2 .about__content::after {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(255, 255, 255, 0)),
    color-stop(30%, rgba(255, 255, 255, 0.7)),
    color-stop(80%, rgb(255, 255, 255))
  );
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgb(255, 255, 255) 80%
  );
}

.beginner-to-pro__inner {
  padding: 0 20px;
  padding: 0 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 73.6875rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 5%;
  }
}

@media screen and (min-width: 768px) {
  .beginner-to-pro__item {
    width: 48%;
  }
}

.beginner-to-pro__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1.4583333333;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__text {
    text-align: left;
    font-size: 3.1875rem;
    line-height: 1.4509803922;
    margin-top: 0.9375rem;
    letter-spacing: -0.04em;
  }
}

.beginner-to-pro__text span {
  color: #c90000;
}

.beginner-to-pro__text::before {
  content: "";
  display: inline-block;
  width: 136px;
  width: 8.5rem;
  height: 94px;
  height: 5.875rem;
  background-image: url(../img/dot-top-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -34px;
  top: -2.125rem;
  left: -61px;
  left: -3.8125rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__text::before {
    background-image: url(../img/dot.png);
    width: 15.75rem;
    height: 10.875rem;
    top: -4.375rem;
    left: -6.1875rem;
  }
}

.beginner-to-pro__img-box {
  padding: 0 15px;
  padding: 0 0.9375rem;
  margin-top: 23px;
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__img-box {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: calc(50% - 50vw);
    padding: 0;
  }
}

.beginner-to-pro__img {
  max-width: 64.5333333333vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__img {
    display: none;
  }
}

.beginner-to-pro__img1 {
  margin-right: 0;
  margin-left: auto;
}

.beginner-to-pro__img2 {
  margin-top: 3px;
  margin-top: 0.1875rem;
}

.beginner-to-pro__img-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .beginner-to-pro__img-pc {
    display: block;
  }
}

#mv {
  z-index: 1;
  width: 100vw;
  aspect-ratio: 390/505;
}
@media screen and (min-width: 768px) {
  #mv {
    aspect-ratio: 1920/798;
  }
}

#mv .swiper-wrapper {
  height: 100%;
}
#mv .swiper-slide {
  height: 100%;
}
#mv .mv__inner {
  height: inherit;
}
#mv .mv__swiper,
#mv .mv__swiper .swiper-img,
#mv .mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}
#mv .mv__swiper .swiper-img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
  animation: zoomUp 10s linear 0s 1 normal both;
}

.news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 20px;
  max-width: 600px;
  max-width: 37.5rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .news__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 74.1875rem;
    padding: 0px 86px;
    gap: 80px;
  }
}

.news__title {
  padding: 0 15px;
  padding: 0 0.9375rem;
}
@media screen and (min-width: 768px) {
  .news__title {
    margin-top: 2.4375rem;
  }
}

.news__contents {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .news__contents {
    margin-top: 0.9375rem;
  }
}

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 3px 15px 10px;
  padding: 0.1875rem 0.9375rem 0.625rem;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 768px) {
  .news__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 0;
    gap: 2.625rem;
    padding: 18.5px 0.9375rem 19.5px;
  }
}

.news__content span {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.001em;
  color: #c90000;
}

.news__content p {
  font-size: 16px;
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.001em;
  color: #333333;
}

.news__content a {
  text-decoration: underline;
  font-weight: 700;
}

#strength {
  background-color: #1a1a1a;
  margin-top: -26px;
  margin-top: -1.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  #strength {
    margin-top: -5.4375rem;
  }
}

.strength-upper.strength-upper-sp {
  margin-top: 63px;
  margin-top: 3.9375rem;
  z-index: 2;
  position: relative;
}
@media screen and (min-width: 768px) {
  .strength-upper.strength-upper-sp {
    display: none;
  }
}

.strength__main-title {
  position: absolute;
  top: -1%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.strength__main-title--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength__main-title--pc {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

.strength-upper.strength-upper-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-upper.strength-upper-pc {
    display: block;
    z-index: 2;
    position: relative;
  }
}

.strength-lower.strength-lower-sp {
  margin-top: -40px;
  margin-top: -2.5rem;
}
@media screen and (min-width: 768px) {
  .strength-lower.strength-lower-sp {
    display: none;
  }
}

.strength-lower.strength-lower-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-lower.strength-lower-pc {
    display: block;
    margin-top: -11.0625rem;
  }
}

.strength__inner {
  padding: 60px 35px 80px;
  padding: 3.75rem 2.1875rem 5rem;
}
@media screen and (min-width: 768px) {
  .strength__inner {
    padding: 15.375rem 2.1875rem 8.625rem;
  }
}

.strength__main-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.001em;
  color: #ffffff;
  text-align: center;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .strength__main-title {
    font-size: 3.125rem;
  }
}

.strength__title {
  margin-top: -18px;
  margin-top: -1.125rem;
}
@media screen and (min-width: 768px) {
  .strength__title {
    margin-top: 0;
    padding-bottom: 4%;
  }
}

.strength__title1-sp {
  position: relative;
}
@media screen and (min-width: 768px) {
  .strength__title1-sp {
    display: none;
  }
}

.strength__title1-sp::before {
  content: "";
  display: inline-block;
  width: 121.5384615385vw;
  aspect-ratio: 1/1;
  background-image: url(../img/index/black-dot-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -15%;
  left: -62%;
  z-index: 1;
}

.strength__title1-sp::after {
  content: "";
  display: inline-block;
  width: 29.2307692308vw;
  aspect-ratio: 114/92;
  background-image: url(../img/dot-white-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 32%;
  right: -20%;
  z-index: 1;
}

.strength-title1-sp1__inner {
  position: relative;
  z-index: 2;
}

.strength__title2-sp {
  margin-top: 50px;
  margin-top: 3.125rem;
  position: relative;
}
.strength__title2-sp .strength__img-sp {
  margin-top: 26px;
  margin-top: 1.625rem;
}
.strength__title2-sp .strength__img-sp::before {
  top: -50px;
  top: -3.125rem;
  right: -63px;
  right: -3.9375rem;
}
@media screen and (min-width: 768px) {
  .strength__title2-sp {
    display: none;
  }
}

.strength__title2-sp::before {
  content: "";
  display: inline-block;
  width: 121.5384615385vw;
  aspect-ratio: 1/1;
  background-image: url(../img/index/black-dot-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -9%;
  left: 21%;
  z-index: 1;
}

.strength__title2-sp::after {
  content: "";
  display: inline-block;
  width: 29.2307692308vw;
  aspect-ratio: 114/92;
  background-image: url(../img/dot-white-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 34.5%;
  right: -20%;
  z-index: 1;
}

.strength-title1-sp2__inner {
  position: relative;
  z-index: 2;
}

.strength__title3-sp {
  margin-top: 44px;
  margin-top: 2.75rem;
  position: relative;
}
.strength__title3-sp .strength__img-sp {
  margin-top: 26px;
  margin-top: 1.625rem;
}
.strength__title3-sp .strength__img-sp::before {
  top: -50px;
  top: -3.125rem;
  right: -63px;
  right: -3.9375rem;
}
@media screen and (min-width: 768px) {
  .strength__title3-sp {
    display: none;
  }
}

.strength__title3-sp::before {
  content: "";
  display: inline-block;
  width: 121.5384615385vw;
  aspect-ratio: 1/1;
  background-image: url(../img/index/black-dot-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: -16%;
  left: -67%;
  z-index: 1;
}

.strength__title3-sp::after {
  content: "";
  display: inline-block;
  width: 29.2307692308vw;
  aspect-ratio: 114/92;
  background-image: url(../img/dot-white-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 34%;
  right: -20%;
  z-index: 1;
}

.strength-title1-sp3__inner {
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) {
  .strength-item-pc__inner {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.strength-item-pc-1 {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-item-pc-1 {
    display: block;
    margin-top: -4.9375rem;
    position: relative;
  }
}
.strength-item-pc-1 .strength-item-pc__inner {
  gap: 48px;
}
.strength-item-pc-1 .strength__title.strength-item-pc__item {
  margin-top: 0px;
}
.strength-item-pc-1 .strength__img-pc {
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .strength-item-pc-1 .strength__caption {
    padding-left: 0;
  }
}

.strength-item-pc-1::before {
  content: "";
  display: inline-block;
  width: 44.5833333333vw;
  aspect-ratio: 1/1;
  background-image: url(../img/index/black-dot-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: -115%;
  left: 69%;
  z-index: 1;
}

.strength-item-pc__inner {
  position: relative;
  z-index: 2;
}

.strength__title.strength__title3 {
  margin-top: 41px;
  margin-top: 2.5625rem;
}

.strength-item-pc-2 {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-item-pc-2 {
    display: block;
    margin-top: 7.4375rem;
    position: relative;
  }
}
.strength-item-pc-2 .strength-item-pc__item {
  width: 47%;
}
.strength-item-pc-2 .strength-item-pc__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 138px;
  gap: 8.625rem;
}
.strength-item-pc-2 .strength__img-pc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: calc(50% - 50vw);
}
.strength-item-pc-2 .strength__number {
  -webkit-transform: rotate(2deg);
  transform: rotate(2deg);
}
.strength-item-pc-2 .strength__title {
  padding-top: 45px;
  padding-top: 2.8125rem;
  padding-left: 2px;
  padding-left: 0.125rem;
}

.strength-item-pc-2::before {
  content: "";
  display: inline-block;
  width: 44.5833333333vw;
  aspect-ratio: 1/1;
  background-image: url(../img/index/black-dot-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  bottom: -116%;
  left: -4%;
  z-index: 1;
}

.strength-item-pc-3 {
  display: none;
}
@media screen and (min-width: 768px) {
  .strength-item-pc-3 {
    display: block;
    margin-top: 4.875rem;
    position: relative;
  }
  .strength-item-pc-3 .strength-item-pc__item {
    width: 58%;
  }
}
.strength-item-pc-3 .strength__img-pc {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .strength-item-pc-3 .strength__title {
    padding-top: 0.8125rem;
  }
}
.strength-item-pc-3 .strength__number {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}
.strength-item-pc-3 .strength__caption {
  padding-left: 0;
  padding-top: 10px;
  padding-top: 0.625rem;
}

.strength__title .btn {
  margin-top: 34px;
  margin-top: 2.125rem;
  margin-left: 7px;
  margin-left: 0.4375rem;
}
@media screen and (min-width: 768px) {
  .strength__title .btn {
    margin-top: 2.3125rem;
  }
}

.text-banner {
  width: 120%;
  background-color: #333333;
  z-index: 2;
  position: relative;
  -webkit-transform: rotate(-4deg);
  transform: rotate(-4deg);
  left: -10%;
  margin-top: 78px;
  margin-top: 4.875rem;
}
@media screen and (min-width: 768px) {
  .text-banner {
    width: 150%;
    left: -20%;
    margin-top: 4rem;
  }
}

.text-banner p {
  font-size: 49px;
  font-size: 3.0625rem;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1.4693877551;
  letter-spacing: 0.001em;
  color: #1a1a1a;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .text-banner p {
    font-size: 9.1875rem;
    line-height: 1.462585034;
  }
}

.text-banner--lower {
  margin-top: -27px;
  margin-top: -1.6875rem;
}
@media screen and (min-width: 768px) {
  .text-banner--lower {
    margin-top: -7.5625rem;
    z-index: 0;
  }
}

.strength-item-pc-1 .strength__img-pc {
  position: relative;
}

.strength-item-pc-1 .strength__img-pc::before {
  content: "";
  display: block;
  width: 108%;
  height: 100%;
  background-image: url(../img/index/strength1-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 17%;
  left: -8%;
  z-index: -1;
}

.strength-item-pc-1 .strength__img-pc::after {
  content: "";
  display: inline-block;
  width: 13.125vw;
  aspect-ratio: 252/174;
  background-image: url(../img/dot-white-pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 93%;
  right: 95%;
  z-index: 2;
}

.strength-item-pc-2 .strength__img-pc {
  position: relative;
}

.strength-item-pc-2 .strength__img-pc::before {
  content: "";
  display: block;
  width: 109%;
  height: 100%;
  background-image: url(../img/index/strength2-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 16%;
  left: 0%;
  z-index: -1;
}

.strength-item-pc-2 .strength__img-pc::after {
  content: "";
  display: inline-block;
  width: 13.125vw;
  aspect-ratio: 252/174;
  background-image: url(../img/dot-white-pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 96%;
  right: -23%;
  z-index: -1;
}

.strength-item-pc-3 .strength__img-pc {
  position: relative;
}

.strength-item-pc-3 .strength__img-pc::before {
  content: "";
  display: block;
  width: 109%;
  height: 100%;
  background-image: url(../img/index/strength3-bg.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 22%;
  left: -8.5%;
  z-index: -1;
}

.strength-item-pc-3 .strength__img-pc::after {
  content: "";
  display: inline-block;
  width: 13.125vw;
  aspect-ratio: 252/174;
  background-image: url(../img/dot-white-pc.png);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  position: absolute;
  top: 97%;
  right: 94%;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .instructor-bg {
    max-width: 81.875rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .instructor__title {
    position: relative;
  }
}

@media screen and (min-width: 768px) {
  .instructor__title::after {
    content: "";
    display: inline-block;
    width: 15.75rem;
    aspect-ratio: 252/174;
    background-image: url(../img/dot.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    top: -34%;
    left: 67%;
    z-index: -1;
  }
}

.instructor__title.section-title2 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0 35px;
  padding: 0 2.1875rem;
}

.instructor__title .section-title2__main {
  font-size: 42px;
  font-size: 2.625rem;
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .instructor__title .section-title2__main {
    font-size: 5rem;
  }
}

.instructor__slider {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 22px;
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .instructor__slider {
    margin-top: 1.1875rem;
  }
}

#instructor .section-title2::before {
  top: -4px;
  top: -0.25rem;
  left: 24px;
  left: 1.5rem;
}
@media screen and (min-width: 768px) {
  #instructor .section-title2::before {
    top: -1.6875rem;
    left: 0.0625rem;
  }
}
#instructor .section-title2__sub {
  color: #c90000;
  font-weight: 500;
  font-size: 22px;
  font-size: 1.375rem;
}
#instructor .instructor__swiper {
  position: relative;
  z-index: 2;
}
#instructor .swiper-img {
  display: block;
  width: 34.4827586207vw;
  aspect-ratio: 144/205;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #instructor .swiper-img {
    width: 15.3846153846vw;
    aspect-ratio: 297/380;
  }
}
#instructor .swiper-img picture,
#instructor .swiper-img picture img,
#instructor .swiper-img picture source {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
#instructor .btn {
  padding: 0 35px;
  padding: 0 2.1875rem;
  margin-top: 27px;
  margin-top: 1.6875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #instructor .btn {
    margin-top: 3.125rem;
  }
}
@media screen and (min-width: 768px) {
  #instructor .btn a {
    padding: 1.5625rem 0.625rem 1.5625rem 2.875rem;
  }
}
#instructor .swiper-button-prev,
#instructor .swiper-button-next {
  position: absolute;
  top: 78%;
  width: 48px;
  width: 3rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #instructor .swiper-button-prev,
  #instructor .swiper-button-next {
    width: 3.9375rem;
    top: 50%;
  }
}
#instructor .swiper-button-prev {
  left: 4%;
}
@media screen and (min-width: 768px) {
  #instructor .swiper-button-prev {
    left: 14%;
  }
}
#instructor .swiper-button-next {
  right: 4%;
}
@media screen and (min-width: 768px) {
  #instructor .swiper-button-next {
    right: 14%;
  }
}

@media screen and (min-width: 768px) {
  .studio__inner-pc {
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      from(#ffffff),
      color-stop(14%, #ffffff),
      color-stop(14%, #333333),
      to(#333333)
    );
    background: linear-gradient(
      #ffffff 0%,
      #ffffff 14%,
      #333333 14%,
      #333333 100%
    );
    padding-bottom: 3.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .studio__title-bg {
    padding: 0 1.875rem;
    max-width: 81.875rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.studio__title.section-title2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .studio__title .section-title2__main {
    font-size: 5.1875rem;
  }
}

.studio__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

@media screen and (min-width: 768px) {
  .studio__title::after {
    content: "";
    display: inline-block;
    width: 15.75rem;
    aspect-ratio: 252/174;
    background-image: url(../img/dot.png);
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    position: absolute;
    top: -18%;
    left: 74%;
    z-index: -1;
  }
}

.studio__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-top: 21px;
  margin-top: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .studio__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-top: 2rem;
    max-width: 81.25rem;
    margin-right: auto;
    margin-left: auto;
    margin-top: 0.375rem;
  }
}

.studio__item {
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#ffffff),
    color-stop(16%, #ffffff),
    color-stop(16%, #333333),
    to(#333333)
  );
  background: linear-gradient(
    #ffffff 0%,
    #ffffff 16%,
    #333333 16%,
    #333333 100%
  );
  padding: 29px 35px 20px;
  padding: 1.8125rem 2.1875rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .studio__item {
    background: transparent;
    padding: 1.1875rem 1.5rem 1.25rem;
    width: 50%;
  }
}

.studio__access {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 5px;
  margin-top: 0.3125rem;
  gap: 11px;
  gap: 0.6875rem;
}

.studio__name {
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.001em;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .studio__name {
    font-size: 1.875rem;
  }
}

.studio__pin {
  width: 18px;
  width: 1.125rem;
  aspect-ratio: 18/26.5;
}

#studio .btn {
  margin-top: 15px;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  #studio .btn {
    margin-top: 1.1875rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #studio .section-title2::before {
    left: -1.8125rem;
  }
}
#studio .section-title2__sub {
  color: #c90000;
}

.studio__img picture source,
.studio__img picture img {
  aspect-ratio: 320/212;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  .studio__img picture source,
  .studio__img picture img {
    aspect-ratio: 610/404;
  }
}

/* タイムテーブルメニュー追加（20250425) */

.timetable-dropdown-sp-items {
}

.timetable-dropdown-sp-item {
  position: relative;
  left: 1.1875rem;
}
.timetable-dropdown-sp-item::before {
  position: absolute;
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5625rem;
  top: 38%;
  transform: translateX(-50%);
  left: -0.75rem;
  border-left: 1px solid #707070;
  border-bottom: 1px solid #707070;
}

@media screen and (min-width: 768px) {
  .timetable-dropdown-items {
    background-color: #333;
    border-top: 4px solid #c90000;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: center top;
    transform-origin: center top;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #fff;
  }

  .timetable-dropdown-item {
    background-color: #333;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .timetable-dropdown-item:hover {
    background-color: rgb(93, 93, 93);
  }

  .header__nav-item .timetable-dropdown-item a {
    display: block;
    padding: 0.8125rem 0 0.8125rem 1.3125rem;
    justify-content: flex-start;
  }
  .js-timetable-dropdown:hover .timetable-dropdown-items {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    z-index: 55;
  }
}

/*# sourceMappingURL=styles.css.map */
