/* ==================================================
   Foundation / Design Tokens
================================================== */
:root {
  --color-black: #0c0c0c;
  --color-red: #cf2027; 
  --color-blue: #008fe8;
  --font-jp: "Noto Sans JP", sans-serif;
  --font-hero: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Syncopate", sans-serif;
  --inner: min(100% - 48px, 1080px);
}
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body { 
  margin: 0;
  font-family: var(--font-jp);
  color: #111;
  background: #fff;
}
html,
body {
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button, input, textarea {
  font: inherit;
}

.drawer {
  display: none;
}
/* ==================================================
   Header
================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 -60px;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, .96) 20%, rgba(255, 255, 255, .88) 34%, rgba(255, 255, 255, 0) 78%);
}
.site-header__inner {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-left: clamp(18px, 3vw, 46px);
  margin-bottom: 50px;
}
.site-header__logo img {
  width: 300px;
}
.site-header__nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 44px;
  font-size: 17px;
  font-weight: 600;
}
.site-header__link {
  position: relative;
  padding: 7px 0;
  border-bottom: 0;
}

.site-header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #000;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.site-header__link:hover::after {
  transform: scaleX(1);
}

.site-header__link:not(:hover)::after {
  transform-origin: right center;
}
.site-header__youtube img {
  width: 28px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.site-header__logo,
.site-header__nav {
  position: relative;
  z-index: 2;
}


.site-header__youtube {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 12px;

  height: 85px;
  padding: 0 34px;

  background: var(--color-red);
  color: #fff;

  border: 2px solid var(--color-red);

  font-family: var(--font-en);
  font-weight: 900;
  font-size: 19px;
  line-height: 1.15;
}

.site-header__youtube::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .32s cubic-bezier(.7, 0, .2, 1);
  z-index: 0;
}

.site-header__youtube:hover {
  color: var(--color-red);
}

.site-header__youtube:hover::before {
  transform: scaleX(1);
}

.site-header__youtube:not(:hover)::before {
  transform-origin: right center;
}

.site-header__youtube span,
.site-header__youtube img {
  position: relative;
  z-index: 1;
}

.site-header__youtube:hover img {
  filter: brightness(0)
          saturate(100%)
          invert(12%)
          sepia(100%)
          saturate(7000%)
          hue-rotate(350deg)
          brightness(85%)
          contrast(110%);
}
.site-header__menu {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}
.site-header__menu span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background: #111;
}


/* ==================================================
   Common Components
================================================== */
.section-title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(42px, 6.2vw, 84px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: .035em;
  letter-spacing: -4px !important;
}
.section-title--white {
  color: #fff;
}
.section-title--black {
  color: #000;
}
.section-title,
.youtube-band__link,
.site-header__youtube,
.site-footer__youtube {
  font-weight: 900;
  letter-spacing: 0.06em;
}
span.txt {
  letter-spacing: -0.8px;
    font-size: 24px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 80px;
  padding: 0px 39px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  font-size: 18px;
}
.button img {
  width: 35px;
  filter: brightness(0) invert(1);
}
.button--blue {
  background: linear-gradient(24deg, #0a4ab4 0%, #56c9e2 100%);
  color: #fff;
  transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}

.button--blue:hover {
  background: rgba(255,255,255,.95);
  color: #1697e8;
  border: #1697e8 2px solid;
  border-color: #1697e8;
}

.button--blue:hover img {
  filter: none;
}
.button--red {
  background: var(--color-red);
  border-radius: 0;
  font-size: 28px;
}
.button--blue {
  color: #fff;
}

.button--blue:hover {
  color: #1697e8;
}

.button--blue:hover img {
  filter: brightness(0) saturate(100%)
          invert(39%) sepia(89%)
          saturate(1887%) hue-rotate(187deg)
          brightness(95%) contrast(92%);
}

/* ==================================================
   Hero
================================================== */
.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 85px);
  background: #fff;
}

.hero__inner {
  position: relative;
  width: min(100% - 80px, 1280px);
  min-height: calc(100vh - 180px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 55% 45%;
  align-items: center;

}
.hero__title {
  margin: 0;
  font-family: var(--font-hero);
  font-size: clamp(72px, 8vw, 111px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .03em;
}
.hero__sub {
  margin: 25px 0 20px;
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
}
.hero__lead {
  margin: 0 0 32px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1.55;
  font-weight: 900;
}
.hero__visual {
  position: relative;
  min-height: 470px;
  align-items: center;
  display: flex;
  justify-content: center;
}

.hero__content {
  position: relative;
}
.hero__d {
  width: min(100%, 445px);
}
.hero__photo {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(72%, 330px);
  transform: translate(-46%, -49%);
  opacity: .95;
  mix-blend-mode: multiply;
}

/* =====================================
   Opening Animation
===================================== */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;

  background: var(--color-red);

  transform: scaleX(0);
  transform-origin: left center;

  animation: openingBand 1.4s cubic-bezier(.76,0,.24,1) forwards;
}

@keyframes openingBand {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }

  45% {
    transform: scaleX(1);
    transform-origin: left center;
  }

  46% {
    transform: scaleX(1);
    transform-origin: right center;
  }

  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}

.site-header,
.hero__content,
.hero__visual {
  opacity: 0;
  transform: translateX(-80px);
}

.site-header,
.hero__content,
.hero__visual {
  transition:
    opacity .9s ease,
    transform 1s cubic-bezier(.16,1,.3,1);
}

body.is-loaded .site-header {
  opacity: 1;
  transform: translateX(0);
}

body.is-loaded .hero__content {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .15s;
}

body.is-loaded .hero__visual {
  opacity: 1;
  transform: translateX(0);
  transition-delay: .3s;
}
/* ==================================================
   About
================================================== */
.about {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: #fff;
  padding: 100px 0px;
}
.about__inner {
  position: relative;
  width: var(--inner);
  min-height: 675px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 70% 50%;
  align-items: center;
}
.about__heading {
  margin: 10px 0 50px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.about__text {
  font-size: 18px;
  line-height: 2.2;
  font-weight: 500;
}
.about__text p {
  margin: 0 0 32px;
}
.about__image {
  position: absolute;
  right: -12%;
  top: 35px;
  width: 57%;
  opacity: .72;
}
.about__body {
  position: relative;
  z-index: 2;
}


.about {
  position: relative;
  overflow: hidden;
}

.about__body {
  position: relative;
  z-index: 2;
}

.about-marquee {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: -90px;
  width: 52vw;
  height: 900px;
  transform: translateY(-50%) rotate(24deg);
  overflow: hidden;
  opacity: .55;
  pointer-events: none;

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    #000 18%,
    #000 82%,
    transparent 100%
  );
}

.about-marquee__track {
  position: absolute;
  top: -240px;
  width: 48%;
  display: flex;
  flex-direction: column;
  line-height: 0;
}

.about-marquee__track img {
  display: block;
  width: 100%;
  max-width: none;
}

.about-marquee__track--up {
  left: 0;
  animation: aboutSlideUp 34s linear infinite;
}

.about-marquee__track--down {
  right: 0;
  animation: aboutSlideDown 34s linear infinite;
}

@keyframes aboutSlideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-25%);
  }
}

@keyframes aboutSlideDown {
  from {
    transform: translateY(-25%);
  }
  to {
    transform: translateY(0);
  }
}
.js-reveal-x {
  overflow: hidden;
}

.js-reveal-x span {
  display: inline-block;
  transform: translateX(-60px);
  opacity: 0;
  transition:
  transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
  opacity 0.4s ease;
  will-change: transform, opacity;
}

.js-reveal-x.is-show span {
  transform: translateX(0);
  opacity: 1;
}

.about__body .js-reveal-x:nth-child(1) span {
  transition-delay: 0s;
}

.about__body .about__heading span {
  transition-delay: 0.08s;
}

.about__text .js-reveal-x:nth-child(1) span {
  transition-delay: 0.16s;
}

.about__text .js-reveal-x:nth-child(2) span {
  transition-delay: 0.24s;
}

.about__text .js-reveal-x:nth-child(3) span {
  transition-delay: 0.32s;
}
/* ==================================================
   Watch Drive Show
================================================== */
.watch {
  position: relative;
  text-align: center;
  overflow: hidden;
}

.watch__inner {
  position: absolute;
  z-index: 2;
  top: 130px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--inner);
  margin: 0 auto;
  padding: 0;
}
.watch__text {
  margin: 26px 0 0;
    font-size: 19px;
    line-height: 1.8;
    font-weight: 600;
}
.watch__image {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.08);
  transform-origin: center center;
  transition: transform 1.8s ease;
}

.watch.is-active .watch__image {
  transform: scale(1);
}


/* ==================================================
   YouTube Band
================================================== */
.youtube-band {
  background: var(--color-red);
  color: #fff;
}

.youtube-band__link {
  position: relative;
  overflow: hidden;

  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;

  color: #fff;
  background: var(--color-red);


  transition: color .3s ease;
}

.youtube-band__link::before {
  content: "";
  position: absolute;
  inset: 0;

  background: #fff;

  transform: scaleX(0);
  transform-origin: left center;

  transition: transform .35s cubic-bezier(.7,0,.2,1);

  z-index: 0;
}

.youtube-band__link:hover::before {
  transform: scaleX(1);
}

.youtube-band__link:not(:hover)::before {
  transform-origin: right center;
}

.youtube-band__link:hover {
  color: var(--color-red);
}

.youtube-band__left,
.youtube-band__right {
  position: relative;
  z-index: 2;
}

.youtube-band__left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.youtube-band__logo {
  width: 260px;
  margin-bottom: 4px;
  filter: brightness(0) invert(1);
}

.youtube-band__youtube {
  font-family: var(--font-en);
  font-size: 64px;
  font-weight: 900;
  line-height: .9;
}

.youtube-band__right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.youtube-band__label {
  font-family: var(--font-jp);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.youtube-band__icon {
  width: 42px;
  filter: brightness(0) invert(1);
}

.youtube-band__link:hover .youtube-band__icon,
.youtube-band__link:hover .youtube-band__logo {
  filter: brightness(0)
          saturate(100%)
          invert(20%)
          sepia(93%)
          saturate(2581%)
          hue-rotate(341deg)
          brightness(88%)
          contrast(92%);
}
/* ==================================================
   Episode Form
================================================== */
.form__field {
  position: relative;
}

.form__error {
  position: absolute;
  left: 0;
  bottom: -12px;
  transform: translateY(100%);

  display: none;
  padding: 8px 12px;
  background: var(--color-red);
  color: #fff;

  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;

  border-radius: 4px;
  z-index: 5;
}

.form__error::before {
  content: "";
  position: absolute;
  left: 18px;
  top: -6px;

  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--color-red);
}

.form__field.is-error .form__error {
  display: block;
}

.form__field.is-error input,
.form__field.is-error textarea {
  outline: 2px solid var(--color-red);
}



.episode {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: #fff;
}
.episode__inner {
  position: relative;
  width: var(--inner);
  min-height: 920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 200px 0;
}
.episode__body {
  position: relative;
  z-index: 2;
  width: min(790px, 100%);
}
.episode__heading {
  margin: 0 0 50px;
    font-size: clamp(30px, 4vw, 43px);
    line-height: 1.35;
    font-weight: 600;
}
.episode__lead {
  margin: 0 0 40px;
  font-size: 21px;
  line-height: 1.8;
  font-weight: 600;
}
.episode__note {
  margin: 0 0 60px;
  padding: 39px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 14px;
  text-align: center;
  font-size: 17px;
  line-height: 2;
  font-weight: 600;
}


.episode__bg-d {
  position: absolute;
  right: -8%;
  top: 25%;
  width: min(56%, 600px);

  opacity: .08;
  transform: translate3d(0, var(--episode-d-y, 0px), 0);
  filter: brightness(0) invert(1);

  will-change: transform;
}

.episode__share {
  position: absolute;
  right: -10%;
  top: 16%;
  width: 600px;

  opacity: 0;
  transform: translateX(-20px);
  clip-path: inset(0 100% 0 0);

  transition:
    opacity .35s ease,
    transform 1.6s cubic-bezier(.16, 1, .3, 1),
    clip-path 2.2s cubic-bezier(.16, 1, .3, 1);
}

.episode.is-active .episode__share {
  opacity: 1;
  transform: translateX(0);
  clip-path: inset(0 0 0 0);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form__row--bottom {
  grid-template-columns: 1fr 220px;
  align-items: end;
}
.form__field {
  display: block;
  margin-bottom: 30px;
  font-size: 17px;
  font-weight: 600;
}
.form__field span {
  display: block;
  margin-bottom: 20px;
}
.form input, .form textarea {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: #fff;
  color: #000000;
  padding: 17px 16px;
  font-size: 16px;
  font-weight: 400;
}
.form textarea {
  height: 148px;
  resize: vertical;
}
.form__field--file {
  position: relative;
}
.form__field--file input {
  position: absolute;
  inset: auto;
  opacity: 0;
  pointer-events: none;
}
.form__field--file {
  cursor: pointer;
}

.form__field--file input {
  position: absolute;
  inset: auto;
  opacity: 0;
  pointer-events: none;
}

.form__file-label {
  display: flex;
  align-items: center;
  justify-content: center;

  height: 57px;
  padding: 0 16px;

  background: #818181;
  color: #fff;
  border: 2px solid #818181;

  font-style: normal;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 700;

  cursor: pointer;
  transition: background-color .3s ease, color .3s ease;
}

.form__field--file:hover .form__file-label {
  background: #fff;
  color: #818181;
}
.form__submit {
  position: relative;
  overflow: hidden;

  width: 100%;
  margin-top: 50px;
  min-height: 94px;
  justify-content: center;

 
  background: var(--color-red);
  color: #fff;

  transition: color .3s ease;
}

.form__submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.7,0,.2,1);

  z-index: 0;
}

.form__submit:hover {
  color: var(--color-red);
}

.form__submit:hover::before {
  transform: scaleX(1);
}

.form__submit:not(:hover)::before {
  transform-origin: right center;
}

.form__submit img {
  position: absolute;
  right: 28px;
  z-index: 2;
}

.form__submit:hover img {
  filter: brightness(0)
          saturate(100%)
          invert(20%)
          sepia(93%)
          saturate(2581%)
          hue-rotate(341deg)
          brightness(88%)
          contrast(92%);
}

.form__submit span {
  position: relative;
  z-index: 2;
}

/* ==================================================
   Photo Marquee
================================================== */
.photo-marquee {
  position: relative;
  height: 360px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.photo-marquee::before {
  content: "";
  position: absolute;
  inset: -100px;
  z-index: 0;
  pointer-events: none;

  opacity: .30;;
  mix-blend-mode: multiply;

  background-image: url("../images/grain.png");
  background-repeat: repeat;
  background-size: 512px 512px;

  animation: photoNoiseMove .7s steps(2) infinite;
}

@keyframes photoNoiseMove {
  0% {
    transform: translate3d(0, 0, 0);
  }
  25% {
    transform: translate3d(-2%, 1%, 0);
  }
  50% {
    transform: translate3d(1%, -2%, 0);
  }
  75% {
    transform: translate3d(2%, 2%, 0);
  }
  100% {
    transform: translate3d(-1%, -1%, 0);
  }
}

.photo-marquee__track {
  z-index: 1;
}
.photo-marquee__track {
  position: absolute;
  top: -260px;
  width: 31%;
  overflow: visible;
  transform: rotate(45deg);
  transform-origin: top center;
}

.photo-marquee__track--left {
  left: 14%;
}

.photo-marquee__track--center {
  left: 59%;
}

.photo-marquee__track--right {
  right: -35%;
}

.photo-marquee__strip {
  display: flex;
  flex-direction: column;
  line-height: 0;
}

.photo-marquee__strip img {
  display: block;
  width: 100%;
  max-width: none;
}

.photo-marquee__strip--up {
  animation: photoSlideUp 32s linear infinite;
}

.photo-marquee__strip--down {
  animation: photoSlideDown 32s linear infinite;
}

@keyframes photoSlideUp {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-25%);
  }
}

@keyframes photoSlideDown {
  from {
    transform: translateY(-25%);
  }
  to {
    transform: translateY(0);
  }
}

/* ==================================================
   Future Plans
================================================== */
.plans {
  background: #fff;
}
.plans__inner {
  width: var(--inner);
  margin: 0 auto;
  padding: 150px 0 150px;
}
.plans__heading {
  margin: 10px 0 100px;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.plans__banner {
  position: relative;
    display: block;
    overflow: hidden;
    width: min(100%, 95%);
    min-height: 170px;
    background: #4b4b4b;
    color: #fff;
    margin: 0 auto;
}

.plans__banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0,0,0,.85) 38%, rgba(0,0,0,0) 72%);
  z-index: 1;
}

.plans__banner-text {
  position: relative;
  z-index: 3;
  padding: 38px 48px 38px 80px;
}

.plans__banner-text::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 40px;

  width: 2px;
  height: 110px;

  background: rgba(255,255,255,.7);
}

.plans__banner-title {
  margin: 0;
  font-family: var(--font-en);
  font-size: 45px;
  font-weight: 900;
  line-height: 1;
}

.plans__banner-sub {
  margin: 0px 0 15px;
  font-size: 17px;
  font-weight: 900;
}

.plans__banner-lead {
  margin: 0;
    font-size: 13px;
    font-weight: 400;
}

.plans__banner-image {
  position: absolute;
  inset: 0 0 0 auto;
  width: 62%;
  height: 100%;
  object-fit: cover;
}

.plans__banner-text {
  position: relative;
  z-index: 3;
  padding: 38px 48px;
}

.plans__banner-image {
  position: absolute;
  inset: 0 0 0 auto;
  z-index: 0;
  width: 36%;
  height: 100%;
  object-fit: cover;
}

.plans__banner::before {
  z-index: 1;
}

.plans__banner {
  min-height: 200px;
  border-radius: 0;
}

.plans__banner::before {
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.95) 0%,
      rgba(0,0,0,.88) 35%,
      rgba(0,0,0,.25) 72%,
      rgba(0,0,0,0) 100%
    );
}

.plans__banner-image {
  width: 51%;
  height: 117%;
  object-fit: cover;
}

.plans__banner-text {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* height: 224px; */
    padding: 40px 40px 40px 75px;
}

.plans__banner-text::before {
  left: 52px;
  top: 39px;
  height: 75px;
}
.plans__banner-title {
  font-size: 44px;
  line-height: .9;
  margin-bottom: 8px;
}

.plans__banner-sub {
  font-size: 18px;
  margin-bottom: 26px;
}

.plans__banner-lead {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}

.plans__banner-image{
  object-position:right center;
}
/* ==================================================
   Footer
================================================== */
.site-footer {
  background: #fff;
  color: #fff;
}
.site-footer__inner {
  margin: 0 auto;
  padding: 100px 100px 100px;
  border-radius: 35px 35px 0 0;
  background: #050505;

}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 48px;
  border-bottom: 2px dotted;
}
.site-footer__nav {
  display: flex;
  gap: 36px;
  font-size: 23px;
  font-weight: 600;
}

.site-footer__nav .is-current {
  border-color: #fff;
}
.site-footer__youtube {
  position: relative;
  overflow: hidden;

  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 85px;
  padding: 0 36px;

  background: var(--color-red);
  color: #fff;

  font-family: var(--font-en);
  font-weight: 900;
  font-size: 18px;

  transition: color .3s ease;
}

.site-footer__youtube::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .35s cubic-bezier(.7,0,.2,1);

  z-index: 0;
}

.site-footer__youtube:hover {
  color: var(--color-red);
}

.site-footer__youtube:hover::before {
  transform: scaleX(1);
}

.site-footer__youtube:not(:hover)::before {
  transform-origin: right center;
}

.site-footer__youtube span,
.site-footer__youtube img {
  position: relative;
  z-index: 2;
}

.site-footer__youtube img {
  width: 16px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.site-footer__youtube:hover img {
  filter: brightness(0)
          saturate(100%)
          invert(20%)
          sepia(93%)
          saturate(2581%)
          hue-rotate(341deg)
          brightness(88%)
          contrast(92%);
}
.site-footer__bottom {
  position: relative;
  padding-top: 46px;
}
.site-footer__copy {
  margin: 0 0 25px;
  font-size: 40px;
  font-weight: 900;
}
.site-footer__logo {
  width: min(100%, 790px);
}
.site-footer__pagetop {
  position: absolute;
    right: 4%;
    top: 36%;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.site-footer__youtube-text {
  position: relative;
  z-index: 2;
}
@keyframes footerRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.site-footer__arrow {
  width: 58px;
}
.site-footer__circle {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  animation: footerRotate 18s linear infinite;
}

.site-footer__arrow {
  width: 44px;
  height: auto;
}

.site-footer__logo {
  width: 100%;
  max-width: 875px;
  margin-bottom: 20px;
}

.site-footer__meta {
  display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 128px;
}

.site-footer__copyright {
  margin: 0;
  font-family: var(--font-en);
  font-size: 12px;
  opacity: .6;
  font-weight: 900;
}

.site-footer__presented {
  margin: 0;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
}

span.txtbold {
  font-weight: bold;
  font-size: 21px;
  margin-top: 6px;
}

.site-footer__nav a {
  position: relative;
  padding: 7px 0;
}

.site-footer__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 2px;

  background: #fff;

  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .28s ease;
}

.site-footer__nav a:hover::after {
  transform: scaleX(1);
}

.site-footer__nav a:not(:hover)::after {
  transform-origin: right center;
}
/* ==================================================
   Responsive / PC02
================================================== */
@media (max-width: 1300px) and (min-width: 768px) {

  .site-header__nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
}

.site-header__inner {
  gap: 18px;
  padding-left: 24px;
  margin-bottom: 30px;
}

.site-header__logo img {
  width: clamp(190px, 24vw, 300px);
}

.site-header__nav {
  gap: clamp(16px, 2vw, 28px);
  font-size: clamp(13px, 1.35vw, 16px);
}

.site-header__youtube {
  height: 76px;
  padding: 0 22px;
  font-size: 15px;
  gap: 8px;
  flex-shrink: 0;
}

.site-header__youtube img {
  width: 22px;
}

span.txt {
  font-size: 20px;
}




.youtube-band__link {
  min-height: 170px;
  gap: clamp(18px, 3vw, 34px);
  padding: 0 32px;
}

.youtube-band__logo {
  width: clamp(180px, 22vw, 260px);
}

.youtube-band__youtube {
  font-size: clamp(42px, 6vw, 64px);
}

.youtube-band__label {
  font-size: clamp(28px, 4vw, 44px);
  white-space: nowrap;
}

.youtube-band__right {
  gap: clamp(14px, 2vw, 24px);
}

.youtube-band__icon {
  width: clamp(30px, 4vw, 42px);
  flex-shrink: 0;
}



  .site-footer__inner {
    padding: 80px 64px 90px;
  }

  .site-footer__nav {
    gap: 34px;
    font-size: 18px;
  }

  .site-footer__youtube {
    min-height: 72px;
    padding: 0 28px;
    font-size: 16px;
  }

  span.txtbold {
    font-size: 18px;
  }

  .site-footer__logo {
    max-width: 720px;
    width: 80%;
  }

  .site-footer__copy {
    font-size: 34px;
  }

  .site-footer__pagetop {
    width: 130px;
    height: 130px;
    right: 2%;
    top: 42%;
  }

  .site-footer__meta {
    gap: 60px;
    width: 80%;
  }

  .site-footer__presented {
    font-size: 18px;
  }
}

@media (max-width: 920px) and (min-width: 768px) {
  .youtube-band__link {
    gap: 20px;
    padding: 0 24px;
  }

  .youtube-band__youtube {
    font-size: 42px;
  }

  .youtube-band__label {
    font-size: 30px;
  }

  .youtube-band__logo {
    width: 180px;
  }
}




@media (max-width: 945px) and (min-width: 768px) {
.hero__title {
  margin: 0;
  font-family: var(--font-hero);
  font-size: clamp(60px, 7vw, 109px);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: .03em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 80px;
  padding: 0px 27px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  font-size: 14px;
}

}
@media (max-width: 1050px) and (min-width: 768px) {
  .site-header__logo img {
    width: 190px;
  }


  
  .site-header__nav {
    gap: 18px;
    font-size: 13px;
  }

  .site-header__youtube {
    height: 68px;
    padding: 0 18px;
    font-size: 13px;
  }

  span.txt {
    font-size: 17px;
  }
}


/* ==================================================
   Responsive / SP
================================================== */
@media (max-width: 767px) {

  body {
    overflow-x: hidden;
  }

  .about,
  .photo-marquee,
  .watch,
  .hero {
    overflow: hidden;
  }

.spbr{
  display: none;
}


:root {
  --inner: min(100% - 34px, 520px);
}
.site-header__inner {
  padding: 25px 25px 0px;
  margin-bottom: 20px;
}
.site-header__logo img {
  width: 80%;
}
.site-header__nav, .site-header__youtube {
  display: none;
}
.site-header__menu {
  display: block;
}
.section-title {
  font-size: clamp(34px, 11.5vw, 48px);
}
.button {
  min-height: 74px;
  padding: 0 18px;
  border-radius: 4px;
  font-size: 14px;
  gap: 15px;
}
.button img {
  width: 22px;
  filter: brightness(0) invert(1);
}
.hero {
  min-height: auto;
  padding: 0px 0 60px;
}

.hero__inner {
  width: calc(100% - 40px);
  min-height: auto;
  margin: 0 auto;

  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: flex-start;

  gap: 24px;
}

.hero__visual {
  width: 100%;
  min-height: auto;
  margin: 0;

  display: flex;
  justify-content: center;
}

.hero__d {
  width: min(67vw, 320px);
}

.hero__content {
  width: 100%;
  text-align: center;
}

.hero__title {
  font-size: clamp(55px, 14vw, 78px);
  line-height: 1.25;
  letter-spacing: 0;
  text-align: center;
}

.hero__sub {
  margin: 20px 0 12px;
  font-size: 12px;
  text-align: left;
}

.hero__lead {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
.hero__lead br {
  display: none;
}

.hero .button {
  width: 100%;
  margin: 0 auto;
}

.about__inner {
  min-height: unset;
  display: block;
  padding: 0px;
}
.about__image {
  right: -54px;
  top: 20px;
  width: 104%;
  opacity: .48;
}
.about__heading {
  margin: 10px 0 22px;
  font-size: 19px;
}
.about__text {
  font-size: 11px;
  line-height: 2;
}
.about__text p {
  margin-bottom: 20px;
}

.watch__inner {
  padding: 58px 0 20px;
}
.watch__text {
  margin-top: 18px;
  font-size: 11px;
  line-height: 1.75;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--color-black);
  color: #fff;
  padding: 70px 0px;
}
.about {
  padding: 76px 0 72px;
}

.about__inner {
  width: calc(100% - 48px);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 0;
}

.about__body {
  width: 100%;
  z-index: 3;
}

.about .section-title {
  font-size: clamp(41px, 10vw, 56px);
  line-height: .95;
  letter-spacing: -2px !important;
}

.about__heading {
  margin: 18px 0 36px;
  font-size: 24px;
}

.about__text {
  font-size: 14px;
  line-height: 2.05;
  font-weight: 700;
}

.about__text p {
  margin-bottom: 28px;
}

.about-marquee {
  top: 50%;
        right: -8%;
        width: 97vw;
        height: 760px;
        transform: translateY(-50%) rotate(24deg);
        opacity: .46;
}

.about-marquee__track {
  top: -180px;
  width: 48%;
}
.youtube-band__link {
  min-height: 86px;
  gap: 9px;
}
.youtube-band__small {
  font-size: 11px;
}
.youtube-band__main {
  font-size: 28px;
}
.youtube-band img {
  width: 26px;
}
.youtube-band__link {
  flex-direction: column;
  justify-content: center;
  gap: 6px;

  min-height: 200px;
  padding: 32px 20px;
}

.youtube-band__left {
  gap: 0;
}

.youtube-band__logo {
  width: 210px;
        margin: 0 auto 8px;
        width: 59% !important;
        margin-bottom: 15px;
}

.youtube-band__youtube {
  font-size: 250%;
        line-height: .9;
}

.youtube-band__right {
  gap: 12px;
}

.youtube-band__label {
  font-size: 28px;
  line-height: 1;
}

.youtube-band__icon {
  width: 42px;
}
.episode__inner {
  min-height: auto;
  padding: 70px 0 82px;
}
.episode__heading {
  margin-bottom: 26px;
  font-size: 30px;
}
.episode__lead {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 26px;
}
.episode__note {
  padding: 20px 14px;
  font-size: 12px;
  margin: 0 0 30px;
}
.episode__bg-d {
  right: -74px;
  top: 18%;
  width: 330px;
}
.episode__share {
  right: -3%;
  top: 9%;
  width: 93%;
}
.form__row, .form__row--bottom {
  grid-template-columns: 1fr;
  gap: 0;
}
.form__field {
  margin-bottom: 14px;
  font-size: 16px;
}
.form input, .form textarea {
  padding: 10px 12px;
  font-size: 16px;
}
.form textarea {
  height: 132px;
}
.form__field--file em {
  width: 160px;
  height: 36px;
  font-size: 13px;
}
.form__submit {
  min-height: 55px;
  margin-top: 22px;
  font-size: 15px;
}

.photo-strip img {
  height: 150px;
  width: 175%;
  max-width: none;
  transform: translateX(-22%);
}
.plans__banner-title {
  font-size: 28px;
  line-height: .9;
  margin-bottom: unset;
  margin-left: 20px;
}

.plans__banner-image {
  width: 100%;
  height: 117%;
  object-fit: cover;
}

.plans__banner-text {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  height: 215px;
  padding: 24px 24px 20px 64px;
  justify-content: space-around;
}

.plans__banner-text::before {
  left: 40px;
  top: 27px;
  height: 102px;
}

.plans__banner-title {
  font-size: 36px;
  line-height: .9;
  margin: 0;
}

.plans__banner-sub {
  font-size: 16px;
  margin: 6px 0 22px;
}

.plans__banner-lead {
  max-width: 270px;
  font-size: 14px;
  line-height: 1.8;
}
.plans__banner-sub {
  font-size: 18px;
  margin-bottom: 0px;
}

.plans__inner {
  padding: 66px 0 100px;
}
.plans__heading {
  margin: 8px 0 28px;
  font-size: 18px;
}
.photo-marquee {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}

.photo-marquee__track {
  position: absolute;
  top: -170px;
  width: 62%;
  overflow: visible;
  transform: rotate(45deg);
  transform-origin: top center;
}

.photo-marquee__track--left {
  left: 185%;
}

.photo-marquee__track--center {
  left: 3%;
}

.photo-marquee__track--right {
  right: -56%;
}

.photo-marquee__strip img {
  width: 100%;
  max-width: none;
}
.site-footer {
  padding-bottom: 0;
}
.site-footer__inner {
  width: 100%;
  padding: 44px 18px 0;
  border-radius: 8px 8px 0 0;
}
.site-footer__top {
  display: block;
  padding-bottom: 28px;
}
.site-footer__nav {
  display: flex;
  gap: 15px;
  font-size: 14px;
  font-weight: 600;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.site-footer__youtube {
  margin-top: unset;
  width: 100%;
  justify-content: center;
  min-height: 80px;
  padding: 0 12px;
  font-size: 100%;
}

.site-footer__arrow {
  width: 20px;
  height: auto;
}

.site-footer__bottom {
  padding-top: 80px;
  padding-bottom: 20px;
}
.site-footer__copy {
  font-size: 18px;
  margin-bottom: 10px;
}
.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 20px;
  border-bottom: 1px dotted;
  flex-direction: column;
}
.site-footer__pagetop {
  right: 0;
  top: -17%;
  width: 78px;
}
.site-footer__logo {
  width: 100%;
}
.site-footer__pagetop {
  right: 0;
  top: -12%;
  width: 78px;
}
.site-footer__meta {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
.site-footer__presented {
  margin: 0;
  font-family: var(--font-en);
  font-size: 9px;
}
.site-footer__meta {
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
}
.site-footer__copyright {
  margin: 0;
  font-family: var(--font-en);
  font-size: 6px;
  opacity: .6;
  font-weight: 900;
}
.watch__inner {
  top: 68px;
  width: calc(100% - 34px);
  padding: 0;
}

.watch .section-title {
  font-size: clamp(41px, 11vw, 58px);
        line-height: .88;
        letter-spacing: -2px !important;
}

.watch__text {
  margin-top: 28px;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
}
.watch__text {
  margin: 15px 0 0;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
}
.watch__image {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center bottom;
  transform: none;
}

.drawer {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #fff;
  color: #111;
  transform: translateX(100%);
  transition: transform .55s cubic-bezier(.76,0,.24,1);
  overflow-y: auto;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__close {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 38px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 900;
  border-bottom: 1px solid #111;
  cursor: pointer;
}

.drawer__nav a {
  display: block;
  padding: 24px 38px 22px;
  border-bottom: 1px solid #111;
}

.drawer__nav span {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .04em;
}

.drawer__nav small {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
}

.drawer__bottom {
  padding: 30px 38px 30px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 17px;
  /* text-align: left; */
  flex-direction: column;
}

.drawer__bottom p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 900;
}

.drawer__bottom small {
  font-family: var(--font-en);
  font-size: 7px;
  font-weight: 900;
  white-space: nowrap;
}

body.is-drawer-open {
  overflow: hidden;
}

}






/* ==================================================
   Form Confirm / Thanks
================================================== */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.confirm-page {
  min-height: 100vh;
  background: var(--color-black);
  color: #fff;
  padding: 90px 24px;
}

.confirm-page__inner {
  width: min(100%, 880px);
  margin: 0 auto;
}

.confirm-page__title {
  margin: 0 0 18px;
    font-family: var(--font-hero);
    font-size: clamp(34px, 4vw, 70px);
    line-height: 1.15;
    font-weight: 600;
}

.confirm-page__lead {
  margin: 0 0 48px;
  font-size: 17px;
  line-height: 1.9;
  font-weight: 700;
}

.confirm-list {
  margin: 0 0 44px;
  border-top: 1px solid rgba(255,255,255,.35);
}

.confirm-list__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.35);
}

.confirm-list__row dt {
  font-weight: 900;
}

.confirm-list__row dd {
  margin: 0;
  line-height: 1.8;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.confirm-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.confirm-actions button {
  min-height: 74px;
  border: 2px solid var(--color-red);
  font-weight: 900;
  font-size: 18px;
  cursor: pointer;
}

.confirm-actions__back {
  background: transparent;
  color: #fff;
}

.confirm-actions__send {
  background: var(--color-red);
  color: #fff;
}

.confirm-actions__back:hover,
.confirm-actions__send:hover {
  background: #fff;
  color: var(--color-red);
}

@media (max-width: 767px) {
  .confirm-page {
    padding: 64px 20px;
  }

  .confirm-list__row {
    display: block;
    padding: 20px 0;
  }

  .confirm-list__row dt {
    margin-bottom: 8px;
  }

  .confirm-actions {
    grid-template-columns: 1fr;
  }

  .confirm-actions button {
    min-height: 60px;
    font-size: 15px;
  }
}
