*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ローディング画面のスタイル */
/* ローディング画面のスタイル */
#loading-ray {
  display: none; /* JavaScriptで表示・非表示を制御 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -100;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ローディングアニメーション（スピナー） */
#loading-ray::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 5px solid #f3f3f3; /* スピナーのベースカラー */
  border-top: 5px solid #3498db; /* スピナーの動く部分のカラー */
  border-radius: 50%;
  animation: spin 1s linear infinite; /* 1秒間で一回転 */
}

/* スピナーのアニメーションキーフレーム */
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

a {
  text-decoration: none;
}

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


body {
  display: flex;
  flex-direction: column;
  background: url(../img/bg_body01.png) center 0/120% auto no-repeat;
  background-attachment: fixed;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  color: #000;
}

body::before,
body::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

body::before {
  margin-top: calc((1 - 1) * 0.5em);
}

body::after {
  margin-bottom: calc((1 - 1) * 0.5em);
}

img {
  vertical-align: top;
  max-width: 100%;
}

input {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

main {
  flex-grow: 1;
  background: url(../img/bg_body02.png) 0 bottom/120% auto no-repeat;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-header-inner {
  display: flex;
  justify-content: space-between;
  padding: min(5vw, 38px) min(5vw, 38px) 0;
}

.l-header-logo {
  width: min(45vw, 300px);
}

.l-header-menu {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #016DA4;
  color: #fff;
  z-index: 1000;
  transition: 0.3s;
}

.l-header-menu-inner {
  padding-top: min(14.25vw, 114px);
}

.l-header-menu-ttl {
  text-align: center;
  font-size: 1.625rem;
  font-weight: bold;
}

.l-header-menu-ttl span {
  display: block;
  margin-bottom: 5px;
  font-size: 1.1875rem;
}

.l-header-menu-list {
  margin: min(7.5vw, 30px) auto;
  width: min(75vw, 580px);
  font-size: 1.125rem;
}

.l-header-menu-list li + li {
  margin-top: min(5vw, 40px);
}

.l-header-menu-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(9.25vw, 60px);
  height: min(9.25vw, 60px);
  background: #016DA4;
  border-radius: 50%;
  z-index: 1001;
}

.l-header-menu-btn .bar {
  width: min(4vw, 25px);
  height: min(0.75vw, 5px);
  background: #fff;
  border-radius: 100vmax;
  transition: 0.3s;
}

.l-header-menu-btn .bar + .bar {
  margin-top: min(1.25vw, 8px);
}

.l-header-menu-btn.is-active .bar {
  position: absolute;
}

.l-header-menu-btn.is-active .bar:nth-child(1) {
  transform: rotate(40deg);
}

.l-header-menu-btn.is-active .bar:nth-child(2) {
  margin-top: 0;
  transform: rotate(-40deg);
}

.l-header-menu.is-active {
  visibility: visible;
  opacity: 1;
}

.l-header-form-ttl {
  margin: min(6.25vw, 50px) 0 min(8.75vw, 69px);
  padding: min(5vw, 20px) 0 min(5vw, 20px) 13.75%;
  width: 86.71vw;
  max-width: 1110px;
  border-radius: 0 100vmax 100vmax 0;
  background: #104763;
  font-size: 1.625rem;
  color: #fff;
}

.l-kv {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: min(27.75vw, 150px);
  z-index: -1;
}

.l-kv-inner {
  position: relative;
  margin: 0 auto;
  max-width: 1000px;
}

.l-kv-ttl {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 85%;
  padding-left: min(5vw, 38px);
  line-height: 1.5;
  letter-spacing: 0.15em;
  font-size: max(4.5vw, 18px);
  font-weight: 600;
  color: #104763;
  animation: fadeIn 0.8s linear 1.8s forwards;
}

.l-kv-ttl::before,
.l-kv-ttl::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
}

.l-kv-ttl::before {
  margin-top: calc((1 - 1.5) * 0.5em);
}

.l-kv-ttl::after {
  margin-bottom: calc((1 - 1.5) * 0.5em);
}

.l-kv-lead {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 41%;
  left: 3%;
  letter-spacing: 0.11em;
  font-size: max(5.75vw, 23px);
  font-weight: bold;
  color: #104763;
  z-index: 10;
  animation: fadeIn 0.5s linear 0.2s forwards;
}

.l-kv-lead span {
  position: absolute;
  top: 72%;
  right: 0;
  display: block;
  width: min(45vw, 400px);
  z-index: -1;
}

.l-kv-lead::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1.2em;
  background: #104763;
  vertical-align: middle;
}

.l-kv-lead::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 1.2em;
  background: #104763;
  vertical-align: middle;
}

.l-kv-img01 {
  opacity: 0;
  position: relative;
  margin: min(15.75vw, 60px) auto 0;
  width: min(85vw, 1020px);
  z-index: 5;
  animation: fadeIn 0.5s linear 0.5s forwards;
}

.l-kv-img01 img {
  width: 100%;
  height: auto;
}

.l-kv-img02 {
  opacity: 0;
  position: absolute;
  left: 5.25vw;
  top: 3vw;
  width: 22.5vw;
  animation: slideLeft 0.8s linear 0.8s forwards;
}

.l-kv-img02 img {
  border-radius: 16px;
}

.l-kv-img03 {
  opacity: 0;
  position: absolute;
  right: 4.25vw;
  top: -6.25vw;
  width: 28.5vw;
  z-index: 3;
  animation: slideRight 0.8s linear 1s forwards;
}

.l-kv-img04 {
  opacity: 0;
  position: absolute;
  right: min(21vw, 150px);
  top: min(8.75vw, 80px);
  width: 20vw;
  animation: slideRight 0.8s linear 1.2s forwards;
}

.l-kv-img05 {
  opacity: 0;
  position: absolute;
  right: min(25vw, 230px);
  width: 11.5vw;
  animation: slideRight 0.8s linear 1.4s forwards;
}

.l-kv-img06 {
  opacity: 0;
  position: absolute;
  left: 9.5vw;
  bottom: 7vw;
  width: 28.25vw;
  z-index: 1;
  animation: slideLeft 0.8s linear 1.6s forwards;
}

.l-kv-img07 {
  opacity: 0;
  position: absolute;
  left: -3vw;
  bottom: min(-15vw, -60px);
  width: 33.25vw;
  z-index: -1;
  animation: fadeIn 0.8s linear 2s forwards;
}

.l-kv-scroll {
  opacity: 0;
  position: absolute;
  right: 1%;
  bottom: 10%;
  animation: fadeIn 0.8s linear 2s forwards;
}

.l-kv-scroll span {
  display: block;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 500;
  color: #104763;
  transform: rotate(90deg);
}

.l-kv-scroll::before {
  content: "";
  position: absolute;
  top: -18px;
  right: 40px;
  display: block;
  width: 1px;
  height: 3em;
  background: #0067B7;
}

.l-kv-scroll::after {
  content: "";
  position: absolute;
  top: -13px;
  right: 37px;
  width: 8px;
  height: 8px;
  background: #0067B7;
  border-radius: 50%;
  animation: kvscroll 2.5s linear infinite;
}

.l-contents {
  position: relative;
  margin-bottom: min(10vw, 113px);
  background: #F4F4F4;
  border-radius: 0 100px 100px 0;
}

.l-contents-lead {
  position: relative;
  padding-left: min(2.75vw, 46px);
  width: min(91.25vw, 97%);
  max-width: 1234px;
  transform: translateY(max(-4.5vw, -50px));
  z-index: 1;
}

.l-contents-inner {
  overflow: hidden;
}

.l-contents-section {
  position: relative;
}

.l-contents-section:nth-of-type(even) .c-movie::before {
  left: auto;
  right: 0;
  border: 3px solid #104763;
  border-right: 0;
  border-radius: 50vmax 0 0 50vmax;
}

.l-contents-section:nth-of-type(even) .c-movie-contents {
  display: flex;
  justify-content: flex-end;
}

.c-movie-contents.thanks-movie {
    width: 100% !important;
    margin-top: 20px;
  }

.c-movie {
  position: relative;
  padding: min(5vw, 20px) 0 min(18vw, 72px) min(2.5vw, 10px);
  z-index: 1;
}

.c-movie::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: min(107.25vw, 789px);
  height: min(84vw, 460px);
  background: #fff;
  border: 3px solid #104763;
  border-left: 0;
  border-radius: 0 50vmax 50vmax 0;
  aspect-ratio: 429/336;
  z-index: -1;
}

.c-movie-contents {
  position: relative;
  width: min(83.25vw, 672px);
}

.c-movie-contents img {
  border-radius: 6.25vw;
}

.c-movie-contents span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: min(12.5vw, 110px);
  height: min(12.5vw, 110px);
  background: url(../img/icon_movie.png) 0 0/100% auto no-repeat;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.c-movie-contents::before,
.c-movie-contents::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  border: 2px solid #81C7FF;
  border-radius: 6.25vw;
  box-sizing: border-box;
  pointer-events: none;
  animation: pulsate 2s linear infinite;
}

.c-movie-contents::after {
  animation-delay: 1s;
}

.c-movie-contents:hover {
  cursor: pointer;
}

.c-movie-ttl-no {
  font-size: 7vw;
  font-weight: 500;
  color: #104763;
}

.c-movie-ttl-sub {
  letter-spacing: 0.1em;
  font-size: 2.25vw;
  font-weight: 500;
  color: #104763;
}

.c-movie-ttl-txt {
  display: inline-block;
  padding: min(2.5vw, 32px) min(2.5vw, 22px);
  background: #104763;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 900;
  color: #fff;
}

.c-movie-question {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-movie-question::before {
  content: "";
  position: absolute;
  top: -7.5vw;
  right: 10px;
  display: block;
  width: 32.75vw;
  height: 6.5vw;
  background: url(../img/txt_balloon.png) 0 0/100% auto no-repeat;
}

.section01 .c-movie::after {
  content: "";
  position: absolute;
  top: 30.75vw;
  right: 0;
  display: block;
  width: 41.5vw;
  height: 41.5vw;
  background: url(../img/bg_section01.png) 0 0/100% auto no-repeat;
}

.section01 .c-movie-question {
  width: min(79vw, 827px);
}

.section01 .c-movie-question::before {
  right: -10px;
}

.section02 .c-movie::after {
  content: "";
  position: absolute;
  top: 15.25vw;
  left: -4.25vw;
  display: block;
  width: 56.25vw;
  height: 56.25vw;
  background: url(../img/bg_section02.png) 0 0/100% auto no-repeat;
}

.section02 .c-movie-question {
  width: min(79vw, 810px);
}

.section02 .c-movie-question::before {
  left: 0;
}

.section02 .c-movie-question li:first-child {
  width: min(62.75vw, 639px);
}

.section02 .c-movie-question li:last-child {
  width: min(77.5vw, 810px);
}

.section03 .c-movie::after {
  content: "";
  position: absolute;
  top: 45.75vw;
  right: 48vw;
  display: block;
  width: 36.25vw;
  height: 36.25vw;
  background: url(../img/bg_section03.png) 0 0/100% auto no-repeat;
}

.section03 .c-movie-question {
  width: min(93.25vw, 938px);
}

.section03 .c-movie-question::before {
  right: -10px;
}

.section03 .c-movie-question li:first-child {
  width: min(93.25vw, 938px);
}

.section03 .c-movie-question li:last-child {
  width: min(77vw, 810px);
}

.section04 .c-movie::after {
  content: "";
  position: absolute;
  top: 30.25vw;
  left: -7.5vw;
  display: block;
  width: 54.25vw;
  height: 54.25vw;
  background: url(../img/bg_section04.png) 0 0/100% auto no-repeat;
}

.section04 .c-movie-question {
  width: min(73.75vw, 769px);
}

.section04 .c-movie-question::before {
  left: 0;
}

.section04 .c-movie-question li:first-child {
  width: min(73.75vw, 767px);
}

.section04 .c-movie-question li:last-child {
  width: min(73.75vw, 769px);
}

.section05 .c-movie::after {
  content: "";
  position: absolute;
  top: 45.75vw;
  right: 48vw;
  display: block;
  width: 36.25vw;
  height: 36.25vw;
  background: url(../img/bg_section05.png) 0 0/100% auto no-repeat;
}

.section05 .c-movie-question {
  width: min(73vw, 767px);
}

.section05 .c-movie-question::before {
  right: -10px;
}

.section05 .c-movie-question li:first-child {
  width: min(73vw, 767px);
}

.section05 .c-movie-question li:last-child {
  width: min(57vw, 596px);
}

.section06 .c-movie::after {
  content: "";
  position: absolute;
  top: 33.25vw;
  left: -5vw;
  display: block;
  width: 49.25vw;
  height: 49.25vw;
  background: url(../img/bg_section06.png) 0 0/100% auto no-repeat;
}

.section06 .c-movie-question {
  width: min(61.25vw, 639px);
}

.section06 .c-movie-question::before {
  left: 0;
}

.section06 .c-movie-question li:first-child {
  width: min(61.25vw, 639px);
}

.section06 .c-movie-question li:last-child {
  width: min(61.25vw, 639px);
}

.section07 .c-movie::after {
  content: "";
  position: absolute;
  top: 45.75vw;
  left: 23vw;
  display: block;
  width: 36.25vw;
  height: 36.25vw;
  background: url(../img/bg_section07.png) 0 0/100% auto no-repeat;
}

.section07 .c-movie-question {
  width: min(77.25vw, 812px);
}

.section07 .c-movie-question::before {
  right: -10px;
}

.section07 .c-movie-question li:first-child {
  width: min(69vw, 724px);
}

.section07 .c-movie-question li:last-child {
  width: min(77.25vw, 812px);
}

.l-thanks {
  background: #fff;
}

.l-thanks-scroll {
  display: flex;
  gap: 0.8em;
  overflow: hidden;
  white-space: nowrap;
  padding: min(1.75vw, 30px) 0;
  background: #F4F4F4;
  text-align: center;
  letter-spacing: 0.1em;
  font-size: 1rem;
  color: #81C7FF;
}

.l-thanks-scroll.scroll01 span {
  display: block;
  animation: scroll 30s linear infinite;
}

.l-thanks-scroll.scroll02 span {
  display: block;
  animation: scroll2 30s linear infinite;
}

.l-thanks-contents {
  padding: min(1.75vw, 30px) 0;
  background: url(../img/bg_thanks.jpg) right 0/auto 100% no-repeat;
}

.l-thanks-ttl {
  margin-bottom: min(1.75vw, 30px);
  text-align: center;
  letter-spacing: 0.1em;
  font-size: max(4vw, 16px);
  font-weight: bold;
  color: #81C7FF;
}

.l-thanks-txt {
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.1em;
  font-size: max(2.5vw, 10px);
  font-weight: bold;
  color: #104763;
}

.l-thanks-txt + .l-thanks-txt {
  margin-top: 1em;
}

.l-thanks-txt span {
  border-bottom: 1px solid #FF8000;
  color: #FF8000;
}

.l-link {
  padding: min(10vw, 113px) 0;
}

.l-link a {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  letter-spacing: 0.15em;
  padding: min(2.75vw, 33px) 0;
  width: min(91.25vw, 1038px);
  background: linear-gradient(90deg, #01A8FF 0%, #24B0F9 53.37%, #7FD3FF 100%);
  border-radius: 100vmax;
  font-size: max(4vw, 16px);
  font-weight: bold;
  color: #fff;
}

.l-link a::after {
  content: "";
  display: block;
  margin-left: min(3vw, 30px);
  width: min(8.25vw, 70px);
  height: min(8.25vw, 70px);
  background: url(../img/icon_btn.png) 0 0/100% auto no-repeat;
}

.l-footer {
  background: #fff;
  border-radius: 50px 50px 0 0;
}

.l-footer-inner {
  padding: min(5vw, 56px) 0;
  text-align: center;
  font-size: 0.66125rem;
  font-weight: 500;
}

.l-footer-logo {
  margin: 0 auto;
  width: min(33.5vw, 483px);
}

.l-footer-link {
  margin: min(3.5vw, 14px) 0 min(6.75vw, 60px);
}

.l-footer-copy {
  font-size: 0.4375rem;
  font-weight: normal;
}

.l-form {
  margin-bottom: min(13.5vw, 108px);
  padding: min(5vw, 40px) min(7.5vw, 59px) min(5vw, 40px) 0;
  width: 95.53vw;
  max-width: 1221px;
  background: #F4F4F4;
  border-radius: 0 50px 50px 0;
  color: #104763;
}

.l-form-inner {
  margin-left: auto;
  width: 82.89vw;
  max-width: 933px;
}

.l-form-ttl {
  line-height: 1.4;
  font-size: 1.0625rem;
  font-weight: 500;
}

.l-form-section {
  margin-top: min(4.25vw, 33px);
  background: #EEF6FF;
  border: 1px solid #104763;
  border-radius: 10px;
  color: #016DA4;
}

.l-form-section-ttl {
  padding: min(3.75vw, 15px);
  background: #F1F5FF;
  text-align: center;
  border-bottom: 1px solid #104763;
  border-radius: 10px 10px 0 0;
  font-size: 1rem;
  font-weight: 500;
}

.l-form-section-ttl span {
  display: block;
  margin-top: 10px;
  font-size: 0.8125rem;
}

.l-form-section-list {
  font-size: 0.875rem;
  font-weight: 500;
}

.l-form-section-list li + li {
  margin-top: 15px;
}

.l-form-section-list.list02 {
  margin: 0 auto;
  width: 90%;
  max-width: 410px;
}

.l-form-section-list label {
  position: relative;
  padding-left: min(6vw, 24px);
}

.l-form-section-list label::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-block;
  width: min(4vw, 18px);
  height: min(4vw, 18px);
  border: 1px solid #104763;
  border-radius: 50%;
  background: #FFF4F4;
}

.l-form-section-list label span::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #046DA4;
  opacity: 0;
}

.l-form-section-list input:checked + span::after {
  opacity: 1;
}

.l-form-section-inner {
  padding: min(3.75vw, 25px);
}

.l-form-section-inner textarea {
  display: block;
  margin: 0 auto;
  padding: min(2.5vw, 20px);
  width: 73.125vw;
  max-width: 680px;
  background: #fff;
  border: none;
  border-radius: 15px;
  font-size: 0.875rem;
}

.l-form-submit {
  position: relative;
  margin-top: min(8.25vw, 33px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(91.25vw, 100%);
  max-width: 903px;
  background: linear-gradient(90deg, #01A8FF 0%, #24B0F9 53.37%, #7FD3FF 100%);
  border-radius: 100vmax;
}

.l-form-submit input {
  position: relative;
  max-width: 100%;
  letter-spacing: 0.15em;
  padding: min(2.75vw, 33px) 0;
  font-size: min(3vw, 28px);
  font-weight: bold;
  color: #fff;
  z-index: 1;
}

.l-form-submit input:hover {
  cursor: pointer;
}

.l-form-submit::after {
  content: "";
  position: absolute;
  display: block;
  right: min(5vw, 20px);
  width: min(4.5vw, 50px);
  height: min(4.5vw, 50px);
  background: url(../img/icon_btn.png) 0 0/100% auto no-repeat;
}

.l-form-txt {
  margin-top: min(8.25vw, 33px);
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-align: center;
  font-size: max(4.25vw, 17px);
  font-weight: 500;
  color: #104763;
}

.l-send {
  margin: min(10.5vw, 42px) auto min(7.5vw, 60px);
  padding: min(10vw, 80px) min(8.5vw, 68px) min(10vw, 80px) min(10vw, 80px);
  width: 86.56%;
  max-width: 980px;
  background: #F4F4F4;
}

.l-send-lead {
  margin-top: min(15vw, 60px);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: #104763;
}

.l-send-txt {
  line-height: 1.3;
  letter-spacing: 0.1em;
  font-size: 1.125rem;
  font-weight: 500;
  color: #104763;
}

.l-send-txt + .l-send-txt {
  margin-top: min(7.5vw, 30px);
}

.l-send-txt span {
  border-bottom: 1px solid #FF8000;
  color: #FF8000;
}

.l-send-btn {
  margin-top: min(3.75vw, 30px);
}

.l-send-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  letter-spacing: 0.15em;
  padding: min(2.75vw, 20px) 0;
  background: linear-gradient(90deg, #01A8FF 0%, #24B0F9 53.37%, #7FD3FF 100%);
  border-radius: 100vmax;
  font-size: max(4vw, 16px);
  font-weight: bold;
  color: #fff;
}

.l-send-btn a::after {
  content: "";
  display: block;
  margin-left: min(3vw, 30px);
  width: min(8.25vw, 70px);
  height: min(8.25vw, 70px);
  background: url(../img/icon_btn.png) 0 0/100% auto no-repeat;
  transform: rotate(90deg);
}

.l-send-top {
  margin: min(7.5vw, 60px) auto 0;
  width: 76.56%;
  max-width: 980px;
}

.l-send-top a {
  display: block;
  margin-left: auto;
  margin-bottom: min(7vw, 55px);
  padding: min(2.5vw, 10px) min(5vw, 20px);
  width: 50%;
  max-width: 274px;
  text-align: center;
  background: linear-gradient(90deg, #01A8FF 0%, #24B0F9 53.37%, #7FD3FF 100%);
  border-radius: 20px;
  font-size: max(4.5vw, 18px);
  font-weight: bold;
  color: #fff;
}

#video-modal.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#video-modal .modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
}

#video-modal video {
  width: 100%;
  height: auto;
  background: #000;
  aspect-ratio: 1920/1080;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - 0.5em));
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(-0.8em);
  }
}

@keyframes slideLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes kvscroll {
  0% {
    opacity: 1;
  }

  85% {
    opacity: 1;
  }

  98% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translateY(450%);
  }
}

@keyframes pulsate {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

@media not all and (min-width: 960px) {
  
  .pc-view {
    display: none;
  }

  .l-kv-lead::after {
    display: none;
  }

  .l-contents-section:nth-of-type(even) .c-movie {
    padding-left: 15vw;
  }

  .l-contents-section:nth-of-type(even) .c-movie-ttl {
    flex-direction: row-reverse;
    justify-content: flex-end;
  }

  .l-contents-section:nth-of-type(even) .c-movie-ttl-sub {
    margin-right: 10px;
    text-align: right;
  }

  .l-contents-section:nth-of-type(even) .c-movie-ttl-txt {
    margin-right: 0;
    margin-right: 8px;
  }

  .l-contents-section:nth-of-type(even) .c-movie-question {
    margin: 5vw 2.5vw 0 auto;
  }

  .c-movie-ttl {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-top: 5px;
  }

  .c-movie-ttl-sub {
    margin-top: 7px;
    width: 100%;
    order: 1;
  }

  .c-movie-ttl-txt {
    margin-left: 8px;
    width: 67vw;
    min-width: 268px;
  }

  .c-movie-question {
    margin-top: 5vw;
  }

  .section01 .c-movie::after {
    z-index: -1;
  }

  .section02 .c-movie::after {
    z-index: -1;
  }

  .section02 .c-movie-question {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .section03 .c-movie::after {
    z-index: -1;
  }

  .section04 .c-movie::after {
    z-index: -1;
  }

  .section05 .c-movie::after {
    z-index: -1;
  }

  .section06 .c-movie::after {
    z-index: -1;
  }

  .section07::after {
    content: "";
    position: absolute;
    top: -62.5vw;
    right: -37.5vw;
    width: 90vw;
    height: 90vw;
    z-index: -2;
    background: url(../img/bg_section08.png) 0 0/100% auto no-repeat;
  }

  .section07 .c-movie::after {
    z-index: -1;
  }
}

@media screen and (min-width: 960px) {
  .sp-view {
    display: none;
  }

  .l-header-form-ttl {
    padding-left: 16.75%;
    font-size: 3.3125rem;
  }

  .l-kv {
    height: calc(100vh - 100px);
  }

  .l-kv-inner {
    height: calc(100% - 20px);
  }

  .l-kv-ttl {
    top: 80%;
    font-size: 2.25rem;
    z-index: 6;
  }

  .l-kv-lead {
    letter-spacing: 0.12em;
    font-size: min(5vw, 58px);
  }

  .l-kv-lead::before {
    display: none;
  }

  .l-kv-img01 {
    margin-top: 0;
    width: 100%;
    height: 100%;
    max-width: 800px;
    text-align: center;
  }

  .l-kv-img02 {
    width: 187px;
  }

  .l-kv-img02 img {
    border-radius: 30px;
  }

  .l-kv-img03 {
    top: -10px;
    right: -45px;
    width: 238px;
  }

  .l-kv-img04 {
    width: 165px;
  }

  .l-kv-img05 {
    bottom: -30px;
    width: 100px;
  }

  .l-kv-img06 {
    bottom: 30px;
    width: 230px;
  }

  .l-kv-img07 {
    bottom: -60px;
    width: 278px;
  }

  .l-kv-scroll span {
    font-size: 1.625rem;
  }

  .l-kv-scroll::before {
    top: -40px;
    right: 84px;
    height: 7em;
  }

  .l-kv-scroll::after {
    top: -45px;
    right: 75px;
    width: 18px;
    height: 18px;
  }

  .l-contents-section {
    padding-bottom: 232px;
  }

  .l-contents-section:nth-of-type(even) .c-movie {
    flex-direction: row-reverse;
  }

  .l-contents-section:nth-of-type(even) .c-movie-ttl {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }

  .l-contents-section:nth-of-type(even) .c-movie-ttl-txt {
    margin-left: 10px;
    margin-right: 0;
  }

  .c-movie {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding: 41px 0 58px;
  }

  .c-movie::before {
    width: 61.640625%;
    max-width: 789px;
    height: auto;
    aspect-ratio: 789/460;
  }

  .c-movie-contents {
    width: 52.5%;
    max-width: 672px;
  }

  .c-movie-contents img {
    border-radius: 50px;
  }

  .c-movie-contents::before,
  .c-movie-contents::after {
    border-radius: 50px;
  }

  .c-movie-ttl {
    margin-right: 20px;
    max-width: 452px;
  }

  .c-movie-ttl-no {
    font-size: 4.3125rem;
  }

  .c-movie-ttl-sub {
    margin-top: 5px;
    font-size: 1.3125rem;
  }

  .c-movie-ttl-txt {
    margin-top: 17px;
    font-size: 2.25rem;
    min-width: 427px;
  }

  .c-movie-ttl-txt span {
    display: block;
    margin-left: 1em;
    word-break: keep-all;
  }

  .c-movie-question {
    position: absolute;
  }

  .c-movie-question::before {
    top: -70px;
    right: 50px;
    width: 250px;
    height: 50px;
  }

  .section01 .c-movie::after {
    top: 90px;
    left: 500px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section01 .c-movie-ttl-txt {
    text-align: left;
  }

  .section01 .c-movie-question {
    top: 85%;
    right: 88px;
  }

  .section02 .c-movie::after {
    top: -60px;
    left: auto;
    right: 580px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section02 .c-movie-question::before {
    left: 30px;
  }

  .section02 .c-movie-question {
    bottom: -70px;
    left: 10px;
  }

  .section03 .c-movie::after {
    top: 80px;
    right: -50px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section03 .c-movie-question {
    bottom: -70px;
    right: 88px;
  }

  .section04 .c-movie::after {
    top: -171px;
    left: auto;
    right: 720px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section04 .c-movie-question::before {
    left: 30px;
  }

  .section04 .c-movie-question {
    bottom: -70px;
    left: 10px;
  }

  .section05::after {
    content: "";
    position: absolute;
    top: -65px;
    left: 520px;
    right: auto;
    width: 397px;
    height: 397px;
    z-index: -2;
    background: url(../img/bg_section08.png) 0 0/100% auto no-repeat;
  }

  .section05 .c-movie::after {
    top: 281px;
    left: -50px;
    right: auto;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section05 .c-movie-question {
    bottom: -70px;
    right: 88px;
  }

  .section06 .c-movie::after {
    top: -150px;
    left: auto;
    right: 100px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section06 .c-movie-question::before {
    left: 30px;
  }

  .section06 .c-movie-question {
    bottom: -70px;
    left: 10px;
  }

  .section07 .c-movie::after {
    top: -65px;
    left: 500px;
    width: 397px;
    height: 397px;
    z-index: -2;
  }

  .section07 .c-movie-question {
    bottom: -70px;
    right: 88px;
  }

  .l-thanks-scroll {
    font-size: 3.75rem;
  }

  .l-thanks-ttl {
    font-size: 3.75rem;
  }

  .l-thanks-txt {
    font-size: 2.25rem;
  }

  .l-link a {
    font-size: min(4vw, 36px);
  }

  .l-footer {
    border-radius: 50px;
  }

  .l-footer-inner {
    font-size: 1.5rem;
  }

  .l-footer-copy {
    font-size: 1rem;
  }

  .l-form-ttl {
    font-size: 2.125rem;
  }

  .l-form-section-ttl {
    font-size: 2.125rem;
  }

  .l-form-section-ttl span {
    font-size: 1.625rem;
  }

  .l-form-section-list {
    font-size: 2.125rem;
  }

  .l-form-section-list label::before {
    top: calc(50% - 9px);
  }

  .l-form-section-list label span::after {
    top: calc(50% - 7px);
  }

  .l-form-section-inner textarea {
    border-radius: 30px;
    font-size: 1.5rem;
  }

  .l-form-submit input {
    font-size: min(4vw, 36px);
  }

  .l-form-txt {
    font-size: 2.125rem;
  }

  .l-send-lead {
    font-size: 2rem;
  }

  .l-send-txt {
    font-size: 1.75rem;
  }

  .l-send-btn a {
    font-size: min(4vw, 30px);
  }

  .l-send-top a {
    font-size: 1.875rem;
  }
}