@charset "UTF-8";
:root {
  --max: 1100px;
}

html, body {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

body {
  width: 100%;
  background: rgba(17, 21, 39, 0.8);
  position: relative;
}
body.no-scroll {
  overflow: hidden;
  padding-right: 15px;
}
@media screen and (max-width: 767px) {
  body.no-scroll {
    padding-right: 0;
  }
}
body.no-scroll #bg-noise {
  width: calc(100% - 15px);
}
@media screen and (max-width: 767px) {
  body.no-scroll #bg-noise {
    width: 100%;
  }
}
body.thanks {
  background: #fff;
}

article {
  position: relative;
  font-weight: 500;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  img {
    width: 100%;
  }
}
#loading {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: #000000;
  text-align: center;
}

#bg-noise {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -2;
}

.pcb {
  display: block;
}
@media screen and (max-width: 767px) {
  .pcb {
    display: none;
  }
}

.spb {
  display: none;
}
@media screen and (max-width: 767px) {
  .spb {
    display: block;
  }
}

.bg-type-main {
  background: rgba(6, 7, 10, 0.6);
}
.bg-type-main::before {
  content: "";
  background: linear-gradient(148.44deg, rgba(111, 74, 135, 0.3) 9.88%, rgba(102, 101, 101, 0.9) 26%, rgba(60, 60, 136, 0.3) 41%, rgba(17, 21, 39, 0.3) 56.91%, rgba(112, 85, 72, 0.9) 76.63%);
  background-size: 300% 300%;
  background-attachment: fixed;
  animation: gradientAnimation 8s ease infinite;
  width: 100%;
  height: 100vh;
  display: block;
  position: fixed;
  z-index: -1;
}

.innerContent {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.offer {
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .offer {
    font-size: 12px;
  }
}

.btn a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: linear-gradient(310.4deg, #7259CC 7.28%, #74A0ED 65.53%);
  border-radius: 40px;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .btn a {
    width: 80%;
    font-size: 16px;
  }
}
.btn a .circleButton {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.btn a .circleButton__circle {
  color: #fff;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  display: block;
  height: 42px;
  width: 42px;
}
.btn a .circleButton__circle__arc {
  left: -1px;
  position: absolute;
  top: -1px;
  transform: scaleX(-1) rotate(-90deg);
  transform-origin: center;
  height: 42px;
  width: 42px;
  z-index: 1;
}
.btn a .circleButton__circle__arc circle {
  stroke: #fff;
  stroke-dasharray: 176px;
  stroke-dashoffset: -176px;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.btn a:hover {
  text-decoration: none;
}
.btn a:hover .circleButton__circle__arc circle {
  stroke-dashoffset: 0;
}
.btn a .circleButton__circle__arrow {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  margin-right: 4.5px;
  border-radius: 9999px;
  background-color: #fff;
}
.btn a .circleButton__circle__arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(30deg);
  transform-origin: 50% calc(100% - 0.5px);
}
.btn a:hover .circleButton__circle__arrow {
  animation: hoverArrow 1s infinite;
}

.fv-main-text {
  text-align: center;
  color: #fff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .fv-main-text {
    width: 100%;
  }
}
.fv-main-text .fv-sub-title {
  font-size: 25px;
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .fv-main-text .fv-sub-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .fv-main-text .fv-sub-title {
    font-size: 12px;
  }
}
.fv-main-text .fv-main-logo {
  font-family: "Oswald", sans-serif;
  font-size: 210px;
  font-weight: 700;
  line-height: 1;
  margin: 10px 0 30px;
}
@media screen and (max-width: 1100px) {
  .fv-main-text .fv-main-logo {
    font-size: 120px;
  }
}
@media screen and (max-width: 767px) {
  .fv-main-text .fv-main-logo {
    font-size: 70px;
    margin-bottom: 20px;
  }
}
.fv-main-text .fv-main-logo span {
  padding-right: 5px;
}
.fv-main-text .fv-caption {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 1100px) {
  .fv-main-text .fv-caption {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .fv-main-text .fv-caption {
    font-size: 14px;
    margin-bottom: 15px;
  }
}

@keyframes gradientAnimation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.bg-mov-large {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.bg-mov-large video {
  width: 120%;
  transform: translate(-10%, -27.5%);
}
@media screen and (max-width: 767px) {
  .bg-mov-large video {
    width: auto;
    height: 120vh;
    transform: translate(-10%, -8%);
  }
}

.fv {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(110, 110, 110, 0.5), rgba(89, 69, 59, 0.5), rgba(111, 74, 135, 0.5), rgba(60, 60, 136, 0.5), rgba(17, 21, 39, 0.5), rgba(6, 7, 10, 0.5));
  background-size: 300% 300%;
  animation: gradientAnimation 8s ease infinite;
  overflow: hidden;
}
.fv .fv-layer-bg {
  background: rgba(6, 7, 10, 0.2);
  background-size: cover;
}
.fv #bg-noise-fv {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.fv .innerContent {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv .innerContent {
    overflow-y: hidden;
    height: 100svh;
  }
}
.fv .innerContent .fv-main-text {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-text {
    display: block;
    position: initial;
    transform: none;
  }
}
.fv .innerContent .fv-main-text .btn {
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-text .btn {
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 5;
  }
}
.fv .innerContent .fv-main-text.js-show {
  animation: delayMove 1s forwards;
  animation-delay: 0.5s;
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-text.js-show {
    animation: none;
    opacity: 1;
  }
}
.fv .innerContent .fv-main-mov {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50% -50%) scale(10);
  opacity: 0;
}
.fv .innerContent .fv-main-mov.js-show {
  animation: delayMoveShow 3s forwards cubic-bezier(0.23, 1, 0.32, 1);
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-mov.js-show {
    animation: none;
    opacity: 1;
  }
}
.fv .innerContent .fv-main-mov img {
  height: calc(100vh - 100px);
  max-height: 767px;
  position: absolute;
  top: 0;
  left: -5px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-mov img {
    width: 80%;
    left: 49%;
    transform: translateX(-48%);
    height: auto;
  }
}
.fv .innerContent .fv-main-mov video {
  height: calc(100vh - 100px);
  max-height: 767px;
  border-radius: 15% 20% 20% 15%;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 3.1%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 92.1%);
          mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 3%, rgb(0, 0, 0) 3.1%, rgb(0, 0, 0) 92%, rgba(0, 0, 0, 0) 92.1%);
}
@media screen and (max-width: 767px) {
  .fv .innerContent .fv-main-mov {
    text-align: center;
    margin-top: 30px;
    position: initial;
    transform: translate(0) scale(1);
    transition: all 0.5s;
  }
  .fv .innerContent .fv-main-mov video {
    height: auto;
    width: 80%;
    border-radius: 70px;
    margin-left: 4%;
  }
}

@keyframes delayMove {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes delayMoveShow {
  0% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
  2% {
    transform: translate(-50%, -50%) scale(10);
    opacity: 0;
  }
  40% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  45% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(20%, -50%) scale(1);
    opacity: 1;
  }
}
@keyframes delayShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes readCircle {
  0% {
    transform: rotate(0) scale(100%) translateX(-50%);
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
  25% {
    transform: rotate(90deg) scale(90%) translateX(-50%);
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  50% {
    transform: rotate(180deg) scale(110%) translateX(-50%);
    border-radius: 70% 30% 30% 70%/50% 70% 30% 50%;
  }
  75% {
    transform: rotate(270deg) scale(90%) translateX(-50%);
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  100% {
    transform: rotate(360deg) scale(100%) translateX(-50%);
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
}
@keyframes readCircleSP {
  0% {
    transform: rotate(0) scale(100%);
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
  25% {
    transform: rotate(90deg) scale(90%);
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  50% {
    transform: rotate(180deg) scale(110%);
    border-radius: 70% 30% 30% 70%/50% 70% 30% 50%;
  }
  75% {
    transform: rotate(270deg) scale(90%);
    border-radius: 50% 50% 50% 50%/50% 50% 50% 50%;
  }
  100% {
    transform: rotate(360deg) scale(100%);
    border-radius: 30% 70% 60% 40%/30% 40% 60% 70%;
  }
}
.read {
  color: #0a1d3f;
  background: #fff;
  position: sticky;
  top: 0;
  opacity: 1;
  transition: all 0.5s;
  overflow: hidden;
  min-height: 100vh;
  z-index: 10;
}
.read .read-circle-bg {
  position: absolute;
  top: -1600px;
  left: 50%;
  transform-origin: left center 0;
  transform: translateX(-50%);
  animation: readCircle 20s infinite linear;
}
@media screen and (max-width: 767px) {
  .read .read-circle-bg {
    top: -50%;
    left: 0;
    transform-origin: center center 0;
    transform: translateX(0);
    animation: readCircleSP 20s infinite linear;
  }
  .read .read-circle-bg img {
    width: 200%;
  }
}
.read .read-bg {
  padding: 100px 0;
  min-height: 100vh;
  background-size: cover;
  filter: brightness(1.2);
  position: relative;
}
.read .read-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
}
.read.opacity-animation {
  opacity: 0;
}
.read .innerContent {
  position: relative;
  z-index: 1;
}
.read h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 115px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .read h2 {
    font-size: 51px;
  }
}
.read h2 i {
  font-size: 60px;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .read h2 i {
    font-size: 32px;
  }
}
.read h2 span {
  display: block;
}
.read h2 span:first-child {
  text-align: left;
  margin-left: 70px;
}
@media screen and (max-width: 767px) {
  .read h2 span:first-child {
    margin-left: 5%;
  }
}
.read h2 span:last-child {
  text-align: right;
  margin-right: 70px;
}
@media screen and (max-width: 767px) {
  .read h2 span:last-child {
    margin-right: 5%;
  }
}
.read p {
  text-align: center;
  font-size: 24px;
  line-height: 2.3;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .read p {
    margin-top: 30px;
    font-size: 16px;
  }
}

.about {
  padding-top: 100px;
  position: relative;
  z-index: 3;
  background: url(../img/wava-line-pc.png) no-repeat 0 5%;
  background-position-x: calc(100vw - 1920px);
}
@media screen and (max-width: 767px) {
  .about {
    padding-top: 50px;
    background: none;
  }
}
.about h2 {
  text-align: right;
}
@media screen and (max-width: 767px) {
  .about h2 {
    text-align: center;
    background: url(../img/wave-line.png) no-repeat 0 0;
  }
}
.about h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 160px;
  color: #415c71;
  background: linear-gradient(96.74deg, #415C71 -22.64%, #412F49 139.76%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .about h2 span {
    font-size: 92px;
  }
}

.about-content-a {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about-content-a {
    display: block;
  }
}
.about-content-a ul {
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-content-a ul {
    padding: 0 5%;
  }
}
.about-content-a ul li {
  width: 33%;
  max-width: 220px;
  background: #172f61;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 12px 0 14px;
  margin: 1px;
}
@media screen and (max-width: 767px) {
  .about-content-a ul li {
    width: calc((100% - 4px) / 2);
    font-size: 14px;
  }
}
.about-content-a ul li:first-child {
  border-radius: 5px 0 0 0;
}
@media screen and (max-width: 767px) {
  .about-content-a ul li:nth-child(2) {
    border-radius: 0 5px 0 0;
  }
}
.about-content-a ul li:nth-child(3) {
  border-radius: 0 5px 0 0;
}
@media screen and (max-width: 767px) {
  .about-content-a ul li:nth-child(3) {
    border-radius: 0;
  }
}
.about-content-a ul li:nth-child(4) {
  border-radius: 0 0 0 5px;
}
@media screen and (max-width: 767px) {
  .about-content-a ul li:nth-child(4) {
    border-radius: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-content-a ul li:nth-child(5) {
    border-radius: 0 0 0 5px;
  }
}
.about-content-a ul li:nth-child(6) {
  border-radius: 0 0 5px 0;
}

.about-caption {
  color: #fff;
  font-size: 32px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .about-caption {
    font-size: 22px;
    text-align: left;
    padding: 0 5%;
  }
}

.about-info {
  margin: 80px 0 45px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .about-info {
    margin: -15% 0 15px;
    padding: 0 5%;
  }
}

.about-content-b h3 {
  color: #fff;
  font-size: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-content-b h3 {
    font-size: 22px;
    text-align: left;
    padding: 0 5%;
    margin: 40px 0 15px;
  }
}
.about-content-b ul {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .about-content-b ul {
    font-size: 14px;
  }
}

.about-content-c {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .about-content-c {
    margin-top: 20px;
  }
}
.about-content-c h3 {
  color: #fff;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .about-content-c h3 {
    font-size: 22px;
    padding: 0 5%;
  }
}
.about-content-c h3 + p {
  color: #fff;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .about-content-c h3 + p {
    font-size: 14px;
    padding: 0 5%;
    margin-top: 15px;
  }
}

.products-flow {
  width: 100%;
  max-width: 1010px;
  margin: 100px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  filter: drop-shadow(0 0 0.75rem rgba(255, 255, 255, 0.2));
}
@media screen and (max-width: 767px) {
  .products-flow {
    display: block;
    margin-top: 27.5%;
  }
}

.circle-large {
  position: relative;
  width: 32.574%;
  height: 100%;
  aspect-ratio: 1;
  background: #434354;
  border-radius: 500px;
  margin-left: 7.5%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .circle-large {
    width: 60%;
    margin: 0 auto;
  }
}

.circle-mid {
  position: absolute;
  width: 76.291%;
  height: 76.291%;
  aspect-ratio: 1;
  background: rgba(128, 151, 204, 0.16);
  border-radius: 500px;
  top: 11.854%;
  left: 11.854%;
}

.circle-small {
  position: absolute;
  width: 81.673%;
  height: 81.673%;
  aspect-ratio: 1;
  background: linear-gradient(304.85deg, #20418A 11.47%, #7363D0 107.19%);
  border-radius: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  font-size: min(1.98vw, 20px);
  top: 9.163%;
  left: 9.163%;
}
@media screen and (max-width: 767px) {
  .circle-small {
    font-size: 14px;
  }
}

.circle-moving-border {
  position: absolute;
  width: 130%;
  height: 130%;
  aspect-ratio: 1;
  top: calc(-15% - 2px);
  left: calc(-15% - 2px);
}
.circle-moving-border .circle-svg {
  width: 100%;
  height: 100%;
}
.circle-moving-border .circle-path {
  fill: none;
  stroke: #214289;
  stroke-width: 2;
  stroke-dasharray: 440;
  stroke-dashoffset: 440;
  transform-origin: center;
  transform: rotate(270deg);
}
.circle-moving-border.circle-animation .circle-path {
  animation: rotate 5s linear forwards;
}

.circle-txt {
  background: #214289;
  width: 38.601%;
  height: 38.601%;
  aspect-ratio: 1;
  border-radius: 50%;
  position: absolute;
  color: #0A1D3F;
}
.circle-txt span {
  background: linear-gradient(180deg, #DEE4FF 0%, #F4F4FF 100%);
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: min(1.98vw, 20px);
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .circle-txt span {
    font-size: 12px;
  }
}

.circle-txt01 {
  left: 50%;
  transform: translateX(-50%);
  top: -35%;
}

.circle-txt04 {
  left: 50%;
  transform: translateX(-50%);
  bottom: -35%;
}

.circle-txt02 {
  top: -2.5%;
  right: -23%;
}

.circle-txt06 {
  top: -2.5%;
  left: -23%;
}

.circle-txt03 {
  bottom: -2.5%;
  right: -23%;
}

.circle-txt05 {
  bottom: -2.5%;
  left: -23%;
}

.center-box {
  width: 14.851%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .center-box {
    width: 30%;
    margin: 30% auto 0;
  }
}
.center-box p {
  background: linear-gradient(304.85deg, #20418A 11.47%, #7363D0 107.19%);
  color: #fff;
  font-size: min(1.98vw, 20px);
  text-align: center;
  border-radius: 5px;
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .center-box p {
    font-size: 14px;
  }
}

.criative-list {
  list-style: none;
  width: 21.485%;
  font-size: min(1.98vw, 20px);
  line-height: 1.4;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .criative-list {
    justify-content: space-between;
    flex-direction: row;
    gap: 10px;
    width: 90%;
    margin: 20% auto 0;
  }
}
.criative-list li {
  background: #214289;
  padding: 3px;
  width: 100%;
  flex: 1;
  margin-bottom: min(2.5vw, 27px);
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .criative-list li {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 14px;
    width: 22.5%;
    height: 11em;
    text-align: left;
  }
}
.criative-list li span {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 0;
  border-radius: 3px;
}
@media screen and (max-width: 767px) {
  .criative-list li span {
    width: 100%;
    justify-content: flex-start;
  }
}
.criative-list li i {
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .criative-list li i {
    transform: rotate(-90deg);
  }
}
.criative-list li:last-child {
  margin-bottom: 0;
}
.criative-list li:first-child span {
  padding: 1em 0;
}
@media screen and (max-width: 767px) {
  .criative-list li:first-child span {
    padding: 0.5em 0 0 0;
  }
}

.background-line {
  position: absolute;
  left: 57%;
  transform: translateX(-50%);
  width: 41.089%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .background-line {
    width: 70%;
    left: 50%;
    top: 22%;
    transform: translateX(-50%);
  }
}
.background-line img {
  width: 100%;
  height: auto;
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 767px) {
  .background-line img {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}
.background-line img.onScreen {
  animation: reveal 5s ease-in-out forwards;
}
@media screen and (max-width: 767px) {
  .background-line img.onScreen {
    animation: reveal-sp 5s ease-in-out forwards;
  }
}

.about-content-d {
  margin-top: 130px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .about-content-d {
    margin-top: 15px;
  }
}
.about-content-d .loop-wrap {
  display: flex;
}
.about-content-d .marquee-text {
  color: #fff;
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: flex-start;
  width: 4150px;
}
@media screen and (max-width: 767px) {
  .about-content-d .marquee-text {
    width: 3024px;
  }
}
.about-content-d .marquee-text li {
  box-sizing: border-box;
  padding: 40px 90px;
  border: 1px solid #fff;
  margin-left: -1px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .about-content-d .marquee-text li {
    font-size: 14px;
    padding: 20px 45px;
  }
}

.loop-wrap .loop01 {
  animation: loop01 180s -90s linear infinite;
}
.loop-wrap .loop02 {
  animation: loop02 180s linear infinite;
}
.loop-wrap.loop-revers .loop01 {
  animation: loop03 180s -90s linear infinite;
}
.loop-wrap.loop-revers .loop02 {
  animation: loop04 180s linear infinite;
}
.loop-wrap:nth-child(2) .marquee-text li {
  border-top: none;
  border-bottom: none;
}

.merit {
  padding: 100px 0 145px;
  background: url(../img/wava-line-re-pc.png) no-repeat 100% 0;
}
@media screen and (max-width: 767px) {
  .merit {
    padding-bottom: 60px;
    padding-top: 75px;
    background: none;
  }
}
@media screen and (max-width: 767px) {
  .merit h2 {
    text-align: center;
    background: url(../img/wave-line-re.png) no-repeat 100% 0;
    padding-top: 25px;
  }
}
.merit h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 160px;
  color: #415c71;
  background: linear-gradient(96.74deg, #415C71 -22.64%, #412F49 139.76%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .merit h2 span {
    font-size: 92px;
  }
}
.merit h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .merit h3 {
    font-size: 22px;
    padding: 0 5%;
  }
}
@media screen and (max-width: 767px) {
  .merit .offer {
    padding: 0 5%;
  }
}

.merit-points {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .merit-points {
    margin-top: 30px;
    padding: 0 5%;
  }
}

.merit-point {
  display: flex;
  align-items: center;
  color: #fff;
  letter-spacing: 0.04em;
  background: #172f61;
  border-radius: 5px;
  margin-top: 10px;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .merit-point {
    padding: 10px 15px 15px;
  }
}
.merit-point:first-child {
  margin-top: 0;
}
.merit-point .merit-point-num {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 90px;
  line-height: 1;
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px #FFF;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .merit-point .merit-point-num {
    display: none;
  }
}

.merit-point-text .merit-point-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .merit-point-text .merit-point-title {
    font-size: 16px;
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
.merit-point-text .title-num {
  display: none;
}
@media screen and (max-width: 767px) {
  .merit-point-text .title-num {
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 40px;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px #FFF;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .merit-point-text .merit-point-read {
    font-size: 14px;
  }
}
.merit-point-text .merit-point-read i {
  font-size: 12px;
  vertical-align: super;
  font-style: normal;
}
@media screen and (max-width: 767px) {
  .merit-point-text .merit-point-read i {
    font-size: 10px;
  }
}

.merit-advance-platform {
  border: 1px solid #fff;
  border-radius: 5px;
  margin: 20px 0 15px;
  padding: 20px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .merit-advance-platform {
    margin: 15px 5%;
  }
}
.merit-advance-platform h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .merit-advance-platform h4 {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .merit-advance-platform h4 + p {
    font-size: 12px;
  }
}

.works {
  background: rgba(255, 255, 255, 0.9);
  padding: 100px 0 140px;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 60px 0;
  }
}
.works h2 {
  font-family: "Oswald", sans-serif;
  font-size: 160px;
  color: #415c71;
  background: linear-gradient(99.2deg, #364F7C 63.25%, #0A1D3F 77.13%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .works h2 {
    font-size: 92px;
    text-align: center;
  }
}
.works h3 {
  color: #0a1d3f;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-top: 10px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .works h3 {
    font-size: 22px;
    text-align: center;
  }
}

.works-contents .works-info {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .works-contents .works-info {
    display: block;
    margin-top: 0;
  }
}
.works-contents .works-text {
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .works-contents .works-text {
    padding: 0 5%;
  }
}
.works-contents .works-text h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-text h4 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .works-contents .works-text h4 + p {
    font-size: 14px;
  }
}
.works-contents .works-text ul {
  margin-top: 40px;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-text ul {
    justify-content: center;
    gap: 30px;
    margin-top: 15px;
  }
}
.works-contents .works-counts {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-counts {
    padding: 0 5%;
    margin-top: 5px;
  }
}
.works-contents .works-counts .play-count {
  border: 3px solid #0a1d3f;
  border-radius: 5px;
  width: 100%;
  max-width: 200px;
  text-align: center;
  padding: 30px 40px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-counts .play-count {
    padding: 20px 5px;
    margin-top: 15px;
  }
}
.works-contents .works-counts .count-title {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-counts .count-title {
    font-size: 12px;
  }
}
.works-contents .works-counts .count {
  font-family: "Oswald", sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .works-contents .works-counts .count {
    font-size: 50px;
  }
}
.works-contents .works-counts .count span {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .works-contents .works-counts .count span {
    font-size: 22px;
  }
}

.works-content-wrap {
  overflow: hidden;
  position: relative;
  margin-top: -150px;
}
@media screen and (max-width: 767px) {
  .works-content-wrap {
    margin-top: 0;
  }
}

.works-contents {
  display: flex;
  flex-wrap: nowrap;
  will-change: auto;
}
@media screen and (max-width: 767px) {
  .works-contents {
    display: block;
  }
}

.works-item {
  display: grid;
  place-items: center;
}
@media screen and (max-width: 767px) {
  .works-item {
    margin-top: 30px;
  }
  .works-item*:first-child {
    margin-top: 0;
  }
}

.price {
  padding: 140px;
  background: #fff;
  color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 60px 5%;
  }
}

.price-inner {
  border: 3px solid #0a1d3f;
  border-radius: 5px;
  padding: 50px 0;
  text-align: center;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .price-inner {
    padding: 35px 10px;
  }
}
.price-inner h2 {
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .price-inner h2 {
    font-size: 22px;
  }
}
.price-inner h3 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .price-inner h3 {
    font-size: 14px;
  }
}
.price-inner .price-text {
  font-family: "Oswald", sans-serif;
  font-size: 80px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price-inner .price-text {
    font-size: 60px;
  }
}
.price-inner .price-info {
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .price-inner .price-info {
    font-size: 14px;
    text-align: left;
  }
}
.price-inner .price-info a {
  color: #0a1d3f;
  text-decoration: underline;
  transition: all 0.5s;
}
.price-inner .price-info a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.flow {
  padding: 240px 0 150px;
  color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 120px 0 60px;
  }
}
.flow .outerContent {
  position: relative;
}
.flow .outerContent::before {
  content: "";
  display: block;
  width: calc((100% - 1100px) / 2 + 1100px);
  margin-left: auto;
  background: #fff;
  border-radius: 5px 0 0 5px;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .flow .outerContent::before {
    display: none;
  }
}
.flow .innerContent {
  padding: 130px 0 150px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .flow .innerContent {
    width: 95%;
    background: #fff;
    margin: 0 0 0 auto;
    padding: 50px 0;
  }
}
.flow h2 {
  font-family: "Oswald", sans-serif;
  font-size: 160px;
  color: #415c71;
  background: linear-gradient(96.74deg, #415C71 -22.64%, #412F49 139.76%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  position: absolute;
  top: -7.5%;
  left: -9%;
}
@media screen and (max-width: 1280px) {
  .flow h2 {
    position: inherit;
    left: auto;
    top: auto;
    margin-top: -120px;
    margin-left: -15px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .flow h2 {
    font-size: 92px;
  }
}
.flow h3 {
  text-align: center;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .flow h3 {
    font-size: 22px;
  }
}

.flow-lists {
  margin: 0 auto 0;
  width: 100%;
  max-width: 950px;
}
@media screen and (max-width: 767px) {
  .flow-lists {
    padding: 0 5% 0 2.5%;
  }
}

.flow-list {
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .flow-list {
    margin-top: 25px;
  }
}
.flow-list figure {
  width: 104px;
  margin-right: 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow-list figure {
    width: 72px;
    margin-right: 15px;
  }
}
.flow-list figure::after {
  content: "";
  display: block;
  height: 100%;
  width: 6px;
  background: #0a1d3f;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .flow-list figure::after {
    top: 60px;
  }
}
.flow-list:last-child figure::after {
  display: none;
}
.flow-list .flow-text {
  width: calc(100% - 104px - 45px);
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .flow-list .flow-text {
    width: calc(100% - 72px - 7.5%);
  }
}
.flow-list .flow-text h4 {
  font-size: 24px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #0a1d3f;
}
@media screen and (max-width: 767px) {
  .flow-list .flow-text h4 {
    font-size: 18px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .flow-list .flow-text h4 + p {
    font-size: 14px;
  }
}
.flow-list .flow-text a {
  color: #0a1d3f;
  text-decoration: underline;
  transition: all 0.3s;
}
.flow-list .flow-text a:hover {
  text-decoration: none;
  opacity: 0.8;
}

.flow-after {
  border: 3px solid #0a1d3f;
  border-radius: 5px;
  width: 100%;
  max-width: 950px;
  margin: 60px auto 0;
  padding: 40px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow-after {
    margin: 40px 5% 0;
    padding: 30px 10px;
    width: 90%;
  }
}
.flow-after h4 {
  font-size: 24px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .flow-after h4 {
    font-size: 22px;
  }
  .flow-after h4 + p {
    font-size: 14px;
    text-align: left;
  }
}
.flow-after ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 25px auto 0;
  position: relative;
  width: 100%;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .flow-after ul {
    display: block;
    height: 250px;
  }
}
.flow-after ul li {
  width: 100%;
  max-width: 220px;
  background: linear-gradient(99.2deg, #364F7C 3.25%, #0A1D3F 67.13%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .flow-after ul li {
    font-size: 14px;
    max-width: 125px;
    position: absolute;
    bottom: 125px;
    left: 50%;
    transform: translateX(-50%);
  }
  .flow-after ul li:nth-child(2) {
    bottom: 10px;
    left: 6%;
    transform: translateX(0);
  }
  .flow-after ul li:nth-child(3) {
    bottom: 10px;
    right: 6%;
    left: auto;
    transform: translateX(0);
  }
}
.flow-after ul li:last-child {
  width: auto;
  max-width: none;
  background: none;
  position: absolute;
  bottom: 0;
  right: 0;
  color: #0a1d3f;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .flow-after ul li:last-child {
    transform: translateX(0);
    left: auto;
    bottom: -3%;
    right: 3%;
  }
}

.contact {
  background: rgba(255, 255, 255, 0.9);
  padding: 140px 0 120px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0;
  }
}
.contact h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .contact h2 {
    font-size: 22px;
  }
}
.contact h3 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact h3 {
    font-size: 14px;
  }
}

.faq {
  background: #fff;
  padding: 140px 0 150px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0;
  }
}
.faq h2 {
  text-align: center;
  font-size: 32px;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .faq h2 {
    font-size: 22px;
  }
}
.faq h3 {
  font-family: "Oswald", sans-serif;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .faq h3 {
    font-size: 14px;
  }
}

.faq-box {
  letter-spacing: 0.04em;
  background: #0a1d3f;
  padding: 20px;
  margin-bottom: 10px;
  color: #fff;
  letter-spacing: 0.04em;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .faq-box {
    margin: 0 5% 10px;
    padding: 15px;
  }
}
.faq-box .q {
  display: flex;
  align-items: center;
  position: relative;
  vertical-align: middle;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .faq-box .q {
    font-size: 14px;
  }
  .faq-box .q .q-text {
    width: 80%;
  }
}
.faq-box .q-num {
  font-family: "Hind", sans-serif;
  font-size: 33px;
  font-weight: 600;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .faq-box .q-num {
    font-size: 22px;
    margin-right: 10px;
  }
}
.faq-box .q-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .faq-box .q-icon {
    width: 25px;
    height: 25px;
    right: 0;
  }
}
.faq-box .q-icon::before, .faq-box .q-icon::after {
  content: "";
  width: 3px;
  height: 15px;
  background: #0a1d3f;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .faq-box .q-icon::before, .faq-box .q-icon::after {
    width: 2px;
  }
}
.faq-box .q-icon::after {
  width: 15px;
  height: 3px;
}
@media screen and (max-width: 767px) {
  .faq-box .q-icon::after {
    height: 2px;
  }
}
.faq-box .a {
  margin-top: 10px;
  border-top: 2px solid #fff;
  padding-top: 20px;
  display: none;
}
@media screen and (max-width: 767px) {
  .faq-box .a {
    padding-top: 10px;
  }
  .faq-box .a p {
    font-size: 12px;
  }
}
.faq-box.js-qa-open .q-icon::before {
  transform: translate(-50%, -50%) rotate(90deg);
}

footer {
  background: rgb(24, 23, 23);
  padding: 40px 0 45px;
}

.footer-upper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer-upper {
    display: block;
  }
  .footer-upper h2 {
    max-width: 213px;
    margin: 0 auto 15px;
  }
}
.footer-upper ul {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .footer-upper ul {
    justify-content: center;
    height: 58px;
  }
  .footer-upper ul img {
    height: 100%;
  }
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .footer-bottom {
    display: block;
  }
}
.footer-bottom .copy {
  font-size: 14px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer-bottom .copy {
    text-align: center;
    margin-top: 30px;
    font-size: 12px;
  }
}
.footer-bottom ul {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .footer-bottom ul {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .footer-bottom ul li {
    width: 40%;
    text-align: center;
    font-size: 14px;
  }
  .footer-bottom ul li a {
    text-decoration: underline;
  }
}

.floating-cta {
  position: fixed;
  right: 2.5%;
  bottom: 2.5%;
  z-index: 50;
  display: none;
  background: #fff;
  background-size: 90% 90%;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .floating-cta {
    width: 90px;
    height: 90px;
  }
}
.floating-cta img {
  vertical-align: bottom;
  transition: all 0.3s;
}
.floating-cta img:hover {
  opacity: 0.8;
}

@keyframes hoverArrow {
  0% {
    top: 50%;
  }
  100% {
    top: 60%;
  }
}
@keyframes noisy {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-1px, -1px);
  }
}
@keyframes fvFirstImg {
  0% {
    transform: translate(-50%, -50%) scale(80%);
    opacity: 1;
  }
  40% {
    transform: translate(-50%, -50%) scale(80%);
    opacity: 1;
  }
  99% {
    transform: translate(-50%, -50%) scale(920%);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1200%);
    opacity: 0;
  }
}
@keyframes rotate {
  from {
    stroke-dashoffset: 440;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes reveal {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
  }
  60% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes reveal-sp {
  0% {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
  60% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
  }
}
@keyframes loop01 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop02 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop03 {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop04 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
.thanks section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .thanks section {
    padding: 70px 10%;
  }
}
.thanks section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #0A1D3F;
  letter-spacing: 0.04em;
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .thanks section h2 {
    font-size: 22px;
  }
}
.thanks p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 14px;
  color: #181717;
}
@media screen and (max-width: 767px) {
  .thanks p {
    text-align: left;
  }
}
.thanks .btn {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .thanks .btn {
    text-align: center;
  }
}
.thanks a {
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.2509803922);
}
.thanks a .circleButton {
  right: auto;
  left: 10px;
}
.thanks a .circleButton__circle__arrow {
  transform: translate(-100%, -50%) rotate(90deg) scale(-1, 1);
}
.thanks a:hover .circleButton__circle__arrow {
  animation: hoverArrowSide 1s infinite;
}

@keyframes hoverArrowSide {
  0% {
    left: 50%;
  }
  100% {
    left: 40%;
  }
}
@keyframes hoverArrowSideRe {
  0% {
    left: 50%;
  }
  100% {
    left: 60%;
  }
}
.table_form {
  width: 95%;
  max-width: 535px;
  margin: 50px auto 0;
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .table_form {
    font-size: 12px;
  }
}
.table_form td {
  padding-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .table_form td {
    padding-bottom: 15px;
  }
}
.table_form td p:first-child {
  padding-bottom: 7px;
}
.table_form td.double:first-child {
  padding-right: 5px;
}
.table_form td.double:last-child {
  padding-left: 5px;
}
.table_form input,
.table_form textarea {
  background: #fff;
  font-size: 16px;
  padding: 10px 12px;
}
@media screen and (max-width: 767px) {
  .table_form input,
  .table_form textarea {
    font-size: 14px;
  }
}

.form_upper input {
  width: 100%;
}
.form_upper span {
  font-size: 12px;
  background: #0A1D3F;
  color: #fff;
  padding: 2px 5px 3px;
  margin-right: 7px;
}
@media screen and (max-width: 767px) {
  .form_upper span {
    font-size: 10px;
  }
}
.form_upper textarea {
  width: 100%;
}
.form_upper ::-moz-placeholder {
  color: #D1D1D1;
}
.form_upper ::placeholder {
  color: #D1D1D1;
}

.form_pp-info {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #0A1D3F;
  padding: 20px;
  letter-spacing: 0.05em;
}
.form_pp-info h4 {
  color: #0A1D3F;
  font-size: 20px;
  text-align: left;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .form_pp-info h4 {
    font-size: 16px;
  }
}
.form_pp-info p {
  font-size: 16px;
  color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .form_pp-info p {
    font-size: 14px;
  }
}
.form_pp-info p a {
  color: #519BC6;
  text-decoration: underline;
}

.form_bottom {
  margin-top: 25px;
  text-align: center;
}
.form_bottom input[type=checkbox] {
  margin-right: 10px;
  transform: scale(1.5);
  vertical-align: middle;
}
.form_bottom input[type=checkbox]:checked {
  accent-color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .form_bottom {
    font-size: 12px;
  }
}

.submit-btn {
  position: relative;
  width: 100%;
  max-width: 380px;
  display: block;
}
.submit-btn input[type=submit] {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
  margin: 0 auto;
  width: 100%;
  background: linear-gradient(310.4deg, #7259CC 7.28%, #74A0ED 65.53%);
  border-radius: 40px;
  padding: 15px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .submit-btn input[type=submit] {
    width: 90%;
    font-size: 16px;
    padding: 10px 0;
  }
}
.submit-btn input[type=submit]:disabled {
  background: #D1D1D1;
}
.submit-btn .circleButton {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .submit-btn .circleButton {
    right: 30px;
  }
}
.submit-btn .circleButton__circle {
  color: #fff;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: 50%;
  display: block;
  height: 42px;
  width: 42px;
}
.submit-btn .circleButton__circle__arc {
  left: -1px;
  position: absolute;
  top: -1px;
  transform: scaleX(-1) rotate(-90deg);
  transform-origin: center;
  height: 42px;
  width: 42px;
  z-index: 1;
}
.submit-btn .circleButton__circle__arc circle {
  stroke: #fff;
  stroke-dasharray: 176px;
  stroke-dashoffset: -176px;
  transition: stroke-dashoffset 0.75s cubic-bezier(0.19, 1, 0.22, 1);
}
.submit-btn:hover {
  text-decoration: none;
}
.submit-btn:hover .circleButton__circle__arc circle {
  stroke-dashoffset: 0;
}
.submit-btn .circleButton__circle__arrow {
  position: absolute;
  display: inline-block;
  width: 1px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-100%, -50%) rotate(-90deg);
  margin-right: 4.5px;
  border-radius: 9999px;
  background-color: #fff;
}
.submit-btn .circleButton__circle__arrow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 10px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(30deg);
  transform-origin: 50% calc(100% - 0.5px);
}
.submit-btn:hover .circleButton__circle__arrow {
  animation: hoverArrowSideRe 1s infinite;
}
.submit-btn input {
  background: transparent;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .submit-btn input {
    font-size: 16px;
  }
}

.contact .validate-error {
  color: #d7170a;
}

.contact .validate-error.hidden {
  visibility: hidden;
}

.contact .privacy-error-text {
  text-align: center;
}

.isms-box {
  margin: 20px auto 0;
  width: 90%;
  max-width: 760px;
}
.isms-box h3 {
  color: #0A1D3F;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .isms-box h3 {
    font-size: 16px;
    line-height: 1.4;
  }
}
.isms-box p {
  color: #0A1D3F;
}
@media screen and (max-width: 767px) {
  .isms-box p {
    font-size: 14px;
  }
}
.isms-box .isms-img {
  margin-top: 25px;
  display: flex;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .isms-box .isms-img {
    display: block;
    margin-top: 20px;
  }
}
.isms-box .isms-img p:first-child {
  margin-right: 15px;
}
@media screen and (max-width: 767px) {
  .isms-box .isms-img p:first-child {
    max-width: 140px;
    margin: 15px auto;
  }
}
.isms-box .isms-offer {
  margin-top: 25px;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .isms-box .isms-offer {
    margin-top: 20px;
  }
}/*# sourceMappingURL=style.css.map */