/***************************************

anim

***************************************/
/***************************************/
.anim-fadeIn {
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  opacity: 0;
  will-change: opacity;
}
.anim-fadeIn a {
  pointer-events: none;
}
.anim-fadeIn.is-anim {
  opacity: 1;
  will-change: auto;
}
.anim-fadeIn.is-anim a {
  pointer-events: auto;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

html {
  margin: 0 !important;
}

body {
  width: 100%;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-size: 3.5897435897vw;
  letter-spacing: 0.05em;
  word-wrap: break-word;
  position: relative;
  color: #646464;
  font-family: "Noto Serif JP", serif;
  line-break: strict;
  background-color: #F8F8F8;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  body {
    font-size: 16px;
  }
}

img {
  vertical-align: bottom;
  height: auto;
}

a {
  text-decoration: none;
  color: #646464;
  font-size: 14px;
  font-weight: 400;
  word-wrap: break-word;
  display: block;
}

@media screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
a,
img,
a img {
  border: none;
  border: 0px;
  outline: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

small,
picture,
button {
  display: block;
}

*:focus {
  outline: none;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
li,
dt,
dd {
  max-height: 100%;
  margin: 0;
}

@media screen and (min-width: 769px) {
  .hp-displaySp {
    display: none !important;
  }
}

.hp-displayPc {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .hp-displayPc {
    display: block !important;
  }
}

html, body {
  width: 100%;
}

body {
  position: relative;
}

.bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  z-index: -1;
  background: #F8F8F8;
}

.bg-video__movie {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
}

.bg-video__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  background: #F8F8F8;
  -webkit-transition: opacity 1.2s ease;
  transition: opacity 1.2s ease;
}
.bg-video__loading.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.bg-video__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: 0;
  background: rgba(166, 166, 166, 0.3);
  background: rgba(30, 30, 30, 0.35);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
.bg-video__overlay.is-show {
  opacity: 1;
}

:root {
  --header-height: 28.7179487179vw;
}
@media screen and (min-width: 769px) {
  :root {
    --header-height: 7.5vw;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --header-height: 90px;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 6.1538461538vw 7.6923076923vw 6.1538461538vw 5.1282051282vw;
  background: transparent;
  color: #646464;
  -webkit-transition: background-color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 0 2vw;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 0 24px;
  }
}
.header.is-transparent {
  opacity: 0;
  pointer-events: none;
}
.header.is-nav-open {
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (min-width: 769px) {
  .header.is-nav-open .header__btn {
    border-color: #646464;
    color: #646464;
  }
  .header.is-nav-open .header__btn:hover {
    color: #ffffff;
    border-color: #06C755;
  }
  .header.is-nav-open .header__btn.header__btn--request:hover {
    border-color: #B91C2B;
  }
}
.header .header__logo {
  width: 44.358974359vw;
}
@media screen and (min-width: 769px) {
  .header .header__logo {
    width: 26.25vw;
    width: 21.9166666667vw;
  }
}
@media screen and (min-width: 1440px) {
  .header .header__logo {
    width: 315px;
  }
}
.header .header__logo img {
  width: 100%;
}
.header .header__gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100dvh - var(--header-height));
  z-index: 90;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(255, 255, 255, 0.9);
  color: #646464;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.header .header__gnav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .header .header__gnav {
    position: static;
    width: auto;
    height: auto;
    -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;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.1666666667vw;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 0;
    overflow: hidden;
    background: none;
    backdrop-filter: none;
    color: inherit;
    visibility: visible;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  .header .header__gnav {
    gap: 14px;
  }
}

.header__anchor-links {
  width: 33.3333333333vw;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .header__anchor-links {
    width: auto;
    -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;
    gap: 1.6666666667vw;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 1200px) {
  .header__anchor-links {
    gap: 20px;
  }
}
.header__anchor-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  padding: 3.8461538462vw 0;
  font-size: 6.1538461538vw;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "Philosopher", serif;
}
@media screen and (min-width: 769px) {
  .header__anchor-links a {
    gap: 0.3333333333vw;
    font-size: 1.5vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1vw 0;
    font-weight: normal;
    letter-spacing: normal;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header__anchor-links a:hover {
    color: #B91C2B;
  }
}
@media screen and (min-width: 1200px) {
  .header__anchor-links a {
    gap: 4px;
    font-size: 18px;
    padding: 12px 0;
  }
}

.header__ext-links {
  width: 33.3333333333vw;
  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-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .header__ext-links {
    width: auto;
    -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;
    gap: 1.6666666667vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .header__ext-links {
    gap: 20px;
  }
}
.header__ext-links a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.0256410256vw;
  padding: 3.8461538462vw 0;
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 5.1282051282vw;
  color: #646464;
}
@media screen and (min-width: 769px) {
  .header__ext-links a {
    gap: 0.3333333333vw;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 1vw 0;
    font-size: 1.1666666667vw;
    font-weight: normal;
    letter-spacing: normal;
    color: inherit;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  .header__ext-links a:hover {
    color: #B91C2B;
  }
}
@media screen and (min-width: 1200px) {
  .header__ext-links a {
    gap: 4px;
    font-size: 14px;
    padding: 12px 0;
  }
}

.header__arrow-icon {
  display: inline-block;
  width: 1.5384615385vw;
  height: 2.5641025641vw;
  background-image: url(../../assets/img/header__arrow-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .header__arrow-icon {
    width: 0.4166666667vw;
    height: 0.6666666667vw;
    margin-left: 0.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__arrow-icon {
    width: 5px;
    height: 8px;
    margin-left: 8px;
  }
}

.header__blank-icon {
  display: inline-block;
  width: 2.8205128205vw;
  height: 2.8205128205vw;
  background-image: url(../../assets/img/header__blank-icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .header__blank-icon {
    width: 0.75vw;
    height: 0.75vw;
    margin-left: 0.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__blank-icon {
    width: 9px;
    height: 9px;
    margin-left: 9px;
  }
}

.header__gnav-actions {
  width: 84.6153846154vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.5897435897vw;
  margin: 7.6923076923vw auto;
}
.header__gnav-actions .header__btn {
  text-align: center;
  padding: 4.8717948718vw 0;
  font-size: 5.1282051282vw;
}
@media screen and (min-width: 769px) {
  .header__gnav-actions {
    display: none;
  }
}

.header__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5897435897vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .header__actions {
    gap: 1.1666666667vw;
    margin-left: 2.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__actions {
    gap: 14px;
    margin-left: 26px;
  }
}

.header__btn {
  display: block;
  border: 1px solid #646464;
  border-radius: 999px;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .header__btn {
    border-color: #ffffff;
    color: #ffffff;
    width: 7.5vw;
    font-size: 1.1666666667vw;
    padding: 1.0833333333vw 0;
  }
  .header__btn:hover {
    background-color: #06C755;
    border-color: #06C755;
  }
}
@media screen and (min-width: 1200px) {
  .header__btn {
    width: 90px;
    font-size: 14px;
    padding: 13px 0;
  }
}
@media screen and (min-width: 769px) {
  .header__btn.header__btn--request:hover {
    background-color: #B91C2B;
    border-color: #B91C2B;
  }
}

.header__toggle-btn {
  position: relative;
  width: 12.3076923077vw;
  height: 12.3076923077vw;
}
@media screen and (min-width: 769px) {
  .header__toggle-btn {
    width: 3.75vw;
    height: 3.75vw;
    margin-left: 1.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .header__toggle-btn {
    width: 45px;
    height: 45px;
    margin-left: 16px;
  }
}
.header__toggle-btn span {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background: #ffffff;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: top 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease;
  transition: transform 0.3s ease, top 0.3s ease, -webkit-transform 0.3s ease;
  margin: 0 auto;
}
.header__toggle-btn span:nth-child(1) {
  -webkit-transform: translateY(3.0769230769vw);
          transform: translateY(3.0769230769vw);
}
@media screen and (min-width: 769px) {
  .header__toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(1.1666666667vw);
            transform: translateY(1.1666666667vw);
  }
}
@media screen and (min-width: 1200px) {
  .header__toggle-btn span:nth-child(1) {
    -webkit-transform: translateY(14px);
            transform: translateY(14px);
  }
}
.header__toggle-btn span:nth-child(2) {
  -webkit-transform: translateY(6.1538461538vw);
          transform: translateY(6.1538461538vw);
}
@media screen and (min-width: 769px) {
  .header__toggle-btn span:nth-child(2) {
    -webkit-transform: translateY(2.3333333333vw);
            transform: translateY(2.3333333333vw);
  }
}
@media screen and (min-width: 1200px) {
  .header__toggle-btn span:nth-child(2) {
    -webkit-transform: translateY(28px);
            transform: translateY(28px);
  }
}
.header__toggle-btn[aria-expanded=true] span {
  background: #646464;
}
.header__toggle-btn[aria-expanded=true] span:nth-child(1) {
  -webkit-transform: translateY(6.1538461538vw) rotate(25deg);
          transform: translateY(6.1538461538vw) rotate(25deg);
}
@media screen and (min-width: 769px) {
  .header__toggle-btn[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(2vw) rotate(25deg);
            transform: translateY(2vw) rotate(25deg);
  }
}
@media screen and (min-width: 1200px) {
  .header__toggle-btn[aria-expanded=true] span:nth-child(1) {
    -webkit-transform: translateY(24px) rotate(25deg);
            transform: translateY(24px) rotate(25deg);
  }
}
.header__toggle-btn[aria-expanded=true] span:nth-child(2) {
  -webkit-transform: translateY(6.1538461538vw) rotate(-25deg);
          transform: translateY(6.1538461538vw) rotate(-25deg);
}
@media screen and (min-width: 769px) {
  .header__toggle-btn[aria-expanded=true] span:nth-child(2) {
    -webkit-transform: translateY(2vw) rotate(-25deg);
            transform: translateY(2vw) rotate(-25deg);
  }
}
@media screen and (min-width: 1200px) {
  .header__toggle-btn[aria-expanded=true] span:nth-child(2) {
    -webkit-transform: translateY(24px) rotate(-25deg);
            transform: translateY(24px) rotate(-25deg);
  }
}

.kv {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  background: transparent;
  color: #fff;
  overflow: hidden;
}
.kv .kv__inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.kv .kv__catch,
.kv .kv__play,
.kv .kv__notice,
.kv .kv__scroll {
  opacity: 0;
  -webkit-transform: translateY(3.0769230769vw);
          transform: translateY(3.0769230769vw);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
@media screen and (min-width: 769px) {
  .kv .kv__catch,
  .kv .kv__play,
  .kv .kv__notice,
  .kv .kv__scroll {
    -webkit-transform: translateY(1vw);
            transform: translateY(1vw);
  }
}
@media screen and (min-width: 1200px) {
  .kv .kv__catch,
  .kv .kv__play,
  .kv .kv__notice,
  .kv .kv__scroll {
    -webkit-transform: translateY(12px);
            transform: translateY(12px);
  }
}
.kv .kv__catch.is-inview {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.kv .kv__inner.is-ready .kv__play,
.kv .kv__inner.is-ready .kv__notice,
.kv .kv__inner.is-ready .kv__scroll {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.kv .kv__catch {
  position: absolute;
  right: 0;
  left: 0;
  top: calc(50% - 15.8974358974vw);
  width: 93%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .kv .kv__catch {
    top: calc(50% - 3.3333333333vw);
    width: 53.47%;
  }
}
.kv .kv__play {
  position: absolute;
  right: 0;
  bottom: 41.0256410256vw;
  width: 30.7692307692vw;
  height: 30.7692307692vw;
}
@media screen and (min-width: 769px) {
  .kv .kv__play {
    right: 1.8333333333vw;
    bottom: 1.8333333333vw;
    width: 12.75vw;
    height: 12.75vw;
  }
  .kv .kv__play:hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .kv .kv__play {
    right: 22px;
    bottom: 22px;
    width: 153px;
    height: 153px;
  }
}
.kv .kv__play img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .kv .kv__play img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.kv .kv__notice {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15.8974358974vw;
  width: 92.3076923077vw;
  border-radius: 1.2820512821vw;
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .kv .kv__notice {
    left: 3.3333333333vw;
    right: auto;
    bottom: 3.3333333333vw;
    width: 37.0833333333vw;
    border-radius: 0.4166666667vw;
    margin: 0;
  }
  .kv .kv__notice:hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .kv .kv__notice {
    left: 40px;
    bottom: 40px;
    width: 445px;
    border-radius: 5px;
  }
}
.kv .kv__notice img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .kv .kv__notice img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.kv .kv__scroll {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4.8717948718vw;
  width: 8.2051282051vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .kv .kv__scroll {
    cursor: pointer;
    bottom: 2.4166666667vw;
    width: 3.75vw;
  }
  .kv .kv__scroll:hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .kv .kv__scroll {
    bottom: 29px;
    width: 45px;
  }
}
.kv .kv__scroll img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .kv .kv__scroll img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}

.lead {
  z-index: 1;
  width: 100%;
  overflow: hidden;
}
.lead .lead_inner {
  position: relative;
  width: 84.6153846154vw;
  margin: 0 auto;
  padding-top: 41.0256410256vw;
  padding-top: 82.0512820513vw;
  padding-bottom: 116.9230769231vw;
  padding-bottom: 142.5641025641vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_inner {
    width: 83.3333333333vw;
    padding-top: 21.5vw;
    padding-top: 41.6666666667vw;
    padding-bottom: 42.5vw;
    padding-bottom: 59.1666666667vw;
    padding-left: 25.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_inner {
    width: 1000px;
    padding-top: 258px;
    padding-top: 500px;
    padding-bottom: 510px;
    padding-bottom: 710px;
    padding-left: 305px;
  }
}
.lead .lead_picture_a {
  position: absolute;
  top: 2.5641025641vw;
  top: 15.3846153846vw;
  left: -10.2564102564vw;
  width: 34.6153846154vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_a {
    top: 7.25vw;
    left: -0.5vw;
    width: 16.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_a {
    top: 87px;
    left: -6px;
    width: 197px;
  }
}
.lead .lead_picture_b {
  position: absolute;
  top: 13.8461538462vw;
  top: 38.4615384615vw;
  right: -10.2564102564vw;
  width: 38.4615384615vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_b {
    top: 16.5vw;
    right: -11.25vw;
    width: 21.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_b {
    top: 198px;
    right: -135px;
    width: 255px;
  }
}
.lead .lead_picture_c {
  position: absolute;
  top: 177.9487179487vw;
  top: 231.7948717949vw;
  left: -10.2564102564vw;
  width: 38.4615384615vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_c {
    top: 42.8333333333vw;
    left: -15.3333333333vw;
    width: 25.0833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_c {
    top: 514px;
    left: -184px;
    width: 301px;
  }
}
.lead .lead_picture_d {
  position: absolute;
  top: 260vw;
  right: -4.6153846154vw;
  width: 28.7179487179vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_d {
    top: 60.9166666667vw;
    right: -7.1666666667vw;
    width: 15vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_d {
    top: 731px;
    right: -86px;
    width: 180px;
  }
}
.lead .lead_picture_e {
  position: absolute;
  top: 294.6153846154vw;
  left: -4.6153846154vw;
  width: 28.7179487179vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_e {
    top: 91.6666666667vw;
    left: 1.9166666667vw;
    width: 20vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_e {
    top: 1100px;
    left: 23px;
    width: 240px;
  }
}
.lead .lead_picture_f {
  position: absolute;
  top: 317.6923076923vw;
  right: -4.6153846154vw;
  width: 42.3076923077vw;
}
@media screen and (min-width: 769px) {
  .lead .lead_picture_f {
    top: 100.0833333333vw;
    right: -16.25vw;
    width: 20vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead_picture_f {
    top: 1201px;
    right: -195px;
    width: 240px;
  }
}
.lead .lead__title {
  width: 71.2820512821vw;
  margin-bottom: 12.8205128205vw;
}
@media screen and (min-width: 769px) {
  .lead .lead__title {
    width: 23.25vw;
    margin-bottom: 5.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead__title {
    width: 279px;
    margin-bottom: 70px;
  }
}
.lead .lead__title img {
  width: 100%;
}
.lead .lead__text {
  font-size: 3.8461538462vw;
  line-height: 9.2307692308vw;
  color: #ffffff;
  text-align: left;
  letter-spacing: 0;
}
@media screen and (min-width: 769px) {
  .lead .lead__text {
    font-size: 1.4166666667vw;
    line-height: 3.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .lead .lead__text {
    font-size: 17px;
    line-height: 40px;
  }
}
.lead img {
  width: 100%;
}

.content {
  position: relative;
  z-index: 1;
  background: #F8F8F8;
}
.content::before, .content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
  z-index: 1;
  height: 140px;
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 769px) {
  .content::before, .content::after {
    height: 260px;
    backdrop-filter: blur(16px);
  }
}
.content::before {
  top: -140px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0)), color-stop(40%, rgba(248, 248, 248, 0.04)), color-stop(65%, rgba(248, 248, 248, 0.2)), color-stop(85%, rgba(248, 248, 248, 0.55)), to(#f8f8f8));
  background: linear-gradient(to bottom, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 0.04) 40%, rgba(248, 248, 248, 0.2) 65%, rgba(248, 248, 248, 0.55) 85%, #f8f8f8 100%);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, #000), to(#000));
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 60%, #000 100%);
  mask-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(60%, #000), to(#000));
  mask-image: linear-gradient(to bottom, transparent 0%, #000 60%, #000 100%);
}
@media screen and (min-width: 769px) {
  .content::before {
    top: -260px;
  }
}
.content::after {
  bottom: -140px;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(248, 248, 248, 0)), color-stop(40%, rgba(248, 248, 248, 0.04)), color-stop(65%, rgba(248, 248, 248, 0.2)), color-stop(85%, rgba(248, 248, 248, 0.55)), to(#f8f8f8));
  background: linear-gradient(to top, rgba(248, 248, 248, 0) 0%, rgba(248, 248, 248, 0.04) 40%, rgba(248, 248, 248, 0.2) 65%, rgba(248, 248, 248, 0.55) 85%, #f8f8f8 100%);
  -webkit-mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(60%, #000), to(#000));
  -webkit-mask-image: linear-gradient(to top, transparent 0%, #000 60%, #000 100%);
  mask-image: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(60%, #000), to(#000));
  mask-image: linear-gradient(to top, transparent 0%, #000 60%, #000 100%);
}
@media screen and (min-width: 769px) {
  .content::after {
    bottom: -260px;
  }
}
.content .content__inner {
  width: 100%;
  overflow-x: clip;
  padding: 10.2564102564vw 0 23.0769230769vw;
}
@media screen and (min-width: 769px) {
  .content .content__inner {
    padding: 80px 0 12.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .content .content__inner {
    padding: 80px 0 155px;
  }
}
.content .content__block h2 {
  position: relative;
  z-index: 2;
  font-size: 10.2564102564vw;
  font-weight: 400;
  font-family: "Philosopher", serif;
  color: #F8A0BD;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .content .content__block h2 {
    font-size: 3.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .content .content__block h2 {
    font-size: 40px;
  }
}

#jsMovies {
  margin: 14.8717948718vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMovies {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies {
    margin-top: 80px;
  }
}
#jsMovies .movies__list .movies__list__item {
  position: relative;
}
#jsMovies .movies__list .movies__list__item .movies__list__item__circle {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translateX(50%) translateY(-45%);
          transform: translateX(50%) translateY(-45%);
  width: 131.5384615385vw;
  margin: 0 auto;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__circle {
    width: 100vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__circle {
    width: 1200px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__circle img {
  width: 100%;
}
#jsMovies .movies__list .movies__list__item .movies__list__item__circle.movies__list__item__circle_a {
  -webkit-transform: translateX(50%) translateY(-45%) rotate(210deg);
          transform: translateX(50%) translateY(-45%) rotate(210deg);
}
#jsMovies .movies__list .movies__list__item .movies__list__item__circle.movies__list__item__circle_b {
  -webkit-transform: translateX(50%) translateY(-45%) rotate(5deg);
          transform: translateX(50%) translateY(-45%) rotate(5deg);
}
#jsMovies .movies__list .movies__list__item .movies__list__item__circle.movies__list__item__circle_c {
  -webkit-transform: translateX(50%) translateY(-45%) rotate(70deg);
          transform: translateX(50%) translateY(-45%) rotate(70deg);
}
#jsMovies .movies__list .movies__list__item .movies__list__item__title {
  position: relative;
  z-index: 2;
  margin: 17.6923076923vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title {
    margin-top: 16.5833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title {
    margin-top: 199px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_a {
  width: 66.4102564103vw;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_a {
    width: 30.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_a {
    width: 364px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_b {
  width: 23.8461538462vw;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_b {
    width: 10.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_b {
    width: 131px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_c {
  width: 46.6666666667vw;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_c {
    width: 21.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__title.movies__list__item__title_c {
    width: 258px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail {
  position: relative;
  width: 92.3076923077vw;
  border-radius: 1.2820512821vw;
  overflow: hidden;
  margin: 10.2564102564vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail {
    width: 63.5833333333vw;
    border-radius: 0.4166666667vw;
    margin-top: 5.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail {
    width: 763px;
    border-radius: 5px;
    margin-top: 66px;
  }
}
#jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
  width: 21.7948717949vw;
  height: 21.7948717949vw;
  background-image: url(../../assets/img/movies__btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail::after {
    width: 10.5vw;
    height: 10.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item .movies__list__item__thumbnail::after {
    width: 126px;
    height: 126px;
  }
}
#jsMovies .movies__list .movies__list__item ol {
  position: relative;
  z-index: 3;
  width: 85.3846153846vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 6.6666666667vw auto 0;
  gap: 3.8461538462vw 0;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item ol {
    width: 63.5833333333vw;
    margin-top: 2.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item ol {
    width: 763px;
    margin-top: 30px;
  }
}
#jsMovies .movies__list .movies__list__item ol li {
  width: 50%;
  text-align: center;
}
#jsMovies .movies__list .movies__list__item ol li:first-of-type {
  border-right: 1px solid #646464;
}
#jsMovies .movies__list .movies__list__item ol li:nth-of-type(3) {
  border-right: 1px solid #646464;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item ol li {
    width: auto;
    padding: 0 1.8333333333vw;
    border-right: 1px solid #646464;
  }
  #jsMovies .movies__list .movies__list__item ol li:first-of-type {
    padding-left: 0;
  }
  #jsMovies .movies__list .movies__list__item ol li:last-of-type {
    border: none;
    padding-right: 0;
  }
  #jsMovies .movies__list .movies__list__item ol li:hover p {
    color: #B91C2B;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item ol li {
    padding: 0 22px;
  }
}
#jsMovies .movies__list .movies__list__item ol li p {
  font-size: 3.5897435897vw;
  line-height: 6.1538461538vw;
}
@media screen and (min-width: 769px) {
  #jsMovies .movies__list .movies__list__item ol li p {
    font-size: 1.5vw;
    line-height: 2.5vw;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #jsMovies .movies__list .movies__list__item ol li p {
    font-size: 18px;
    line-height: 30px;
  }
}
#jsMovies img {
  width: 100%;
}

#jsCreator {
  margin: 14.8717948718vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsCreator {
    margin-top: 17vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator {
    margin-top: 204px;
  }
}
#jsCreator .creator_lead {
  position: relative;
  width: 68.4615384615vw;
  margin: 9.4871794872vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_lead {
    width: 40.5vw;
    margin-top: 6.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_lead {
    width: 486px;
    margin-top: 80px;
  }
}
#jsCreator .creator__circle_a {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -48.2051282051vw;
  width: 94.358974359vw;
  pointer-events: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 769px) {
  #jsCreator .creator__circle_a {
    right: -50.8333333333vw;
    width: 50.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator__circle_a {
    right: -610px;
    width: 610px;
  }
}
#jsCreator .creator__circle_b {
  position: absolute;
  z-index: -1;
  top: -15.3846153846vw;
  left: -78.2051282051vw;
  width: 141.0256410256vw;
  pointer-events: none;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (min-width: 769px) {
  #jsCreator .creator__circle_b {
    top: 0;
    left: -31.25vw;
    width: 27.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator__circle_b {
    left: -375px;
    width: 330px;
  }
}
#jsCreator .creator_inner {
  width: 84.6153846154vw;
  margin: 16.9230769231vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 83.3333333333vw;
    margin-top: 9.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner {
    width: 1000px;
    margin-top: 114px;
  }
}
#jsCreator .creator_inner .creator_picture {
  border-radius: 1.2820512821vw;
  overflow: hidden;
}
#jsCreator .creator_inner .creator_picture picture {
  display: block;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_picture {
    width: 33.75vw;
    border-radius: 0.4166666667vw;
    position: sticky;
    top: calc(var(--header-height) + 1.6666666667vw);
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_picture {
    width: 405px;
    border-radius: 5px;
    top: calc(var(--header-height) + 20px);
  }
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data {
    width: 42.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data {
    width: 515px;
  }
}
#jsCreator .creator_inner .creator_data dl {
  position: relative;
  margin-top: 14.358974359vw;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl {
    margin-top: 3.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data dl {
    margin-top: 47px;
  }
}
#jsCreator .creator_inner .creator_data dl:nth-of-type(1) {
  margin-top: 10.5128205128vw;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl:nth-of-type(1) {
    margin-top: 0;
  }
}
#jsCreator .creator_inner .creator_data dl dt img {
  width: 32.5641025641vw;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl dt img {
    width: 10.5833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data dl dt img {
    width: 127px;
  }
}
#jsCreator .creator_inner .creator_data dl dt h4 {
  font-size: 6.1538461538vw;
  font-weight: 400;
  font-family: "Philosopher", serif;
  color: #F8A0BD;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl dt h4 {
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data dl dt h4 {
    font-size: 22px;
  }
}
#jsCreator .creator_inner .creator_data dl dd {
  font-size: 3.5897435897vw;
  line-height: 6.1538461538vw;
  text-align: justify;
  margin-top: 6.1538461538vw;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl dd {
    font-size: 1.1666666667vw;
    line-height: 2.3333333333vw;
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data dl dd {
    font-size: 14px;
    line-height: 28px;
    margin-top: 25px;
  }
}
#jsCreator .creator_inner .creator_data dl dd a {
  display: block;
  width: 38.4615384615vw;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  #jsCreator .creator_inner .creator_data dl dd a {
    width: 11.6666666667vw;
  }
  #jsCreator .creator_inner .creator_data dl dd a:hover img {
    opacity: 0.8;
  }
  #jsCreator .creator_inner .creator_data dl dd a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #jsCreator .creator_inner .creator_data dl dd a {
    width: 140px;
  }
}
#jsCreator img {
  width: 100%;
}

#jsMusic {
  margin: 14.8717948718vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMusic {
    margin-top: 17vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic {
    margin-top: 204px;
  }
}
#jsMusic .music_lead {
  position: relative;
  width: 67.9487179487vw;
  margin: 9.4871794872vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_lead {
    width: 51.0833333333vw;
    margin-top: 6.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_lead {
    width: 613px;
    margin-top: 80px;
  }
}
#jsMusic .music__circle_a {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -48.2051282051vw;
  width: 94.358974359vw;
  pointer-events: none;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 769px) {
  #jsMusic .music__circle_a {
    right: -50.8333333333vw;
    width: 50.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music__circle_a {
    right: -610px;
    width: 610px;
  }
}
#jsMusic .music__circle_b {
  position: absolute;
  z-index: -1;
  top: -30.7692307692vw;
  left: -78.2051282051vw;
  width: 141.0256410256vw;
  pointer-events: none;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (min-width: 769px) {
  #jsMusic .music__circle_b {
    top: 6.3333333333vw;
    left: -34.75vw;
    width: 27.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music__circle_b {
    top: 76px;
    left: -417px;
    width: 330px;
  }
}
#jsMusic .music_inner {
  width: 84.6153846154vw;
  margin: 16.9230769231vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    width: 83.3333333333vw;
    margin-top: 9.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner {
    width: 1000px;
    margin-top: 114px;
  }
}
#jsMusic .music_inner .music_picture {
  border-radius: 1.2820512821vw;
  overflow: hidden;
}
#jsMusic .music_inner .music_picture picture {
  display: block;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_picture {
    width: 33.75vw;
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_picture {
    width: 405px;
    border-radius: 5px;
  }
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data {
    width: 42.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data {
    width: 515px;
  }
}
#jsMusic .music_inner .music_data dl {
  margin-top: 14.358974359vw;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl {
    margin-top: 3.9166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl {
    margin-top: 47px;
  }
}
#jsMusic .music_inner .music_data dl:nth-of-type(1) {
  margin-top: 10.5128205128vw;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl:nth-of-type(1) {
    margin-top: 0;
  }
}
#jsMusic .music_inner .music_data dl dt img {
  width: 37.1794871795vw;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dt img {
    width: 12.0833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dt img {
    width: 145px;
  }
}
#jsMusic .music_inner .music_data dl dt h4 {
  font-size: 6.1538461538vw;
  font-weight: 400;
  font-family: "Philosopher", serif;
  color: #F8A0BD;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dt h4 {
    font-size: 1.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dt h4 {
    font-size: 22px;
  }
}
#jsMusic .music_inner .music_data dl dd {
  font-size: 3.5897435897vw;
  line-height: 6.1538461538vw;
  text-align: justify;
  margin-top: 6.1538461538vw;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dd {
    font-size: 1.1666666667vw;
    line-height: 2.3333333333vw;
    margin-top: 2.0833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dd {
    font-size: 14px;
    line-height: 28px;
    margin-top: 25px;
  }
}
#jsMusic .music_inner .music_data dl dd a {
  display: block;
  width: 38.4615384615vw;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dd a {
    width: 11.6666666667vw;
  }
  #jsMusic .music_inner .music_data dl dd a:hover img {
    opacity: 0.8;
  }
  #jsMusic .music_inner .music_data dl dd a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dd a {
    width: 140px;
  }
}
#jsMusic .music_inner .music_data dl dd .music_artist_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dd .music_artist_link {
    -webkit-box-pack: right;
        -ms-flex-pack: right;
            justify-content: right;
    gap: 0 2.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dd .music_artist_link {
    gap: 0 29px;
  }
}
#jsMusic .music_inner .music_data dl dd .music_artist_link a {
  display: block;
  width: 38.4615384615vw;
  margin: 0;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_inner .music_data dl dd .music_artist_link a {
    width: 11.6666666667vw;
  }
  #jsMusic .music_inner .music_data dl dd .music_artist_link a:hover img {
    opacity: 0.8;
  }
  #jsMusic .music_inner .music_data dl dd .music_artist_link a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_inner .music_data dl dd .music_artist_link a {
    width: 140px;
  }
}
#jsMusic .music_song {
  position: relative;
  width: 84.6153846154vw;
  margin: 16.9230769231vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song {
    width: 83.3333333333vw;
    margin-top: 9.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song {
    width: 1000px;
    margin-top: 114px;
  }
}
#jsMusic .music_song dl dt {
  width: 35.641025641vw;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song dl dt {
    width: 11.5833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song dl dt {
    width: 139px;
  }
}
#jsMusic .music_song dl dd {
  margin: 10.2564102564vw auto 0;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song dl dd {
    width: 63.5833333333vw;
    margin-top: 5.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song dl dd {
    width: 763px;
    margin-top: 66px;
  }
}
#jsMusic .music_song dl dd .music_song_thumbnail {
  position: relative;
  width: 100%;
  border-radius: 1.2820512821vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song dl dd .music_song_thumbnail {
    border-radius: 0.4166666667vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song dl dd .music_song_thumbnail {
    border-radius: 5px;
  }
}
#jsMusic .music_song dl dd .music_song_thumbnail::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  left: 0;
  width: 21.7948717949vw;
  height: 21.7948717949vw;
  background-image: url(../../assets/img/movies__btn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song dl dd .music_song_thumbnail::after {
    width: 10.5vw;
    height: 10.5vw;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song dl dd .music_song_thumbnail::after {
    width: 126px;
    height: 126px;
  }
}
#jsMusic .music_song dl dd a {
  display: block;
  width: 38.4615384615vw;
  margin: 0 0 0 auto;
}
@media screen and (min-width: 769px) {
  #jsMusic .music_song dl dd a {
    width: 11.6666666667vw;
  }
  #jsMusic .music_song dl dd a:hover img {
    opacity: 0.8;
  }
  #jsMusic .music_song dl dd a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  #jsMusic .music_song dl dd a {
    width: 140px;
  }
}
#jsMusic img {
  width: 100%;
}

.site-footer {
  position: relative;
  z-index: 1;
  background: transparent;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  min-height: max(100vh, 240.5128205128vw);
  min-height: max(100dvh, 240.5128205128vw);
}
@media screen and (min-width: 769px) {
  .site-footer {
    padding: 6.6666666667vw 0 0;
    min-height: max(100vh, 100vw);
    min-height: max(100dvh, 100vw);
  }
}
@media screen and (min-width: 1200px) {
  .site-footer {
    padding: 80px 0 0;
    min-height: max(100vh, 1200px);
    min-height: max(100dvh, 1200px);
  }
}
.site-footer .topBtn {
  position: fixed;
  z-index: 999;
  bottom: 3.8461538462vw;
  right: 3.8461538462vw;
  width: 15.3846153846vw;
  height: 15.3846153846vw;
  background-image: url(../../assets/img/topBtn.svg);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-filter: drop-shadow(0 0.5128205128vw 1.0256410256vw rgba(0, 0, 0, 0.2));
          filter: drop-shadow(0 0.5128205128vw 1.0256410256vw rgba(0, 0, 0, 0.2));
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.site-footer .topBtn.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 769px) {
  .site-footer .topBtn {
    bottom: 1.6666666667vw;
    right: 1.6666666667vw;
    width: 5vw;
    height: 5vw;
    -webkit-filter: drop-shadow(0 0.1666666667vw 0.3333333333vw rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 0.1666666667vw 0.3333333333vw rgba(0, 0, 0, 0.2));
    -webkit-transition: background-image 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
    transition: background-image 0.3s ease, opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .site-footer .topBtn:hover {
    background-image: url(../../assets/img/topBtn--hover.svg);
  }
  .site-footer .topBtn.is-show {
    -webkit-transition: background-image 0.3s ease, opacity 0.3s ease;
    transition: background-image 0.3s ease, opacity 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .topBtn {
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    -webkit-filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  }
}
.site-footer .footer__banner {
  position: relative;
  width: 92.3076923077vw;
  border-radius: 1.2820512821vw;
  margin: 37.4358974359vw auto 0;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__banner {
    width: 62.5vw;
    border-radius: 0.4166666667vw;
    margin-top: 19.1666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__banner {
    width: 750px;
    border-radius: 5px;
    margin-top: 230px;
  }
}
.site-footer .footer__banner img {
  width: 100%;
  opacity: 0.9;
}
.site-footer .footer__banner .footer__banner__title {
  position: absolute;
  top: 12.5641025641vw;
  right: 0;
  left: 0;
  width: 58.2051282051vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__banner .footer__banner__title {
    top: 8.3333333333vw;
    width: 48.75vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__banner .footer__banner__title {
    top: 100px;
    width: 585px;
  }
}
.site-footer .footer__banner .footer__banner__btn {
  position: relative;
  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;
  position: absolute;
  top: 35.8974358974vw;
  right: 0;
  left: 0;
  width: 76.9230769231vw;
  height: 17.9487179487vw;
  border: 1px solid #F8A0BD;
  border-radius: 999px;
  margin: 0 auto;
  background-color: #F8A0BD;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__banner .footer__banner__btn {
    top: 15.75vw;
    width: 27.8333333333vw;
    height: 6.6666666667vw;
    -webkit-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease;
  }
  .site-footer .footer__banner .footer__banner__btn:hover {
    background-color: #ffffff;
  }
  .site-footer .footer__banner .footer__banner__btn:hover p {
    color: #F8A0BD;
  }
  .site-footer .footer__banner .footer__banner__btn:hover::after {
    background-image: url(../../assets/img/footer__banner__btn__arrow--hover.svg);
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__banner .footer__banner__btn {
    top: 189px;
    width: 334px;
    height: 80px;
  }
}
.site-footer .footer__banner .footer__banner__btn p {
  font-size: 4.6153846154vw;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__banner .footer__banner__btn p {
    font-size: 1.6666666667vw;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__banner .footer__banner__btn p {
    font-size: 20px;
  }
}
.site-footer .footer__banner .footer__banner__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 7.1794871795vw;
  width: 1.7948717949vw;
  height: 2.5641025641vw;
  background-image: url(../../assets/img/footer__banner__btn__arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__banner .footer__banner__btn::after {
    right: 2.3333333333vw;
    width: 0.5833333333vw;
    height: 0.8333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__banner .footer__banner__btn::after {
    right: 28px;
    width: 7px;
    height: 10px;
  }
}
.site-footer .footer__address {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 25.641025641vw;
  width: 84.6153846154vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address {
    bottom: 3.3333333333vw;
    width: 83.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address {
    bottom: 40px;
    width: 1000px;
  }
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.site-footer .footer__address .footer__address__logo {
  width: 60.5128205128vw;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__logo {
    width: 18.25vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__logo {
    width: 219px;
  }
}
.site-footer .footer__address .footer__address__logo img {
  width: 100%;
}
.site-footer .footer__address .footer__address__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4.6153846154vw;
  margin-top: 10.2564102564vw;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__sns {
    gap: 2.5vw;
    margin: 0;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__sns {
    gap: 30px;
  }
}
.site-footer .footer__address .footer__address__sns li a {
  width: 12.8205128205vw;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__sns li a {
    width: 5vw;
  }
  .site-footer .footer__address .footer__address__sns li a:hover img {
    opacity: 0.8;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__sns li a {
    width: 60px;
  }
}
.site-footer .footer__address .footer__address__sns li a img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__sns li a img {
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
  }
}
.site-footer .footer__address .footer__address__bottom {
  margin-top: 6.4102564103vw;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 3.3333333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__bottom {
    margin-top: 40px;
  }
}
.site-footer .footer__address .footer__address__bottom a, .site-footer .footer__address .footer__address__bottom p {
  font-size: 3.0769230769vw;
  line-height: 5.1282051282vw;
  color: #ffffff;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__bottom a, .site-footer .footer__address .footer__address__bottom p {
    font-size: 1vw;
    line-height: 1.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__bottom a, .site-footer .footer__address .footer__address__bottom p {
    font-size: 12px;
    line-height: 20px;
  }
}
.site-footer .footer__address .footer__address__bottom small {
  font-size: 2.5641025641vw;
  line-height: 5.1282051282vw;
  color: #ffffff;
  text-align: left;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__bottom small {
    font-size: 0.8333333333vw;
    line-height: 1.6666666667vw;
  }
}
@media screen and (min-width: 1200px) {
  .site-footer .footer__address .footer__address__bottom small {
    font-size: 10px;
    line-height: 20px;
  }
}
.site-footer .footer__address .footer__address__bottom a {
  display: inline-block;
}
.site-footer .footer__address .footer__address__bottom .footer__address__site {
  margin-top: 6.4102564103vw;
}
@media screen and (min-width: 769px) {
  .site-footer .footer__address .footer__address__bottom .footer__address__site {
    margin: 0;
  }
}

.js-fadein {
  opacity: 0;
}

.scroll-rows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.3333333333vw;
  overflow: hidden;
  margin-top: 39.2307692308vw;
}
@media screen and (min-width: 769px) {
  .scroll-rows {
    gap: 2.5vw;
    margin-top: 22.5833333333vw;
  }
}
@media screen and (min-width: 1200px) {
  .scroll-rows {
    margin-top: 271px;
  }
}

.scroll-rows__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3333333333vw;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: scrollRowsToLeft 180s linear infinite;
          animation: scrollRowsToLeft 180s linear infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.scroll-rows__row--reverse {
  -webkit-animation-name: scrollRowsToRight;
          animation-name: scrollRowsToRight;
}
@media screen and (min-width: 769px) {
  .scroll-rows__row {
    gap: 2.5vw;
  }
}

.scroll-rows.is-inview .scroll-rows__row {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

.scroll-rows__item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 49.7435897436vw;
}
@media screen and (min-width: 769px) {
  .scroll-rows__item {
    width: 37.5vw;
  }
}
.scroll-rows__item img {
  display: block;
  width: 100%;
  height: auto;
}

@-webkit-keyframes scrollRowsToLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scrollRowsToLeft {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@-webkit-keyframes scrollRowsToRight {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes scrollRowsToRight {
  from {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  to {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.gradation-circle_a,
.gradation-circle_b,
.gradation-circle_c {
  display: block;
  height: auto;
  margin: 0 auto;
}

@media screen and (min-width: 769px) {
  .js-video-modal-btn {
    cursor: pointer;
  }
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  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;
  overflow-y: auto;
  padding: 56px 0;
  -webkit-transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.video-modal.is-open {
  visibility: visible;
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.video-modal__overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.85);
}

.video-modal__body {
  position: relative;
  width: min(90vw, 1000px);
  max-height: calc(100vh - 112px);
  margin: 0 auto;
}
.video-modal.is-tate .video-modal__body {
  width: auto;
  height: calc(100vh - 112px);
  max-width: 90vw;
}

.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
}
.video-modal__close::before, .video-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}
.video-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.video-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.video-modal__iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.video-modal__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-modal.is-tate .video-modal__iframe-wrap {
  width: auto;
  height: 100%;
  padding-top: 0;
  aspect-ratio: 9/16;
}
.video-modal.is-tate .video-modal__iframe-wrap iframe {
  position: static;
  width: 100%;
  height: 100%;
}