@font-face {
  font-family: 'aotf';
  src: url('../fonts/a-otf-r.otf') format('opentype');
  font-weight: 400;
}
@font-face {
  font-family: 'aotf';
  src: url('../fonts/a-otf-db.otf') format('opentype');
  font-weight: 600;
}
@font-face {
  font-family: 'aotf';
  src: url('../fonts/a-otf-b.otf') format('opentype');
  font-weight: 700;
}
body {
  font-family: YakuHanJP, 'aotf', sans-serif;
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
  color: #fff;
  color: #1c2b74;
  background-color: #1c2b74;
  background-color: #F2F4F9;
}
* {
  background: transparent;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.sp {
  display: none;
}
.in {
  width: 1100px;
  margin: 0 auto;
}
.in_in {
  width: 850px;
  margin: 0 auto;
}
@media screen and (max-width:640px) {
  .in {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
  .in_in {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
.main_header {
  position: fixed;
  top: 0;
  background: none;
  z-index: 9999;
  width: 100%;
  transition: all .4s;
}
.home .main_header {
  background: rgba(255, 255, 255, .7);
}
.main_header.scrolled {
  background: #0b1752;
  background: #fff;
}
header .header_cont {
  padding: 10px;
  justify-content: space-between;
  align-items: center;
}
header .header_cont .logo {
  width: 150px;
  position: relative;
}
header .header_cont .logo img {
  transition: all .4s;
}
.main_header .header_cont .logo img.white {
  opacity: 1;
  position: absolute;
  inset: 0;
}
.home .main_header .header_cont .logo img.white {
  opacity: 0;
}
.home .main_header.scrolled .header_cont .logo img.white,
.home .main_header.hum-active .header_cont .logo img.white {
  opacity: 1;
}
.main_header .header_cont .logo img.color {
  /*opacity: 0;*/
}
.home .main_header .header_cont .logo img.color {
  opacity: 1;
}
.main_header.scrolled .header_cont .logo img.color,
.main_header.hum-active .header_cont .logo img.color {
  /*opacity: 0;*/
}
.main_header nav ul li {
  margin-right: 20px;
}
.main_header nav ul li a {
  color: #fff;
  color: #1c2b74;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
}
.home nav ul li a {
  color: #1c2b74;
}
.main_header.scrolled ul li a {
  color: #fff;
  color: #1c2b74;
}
.main_header nav ul li.sign-in {
  margin-left: 40px;
}
.main_header nav ul li.sign-in a {
  padding: 10px 20px;
  background-color: #fff;
  background-color: #1c2b74;
  color: #1c2b74;
  color: #fff;
  transition: all .4s;
}
.home .main_header nav ul li.sign-in a {
  background-color: #1c2b74;
  color: #fff;
}
.home .main_header.scrolled nav ul li.sign-in a {
  background-color: #fff;
  background-color: #1c2b74;
  color: #1c2b74;
  color: #fff;
}
.main_header nav ul li.sign-up a {
  padding: 10px 20px;
  background-color: #e71f1a;
  color: #fff;
}
@media screen and (min-width:641px) {
  .main_header nav ul li:not(.sign-btn) a::after{
    position: absolute;
    bottom: -10px;
    left: 50%;
    content: '';
    width: 0;
    height: 3px;
    background-color: #e71f1a;
    transition: .3s;
    transform: translateX(-50%);
  }
  .main_header nav ul li:not(.sign-btn) a:hover::after {
    width: 100%;
  }
}
@media screen and (max-width:640px) {
  .main_header {
    padding: 0;
  }
  .main_header.scrolled {
    background-color: #0b1752;
  }
  header .header_cont {
    padding: 0;
  }
  .main_header .in {
    width: 100%;
  }
  header .header_cont .logo {
    width: 120px;
    padding: 5px 5px 0;
    position: relative;
    z-index: 102;
  }
  .main_header .header_cont .logo img.white {
    width: 110px;
    top: 5px;
    left: 5px;
  }
  .main_header nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 130%;
    background: #0b1752;
    background: #fff;
    z-index: 100;
    padding: 90px 6.4vw;
    pointer-events: none;
    opacity: 0;
    transition: opacity .1s linear;
  }
  .main_header nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  .main_header nav ul {
    width: 100%;
    display: block;
    border-top: solid 1px #ddd;
  }
  .main_header nav ul li {
    width: 100%;
    border-bottom: solid 1px #ddd;
  }
  .main_header nav ul li a {
    margin-left: 0;
    display: flex;
    align-items: center;
    position: relative;
    height: 64px;
    color: #fff;
    font-size: 1.4rem;
    position: relative;
  }
  .main_header nav ul li a::after {
    content: url(../images/common/next_arrow.svg);
    width: 8px;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
  }
  .main_header nav ul li.sign-btn a {
    justify-content: center;
  }
  .main_header nav ul li.sign-btn a::after {
    display: none;
  }
  .main_header nav ul li.sign-in {
    margin-top: 30px;
    margin-left: 0;
    border-bottom: none;
  }
  .main_header nav ul li.sign-up {
    margin-top: 20px;
    border-bottom: none;
  }
  .main_header .in .logo {
    width: 100px;
    display: block;
    padding: 15px 0 0 15px;
    box-sizing: content-box;
    position: relative;
    z-index: 101;
  }
  .main_header .hum {
    position: relative;
    width: 60px;
    height: 60px;
    cursor: pointer;
    transition: all .3s;
    z-index: 101;
  }
  .main_header.scrolled .hum {
    border-left: solid 1px #4d4d4d;
  }
  .main_header .hum i {
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 16px;
    height: 2px;
    background-color: #fff;
    background-color: #0b1752;
  }
  .main_header .hum i:nth-of-type(1) {
    top:25px;	
    width: 50%;
  }
  .main_header .hum i:nth-of-type(2) {
    top:32px;
    width:30%;
  }
  .home .main_header:not(.scrolled) .hum i:nth-of-type(1) {
    background-color: #1c2b74;
  }
  .home .main_header:not(.scrolled) .hum i:nth-of-type(2) {
    background-color: #e71f1a;
  }
  .main_header .hum.active i:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translate(3px,9px) rotate(-45deg);
    width: 35%;
    background-color: #fff !important;
  }
  .main_header .hum.active i:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translate(3px,-3px) rotate(45deg);
    width: 35%;
    background-color: #fff !important;
  }
  .main_header.scrolled .hum i {
    background-color: #fff;
  }
}

footer {
  background-color: #00072a;
  padding-top: 40px;
}
footer .footer_container {
  text-align: center;
  position: relative;
}
footer .footer_container .logo {
  display: block;
  width: 200px;
  margin: 0 auto;
}
footer .footer_container .footer_nav {
  display: flex;
  justify-content: center;
  margin: 35px 0;
}
footer .footer_container .footer_nav li {
  padding: 0 10px;
  border-right: solid 1px #fff;
}
footer .footer_container .footer_nav li:last-child {
  padding-right: 0;
  border-right: none;
}
footer .footer_container .footer_nav li a {
  color: #fff;
  font-size: 1.4rem;
}
footer .footer_container .footer_nav li a:hover {
  opacity: .7;
}
footer .footer_container .copyright {
  color: #fff;
  font-size: 1.2rem;
  padding-bottom: 20px;
}
footer .footer_container .rebuild {
  color: #fff;
  font-size: 1.2rem;
  border: solid 1px #fff;
  padding: 2px 4px;
  display: inline-block;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media screen and (max-width:640px) {
  footer {
    padding-top: 30px;
  }
  footer .footer_container .logo {
    width: 130px;
  }
  footer .footer_container .footer_nav {
    flex-direction: column;
    align-items: center;
  }
  footer .footer_container .footer_nav li {
    border-right: none;
    padding: 0;
    margin-bottom: 10px;
  }
  footer .footer_container .copyright {
    padding-bottom: 40px;
  }
}

.grecaptcha-badge { 
  bottom: 80px!important;
  z-index: 9999;
}


.sec_ttl {
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-align: center;
}
.sec_ttl::before {
  content: "";
  width: 300px;
  height: 300px;
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: url(../images/common/ttl_bg.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}
.sec_ttl .border_text {
  font-size:10rem;
  font-weight: 600;
  line-height: 1;
  color:rgba(0,0,0,.0);
  text-align:center;
  -webkit-text-stroke: 1px #FFF;
  opacity: .4;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
}
.sec_ttl .border_text_inner {
  overflow: hidden;
}
.sec_ttl.tx-l {
  text-align: left;
}
.sec_ttl.tx-l::before {
  left: -120px;
  transform: translate(0,-50%);
}
.sec_ttl.bg_no::before {
  display: none;
}
.sec_ttl.tx-l .border_text {
  left: 0;
  transform: unset;
  text-align: left;
}
.sec_ttl2 {
  font-size: 4.8rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  text-align: center;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
.sec_ttl2 .sub_eng {
  font-size: 1.8rem;
  font-weight: 400;
  display: block;
}
.sec_ttl2::before {
  content: "";
  width: 110px;
  height: 110px;
  display: block;
  position: absolute;
  top: 0;
  left: -10%;
  background: url(../images/common/ttl_bg_r.svg) no-repeat;
  background-size: contain;
  z-index: -1;
}
@media screen and (max-width:640px) {
  .sec_ttl {
    font-size: 2.4rem;
  }
  .sec_ttl::before {
    width: 110px;
    height: 110px;
  }
  .sec_ttl.tx-l::before {
    left: -30px;
    top: 90%;
  }
  .sec_ttl .border_text {
    font-size:4rem;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
  }
  .sec_ttl2 {
    font-size: 2.4rem;
  }
  .sec_ttl2::before {
    width: 80px;
    height: 80px;
    top: -10%;
    left: -15%;
  }
  .sec_ttl2 .sub_eng {
    font-size: 1.4rem;
  }
}

.cta {
    padding: 100px 0;
    background-color: #0b1752;
}
.cta .cta_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.cta .cta_inner .cta_btn {
    display: flex;
    border: solid 3px #fff;
    background-color: #0b1752;
    padding: 35px;
    color: #fff;
    transition: all .4s;
}
.cta .cta_inner .cta_btn:hover {
    background-color: #fff;
}
.cta .cta_inner .cta_btn:hover h2 {
    color: #0b1752;
}
.cta .cta_inner .cta_btn:hover p {
    color: #0b1752;
}
.cta .cta_inner .cta_btn h2 {
    font-size: 2.2rem;
    font-weight: 700;
}
.cta .cta_inner .cta_btn p {
    font-size: 1.6rem;
    line-height: 2;
    text-align: justify;
}

.cta .cta_inner .cta_btn_up {
    width: 430px;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.cta .cta_inner .cta_btn .imgarea {
  position: relative;
}
.cta .cta_inner .cta_btn.corp_link .imgarea::after {
  content: url(../images/common/corp_n.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta .cta_inner .cta_btn.indv_link .imgarea::after {
  content: url(../images/common/indv_n.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta .cta_inner .cta_btn.info_link .imgarea::after {
  content: url(../images/common/iaa_c.svg);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.cta .cta_inner .cta_btn .imgarea::after {
  opacity: 0;
  transition: all .4s;
}
.cta .cta_inner .cta_btn:hover .imgarea::after {
  opacity: 1;
}
.cta .cta_inner .cta_btn.indv_link .imgarea {
  width: 48px;
  margin: 30px 0;
}
.cta .cta_inner .cta_btn.corp_link .imgarea {
  width: 90px;
  margin:30px 0;
}
.cta .cta_inner .cta_btn.info_link {
  width: 700px;
  margin-top: 60px;
  align-items: center;
}
.cta .cta_inner .cta_btn.info_link .imgarea {
  width: 90px;
  flex-shrink: 0;
}
.cta .cta_inner .cta_btn.info_link .txtarea {
  margin-left: 30px;
}
.cta .cta_inner .cta_btn.info_link .txtarea h2 {
  margin-bottom: 10px;
}
@media screen and (max-width:640px) {
  .cta {
    padding: 30px 0;
  }
  .cta .cta_inner .cta_btn {
    padding: 20px;
  }
  .cta .cta_inner .cta_btn.corp_link {
    flex-direction: column;
  }
  .cta .cta_inner .cta_btn_up {
    margin: 20px auto 0;
  }
  .cta .cta_inner .cta_btn_up h2 {
    order: 1;
    font-size: 1.8rem;
    margin: 15px 0 10px;
  } 
  .cta .cta_inner .cta_btn p {
    font-size: 1.4rem;
    line-height: 1.8;
  }
  .cta .cta_inner .cta_btn_up p {
    order: 2;
  }
  .cta .cta_inner .cta_btn_up img {
    width: unset;
    max-width: 100%;
    margin: 0;
    vertical-align: bottom;
  }
  .cta .cta_inner .cta_btn.indv_link .imgarea {
      width: 30px;
      margin: 0;
  }
  .cta .cta_inner .cta_btn.corp_link .imgarea {
      width: 56px;
      margin:0;
  }
  .cta .cta_inner .cta_btn.info_link {
    width: 100%;
    flex-direction: column;
    margin-top: 20px;
  }
  .cta .cta_inner .cta_btn.info_link .imgarea {
    width: 74px;
  }
  .cta .cta_inner .cta_btn.info_link .txtarea {
    margin-left: 0;
  }
  .cta .cta_inner .cta_btn.info_link .txtarea h2 {
    font-size: 1.8rem;
    margin: 15px 0 10px;
    text-align: center;
  }
}
.appear {
  opacity: 0;
  overflow: hidden;
}

.is-show {
  animation-name: play;
  animation-duration: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  position: relative;
  opacity: 1 !important;
}
  
.is-show:before {
  animation-name: maskOut;
  animation-duration: .5s;
  animation-delay: .5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(.8,0,.5,1);
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient( 109.6deg,  rgba(231,31,26,1) 11.2%, rgba(196,31,26,1) 91.1% );
}

@keyframes play {
  from {
    transform: translateX(-100%);
  }
  
  to {
    transform: translateX(0);
  }
}

@keyframes maskOut {
  from {
    transform: translateX(0);
  }
  
  to {
    transform: translateX(100%);
  }
}
.set-t {
  transform: translate3d(0, -50px, 0);
  opacity: 0;
}
.set-b {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
}
.set-r {
  transform: translate3d(50px, 0, 0);
  opacity: 0;
}
.set-l {
  transform: translate3d(-50px, 0, 0);
  opacity: 0;
}
.fadeIn {
  transform: translate3d(0, 0, 0);
  transition: .6s ease-in-out .2s;
  opacity: 1;
}

.marker {
  /*background:linear-gradient(transparent 65%, rgba(231, 31, 26) 35%);*/
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition:background-size 1.5s;
}

.marker.on {
  background-size: 100% 100%;
}