@charset "UTF-8";
/* フォント
  ----------------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap");
body {
  font-family: "游ゴシック体 Pr6N M", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  word-break: normal;
  overflow-wrap: anywhere;
  line-break: strict;
}

/* destyle.css v4.0.1
  ----------------------------------------------------------------- */
*,
::before,
::after {
  min-width: 0;
  border-width: 0;
  border-style: solid;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

dd {
  margin-left: 0;
}

hr {
  clear: both;
  height: 0;
  margin: 0;
  overflow: visible;
  border-top-width: 1px;
  box-sizing: content-box;
  color: inherit;
}

pre {
  font-size: inherit;
  font-family: monospace, monospace;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-size: inherit;
  font-family: monospace, monospace;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  padding: 0;
  vertical-align: top;
}

th {
  font-weight: bold;
  text-align: left;
}

/* 共通のCSS
  ----------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  overflow-x: hidden;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: auto;
  font-style: italic;
}

.sm {
  display: block;
}
@media (min-width: 768px) {
  .sm {
    display: none;
  }
}

.md {
  display: none;
}
@media (min-width: 768px) {
  .md {
    display: block;
  }
}
@media (min-width: 1024px) {
  .md {
    display: none;
  }
}

.sm-md {
  display: block;
}
@media (min-width: 1024px) {
  .sm-md {
    display: none;
  }
}

.lg {
  display: none;
}
@media (min-width: 1024px) {
  .lg {
    display: block;
  }
}

.md-lg {
  display: none;
}
@media (min-width: 768px) {
  .md-lg {
    display: block;
  }
}
@media (min-width: 1280px) {
  .md-lg {
    display: none;
  }
}

.xl {
  display: none;
}
@media (min-width: 1280px) {
  .xl {
    display: block;
  }
}

.uc {
  text-transform: uppercase;
}

a {
  transition: opacity 0.4s;
}
@media (hover: hover) {
  a:where(:-webkit-any-link, :enabled, summary):hover {
    opacity: 0.4;
  }
  a:where(:-moz-any-link, :enabled, summary):hover {
    opacity: 0.4;
  }
  a:where(:any-link, :enabled, summary):hover {
    opacity: 0.4;
  }
}

.text {
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .text {
    font-size: 1rem;
  }
}

.text.-bold {
  font-family: "游ゴシック体 Pr6N B";
}

.list li::before {
  content: "・";
}

.group {
  position: relative;
}

/* アコーディオン
  ----------------------------------------------------------------- */
.c-accordion-q {
  display: block;
  position: relative;
  cursor: pointer;
}
.c-accordion-q::-webkit-details-marker {
  display: none;
}
.c-accordion-q::after {
  position: absolute;
  top: 50%;
  right: 0;
  color: #4abebe;
  content: "+";
  font-size: 4.7368421053vw;
  line-height: 1.6666666667;
  translate: 0 -50%;
}
@media (min-width: 768px) {
  .c-accordion-q::after {
    font-size: 1.25rem;
  }
}

.c-accordion-q__text {
  display: flex;
  gap: 3.1578947368vw;
  padding-right: calc(1em + 2.6315789474vw);
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .c-accordion-q__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-accordion-q__text {
    gap: 1rem;
    padding-right: 1.75rem;
  }
}
.c-accordion-q__text::before {
  display: block;
  flex-shrink: 0;
  content: "Q";
  font-size: 5.2631578947vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .c-accordion-q__text::before {
    font-size: 1.4375rem;
  }
}
@media (min-width: 768px) {
  .c-accordion-q__text::before {
    display: inline-block;
    padding-top: 0.125rem;
  }
}

.c-accordion[open] .c-accordion-q::after {
  color: #4abebe;
  content: "−";
}

.c-accordion-a {
  padding-top: 2.1052631579vw;
}
@media (min-width: 768px) {
  .c-accordion-a {
    padding-top: 0.75rem;
  }
}

.c-accordion-a__text {
  display: flex;
  gap: 3.1578947368vw;
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .c-accordion-a__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .c-accordion-a__text {
    gap: 1rem;
  }
}
.c-accordion-a__text::before {
  display: block;
  flex-shrink: 0;
  color: #4abebe;
  content: "A";
  font-size: 5.2631578947vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .c-accordion-a__text::before {
    font-size: 1.4375rem;
  }
}
@media (min-width: 768px) {
  .c-accordion-a__text::before {
    display: inline-block;
    padding-top: 0.3125rem;
  }
}

.c-accordion + .c-accordion {
  padding-top: 9.4736842105vw;
}
@media (min-width: 768px) {
  .c-accordion + .c-accordion {
    padding-top: 3.75rem;
  }
}

/* カード
  ----------------------------------------------------------------- */
.c-card {
  padding: 7.8947368421vw 5.2631578947vw;
}
@media (min-width: 768px) {
  .c-card {
    display: grid;
    align-items: center;
    padding: 3.75rem 2.5rem;
  }
}

.c-card__unit {
  display: flex;
  justify-content: space-between;
  padding-top: 5.2631578947vw;
}
@media (min-width: 768px) {
  .c-card__unit {
    padding-top: 1.25rem;
  }
}

.c-card__name {
  font-size: 4.2105263158vw;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .c-card__name {
    font-size: 1.125rem;
  }
}

.c-card__links {
  display: flex;
  gap: 4.2105263158vw;
}
@media (min-width: 768px) {
  .c-card__links {
    gap: 1rem;
  }
}

.c-card__link {
  display: inline-block;
  width: 4.7368421053vw;
  height: 4.7368421053vw;
}
@media (min-width: 768px) {
  .c-card__link {
    width: 1.125rem;
    height: 1.125rem;
  }
}
.c-card__link img {
  display: inline-block;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.c-card__link.staff-facebook {
  width: 5.7894736842vw;
  height: 5.7894736842vw;
}
@media (min-width: 768px) {
  .c-card__link.staff-facebook {
    width: 1.375rem;
    height: 1.375rem;
  }
}

.c-card__text {
  font-size: 2.8947368421vw;
  line-height: 1.8181818182;
}
@media (min-width: 768px) {
  .c-card__text {
    font-size: 0.875rem;
  }
}

.c-card__texts {
  padding-top: 4.4736842105vw;
}
@media (min-width: 768px) {
  .c-card__texts {
    padding-top: 1.0625rem;
  }
}
.c-card__texts .c-card__text {
  display: flex;
}
.c-card__texts .c-card__text:first-of-type {
  font-family: "游ゴシック体 Pr6N D";
}
.c-card__texts span {
  display: inline-block;
}
.c-card__texts span:first-of-type {
  width: 11.5789473684vw;
}
@media (min-width: 768px) {
  .c-card__texts span:first-of-type {
    width: 3.75rem;
  }
}
.c-card__texts span:last-of-type::before {
  margin: 0 1.0526315789vw;
  content: "／";
}
@media (min-width: 768px) {
  .c-card__texts span:last-of-type::before {
    margin: 0 0.25rem;
  }
}

.c-card__bottom {
  min-height: 28.9473684211vw;
  padding-top: 5.2631578947vw;
}
@media (min-width: 768px) {
  .c-card__bottom {
    min-height: auto;
    padding-top: 1.75rem;
  }
}
.c-card__bottom .c-card__text {
  padding-top: 2.6315789474vw;
}
@media (min-width: 768px) {
  .c-card__bottom .c-card__text {
    padding-top: 0.625rem;
  }
}

.c-card__comment {
  font-size: 5.2631578947vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .c-card__comment {
    font-size: 1.4375rem;
  }
}

/* パーツ
  ----------------------------------------------------------------- */
.section__title {
  display: flex;
  align-items: center;
  gap: 3.1578947368vw;
}
@media (min-width: 768px) {
  .section__title {
    gap: 1.125rem;
  }
}
.section__title span {
  display: block;
  flex-shrink: 0;
  font-size: 5.2631578947vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .section__title span {
    font-size: 1.4375rem;
  }
}
.section__title::after {
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: "";
}

.js-section__title::after {
  display: block;
  transform: scaleX(0);
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: "";
  -webkit-animation: section__title-extend 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: section__title-extend 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes section__title-extend {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes section__title-extend {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
.group__title {
  display: flex;
  gap: 2.6315789474vw;
  font-family: "游ゴシック体 Pr6N B";
  font-size: 4.7368421053vw;
  line-height: 1.6666666667;
}
@media (min-width: 768px) {
  .group__title {
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) {
  .group__title {
    gap: 0.9375rem;
  }
}
.group__title::before {
  display: block;
  transform: scaleY(0);
  width: 10px;
  height: 6.3157894737vw;
  background-color: #e9f496;
  content: "";
}
@media (min-width: 768px) {
  .group__title::before {
    height: 2.25rem;
  }
}

.group__title.-two::before {
  height: 14.2105263158vw;
}
@media (min-width: 768px) {
  .group__title.-two::before {
    position: relative;
    top: 0.3125rem;
    height: 3.4375rem;
  }
}

.js-group__title::before {
  -webkit-animation: group__title-extend 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: group__title-extend 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes group__title-extend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes group__title-extend {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
.group__catch {
  margin-top: 5.2631578947vw;
  padding: 2.6315789474vw;
  background-color: #e9f496;
  font-family: "游ゴシック体 Pr6N B";
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .group__catch {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .group__catch {
    margin-top: 1.875rem;
    padding: 0.9375rem;
  }
}

.btn {
  display: grid;
  position: relative;
  max-width: 75.7894736842vw;
  min-height: 18.6842105263vw;
  padding: 2.6315789474vw 15.7894736842vw 2.6315789474vw 10.5263157895vw;
  border: 2px solid #464646;
  border-radius: 100vmax;
  background-color: #fff;
  place-content: center;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .btn {
    max-width: 28.125rem;
    min-height: 6.25rem;
    padding: 1.125rem 1.875rem;
  }
}

.btn.-yellow {
  background-color: #e9f496;
}

.btn__texts {
  display: inline-flex;
  flex-direction: column;
  gap: 1.0526315789vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .btn__texts {
    gap: 0.75rem;
  }
}

.btn__text.-en {
  font-size: 5.2631578947vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .btn__text.-en {
    font-size: 1.4375rem;
  }
}

.btn__text.-bold {
  border-bottom: 1px solid #e9f496;
  line-height: 1.4 !important;
  font-family: "游ゴシック体 Pr6N B";
  font-size: 4.2105263158vw;
  line-height: 1.875;
}
@media (min-width: 768px) {
  .btn__text.-bold {
    font-size: 1.125rem;
  }
}

.btn__icon {
  position: absolute;
  top: 50%;
  right: 5.2631578947vw;
  transform: translateY(-50%);
  width: 7.8947368421vw;
  height: 7.8947368421vw;
}
@media (min-width: 768px) {
  .btn__icon {
    right: 1.25rem;
    width: 2.8125rem;
    height: 2.8125rem;
  }
}
.btn__icon img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

/* アイコン
  ----------------------------------------------------------------- */
.c-icon-arrow {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 0.1em solid currentColor;
  border-bottom: 0;
  border-left: 0;
  box-sizing: border-box;
  color: #464646;
  line-height: 1;
  vertical-align: middle;
  caret-color: transparent;
}

.c-icon-arrow.-left {
  translate: 25%;
  rotate: -135deg;
}

.c-icon-arrow.-right {
  translate: -25%;
  rotate: 45deg;
}

/* Swiper 8.4.7
  ----------------------------------------------------------------- */
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  list-style: none;
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  padding: 0;
  overflow: hidden;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  display: flex;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  box-sizing: content-box;
  transition-property: transform;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}
.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 100%;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight {
  height: auto;
}
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  flex-shrink: 0;
  order: 9999;
  content: "";
}
.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  width: var(--swiper-centered-offset-after);
  height: 100%;
  min-height: 1px;
}
.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

/* スライダー（Swiper）
  ----------------------------------------------------------------- */
.js-slider__body {
  position: relative;
}

.swiper-controller {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translateY(-50%);
  width: 96%;
}

.swiper-button-prev,
.swiper-button-next {
  display: grid;
  width: 11.5789473684vw;
  max-width: 3.125rem;
  height: 11.5789473684vw;
  max-height: 3.125rem;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.2s;
  place-content: center;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  content: "";
}

.swiper-button-disabled {
  opacity: 0.1;
  pointer-events: none;
}

.js-slider-1 .js-slider__body {
  contain: content;
}
.js-slider-1 .swiper-controller {
  justify-content: space-between;
  align-items: center;
  position: absolute;
  z-index: 1;
  margin: auto;
  inset: 0;
}

.js-slider-2 {
  overflow: hidden;
}
.js-slider-2 .js-slider__body {
  max-width: 1200px;
  margin-inline: auto;
}
.js-slider-2 .swiper {
  overflow: visible;
}

.slider-mv .swiper-slide {
  height: 100svh;
  height: 100vh;
  transition-property: opacity !important;
}
.slider-mv .swiper-slide img {
  transform: scale(1);
  height: 100%;
  transition: transform 5s;
}

/* スクロールアニメーション（animista）
  ----------------------------------------------------------------- */
.js-trigger-fadeIn,
.js-trigger-blur,
.js-trigger-extend,
.js-trigger-slide-to-right,
.js-trigger-each span {
  opacity: 0;
}

.js-fadeIn {
  opacity: 0;
  -webkit-animation: fadeIn 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) both;
          animation: fadeIn 0.7s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-blur {
  opacity: 0;
  -webkit-animation: blur 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
          animation: blur 1s cubic-bezier(0.55, 0.085, 0.68, 0.53) both;
}

@-webkit-keyframes blur {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(12px);
  }
  100% {
    opacity: 1;
    filter: blur(0px);
  }
}
.js-extend {
  opacity: 0;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  -webkit-animation: js-extend 1s forwards;
          animation: js-extend 1s forwards;
}
.js-extend::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #464646;
  content: "";
  -webkit-animation: js-extend-before 1s forwards;
          animation: js-extend-before 1s forwards;
}

@-webkit-keyframes js-extend {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes js-extend {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes js-extend-before {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes js-extend-before {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  50% {
    transform: scaleX(1);
    transform-origin: left;
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.js-trigger-slide-to-right {
  display: inline-block;
  overflow: hidden;
}
.js-trigger-slide-to-right span {
  display: inline-block;
}

.js-slide-to-right {
  opacity: 0;
  -webkit-animation: js-slide-to-right 0.8s forwards;
          animation: js-slide-to-right 0.8s forwards;
}

@-webkit-keyframes js-slide-to-right {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes js-slide-to-right {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-slide-to-left {
  opacity: 0;
  -webkit-animation: js-slide-to-left 0.8s forwards;
          animation: js-slide-to-left 0.8s forwards;
}

@-webkit-keyframes js-slide-to-left {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes js-slide-to-left {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.js-each span {
  -webkit-animation: js-each 1s ease-out forwards;
          animation: js-each 1s ease-out forwards;
}

@-webkit-keyframes js-each {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes js-each {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-smooth-text {
  display: block;
  overflow: hidden;
}

.js-trigger-smooth {
  display: block;
  transform: translate3d(0, 100%, 0) skewY(12deg);
  transition: 0.8s ease-in-out;
  transform-origin: left;
}

.js-smooth {
  transform: translate3d(0, 0, 0) skewY(0);
}

/* フッター
  ----------------------------------------------------------------- */
.footer {
  position: relative;
}

.footer__container {
  padding-top: 34.2105263158vw;
  padding-bottom: 7.8947368421vw;
  padding-right: 5.2631578947vw;
  padding-left: 5.2631578947vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .footer__container {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}
@media (min-width: 768px) {
  .footer__container {
    padding-top: 8.125rem;
    padding-bottom: 1.875rem;
  }
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 6.3157894737vw;
}
@media (min-width: 768px) {
  .footer__list {
    gap: 1.5rem;
  }
}

.footer__item {
  display: flex;
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .footer__item {
    font-size: 1rem;
  }
}
.footer__item span {
  display: inline-block;
}
.footer__item span:first-of-type {
  width: 13.6842105263vw;
}
@media (min-width: 768px) {
  .footer__item span:first-of-type {
    width: 4.5rem;
  }
}
.footer__item span:last-of-type::before {
  margin: 0 2.1052631579vw 0 0.5263157895vw;
  content: "／";
}
@media (min-width: 768px) {
  .footer__item span:last-of-type::before {
    margin: 0 0.75rem 0 0;
  }
}

.footer__item.-left {
  padding-left: 1em;
}
.footer__item.-left span:first-of-type {
  width: 31.5789473684vw;
}
@media (min-width: 768px) {
  .footer__item.-left span:first-of-type {
    width: 10.125rem;
  }
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 4.7368421053vw;
  padding-top: 14.2105263158vw;
}
@media (min-width: 768px) {
  .footer__links {
    gap: 1.125rem;
    padding-top: 3.375rem;
  }
}

.footer__text {
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .footer__text {
    font-size: 1rem;
  }
}

.footer__link {
  width: 5.2631578947vw;
  height: 6.0526315789vw;
}
@media (min-width: 768px) {
  .footer__link {
    width: 1.25rem;
    height: 1.4375rem;
  }
}
.footer__link img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer__copy {
  padding-top: 5.7894736842vw;
  font-size: 2.8947368421vw;
  line-height: 1.8181818182;
}
@media (min-width: 768px) {
  .footer__copy {
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .footer__copy {
    padding-top: 1.375rem;
  }
}

.page-top {
  display: flex;
  align-items: baseline;
  gap: 1.8421052632vw;
  position: absolute;
  right: 8.9473684211vw;
  bottom: 30.2631578947vw;
}
@media (min-width: 768px) {
  .page-top {
    gap: 0.4375rem;
    right: 2.125rem;
    bottom: 8.125rem;
  }
}
.page-top img {
  width: 1.3157894737vw;
  height: 6.3157894737vw;
}
@media (min-width: 768px) {
  .page-top img {
    width: 0.625rem;
    height: 3rem;
  }
}

/* MYSTA LP
  ----------------------------------------------------------------- */
.mysta__body {
  background-color: #f2efe8;
}
@media (min-width: 768px) {
  .mysta__body {
    max-width: 48rem;
  }
}

.mysta__container {
  overflow: hidden;
}

.mysta__body-pc {
  display: none;
}
@media (min-width: 768px) {
  .mysta__body-pc {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: calc(100% - 48rem);
    height: 100vh;
  }
}
.mysta__body-pc video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
  border: none;
  outline: none;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
  -o-object-position: left;
     object-position: left;
}
.mysta__body-pc .mv__group.-pc {
  display: none;
}
@media (min-width: 1536px) {
  .mysta__body-pc .mv__group.-pc {
    display: flex;
  }
}
.mysta__body-pc .btn {
  display: none;
}
@media (min-width: 1536px) {
  .mysta__body-pc .btn {
    display: block;
    position: absolute;
    right: 3.75rem;
    bottom: 1.875rem;
    width: 20rem;
  }
}

.mv__group.-mv {
  display: flex;
}
@media (min-width: 1536px) {
  .mv__group.-mv {
    display: none;
  }
}

section:not(.staff) {
  padding-right: 5.2631578947vw;
  padding-left: 5.2631578947vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  section:not(.staff) {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

section + section,
.course .group + .group {
  padding-top: 26.3157894737vw;
}
@media (min-width: 768px) {
  section + section,
.course .group + .group {
    padding-top: 9.375rem;
  }
}

.-padding {
  padding-top: 2em;
}

.pic {
  display: block;
  padding-top: 3em;
}

.texts,
.texts + .btn,
.accordions + .btn {
  margin-top: 7.8947368421vw;
}
@media (min-width: 768px) {
  .texts,
.texts + .btn,
.accordions + .btn {
    margin-top: 2.8125rem;
  }
}

.btn + .movie__links,
.group + .group {
  padding-top: 11.5789473684vw;
}
@media (min-width: 768px) {
  .btn + .movie__links,
.group + .group {
    padding-top: 4.125rem;
  }
}

.movie__links + .btn {
  margin-top: 11.5789473684vw;
}
@media (min-width: 768px) {
  .movie__links + .btn {
    margin-top: 4.125rem;
  }
}

.pic + .btn {
  margin-top: 13.1578947368vw;
}
@media (min-width: 768px) {
  .pic + .btn {
    margin-top: 4.6875rem;
  }
}

.mv {
  position: relative;
  height: 100vh;
  height: 100dvh;
}

.mv__movie {
  height: 100vh;
  height: 100dvh;
  padding-top: 5.2631578947vw;
  padding-bottom: 5.2631578947vw;
}
@media (min-width: 768px) {
  .mv__movie {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}
.mv__movie img,
.mv__movie video {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.mv__movie video {
  border: none;
  outline: none;
  filter: drop-shadow(0px 0px rgb(0, 0, 0));
}
@media (min-width: 1536px) {
  .mv__movie video {
    display: none;
  }
}
.mv__movie img {
  display: none;
}
@media (min-width: 1536px) {
  .mv__movie img {
    display: block;
  }
}

.mv__group {
  display: flex;
  flex-direction: column;
  gap: 7.8947368421vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .mv__group {
    gap: 2.8125rem;
  }
}

.mv__title {
  width: 35.5263157895vw;
}
@media (min-width: 768px) {
  .mv__title {
    width: 12.65625rem;
  }
}
@media (min-width: 1536px) {
  .mv__title {
    width: 14.6875rem;
  }
}

.mv__catch {
  width: 71.3157894737vw;
}
@media (min-width: 768px) {
  .mv__catch {
    width: 25.40625rem;
  }
}
@media (min-width: 1536px) {
  .mv__catch {
    width: 29.375rem;
  }
}

.about > .pic {
  padding-top: 0;
  padding-bottom: 13.1578947368vw;
}
@media (min-width: 768px) {
  .about > .pic {
    padding-bottom: 3.125rem;
  }
}

.logo {
  position: absolute;
  top: 25.5263157895vw;
  right: 0;
  width: 32.1052631579vw;
}
@media (min-width: 768px) {
  .logo {
    top: 8.3125rem;
    width: 12.5rem;
  }
}

.pic.-chart {
  position: relative;
  max-width: 63.1578947368vw;
  margin-right: auto;
  margin-bottom: 13.1578947368vw;
  margin-left: auto;
}
@media (min-width: 768px) {
  .pic.-chart {
    max-width: 29.375rem;
    margin-bottom: 4.375rem;
  }
}

.chart__link {
  position: absolute;
  width: 19.7368421053vw;
  height: 19.7368421053vw;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .chart__link {
    width: 9.375rem;
    height: 9.375rem;
  }
}

.link01 {
  right: 21.8421052632vw;
}
@media (min-width: 768px) {
  .link01 {
    right: 10rem;
  }
}

.link02 {
  bottom: 7.1052631579vw;
  left: 0;
}
@media (min-width: 768px) {
  .link02 {
    bottom: 2.625rem;
  }
}

.link03 {
  right: 0;
  bottom: 7.1052631579vw;
}
@media (min-width: 768px) {
  .link03 {
    bottom: 2.625rem;
  }
}

.staff .section__title {
  padding-bottom: 2em;
  padding-right: 5.2631578947vw;
  padding-left: 5.2631578947vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .staff .section__title {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }
}

.js-slider-2 {
  background-color: #e9f496;
}
@media (min-width: 768px) {
  .js-slider-2 img {
    max-width: 40.5rem;
  }
}

.course__heading {
  padding-top: 8.4210526316vw;
}
@media (min-width: 768px) {
  .course__heading {
    padding-top: 3rem;
  }
}

.course__title {
  display: flex;
  flex-direction: column;
  font-size: 9.2105263158vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .course__title {
    font-size: 2rem;
  }
}
.course__title span {
  display: block;
  padding-top: 2.6315789474vw;
  font-size: 6.5789473684vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .course__title span {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  .course__title span {
    padding-top: 0.625rem;
  }
}
.course__title::after {
  display: block;
  width: 13.1578947368vw;
  height: 1.3157894737vw;
  margin-top: 6.5789473684vw;
  background-color: #e9f496;
  content: "";
}
@media (min-width: 768px) {
  .course__title::after {
    width: 3.125rem;
    height: 0.3125rem;
    margin-top: 1.5625rem;
  }
}

.course__text {
  padding-top: 5.2631578947vw;
  font-family: "游ゴシック体 Pr6N B";
  text-align: right;
  font-size: 3.1578947368vw;
  line-height: 2.0833333333;
}
@media (min-width: 768px) {
  .course__text {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .course__text {
    padding-top: 1.875rem;
  }
}

.movie__links {
  display: flex;
  flex-wrap: wrap;
  gap: 15.7894736842vw 13.1578947368vw;
  max-width: 76.3157894737vw;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .movie__links {
    gap: 2.5rem 3.125rem;
    max-width: 25.625rem;
  }
}

.movie__link {
  width: calc((100% - 13.1578947368vw) / 2);
  font-size: 6.5789473684vw;
  line-height: 1;
  font-family: "EB Garamond", serif;
}
@media (min-width: 768px) {
  .movie__link {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  .movie__link {
    width: calc((100% - 3.125rem) / 2);
  }
}
.movie__link::before {
  display: inline-block;
  width: 0;
  height: 0;
  border-right: 0;
  border-width: 1.8421052632vw 3.1578947368vw;
  border-style: solid;
  border-color: transparent;
  border-left-color: currentColor;
  color: #464646;
  line-height: 1;
  vertical-align: middle;
  content: "";
}
@media (min-width: 768px) {
  .movie__link::before {
    border-width: 0.5rem 0.9375rem;
  }
}

.accordions {
  padding-top: 7.8947368421vw;
}
@media (min-width: 768px) {
  .accordions {
    padding-top: 3.75rem;
  }
}

.instagram__body {
  margin-top: 7.8947368421vw;
}
@media (min-width: 768px) {
  .instagram__body {
    margin-top: 2.8125rem;
  }
}