@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.032em;
  width: 100%;
}

body.animate-loading {
  -webkit-animation-name: loadingBoxAnime;
          animation-name: loadingBoxAnime;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  height: 100vh;
  overflow: hidden;
}

@-webkit-keyframes loadingBoxAnime {
  0% {
    height: 100vh;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: unset;
  }
}

@keyframes loadingBoxAnime {
  0% {
    height: 100vh;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: unset;
  }
}
.inner {
  max-width: 1130px;
  margin: 0 auto;
  width: 78.42%;
}

.inner--size-l {
  max-width: 1240px;
  width: 86.11%;
}

.textCenter {
  text-align: center;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .inner {
    width: 89.333%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

/*=================================
  ボンッ、ヒュッ
===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLoadTrigger,
.zoomOutLoadTrigger {
  opacity: 0;
}

/*==================================
  じわっ
===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

.bl-flex__leftAlignment {
  justify-content: flex-start;
}

.bl-flex__rightAlignment {
  justify-content: flex-end;
}

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

/*======= 見出し ========*/
.bl-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.bl-ttl__en {
  font-size: 63px;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 768px) {
  .bl-ttl__en {
    font-size: 35px;
  }
}

.bl-ttl__ja {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 14px;
    margin-top: 15px;
  }
}

.bl-ttl--center {
  margin: 0 auto;
}

.bl-ttl__en--center {
  text-align: center;
}

.bl-ttl__ja--center {
  text-align: center;
}

/*====================
全ページ共通
=====================*/
.hoverDot {
  position: relative;
}
.hoverDot::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-50%) scale(1);
  transform-origin: center;
  transition: all 0.3s;
  pointer-events: none;
  border-radius: 50%;
}
.hoverDot::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 11px;
  height: 11px;
  transform: translateY(-50%) scale(1);
  transform-origin: center;
  transition: all 0.3s;
  pointer-events: none;
  border-radius: 50%;
}
.hoverDot:hover::before {
  transform: translateY(-50%) scale(2.09);
  transition: all 0.3s;
}
.hoverDot.hoverDot--wh::before {
  background-color: rgba(255, 255, 255, 0.3);
}
.hoverDot.hoverDot--wh::after {
  background-color: #FFFFFF;
}
.hoverDot.hoverDot--bl::before {
  background-color: rgba(77, 124, 217, 0.3);
}
.hoverDot.hoverDot--bl::after {
  background-color: #001F5F;
}

/*=========================
ヘッダー
==========================*/
.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 17px 6.9% 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .head {
    padding: 10px 0 0px;
  }
}
.head.head--topPage.animate-header {
  animation-name: loadingHeaderAnime;
  animation-timing-function: ease-out;
  animation-delay: 3s;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform-origin: center;
  transform: translateY(-100%);
}
@-webkit-keyframes loadingHeaderAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.head__logo {
  width: 83px;
  aspect-ratio: 1/1;
  position: relative;
}
.head__logo .logo-wh {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
}
.head__logo .logo-bl {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .head__logo {
    width: 13%;
    margin-left: 3%;
    z-index: 9999;
  }
}

.head__nav {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12.4%;
}

.headNav-list__item a {
  font-size: 16px;
  color: #FFFFFF;
  font-weight: 600;
  line-height: 1;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 0.5s;
}

.headNav-list__item a:hover {
	opacity: 0.7;
  transition: all 0.5s;
}
.head.js-change-color .headNav-list__item a {
  color: #21328F;
  transition: all 0.5s;
}
.head.js-change-color .head__logo {
  width: 83px;
  aspect-ratio: 1/1;
  position: relative;
}

@media screen and (max-width: 768px) {
	.head__logo a{
		display: block;
		width: 100%;
}
.head.js-change-color .head__logo {
  width: 13%;
}
}
.head.js-change-color .head__logo .logo-wh {
  opacity: 0;
  transition: all 0.5s;
}
.head.js-change-color .head__logo .logo-bl {
  opacity: 1;
  transition: all 0.5s;
}

.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s;
  pointer-events: none;
}

.burger-nav.panelactive {
  opacity: 1;
  pointer-events: all;
  z-index: 999;
}

.burger-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.burger-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.burger-nav__list-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.burger-nav.panelactive .burger-nav__listWrap {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
.burger-nav .burger-nav__list {
  display: none;
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

/*リストのレイアウト設定*/
.burger-nav .burger-nav__item {
  list-style: none;
  text-align: center;
}

.burger-nav .burger-nav__item a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 20px;
  right: 14px;
  cursor: pointer;
  width: 30px;
  height: 20px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 1.5px;
  border-radius: 2px;
  background-color: #FFFFFF;
  width: 100%;
}

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
}

.burgerCopy {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 400;
}

.head.js-change-color .openbtn1 span {
  background-color: #21328F;
}

/*==========================
フッター
==========================*/
.foot {
  padding: 60px 0 20px;
}

.foot__logo {
  width: 10.69%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .foot__logo {
    width: 20%;
  }
}

.footNav {
  margin-top: 78px;
}
@media screen and (max-width: 768px) {
  .footNav {
    margin-top: 35px;
  }
}

.footNav__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4.1%;
}
@media screen and (max-width: 768px) {
  .footNav__list {
    flex-wrap: wrap;
    gap: 7%;
  }
}

.footNav__item a {
  color: #0C154A;
  font-weight: 600;
  line-height: 1;
}

.foot__copy {
  margin-top: 115px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #0C154A;
}
@media screen and (max-width: 768px) {
  .foot__copy {
    margin-top: 35px;
  }
}

/*======================
TOPページ
======================*/
.bg-gradient-large {
  position: relative;
  width: 100%;
  height: auto;
}

.bg-gradient-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.linkAdjust {
  padding-top: 100px;
  margin-top: -100px;
}

/*========= ローディング&FV ==========*/
.fv {
  width: 100%;
  height: 116vh;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
.fv {
  height: 100vh;
}
	}
.fv-logo {
  position: absolute;
  width: 7.68%;
  left: 50%;
  transform: translateX(-50%);
  top: 10%;
  -webkit-animation-name: fvAfterAppearAnime;
          animation-name: fvAfterAppearAnime;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fv-logo {
    width: 25%;
  }
}

@-webkit-keyframes fvAfterAppearAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fvAfterAppearAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading-txt {
  font-size: 4.375vw;
  letter-spacing: 0.126;
  line-height: 1.37;
  position: absolute;
  left: 50%;
  top: 25.5%;
  transform: translateX(-50%);
  font-family: "Noto Serif JP", serif;
  text-align: center;
  opacity: 0;
  -webkit-animation-name: loadingTxtAnime;
          animation-name: loadingTxtAnime;
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .loading-txt {
    font-size: min(8.375vw, 33px);
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 33.5%;
  }
}

@-webkit-keyframes loadingTxtAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loadingTxtAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.loading-bar {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  left: 0;
  top: 47.38%;
  transform: scale(0, 1);
  transform-origin: left;
  -webkit-animation-name: loadingBarAnime;
          animation-name: loadingBarAnime;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .loading-bar {
    top: 45%;
  }
}

@-webkit-keyframes loadingBarAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}

@keyframes loadingBarAnime {
  0% {
    transform: scale(0, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.fv__verticalTxt {
  position: absolute;
  font-size: max(1.11vw, 14px);
  writing-mode: vertical-rl;
  font-family: "Noto Serif JP", serif;
  top: 52.7%;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 0.4em;
  line-height: 4.3;
  -webkit-animation-name: fvAfterAppearAnime;
          animation-name: fvAfterAppearAnime;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .fv__verticalTxt {
    font-size: 14px;
    top: 50.7%;
    line-height: 3.3;
  }
}

.fv-movie-wrap {
  height: 108%;
  aspect-ratio: 1/1;
  position: absolute;
  bottom: 3%;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0);
  -webkit-animation-name: loadingMovieAnime;
          animation-name: loadingMovieAnime;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transform-origin: center;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .fv-movie-wrap {
    height: 88%;
    bottom: 7%;
  }
}
.fv-movie-wrap::after {
  content: "";
  position: absolute;
  width: 104.2%;
  height: 104.2%;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes loadingMovieAnime {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}

@keyframes loadingMovieAnime {
  0% {
    transform: translateX(-50%) scale(0);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }
}


.fv__movie {
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  z-index: -1;
	position: relative;
}



.fv__movie::after{
	content: '';
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: #21328F;
	opacity:.3;
	top: 0;
	left:0;
}
.fv__movie img {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}
.fv__movie video {
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
    object-fit: cover;
    border-radius: 50%;
}

/*========= お知らせ ==========*/
.news {
  margin-top: 35px;
}

.news__list {
  margin: 50px auto;
  width: 87.6%;
}
@media screen and (max-width: 768px) {
  .news__list {
    width: 100%;
    margin: 35px auto;
  }
}

.news__item {
  border-bottom: 1px solid #FFFFFF;
}
.news__item a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 7.27% 20px 0;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .news__item a {
    flex-wrap: wrap;
  }
}
.news__item a:hover .newsDate {
  opacity: 0.8;
  transition: all 0.3s;
}
.news__item a:hover .newsCategory {
  opacity: 0.8;
  transition: all 0.3s;
}
.news__item a:hover .newsTtl {
  opacity: 0.8;
  transition: all 0.3s;
}

@media screen and (max-width: 768px) {
  .newsTtl {
    margin-top: 11px;
    width: 100%;
  }
}
.hoverDot--news::before {
  right: 6.36%;
}
.hoverDot--news::after {
  right: 6.36%;
}

.newsDate {
  margin-right: 4.1%;
  line-height: 1;
}

.newsCategory {
  padding: 5px 10px;
  border: 1px solid #FFFFFF;
  border-radius: 21px;
  margin-right: 18%;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .newsCategory {
    margin-right: 4%;
    font-size: 12px;
  }
}

.bl-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.bl-btn a {
  display: block;
  width: 214px;
  padding: 20px 0;
  text-align: center;
  color: #001F5F;
  background-color: #fff;
  border-radius: 26px;
  line-height: 1;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .bl-btn a {
    width: 180px;
    padding: 15px 15px 15px 0;
  }
}
.bl-btn a::before {
  right: 10.36%;
}
.bl-btn a::after {
  right: 10.36%;
}

.bl-btn--news {
  margin: 72px auto;
}
@media screen and (max-width: 768px) {
  .bl-btn--news {
    margin: 50px auto;
  }
}

/*========= FV下画像 ==========*/
.bubbleImg {
  width: 100%;
  aspect-ratio: 1/0.447;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .bubbleImg {
    aspect-ratio: 1/1;
  }
}

.bubbleImg-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.bubbleImg-wrap .bubbleImg__item {
  position: absolute;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}
.bubbleImg-wrap .bubbleImg__item:first-of-type {
  width: 23%;
  top: 30%;
  left: 13%;
  transform: translateX(-13%);
}
@media screen and (max-width: 768px) {
  .bubbleImg-wrap .bubbleImg__item:first-of-type {
    width: 35%;
  }
}
.bubbleImg-wrap .bubbleImg__item:nth-of-type(2) {
  width: 17.15%;
  bottom: 18.95%;
  left: 34.36%;
  transform: translateX(-13%);
}
@media screen and (max-width: 768px) {
  .bubbleImg-wrap .bubbleImg__item:nth-of-type(2) {
    width: 36.15%;
  }
}
.bubbleImg-wrap .bubbleImg__item:nth-of-type(3) {
  width: 19.23%;
  top: 44.8%;
  left: 43.4%;
}
@media screen and (max-width: 768px) {
  .bubbleImg-wrap .bubbleImg__item:nth-of-type(3) {
    width: 36.23%;        left: 36.4%;
  }
}
.bubbleImg-wrap .bubbleImg__item:nth-of-type(4) {
  width: 23.6%;
  bottom: calc(18% + 10px);
  right: 19.82%;
}
@media screen and (max-width: 768px) {
  .bubbleImg-wrap .bubbleImg__item:nth-of-type(4) {
    width: 32.6%;
  }
}
.bubbleImg-wrap .bubbleImg__item:last-of-type {
  width: 17.15%;
  top: calc(20% + 10px);
  right: 13%;
  transform: translateX(20%);
}
@media screen and (max-width: 768px) {
  .bubbleImg-wrap .bubbleImg__item:last-of-type {
    width: 36.15%;
  }
}


.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:first-of-type {
        top: 14%;
        left: 0%;
		transition: all 1s;
}

.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:nth-of-type(2) {
		bottom: 2.95%;
                left: 22.36%;
		transition: all 1s;
}
@media screen and (max-width: 768px) {
.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:nth-of-type(2) {
	 left: 12.36%;
		bottom: 2.95%;
		transition: all 1s;
  }
}

.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:nth-of-type(3) {
 	top: 24.8%;
                left: 43.4%;
		transition: all 1s;
}
@media screen and (max-width: 768px) {
.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:nth-of-type(3) {
	top: 24.8%;
    left: 36.4%;
  }
}

.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:nth-of-type(4) {
 bottom: 10px;
        right: 8.82%;
		transition: all 1s;
}

.bubbleImg.is-move .bubbleImg-wrap .bubbleImg__item:last-of-type {
  top: 10px;
        right: 0%;
		transition: all 1s;
}



/*========= 会社案内 ==========*/
.company {
  margin-top: 130px;
  position: relative;
  padding-bottom: 347px;
}
@media screen and (max-width: 1024px) {
  .company {
    margin-top: 210px;
  }
}
@media screen and (max-width: 768px) {
  .company {
    margin-top:100px;
  }
}

.company-img {
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .company-img {
    z-index: -1;
  }
}

.company-img--top-right {
  width: 40%;
  right: 0;
  top: -80px;
}
@media screen and (max-width: 1024px) {
  .company-img--top-right {
    width: 32%;
    right: 0;
    top: -7%;
  }
}

@media screen and (max-width: 768px) {
  .company-img--top-right {
        width: 100%;
        right: unset;
        top: unset;
        position: relative;
        margin: 0 auto;
  }
}


.company-img--bottom-left {
  width: 19.5%;
  left: 0;
  top: 36.2%;
}
@media screen and (max-width: 1024px) {
  .company-img--bottom-left {
    width: 26.5%;
    left: 0;
    top: 34.2%;
  }
}

@media screen and (max-width: 768px) {
  .company-img--bottom-left {
        width: 32.5%;
        left: 0;
        top: unset;
        bottom: 43.5%;
    }
  }



.company-explain {
  margin-top: 73px;
  width: 62.21%;
}
@media screen and (max-width: 1024px) {
  .company-explain {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company-explain {
    margin-top: 35px;
  }
}

@media screen and (max-width: 768px) {
  .sp-overflow-wrap {
    width: 100vw;
    height: auto;
    overflow-x: hidden;
    margin-left: -5.66vw;
  }
}

.company-img--bottom-right {
  width: 21.18%;
  right: 0;
  bottom: 2.96%;
}

@media screen and (max-width: 1024px) {
  .company-img--bottom-right {
    width: 38.18%;
    right: 0;
    bottom: 2.96%;
  }
}

.company__overview {
  margin: 142px auto 0;
  width: 803px;
  aspect-ratio: 1/1;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.06) 50%, rgba(255, 255, 255, 0.32));
  position: relative;
  border-radius: 50%;
}

@media screen and (max-width: 960px) {
  .company__overview {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company__overview {
    width: 170%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  margin: 262px auto 0;
  }
}

.company-overview-wrap {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .company-overview-wrap {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

.overview-ttl {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.overview-ttl__ja {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.056em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .overview-ttl__ja {
    font-size: 20px;
  }
}

.overview-ttl__en {
  text-align: center;
  line-height: 1;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  font-weight: 600;
	margin-top: 5px;
}

.overviewTable {
  margin: 50px auto 0;
  width: 455px;
}
@media screen and (max-width: 1024px) {
  .overviewTable {
    margin: 35px auto 0;
    width: 100%;
  }
}

.overviewTable__body {
  display: block;
  width: 100%;
}

.overviewTable__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #FFFFFF;
}

.overviewTabel__head {
  width: 161px;
  padding: 21px 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .overviewTabel__head {
    padding: 13px 0;
  }
}

.overviewTable__data {
  padding: 21px 14px;
  width: calc(100% - 161px);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .overviewTable__data {
    padding: 13px 0;
  }
}

/*========= 事業内容 ==========*/
.service {
  padding: 119px 0 280px;
  color: #21328F;
}
@media screen and (max-width: 1024px) {
  .service {
    padding: 130px 0;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding: 80px 0;
  }
}

.service__list {
  margin-top: 75px;
}
@media screen and (max-width: 1024px) {
  .service__list {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .service__list {
    margin-top: 35px;
  }
}
.service__list .service__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 22px 24px 11.5%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  border-radius: 207px;
}
@media screen and (max-width: 1024px) {
  .service__list .service__item {
    flex-direction: column-reverse;
    padding: 25px;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .service__list .service__item {
    padding: 12px 15px 30px;
  }
}
.service__list .service__item:nth-of-type(even) {
  flex-direction: row-reverse;
  padding: 24px 11.5% 24px 22px;
}
@media screen and (max-width: 1024px) {
  .service__list .service__item:nth-of-type(even) {
    flex-direction: column-reverse;
    padding: 25px;
  }
}
.service__list .service__item:not(:first-of-type) {
  margin-top: 60px;
}

.service__side-l {
  width: 540px;
}
@media screen and (max-width: 1024px) {
  .service__side-l {
    width: 100%;
  }
}

.service__side-r {
  width: calc(93.2% - 540px);
}
@media screen and (max-width: 1024px) {
  .service__side-r {
    width: 100%;
  }
}

.service-ttl {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.048em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .service-ttl {
    font-size: 19px;
    text-align: center;
    margin-top: 30px;
    line-height: 1.3;
  }
}

.service-overview {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.service-overview span {
  display: block;
  padding: 10px 13px;
  background-color: rgba(58, 97, 174, 0.85);
  border-radius: 5px;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 700;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (max-width: 768px) {

.service-overview span {
  padding: 7px 13px;
}
}

.service-detail {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .service-detail {
    margin-top: 20px;
  }
}

.service-detail__item {
  position: relative;
  padding-left: 16px;
  color: #333333;
}
.service-detail__item::after {
  content: "・";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .service-detail__item {
    padding-left: 14px;
  }
}

.bg-gradient-middle {
  position: relative;
  padding: 100px 0 200px;
}
@media screen and (max-width: 768px) {
  .bg-gradient-middle {
    padding: 80px 0 50px;
  }
}

.contact__overview {
  margin-top: 55px;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .contact__overview {
    margin-top: 30px;
  }
}

/*======================
NEWSページ
======================*/
.page-ttl {
  padding-top: 200px;
}
@media screen and (max-width: 1024px) {
  .page-ttl {
    padding-top: 100px;
  }
}

.inner--page-news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 11%;
  padding-right: 4.03%;
}
@media screen and (max-width: 1280px) {
  .inner--page-news {
    gap: 5%;
    padding-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .inner--page-news {
    display: block;
  }
}

.news-page__side-l {
  width: 190px;
  padding: 30px 40px 42px;
  background-color: rgba(255, 255, 255, 0.15);
  position: -webkit-sticky;
  position: sticky;
  top: 250px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .news-page__side-l {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    background-color: unset;
    padding: unset;
  }
}

.newsCategory-select {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 30px;
  border: 1px solid white;
  border-radius: 29px;
	text-align: center;
	text-align-last: center;   
}

.news-page-wrap {
  margin-top: 76px;
  padding-bottom: 250px;
}
@media screen and (max-width: 1024px) {
  .news-page-wrap {
    margin-top: 50px;
    padding-bottom: 150px;
  }
}

.news-page__side-r {
  width: calc(89% - 190px);
}
@media screen and (max-width: 1280px) {
  .news-page__side-r {
    width: calc(95% - 190px);
  }
}
@media screen and (max-width: 1024px) {
  .news-page__side-r {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .news__list {
    width: 100%;
  }
}
.category-ttl {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: #91B6FF;
  font-family: "Noto Serif JP", serif;
}

.categoryList {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 24px auto 0;
}
.categoryList .newsCategory__item:not(:first-of-type) {
  margin-top: 18px;
}

.newsCategory__item a {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.028em;
  padding-left: 26px;
  position: relative;
  display: block;
}
.newsCategory__item a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: #FFFFFF;
  border-radius: 50%;
  opacity: 0;
}
.newsCategory__item.currentCategory a::before {
  opacity: 1;
}

.news__item.news__item--pageNews a {
  padding: 30px 7.27% 30px 0;
}

.pageNation {
  margin-top: 140px;
  display: flex;
  align-items: f;
  justify-content: center;
  gap: calc(2.9% - 10px);
}
@media screen and (max-width: 768px) {
  .pageNation {
    gap: 30px;
  }
}

.pageNation__item--prev {
  padding-right: 13px;
  position: relative;
  width: 16px;
}
.pageNation__item--prev::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  top: 57%;
  left: 0;
  transform: translateY(-50%);
}
.pageNation__item--prev::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #FFFFFF;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(-45deg);
}

.pageNation__item--num {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
  padding-bottom: 5px;
  padding: 0 5px 5px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .pageNation__item--num {
    font-size: 18px;
  }
}

.pageNation__item--current {
  border-bottom: 1px solid #FFFFFF;
}
.pageNation__item--current a {
  pointer-events: none;
}

.pageNation__item--dot {
  font-size: 22px;
  margin-bottom: -10px;
}
@media screen and (max-width: 768px) {
  .pageNation__item--dot {
    font-size: 20px;
  }
}

.pageNation__item--next {
  padding-left: 13px;
  position: relative;
  width: 16px;
}
.pageNation__item--next::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  top: 57%;
  right: 0;
  transform: translateY(-50%);
}
.pageNation__item--next::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 1px;
  background-color: #FFFFFF;
  top: 50%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

/*======================
NEWS記事ページ
======================*/
.article {
  margin-top: 123px;
}
@media screen and (max-width: 1024px) {
  .article {
    margin-top: 100px;
  }
}

.article-upper {
  width: 866px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-bottom: 35px;
  border-bottom: 1px solid #FFFFFF;
	margin-bottom: 35px;
}
@media screen and (max-width: 1024px) {
  .article-upper {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
}
.article-upper .newsCategory {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.article-upper .newsTtl {
  width: 100%;
  margin-top: 15px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .article-upper .newsTtl {
    font-size: 17px;
  }
}

.article-bottom {
  width: 866px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .article-bottom {
    width: 100%;
  }
}

.article-txt {
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .article-txt {
    margin-top: 20px;
  }
}

.page-link {
  width: 866px;
  margin: 120px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 240px;
}
@media screen and (max-width: 1024px) {
  .page-link {
    width: 100%;
    padding-bottom: 100px;
  }
}

.page-link__item a {
  width: 214px;
  display: block;
  padding: 13px 0;
  background-color: #FFFFFF;
  border-radius: 26px;
  color: #001F5F;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .page-link__item a {
    width: 107px;
    display: block;
    padding: 13px 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    color: #001F5F;
    text-align: center;
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.contactForm {
  margin: 65.6px auto 60px;
  background-color: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 80px 6.1% 90px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 55px 25px;
  }
}

.formDl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 27px;
}
@media screen and (max-width: 1024px) {
  .formDl {
    display: block;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  margin-right: 20px;
  font-weight: 400;
  color: #333333;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 10px;
    font-size: 12px;
  }
}

.formRequired {
  font-size: 12px;
  padding: 5px 10px;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 30px;
  background-color: #AF1A24;
  font-weight: 400;
}

.noRequired {
  font-size: 12px;
  padding: 5px 10px;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 30px;
  background-color: #ACACAC;
  font-weight: 400;
}

.formDd {
  width: calc(100% - 250px);
  margin-left: 25px;
	color: #333333;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
    margin-left: 6px;
    margin-top: 6px;
  }
}

input[type=text],
input[type=email],
textarea {
  padding: 10px 20px;
  background-color: #EBEBEB;
  border-radius: 5px;
  color: #333333;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5.3px 18px;
    font-size: 11px;
  }
}

textarea {
  height: 217px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
}

::placeholder {
  color: #A3AFAC;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 11px;
  }
  ::placeholder {
    font-size: 11px;
  }
}

.policyBox {
  width: 77%;
  aspect-ratio: 1/0.3;
  overflow: scroll;
  padding: 34px 6.2%;
  margin: 53px auto 0;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .policyBox {
    width: 100%;
    aspect-ratio: 1/1;
    overflow: scroll;
    padding: 20px;
  }
}

.policyBox__ttl {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1;
  color: #333333;
}

.policyBox__txt {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  color: #333333;
  margin-top: 27px;
}

input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #333333;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 6px;
  transform: rotate(50deg);
  width: 6px;
  height: 15px;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 35px;
  color: #333333;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s;
  pointer-events: all;
  border-radius: 33px;
}

.submit-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
}
.submitBtn {
  width: 265px;
  padding: 16px 0;
  font-size: 26px;
  color: #FFFFFF;
  text-align: center;
  background-color: #21328F;
  border-radius: 33px;
  line-height: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 16px;
    width: 180px;
    padding: 15px 0 ;
  }
	
.submit-wrap{
	flex-direction: column;
    margin-top: 50px;
	gap: 25px;
}
}

.submit:hover {
  opacity: 0.8;
  transition: all 0.5s;
}

	
.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
    font-family: "Jost", sans-serif;
		position: relative;
		z-index: 3;
		color: #0A3165;
	}
	
	.error-page__ttl{
      font-size: 40px;
      font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

  .wpcf7-spinner{
display: none!important;
}

.toTop-btn {
  width: max-content;
  margin: 100px auto 0;
}
.toTop-btn a {
  width: 214px;
  display: block;
  padding: 13px 0;
  background-color: #FFFFFF;
  border-radius: 26px;
  color: #001F5F;
  text-align: center;
  transition: all .5s;
}

.toTop-btn a:hover {
  opacity: .8;
  transition: all .5s;
}

@media screen and (max-width: 1024px) {
  .toTop-btn a {
    width: 107px;
    display: block;
    padding: 13px 0;
    background-color: #FFFFFF;
    border-radius: 8px;
    color: #001F5F;
    text-align: center;
  }

  .toTop-btn {
    width: max-content;
    margin: 50px auto 0;
  }
}

/*
.topPage-wrap {
  width: 100%;
  -webkit-animation-name: loadingBoxAnime;
          animation-name: loadingBoxAnime;
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes loadingBoxAnime {
  0% {
    height: 100vh;
    overflow: hidden;
  }
  99% {
    height: 100vh;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: visible;
  }
}

@keyframes loadingBoxAnime {
  0% {
    height: 100vh;
    overflow: hidden;
  }
  99% {
    height: 100vh;
    overflow: hidden;
  }
  100% {
    height: auto;
    overflow: visible;
  }
}

.underFv-section {
  display: none;
}*/