@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;
}
.footer-button {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 76px;
  position: relative;
  cursor: pointer;
  z-index: 99;
  /* display: none;
  opacity: 0; */
  background: rgb(255, 37, 37);
  background: linear-gradient(
    90deg,
    rgba(255, 37, 37, 1) 0%,
    rgba(255, 90, 205, 1) 100%
  );
}
/* .footer-button::before {
  display: block;
  content: "";
  position: absolute;
  background-image: url(../img/footer-mail-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 50%;
  left: 5%;
  width: 100%;
  height: 29px;
  transform: translateY(-50%);
} */

.footer-button p {
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
  /* transform: translateX(10%); */
}

.footer-button--left {
  left: 0;
}

.footer-button--right {
  right: 0;
}
@media screen and (min-width: 768px) {
  .page-top {
    width: 3.9375rem;
  }
  .footer-button {
    display: none;
  }
}

.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,
.header__lesson-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__lesson-pc {
    aspect-ratio: 250/110;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    position: absolute;
    top: 0;
    right: 16rem;
    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>a {
  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 {
  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__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-footer-button {
  position: fixed;
  display: flex;
  right: 0;
  bottom: 0;
  width: 50%;
  border: 1px solid #fff;
}

@media screen and (min-width: 768px) {
  .l-footer-button {
    display: none;
  }
}

.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;
  }
}

.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;
  }
}
/*# sourceMappingURL=index.css.map */
