:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-navy-900: #05001a;
  --color-navy-800: #000a21;
  --color-blue: #053da3;
  --color-red: #e60013;
  --color-yellow: #fae25a;
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  color: var(--color-white);
  background: var(--color-navy-900);
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}

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

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

img {
  max-width: 100%;
  display: block;
}
.sp-only {
  display: none;
}

.l-container {
  width: 100%;
  padding: 0 32px;
  margin-inline: auto;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 780px;
  max-height: 920px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(216deg, #1c3573 21.8%, #05001a 71.6%);
}

.hero__texture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  mix-blend-mode: exclusion;
}
.hero__player__inner {
  position: relative;
  height: 100%;
  transition-duration: 800ms;
  transition-delay: 800ms;
  transform: translateY(20px);
  opacity: 0;
}
.hero__player__inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 900px) {
  .hero__player__inner {
    overflow: hidden;
  }
}
.hero__player {
  position: absolute;
  right: 0;
  top: 0;
  width: min(60vw, 1047px);
}

.hero__inner {
  position: relative;
  z-index: 2;
  height: 100vh;
  min-height: 780px;
  max-height: 920px;
  max-width: 1900px;
  margin: 0 auto;
}

.hero__logo {
  width: 448px;
  position: absolute;
  top: 32px;
  left: 32px;
  z-index: 11;
}

.hero__copy {
  position: absolute;
  left: 32px;
  bottom: 30px;
  width: min(68vw, 800px);
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.5));
  z-index: 10;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 500ms;
  transform: translateY(20px);
}
.hero__copy.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.hero__caption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.2em;
}

.policy {
  position: relative;
  padding: 250px 0 400px;
  overflow: hidden;
}

.policy__bg {
  position: absolute;
  inset: 0;
  background: url("../images/policy-bg.jpg") center/cover no-repeat;
  background-position: top center;
}

.policy__inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.policy__lead {
  opacity: 0;
  margin: 0 auto 1em;
  max-width: 1200px;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  transition-duration: 800ms;
  transition-delay: 800ms;
  transform: translateY(20px);
}
.policy__lead.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.policy__headline {
  position: relative;
  max-width: 1200px;
  margin: 92px auto 0;
  width: 90%;
}

.policy__headline-top,
.policy__headline-bottom {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 90px;
}

.policy__headline-top {
  left: 100px;
  margin-bottom: 30px;
  transform: rotate(3.38deg);
  z-index: 10;
  padding-left: 20px;
  padding-right: 20px;
}

.policy__headline-bottom {
  right: 0;
  top: 95px;
  transform: rotate(-2deg);
  padding-left: 20px;
  padding-right: 20px;
}

.policy__headline-top,
.policy__headline-bottom {
  opacity: 0;
}
.policy__headline-top {
  left: -200px;
}
.policy__headline-bottom {
  right: -200px;
}
.policy__headline.is-visible .policy__headline-top {
  opacity: 1;
  transition-duration: 500ms;
  left: 100px;
  transition-delay: 1500ms;
}
.policy__headline.is-visible .policy__headline-bottom {
  opacity: 1;
  transition-duration: 500ms;
  right: 0;
  transition-delay: 2000ms;
}
.policy__headline-top::before,
.policy__headline-bottom::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 100%, 0 100%);
}

.policy__headline-top::before {
  background: #083190;
}

.policy__headline-bottom::before {
  background: #e60013;
}

.policy__headline-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.movie {
  position: relative;
  padding: 176px 0 120px;
  background: var(--color-navy-800);
  overflow: hidden;
}

.movie__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 33, 0.85) url("../images/movie-overlay.jpg")
    center/cover no-repeat;
  opacity: 0.35;
}

.movie__pattern {
  position: absolute;
  inset: 0;
  background: url("../images/movie-pattern.png") top left/25px 25px repeat;
  opacity: 0.08;
}

.movie__inner {
  position: relative;
  z-index: 2;
}
.main-contents {
  position: relative;
}
.tab {
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  width: 539px;
  height: 92px;
  margin: 0 auto 120px;
  padding: 8px;
  background: var(--color-white);
  border-radius: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  z-index: 10;
}

.tab-btn {
  border: 0;
  border-radius: 38px;
  background: transparent;
  color: #0f0c09;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  font-weight: 600;
  cursor: pointer;
}

.tab-btn--active {
  background: var(--color-blue);
  color: var(--color-white);
}

.movie__title {
  margin: 0;
  text-align: center;
  font-size: 64px;
  line-height: 1.5;
  font-weight: 700;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 500ms;
  transform: translateY(20px);
}
.movie__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.movie__title span {
  display: inline-block;
}

.movie__desc {
  margin: 24px 0 52px;
  text-align: center;
  font-size: 20px;
  line-height: 1.8;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 1000ms;
  transform: translateY(20px);
}
.movie__desc.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.movie__inner.l-container {
  padding: 0;
}

.movie__carousel-wrap {
  width: 100%;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 1500ms;
  transform: translateY(20px);
}
.movie__carousel-wrap.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.movie__carousel {
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.movie__carousel .swiper-wrapper {
  align-items: flex-start;
}

.movie__carousel.movie__carousel--centered .swiper-wrapper {
  justify-content: center;
}

.movie-card {
  flex-shrink: 0;
  width: 526px;
}

.movie-card--first {
  margin-left: 32px;
}

.movie__carousel .movie-card:last-child {
  margin-right: 32px;
}

.movie-card__link {
  display: block;
  position: relative;
  min-height: 441px;
  transition: transform 0.2s;
}

.movie-card__link:hover {
  transform: translateY(10px);
}

.movie-card__thumb {
  width: 100%;
  aspect-ratio: 526 / 351;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.5);
  overflow: hidden;
  position: relative;
}

.movie-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
}

.movie-card__play img:first-child {
  position: absolute;
  inset: 0;
}

.movie-card__play img:last-child {
  position: absolute;
  width: 56px;
  height: 56px;
}

.movie-card__index {
  margin: 0;
  font-family: "Oswald", sans-serif;
  color: var(--color-red);
  font-size: 128px;
  line-height: 1;
  font-weight: 600;
}

.movie-card__index span {
  font-size: 32px;
}

.movie-card__text {
  display: flex;
  align-items: end;
  gap: 16px;
  position: absolute;
  left: 0;
  bottom: 30px;
}

.movie-card__name {
  margin: 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 8px;
  white-space: nowrap;
}
.movie__arrow-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 16px;
}

.movie__arrow {
  width: 56px;
  height: 56px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.movie__arrow:disabled {
  opacity: 0.4;
  cursor: default;
}

.movie__arrow.swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}

.making {
  position: relative;
  padding: 80px 0 160px;
}

.making__bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 10, 33, 0.7) url("../images/making-bg.jpg") center/cover
    no-repeat;
  background-position: top center;
}

.making__pattern {
  position: absolute;
  inset: 0;
  background: url("../images/making-pattern.png") 0 0/128px 128px repeat;
  opacity: 0.08;
}

.making__inner {
  position: relative;
  z-index: 2;
  min-height: 600px;
  display: grid;
  align-items: start;
}
.making__inner.l-container {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
}
.making__content {
  width: min(912px, 100%);
}

.making__label {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.6;
  text-shadow: 0px 0px 10px rgba(0, 26, 92, 0.5);
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 1000ms;
  transform: translateY(20px);
}
.making__label.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.making__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 96px;
  font-weight: 600;
  line-height: 1;
  text-shadow: 0px 0px 10px rgba(0, 26, 92, 0.5);
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 500ms;
  transform: translateY(20px);
}
.making__title.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.making__text {
  margin: 16px 0 32px;
  font-size: 20px;
  font-weight: 500;
  text-shadow: 0px 0px 10px rgba(0, 26, 92, 0.5);
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 1500ms;
  transform: translateY(20px);
}
.making__text.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.making__video__area {
  width: min(604px, 100%);
  text-align: center;
  opacity: 0;
  transition-duration: 500ms;
  transition-delay: 2000ms;
  transform: translateY(20px);
}
.making__video__area.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.making__video {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 526 / 351;
  background: var(--color-black);
  margin-bottom: 24px;
}
.coming-soon {
  position: absolute;
  font-family: "Oswald", sans-serif;
  white-space: nowrap;
  font-size: 72px;
  font-weight: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fdd512;
}
@media (max-width: 640px) {
  .coming-soon {
    font-size: 40px;
  }
}
.making__video-thumb {
  position: absolute;
  inset: 0;
}

.making__video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  width: 56px;
  height: 56px;
}

.making__video-play img:first-child {
  position: absolute;
  inset: 0;
}

.making__video-play img:last-child {
  position: absolute;
  width: 56px;
  height: 56px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 40px;
  padding: 16px 32px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.35s ease,
    filter 0.35s ease;
}

.button::before {
  content: "";
  position: absolute;
  top: -120%;
  left: -60%;
  width: 40%;
  height: 320%;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.02) 28%,
    rgba(255, 255, 255, 0.42) 50%,
    rgba(255, 255, 255, 0.02) 72%,
    transparent 100%
  );
  transform: translateX(-220%) skewX(-22deg);
  transition: transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.button > * {
  position: relative;
  z-index: 1;
}

.button img {
  width: 36px;
  height: 36px;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button--blue {
  color: var(--color-white);
  background: var(--color-blue);
}

.button--yellow {
  color: var(--color-black);
  background: var(--color-yellow);
}

.button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 3px;
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-4px) scale(1.01);
    filter: brightness(1.06);
  }

  .button:hover::before {
    transform: translateX(360%) skewX(-22deg);
  }

  .button:hover img {
    transform: translateX(6px) rotate(-8deg);
  }

  .button--blue:hover {
    box-shadow:
      0 14px 28px rgba(5, 61, 163, 0.42),
      0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .button--yellow:hover {
    box-shadow:
      0 14px 28px rgba(250, 226, 90, 0.34),
      0 8px 22px rgba(0, 0, 0, 0.35);
  }

  .button:active {
    transform: translateY(-1px) scale(0.995);
  }
}

.contact {
  position: relative;
}

.contact__inner.l-container {
  max-width: 900px;
}
.contact__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(15px);
}

.contact__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact__title {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-size: 96px;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 64px;
}

.contact__subtitle {
  margin: 14px 0 64px;
  font-size: 16px;
  font-weight: 700;
}

.contact__actions {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 32px;
}

.contact__icon {
  margin: 0 auto 16px;
  width: 60px;
  height: 60px;
}

.contact__label {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact__divider {
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
}
.contact__item.tel__item {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.contact__tel {
  display: inline-block;
  margin-top: auto;
  font-family: "Oswald", sans-serif;
  font-size: 36px;
  line-height: 1;
}
.contact__tel__item {
  font-size: 24px;
  padding-right: 8px;
}

.footer__bottom {
  display: grid;
  place-items: center;
  min-height: 81px;
  background: var(--color-black);
}

.footer__logo {
  width: 326px;
  height: 41px;
  object-fit: contain;
}

.youtube-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

.youtube-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.youtube-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.youtube-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 48px));
  display: flex;
  flex-direction: column;
}

.youtube-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-end;
  margin-bottom: 12px;
  color: var(--color-white);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: none;
  border: none;
}

.youtube-modal__close-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.youtube-modal__player-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}

.youtube-modal__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.youtube-modal__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1200px) {
  .l-container {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero {
    min-height: 780px;
  }

  .hero__copy {
    position: absolute;
    width: min(72vw, 650px);
  }

  .policy {
    padding: 120px 0 240px;
  }

  .policy__lead {
    font-size: 20px;
  }

  .policy__headline-text {
    font-size: 48px;
  }

  .policy__headline-top,
  .policy__headline-bottom {
    height: 60px;
  }
  .policy__headline-bottom {
    top: 65px;
  }
  .policy__headline-top .policy__headline-text,
  .policy__headline-bottom .policy__headline-text {
    width: 100%;
  }

  .movie__title {
    font-size: 52px;
  }

  .making__title,
  .contact__title {
    font-size: 80px;
  }
}
@media (max-width: 985px) {
  .hero__player {
    top: auto;
    bottom: 0;
  }
  .hero__copy {
    bottom: 20px;
  }
  .policy__lead {
    text-align: left;
  }
  .policy__lead br {
    display: none;
  }
}
@media (max-width: 820px) {
  .hero {
    height: 65vh;
    min-height: 65vh;
    max-height: 65vh;
  }

  .hero__inner {
    height: 65vh;
    min-height: 65vh;
    max-height: 65vh;
  }
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
  .l-container {
    width: 100%;
    padding: 0 5%;
  }

  .hero {
    height: 75vh;
    min-height: 75vh;
    max-height: 75vh;
  }

  .hero__inner {
    padding-top: 24px;
    height: 75vh;
    min-height: 75vh;
    max-height: 75vh;
  }

  .hero__player {
    width: auto;
    max-width: none;
    height: 70vh;
    top: auto;
    bottom: 0;
    right: -100px;
  }

  .hero__logo {
    width: 70%;
    top: 24px;
    left: 24px;
  }
  .hero__mark {
    width: 24px;
  }

  .hero__taraflex {
    width: 124px;
    height: auto;
  }

  .hero__copy {
    width: 68%;
  }

  .hero__caption {
    right: 12px;
    bottom: 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }

  .policy {
    padding: 72px 0 200px 0;
  }

  .policy__inner {
    text-align: left;
  }
  .policy__lead {
    font-size: 16px;
    line-height: 1.9;
  }

  .policy__headline {
    margin-top: 48px;
    width: 100%;
  }
  .policy__headline.is-visible .policy__headline-top {
    left: 30px;
  }

  .policy__headline-top,
  .policy__headline-bottom {
    height: 50px;
  }
  .policy__headline-top {
    padding-left: 10px;
    padding-right: 20px;
  }
  .policy__headline-bottom {
    padding-left: 10px;
    padding-right: 20px;
    top: 45px;
  }

  .policy__headline.is-animate-ready.is-visible .policy__headline-top {
    transition-duration: 500ms;
    left: 40px;
    transition-delay: 1000ms;
  }

  .movie {
    padding: 48px 0 90px;
  }
  .movie__inner.l-container {
    width: 90%;
    margin: 0 auto;
  }
  .movie__tab {
    width: 100%;
    max-width: 375px;
    height: 64px;
    margin-bottom: 48px;
  }

  .movie__tab-btn {
    font-size: 24px;
  }

  .movie__title {
    font-size: 24px;
  }

  .movie__desc {
    margin: 16px 0 24px;
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }

  .movie__carousel-wrap {
    width: 100%;
    margin-left: 0;
  }

  .movie__carousel {
    overflow: visible;
  }

  .movie__carousel .swiper-wrapper {
    display: block;
    transform: none !important;
  }

  .movie-card {
    width: min(86vw, 335px);
    margin: 0 auto 72px;
  }

  .movie-card--first {
    margin-left: auto;
  }

  .movie__carousel .movie-card:last-child {
    margin-right: auto;
    margin-bottom: 0;
  }

  .movie__carousel .swiper-slide {
    width: 100%;
  }

  .movie-card__link {
    min-height: auto;
  }

  .movie-card__index {
    position: static;
    margin: -20px 0 0;
    font-size: 72px;
  }
  .movie-card__text {
    bottom: -30px;
  }

  .movie-card__name {
    padding-bottom: 1px;
  }
  .movie-card__index span {
    font-size: 20px;
  }

  .movie-card__name {
    position: static;
    margin-top: -8px;
    left: auto;
    top: auto;
    font-size: 18px;
    line-height: 1.4;
    white-space: normal;
  }

  .movie__arrow-nav {
    display: none;
  }

  .making {
    padding: 48px 0;
  }

  .making__bg {
    background: rgba(0, 10, 33, 0.7) url("../images/making-bg-sp.jpg")
      center/cover no-repeat;
    background-position: center center;
  }

  .making__inner {
    min-height: auto;
  }

  .making__inner.l-container {
    width: 100%;
  }

  .making__label {
    font-size: 12px;
  }

  .making__title {
    font-size: 36px;
  }

  .making__text {
    margin: 16px 0 24px;
    font-size: 16px;
    width: 68%;
  }
  .making__text br {
    display: none;
  }

  .button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 14px 18px;
  }

  .contact__inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact__title {
    font-size: 36px;
  }

  .contact__subtitle {
    font-size: 12px;
    margin: 0px 0 40px;
  }

  .contact__label {
    font-size: 14px;
  }

  .contact__actions {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 36px;
  }

  .contact__divider {
    width: 100%;
    height: 1px;
  }

  .contact__tel {
    font-size: 30px;
  }

  .footer__logo {
    width: 50%;
    height: auto;
  }

  .youtube-modal__dialog {
    width: calc(100% - 24px);
  }

  .youtube-modal__close {
    min-width: 80px;
    height: 36px;
    font-size: 16px;
  }

  .youtube-modal__close-icon {
    width: 18px;
    height: 18px;
  }
  .button--yellow {
    width: auto;
  }
}
@media (max-width: 950px) {
  .policy__headline-text {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .policy__headline-text {
    font-size: 34px;
  }
}
@media (max-width: 660px) {
  .policy__headline-text {
    font-size: 30px;
  }
}
@media (max-width: 580px) {
  .policy__headline-text {
    font-size: 23px;
  }
}
@media (max-width: 430px) {
  .policy__headline-text {
    font-size: 21px;
  }
}

@media (max-width: 414px) {
  .hero__copy {
    width: 80%;
    bottom: 50px;
  }
  .policy__headline-text {
    font-size: 19px;
  }
}

@media (max-width: 375px) {
  .policy__headline-text {
    font-size: 18px;
  }
}
@media (max-width: 360px) {
  .policy__headline-text {
    font-size: 17px;
  }
}
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/* iPhone SE 横向き用 */
@media screen and (max-width: 740px) and (orientation: landscape) {
  .hero__copy {
    width: 38%;
  }
  .hero__inner,
  .hero {
    min-height: 400px;
  }
  .hero__player {
    width: 65%;
    max-width: none;
    height: auto;
    top: 50px;
    bottom: auto;
    right: 0;
  }
  .hero__player__inner {
    overflow: hidden;
  }
}
