body {
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
}

.pc_s-vis {
  display: none;
}

@media screen and (max-width: 980px) {
  .pc_s-vis {
    display: block;
  }
}

.pc_s-novis {
  display: block;
}

@media screen and (max-width: 980px) {
  .pc_s-novis {
    display: none;
  }
}

@keyframes showTextFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes cloudLoop {
  0% {
    background-position: right -20% top -10%;
  }

  100% {
    background-position: left -20% bottom -50%;
  }
}

@keyframes mv_bg {
  0% {
    background: url("../img/image_new/bg_color01.png") no-repeat top center;
  }

  30% {
    background: url("../img/image_new/bg_color01.png") no-repeat top center;
  }

  40% {
    background: url("../img/image_new/bg_color02.png") no-repeat top center;
  }

  70% {
    background: url("../img/image_new/bg_color02.png") no-repeat top center;
  }

  80% {
    background: url("../img/image_new/bg_color01.png") no-repeat top center;
  }
}

@keyframes news_bg01 {
  0% {
    opacity: 1;
  }

  30% {
    opacity: 1;
  }

  40% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes news_bg02 {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 0;
  }

  40% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  80% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes bg_color {
  0% {
    background-color: #004bdc;
  }

  30% {
    background-color: #004bdc;
  }

  40% {
    background-color: #006985;
  }

  70% {
    background-color: #006985;
  }

  80% {
    background-color: #004bdc;
  }

  100% {
    background-color: #004bdc;
  }
}

@keyframes txt_color {
  0% {
    color: #004bdc;
  }

  30% {
    color: #004bdc;
  }

  40% {
    color: #006985;
  }

  70% {
    color: #006985;
  }

  80% {
    color: #004bdc;
  }

  100% {
    color: #004bdc;
  }
}

@keyframes border_color {
  0% {
    border-color: #004bdc;
  }

  30% {
    border-color: #004bdc;
  }

  40% {
    border-color: #006985;
  }

  70% {
    border-color: #006985;
  }

  80% {
    border-color: #004bdc;
  }

  100% {
    border-color: #004bdc;
  }
}

@keyframes arrow {
  0% {
    z-index: -1;
  }

  30% {
    z-index: -1;
  }

  40% {
    z-index: 2;
  }

  70% {
    z-index: 2;
  }

  80% {
    z-index: -1;
  }

  100% {
    z-index: -1;
  }
}

.newsBox {
  margin-left: auto;
  margin-right: 0;
  max-width: 375px;
  align-items: stretch;
  color: #fff;
  padding: 0;
  box-sizing: border-box;
  padding: 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  width: 30vw;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 99;
}

.newsBox::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 1;
  top: 0;
  left: 0;
  z-index: -1;
  animation: news_bg01 30s infinite;
  background: rgba(0, 75, 220, 0.65);
}

.newsBox::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(12, 112, 139, 0.65);
  top: 0;
  left: 0;
  z-index: -1;
  animation: news_bg02 30s infinite;
}

@media screen and (max-width: 845px) {
  .newsBox.sp-vis {
    position: relative;
    width: 100%;
    margin: 0;
    right: 0;
    z-index: 99;
    padding: 10px;
    margin: 0 auto 50px;
  }

  .newsBox::before,
  .newsBox::after {
    display: none;
  }
}

.newsBox h3 {
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  letter-spacing: .2em;
  text-align: left;
  border-bottom: 2px solid #fff;
  font-size: clamp(17px, 1.4vw, 21px);
  align-items: center;
  flex-shrink: 0;
  line-height: 1.2;
  box-sizing: border-box;
  flex-shrink: 0;
  padding-bottom: 10px;
  display: flex;
}

.newsBox h3 small {
  font-size: .76em;
  letter-spacing: .2em;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-weight: 400;
}

.newsBox h3 a {
  width: 120px;
  margin-left: auto;
  display: block;
  position: relative;
}

.newsBox h3 a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/image_new/moreview_blue.svg") no-repeat center/contain;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s;
}

.newsBox h3 a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  display: block;
  background: url("../img/image_new/moreview_green.svg") no-repeat center/contain;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .5s;
  animation: arrow 30s infinite;
}

.newsBox h3 a:hover::before,
.newsBox h3 a:hover::after {
  opacity: 1;
}

@media screen and (max-width: 845px) {
  .newsBox h3 {
    letter-spacing: .2em;
    padding: 10px;
    padding-left: 0;
  }
}

.newsBox .news_inner {
  width: 100%;
  padding: 10px 0;
}

@media screen and (max-width: 845px) {
  .newsBox .news_inner {
    padding: 10px 0;
  }
}

.newsBox dl {
  display: flex;
  justify-content: flex-start;
  font-size: clamp(12px, 1vw, 16px);
  box-sizing: border-box;
}

@media screen and (max-width: 845px) {
  .newsBox dl {
    display: block;
  }
}

.newsBox dl+dl {
  margin-top: 10px;
}

.newsBox dl dt {
  width: 5em;
  margin-right: 1em;
  flex-shrink: 0;
  font-family: "toppan-bunkyu-midashi-min-st", serif;
  line-height: 1.4;
}

.newsBox dl dt+dt {
  margin-top: 10px;
}

.newsBox dl dd {
  width: 100%;
}

.newsBox dl dd+dd {
  margin-top: 10px;
}

.newsBox dl dd a {
  color: #fff;
}

header{
  display: block;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #fff;
}

header .pc_s-vis {
  display: none;
}

@media screen and (max-width: 1150px) {
  header .pc_s-vis {
    display: block;
  }
}

header .inner {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Noto Sans JP", sans-serif;
  height: 80px;
}

@media screen and (max-width: 1150px) {
  header .inner {
    height: auto;
    align-items: stretch;
  }
}

header .inner .logo {
  flex-shrink: 1;
  width: 310px;
  margin-left: 2.08vw;
}
@media screen and (max-width: 1150px) {
  header .inner .logo {
    width: 206px;
    padding: 18px 0;
    margin-left: 2.67vw;
  }
}

header .inner nav {
  width: 100%;
}
@media (min-width: 1150px) {
  header .inner nav {
    display: flex !important;
    justify-content: flex-end;
    align-items: stretch;
    width: calc(100% - 400px);
  }
}

@media screen and (max-width: 1150px) {
  header .inner nav {
    position: fixed;
    top: 0px;
    right: -100vw;
    height: calc(100vh - 59px);
    width: 100vw;
    z-index: 99;
    margin-top: 59px;
    z-index: -1;
    background: #004BDC;
    color: #fff;
    transition: .3s;
    overflow-x: hidden;
    overflow-y: auto;
  }
  header .inner nav.open {
    right: 0;
  }
}

.l-header-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 2%;
  margin-left: 2%;
  flex-shrink: 0;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list {
    display: block;
    border: none;
    margin: 0 auto;
    padding: 70px 40px 40px;
    box-sizing: border-box;
    max-width: 500px;
  }
}

.l-header-nav__list__item {
  font-size: 1.6rem;
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 1150px) {
 .l-header-nav__list__item {
    display: block;
  }
}

.l-header-nav__list__item--sub{
  position: relative; 
  padding-right: 17px;
  &::before{
    content: "";
    position: absolute;
    top: 20px;
    bottom: -50px;
    width: 100%;
  }

  &::after{
    content: '';
    background-image: url(../img/common/nav_arrow01.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 12px;
    height: 6px;

    position: absolute;
    right: 0;
    top: calc(50% + 1px);
    transform: translateY(-50%);
  }
}

@media screen and (max-width: 1150px) {
  .l-header-nav__list__item--sub{
    padding-right: 0;

    &::before,
    &::after{
      content: none;
    }
  }

  .l-header-nav__list__item--sub a{
    position: relative; 
    padding-right: 22px;

    &::after{
      content: '';
      background-image: url(../img/common/nav_arrow01_wh.svg);
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      width: 12px;
      height: 6px;

      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
    }
  }
  .l-header-nav__list__item--sub.is-open a::after{
    transform: translateY(-50%) rotate(-180deg);;
  }
  .l-header-nav__list__item--sub__head{
    pointer-events: none;
    cursor: initial;
  }
}

.l-header-nav__list__item+.l-header-nav__list__item {
  margin-left: 4rem;
}
@media screen and (max-width: 1290px) {
  .l-header-nav__list__item+.l-header-nav__list__item {
    margin-left: 2rem;
  }
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item+.l-header-nav__list__item {
    margin: 0;
  }
}

.l-header-nav__list__item a {
  display: block;
  white-space: nowrap;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
.l-header-nav__list__item a::before {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: #004bdc;
  position: absolute;
  bottom: 0;
  left: 0%;
  transform: translate(-0%);
  transition: .5s;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item a::before {
    display: none;
  }
}

.l-header-nav__list__item a:hover{
  color: #004BDC;
}
.l-header-nav__list__item a:hover::before {
  width: 100%;
}

@media screen and (max-width: 1150px) {
  .l-header-nav__list__item a {
    box-sizing: border-box;
    transition: .5s;
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 31px;
    display: inline-block;
  }

  .l-header-nav__list__item a:hover {
    color: #fff;
    opacity: 0.7;
  }
}

.l-header-nav__list__item--login {
  display: block;
  height: 80px;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item--login {
    display: block;
    height: auto;
    margin-top: 33px!important;
    margin-bottom: 10px!important;
  } 
}

.l-header-nav__list__item--login a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #03A8E2;
  border: 1px solid #03A8E2;
  color: #fff;
  padding-left: 22px;
  padding-right: 22px;
  transition: .5s;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item--login a {
    gap: 10px;
    justify-content: center;
    padding: 16px 20px 14px;
    border-radius: 28px;
    margin-bottom: 10px!important;
  }
}
.l-header-nav__list__item--login a::before {
  display: none;
}
.l-header-nav__list__item--login a .l-header-nav__list__item--login__icon {
  width: 20px;
  height: auto;
}
.l-header-nav__list__item--login a .l-header-nav__list__item--login__icon path{
  transition: .5s;
}
.l-header-nav__list__item--login a:hover {
  background: #fff;
  color: #03A8E2;
}
.l-header-nav__list__item--login a:hover .l-header-nav__list__item--login__icon path{
  fill: #03A8E2;
}

.l-header-nav__list__item--contact {
  display: block;
  height: 80px;
  margin-left: 0!important;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item--contact {
    height: auto;
  }
}

.l-header-nav__list__item--contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #004BDC;
  border: 1px solid #004BDC;
  color: #fff;
  padding-left: 25px;
  padding-right: 25px;
  transition: .5s;
  height: 100%;
}
@media screen and (max-width: 1150px) {
  .l-header-nav__list__item--contact a {
    justify-content: center;
    gap: 10px;
    border: 1px solid #fff;
    padding: 15px 20px;
    transition: .5s;
    border-radius: 28px;
  }
}
.l-header-nav__list__item--contact a .l-header-nav__list__item--contact__icon {
  width: 24px;
  height: auto;
}
.l-header-nav__list__item--contact a .l-header-nav__list__item--contact__icon path{
  transition: .5s;
}
.l-header-nav__list__item--contact a:hover {
  background: #fff;
  color: #004BDC;
}
.l-header-nav__list__item--contact a:hover .l-header-nav__list__item--contact__icon path{
  fill: #004BDC;
}
.l-header-nav__list__item--contact a::before {
  display: none;
}

@media screen and (max-width: 1150px) {
  .l-header-nav__logo{
    display: block;
    margin: 0 auto 40px;
    width: 112px;
    height: auto;
  }
}

.l-header-subnav{
  position: absolute;
  top: calc(100% + 48px);
  padding: 4rem;
  background-color: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  &.active{
    z-index: 100;
    opacity: 1;
    pointer-events: visible;
  }
}
@media screen and (max-width: 1150px) {
  .l-header-subnav{
    position: relative;
    top: 0;
    padding: 0 0 0 30px;
    background-color: #004BDC;
    box-shadow: none;
    z-index: 1;
    opacity: 1;
    max-height: 0;
    overflow: hidden;
    transition: 0.5s;

    &.active{
      max-height: 100vh;
    }
  }
}
.l-header-subnav__ttl{
  font-size: 2rem;
  font-weight: 700;
  color: #004BDC;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  margin-bottom: 2rem;
}
@media screen and (max-width: 1150px) {
  .l-header-subnav__ttl{
    display: none;
  }
}
.l-header-subnav__list__item{
  display: block;
  position: relative;
  margin-bottom: 1rem;

  &:last-of-type{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1150px) {
  .l-header-subnav__list__item{
    margin-bottom: 25px;

    &:last-of-type{
      margin-bottom: 27px;
    }
  } 
}
.l-header-subnav__list__item a{
  position: relative;
  padding-right: 30px;
  &::after{
    content: '';
    width: 22px;
    height: 5px;
    background-image: url(../img/common/nav_arrow02.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
  }
}
.l-header-subnav__list__item--sp a{
  display: none;;
}
@media screen and (max-width: 1150px) {
  .l-header-subnav__list__item a{
    position: relative;
    padding-right: 0px;
    margin-bottom: 0;
    font-size: 16px;
    &::after{
      content: none;
    }
  }

  .l-header-subnav__list__item--sp a{
    display: block;;
  }
}

header .pan {
  display: block;
  background: #f2f2f2;
  position: relative;
  z-index: -2;
}

header .pan ul {
  display: flex;
  width: 95%;
  margin: 0 auto;
  padding: 5px 0;
  max-width: 1500px;
}

header .pan ul li {
  font-size: 1.3rem;
}

@keyframes plane_color {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes plane_Out {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#mv {
  position: relative;
  background: url("../img/image_new/bg_color01.png") no-repeat top center, url("../img/image_new/bg_color02.png") no-repeat top center;
}

#mv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: url("../img/image_new/bg_color02.png") no-repeat top center;
  animation: news_bg02 30s infinite;
}

#mv .cloud {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/image_new/cloud.png") repeat-x;
  background-size: 6110px;
  z-index: 0;
  animation: cloudLoop 500s linear infinite;
}

@media screen and (max-width: 845px) {
  #mv .cloud {
    background-size: 3000px;
  }
}

#mv .plane {
  position: absolute;
  bottom: 20%;
  right: 8%;
  width: calc((100vw - 200px)/2);
  max-width: 455px;
}

@media screen and (max-width: 980px) {
  #mv .plane {
    right: 1vw;
  }
}

@media (max-height: 800px) {
  #mv .plane {
    height: 70vh;
    top: 3vh;
    width: auto;
  }

  #mv .plane img {
    width: auto;
    height: 100%;
  }
}

@media screen and (max-width: 845px) {
  #mv .plane {
    width: 55%;
    height: auto;
    right: 2%;
    top: 40vw;
  }

  #mv .plane img {
    width: 100%;
    height: auto;
  }
}

#mv .bgBox {
  position: relative;
  padding-top: 2vh;
  box-sizing: border-box;
  height: calc(100vh - 110px);
  min-height: 650px;
  max-height: 800px;
}

#mv .bgBox::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/image_new/mv_bg01.png") repeat center/cover;
  background-size: cover;
  z-index: 1;
  mix-blend-mode: overlay;
  filter: brightness(0.5);
}

@media screen and (max-width: 845px) {
  #mv .bgBox {
    aspect-ratio: auto;
    height: auto;
    padding-bottom: 20vw;
    min-height: 0;
    max-height: none;
  }
}

#mv .bgBox .inner {
  width: 95%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

#mv .bgBox .inner .c-text {
  font-size: clamp(0px, 4.79vw, 75px);
  line-height: 1.4;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  font-weight: 900;
  display: block;
  line-height: 1.4;
  letter-spacing: .1em;
  opacity: 0;
  transition: .5s;
}

@media screen and (max-width: 845px) {
  #mv .bgBox .inner .c-text {
    width: 100%;
    text-align: center;
    display: block;
    font-size: 7vw;
    height: 5em;
  }
}

#mv .bgBox .inner .c-text+.c-text {
  position: absolute;
  top: 0;
  left: 0;
}

#mv .bgBox .inner .c-text:nth-child(3) {
  font-size: clamp(0px, 3.2vw, 48px);
}

@media screen and (max-width: 845px) {
  #mv .bgBox .inner .c-text:nth-child(3) {
    font-size: 5vw;
  }
}

#mv .bgBox .inner .c-text.active {
  opacity: 1;
}

#mv .bgBox .inner .c-text.active span {
  display: inline-block;
  opacity: 0;
}

#mv .bgBox .inner .c-text.active span:nth-child(1) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.1s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(2) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.2s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(3) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.3s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(4) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.4s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(5) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.5s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(6) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.6s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(7) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.7s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(8) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.8s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(9) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 0.9s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(10) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(11) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.1s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(12) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.2s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(13) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.3s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(14) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.4s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(15) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.5s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(16) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.6s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(17) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.7s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(18) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.8s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(19) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 1.9s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(20) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(21) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.1s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(22) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.2s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(23) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.3s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(24) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.4s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(25) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.5s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(26) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.6s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(27) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.7s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(28) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.8s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(29) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 2.9s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(30) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(31) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.1s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(32) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.2s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(33) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.3s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(34) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.4s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(35) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.5s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(36) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.6s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(37) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.7s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(38) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.8s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(39) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 3.9s forwards;
}

#mv .bgBox .inner .c-text.active span:nth-child(40) {
  animation: text 1s cubic-bezier(0.3, 0.72, 0.56, 0.99) 4s forwards;
}

@keyframes text {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: none;
  }
}

#mv .logoBox {
  z-index: 50;
  width: 30vw;
  max-width: 500px;
}

@media screen and (max-width: 845px) {
  #mv .logoBox {
    position: static;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    margin-top: 20vw;
    max-width: none;
    width: 100%;
  }
}

#mv .logoBox h2 {
  max-width: 290px;
  margin: 0 auto 20px;
  position: absolute;
  z-index: 30;
  width: 25%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 845px) {
  #mv .logoBox h2 {
    width: 50%;
    margin-bottom: 5vw;
    position: static;
    transform: translate(0, 0);
  }
}

#mv .logoBox .gif {
  width: 100%;
  max-width: 500px;
  width: 45vw;
  margin: 0 auto;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#mv .logoBox .gif img {
  margin-bottom: -50%;
}

@media screen and (max-width: 845px) {
  #mv .logoBox .gif {
    width: 70%;
    position: static;
  }

  #mv .logoBox .gif img {
    margin-bottom: 0;
  }
}

#mv .imgBox {
  position: relative;
  z-index: 30;
  background: url("../img/image_new/img01.png") no-repeat center/cover;
  padding: 250px 0 100px;
}

#mv .imgBox .en_ttl {
  color: #fff;
  letter-spacing: .3em;
}

#mv .imgBox .en_ttl .en {
  display: block;
  font-size: clamp(0px, 10.75vw, 160px);
  font-family: din-condensed, sans-serif;
  line-height: 1;
  font-weight: 500;
}

#mv .imgBox .en_ttl .ja {
  line-height: 1;
  font-size: 2.2rem;
  display: block;
  margin-top: -1em;
}

#mv .imgBox .en_ttl .ja span {
  margin: 0 .05em;
}

@media screen and (max-width: 845px) {
  #mv .imgBox .en_ttl {
    position: static;
    transform: translate(0, 0);
  }

  #mv .imgBox .en_ttl .en {
    font-size: clamp(0px, 19vw, 100px);
  }

  #mv .imgBox .en_ttl .ja {
    font-size: 4.5vw;
    margin-top: -0.5em;
  }
}

@media screen and (max-width: 845px) {
  #mv .imgBox {
    position: relative;
    width: 100%;
    padding: 30px 0;
  }

  #mv .imgBox .logoBox {
    margin-top: 0;
  }
}

#mv .linkBox {
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 99;
}

@media screen and (max-width: 845px) {
  #mv .linkBox {
    padding: 40px 0 50px;
    position: relative;
    z-index: 30;
  }
}

#mv .linkBox p {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  position: relative;
  z-index: 30;
}

@media screen and (max-width: 845px) {
  #mv .linkBox p {
    font-size: 4vw;
    line-height: 1.4;
  }
}

#mv .linkBox a {
  color: #fff;
  display: block;
  position: relative;
  font-size: 5.5rem;
  text-align: center;
  font-weight: bold;
  margin-top: 20px;
  letter-spacing: .5em;
  position: relative;
  z-index: 30;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-bottom: 50px;
  overflow: hidden;
}

#mv .linkBox a .text-animation-span {
  margin: 0 .1em;
}

@media screen and (max-width: 845px) {
  #mv .linkBox a {
    font-size: 7vw;
    padding-bottom: 15px;
  }
}

#mv .linkBox a::before {
  content: "";
  display: block;
  background: #fff;
  width: 100%;
  height: 4px;
  left: 0;
  bottom: 0px;
  position: absolute;
}

#mv .linkBox a::after {
  content: "";
  display: block;
  width: 0%;
  height: 4px;
  left: 0;
  bottom: 0px;
  position: absolute;
  background: linear-gradient(90deg, #88ff35, #ffb900, #ffff00);
  transition: .5s;
}

#mv .linkBox a img {
  position: absolute;
  width: 75px;
  height: 34px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: .5s;
  padding-bottom: 70px;
}

@media screen and (max-width: 845px) {
  #mv .linkBox a img {
    width: 10vw;
    padding-bottom: 25px;
  }
}

#mv .linkBox a img.icn_end {
  right: 0;
}

#mv .linkBox a img.icn_active {
  left: -100px;
}

#mv .linkBox a img.icn_active+.icn_active {
  animation: arrow 30s infinite;
}

#mv .linkBox a:hover:after {
  width: 100%;
}

#mv .linkBox a:hover img.icn_end {
  right: -100px;
}

#mv .linkBox a:hover img.icn_active {
  left: 0;
}

@keyframes linkBox {
  0% {
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  100% {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
}

#linkBox {
  position: relative;
  padding: 20vw 0 8vw;
  overflow: hidden;
}

@media screen and (max-width: 845px) {
  #linkBox {
    padding-top: 60vw;
  }
}

#linkBox::before {
  content: "";
  background: url("../img/image_new/img02.png") no-repeat center top;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  animation: linkBox 100s infinite;
}

@media screen and (max-width: 845px) {
  #linkBox::before {
    aspect-ratio: 8 / 5;
    height: auto;
    top: 0;
    bottom: auto;
    background-position: top center;
    background-size: cover;
  }
}

#linkBox::after {
  content: "";
  background: linear-gradient(transparent 0%, transparent 70%, #fff 100%);
  width: 100%;
  height: 100%;
  left: 0;
  position: absolute;
  bottom: 0;
}

#linkBox ul {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: 1320px;
  margin: 0 auto;
  width: 80%;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 845px) {
  #linkBox ul {
    display: block;
  }
}

#linkBox ul li {
  display: flex;
  flex-direction: column;
  width: 31%;
}

#linkBox ul li:nth-child(2) {
  transition-delay: .2s;
}

@media screen and (max-width: 845px) {
  #linkBox ul li:nth-child(2) a {
    padding: 20px 20px;
  }
}

#linkBox ul li:nth-child(3) {
  transition-delay: .4s;
}

@media screen and (max-width: 845px) {
  #linkBox ul li {
    width: 100%;
  }

  #linkBox ul li+li {
    margin-top: 20px;
  }
}

#linkBox ul li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  background: #004bdc;
  animation: bg_color 30s infinite;
  padding: 20px;
  padding-bottom: 40px;
  box-sizing: border-box;
  color: #fff;
  padding-top: 40px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 845px) {
  #linkBox ul li a {
    padding: 30px 20px;
  }
}

#linkBox ul li a .small {
  font-size: clamp(0px, 1.4544vw, 19px);
  flex-grow: 1;
  font-weight: 700;
}

@media screen and (max-width: 845px) {
  #linkBox ul li a .small {
    font-size: 3.5vw;
  }
}

#linkBox ul li a .ttl {
  font-size: clamp(0px, 3.2vw, 47px);
  flex-grow: 1;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: .2em;
  margin-bottom: 30px;
  margin-top: 10px;
  line-height: 1.2;
}

#linkBox ul li a .ttl .text-animation-span {
  margin: 0 .1em;
}

@media screen and (max-width: 845px) {
  #linkBox ul li a .ttl {
    font-size: 7vw;
    margin-top: 20px;
    margin-bottom: 0;
    position: relative;
  }
}

#linkBox ul li a .ttl small {
  display: block;
  font-size: .5em;
  line-height: 1;
}

#linkBox ul li a .icn {
  margin-top: auto;
  width: 75px;
  position: relative;
  transition: .5s;
  margin-left: auto;
  margin-right: auto;
}

#linkBox ul li a .icn img {
  width: 100%;
  opacity: 1;
  transition: .5s;
}

#linkBox ul li a .icn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/image_new/icn_arrow_active.svg") no-repeat center/contain;
  transition: .5s;
  opacity: 0;
}

#linkBox ul li a .icn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/image_new/icn_arrow_active_.svg") no-repeat center/contain;
  transition: .5s;
  opacity: 0;
  animation: arrow 30s infinite;
}

@media screen and (max-width: 845px) {
  #linkBox ul li a .icn {
    width: 15%;
    position: absolute;
    top: 61%;
    margin: auto;
    right: 10px;
  }
}

#linkBox ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 4px;
  background: linear-gradient(90deg, #88ff35, #ffb900, #ffff00);
  transition: .5s;
}

#linkBox ul li a:hover::after {
  width: 100%;
}

#linkBox ul li a:hover .icn img {
  opacity: 0;
}

#linkBox ul li a:hover .icn::before {
  opacity: 1;
}

#linkBox ul li a:hover .icn::after {
  opacity: 1;
}

#moreBox {
  margin: 0 auto 8.3vw;
}

@media screen and (max-width: 845px) {
  #moreBox {
    margin: 20px auto 0px;
  }
}

#moreBox h2 {
  color: #004bdc;
  margin: 0px auto 8.3vw;
  animation: txt_color 30s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

@media screen and (max-width: 845px) {
  #moreBox h2 {
    margin-bottom: 30px;
  }
}

#moreBox h2 small {
  font-size: 5.04rem;
  display: block;
  font-weight: 700;
}

@media screen and (max-width: 845px) {
  #moreBox h2 small {
    font-size: 8vw;
  }
}

#moreBox h2 strong {
  font-size: 15.04rem;
  display: block;
  vertical-align: middle;
  font-family: "axia", sans-serif;
  font-weight: 900;
}

#moreBox h2 strong .text-animation.show span {
  letter-spacing: 0 !important;
}

#moreBox h2 strong span {
  display: block;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 845px) {
  #moreBox h2 strong {
    font-size: 20vw;
  }

  #moreBox h2 strong span {
    display: block;
  }

  #moreBox h2 strong span.text-animation {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

#moreBox ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1600px;
  width: 100%;
}

@media screen and (max-width: 845px) {
  #moreBox ul {
    display: block;
  }
}

#moreBox ul li {
  width: calc(100% / 3);
}

#moreBox ul li a {
  display: block;
  text-align: center;
}

#moreBox ul li a .img {
  margin-bottom: 40px;
  width: 100%;
  aspect-ratio: 10 / 7;
  overflow: hidden;
}

#moreBox ul li a .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

#moreBox ul li a p {
  font-size: clamp(0px, 1.6vw, 22px);
  font-weight: bold;
  display: block;
}

#moreBox ul li a p.btn {
  font-size: clamp(0px, 3vw, 64px);
  color: #004bdc;
  font-family: din-condensed, sans-serif;
  line-height: 1;
  animation: txt_color 30s infinite;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-weight: 400;
}

#moreBox ul li a p.btn::before {
  content: "";
  width: clamp(0px, 4.6875vw, 75px);
}

#moreBox ul li a p.btn .icn {
  width: clamp(0px, 4.6875vw, 75px);
  background: url("../img/image_new/icn_arrow_green.svg") no-repeat center;
  background-size: contain;
  display: block;
  position: relative;
  transition: .5s;
  margin-left: clamp(0px, 1.25vw, 20px);
  margin-top: -0.4em;
  overflow: hidden;
  position: relative;
}

#moreBox ul li a p.btn .icn img {
  animation: news_bg01 30s infinite;
  z-index: 0;
  position: relative;
  opacity: 1;
}

#moreBox ul li a p.btn .icn.icn_defo {
  background: url("../img/image_new/icn_arrow_green.svg") no-repeat center;
  right: 0;
}

#moreBox ul li a p.btn .icn::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/image_new/icn_arrow_active_blue.svg") no-repeat center/contain;
  opacity: 0;
  transition: .5s;
  top: 0;
  left: 0;
  z-index: 1;
}

#moreBox ul li a p.btn .icn::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: url("../img/image_new/icn_arrow_active_green.svg") no-repeat center/contain;
  opacity: 0;
  transition: .5s;
  top: 0;
  left: 0;
  animation: arrow 30s infinite;
  z-index: -1;
}

#moreBox ul li a:hover .img img {
  transform: scale(1.1);
}

#moreBox ul li a:hover p.btn .icn {
  transition: .5s;
}

#moreBox ul li a:hover p.btn .icn img {
  opacity: 0;
}

#moreBox ul li a:hover p.btn .icn::after {
  opacity: 1;
}

#moreBox ul li a:hover p.btn .icn::before {
  opacity: 1;
}

#moreBox ul li a:hover p.btn .icn.icn_hover {
  left: 0;
}

@media screen and (max-width: 845px) {
  #moreBox ul li {
    width: 100%;
    border-top: 1px solid #004bdc;
    animation: border_color 30s infinite;
  }

  #moreBox ul li:last-child {
    border-bottom: 2px solid #004bdc;
    animation: border_color 30s infinite;
  }

  #moreBox ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #moreBox ul li a .img {
    width: 50%;
    aspect-ratio: 4/3;
    margin-bottom: 0;
  }

  #moreBox ul li a .txt {
    width: 50%;
    padding: 10px;
  }

  #moreBox ul li a .txt p {
    font-size: 4vw;
  }

  #moreBox ul li a .txt p.btn {
    font-size: 7vw;
    display: block;
    position: relative;
  }

  #moreBox ul li a .txt p.btn .icn {
    margin: 10px auto 0;
    width: 10vw;
  }

  #moreBox ul li a .txt p.btn .icn.icn_hover {
    position: absolute;
    bottom: 0;
    left: -200%;
    right: 0;
    margin: auto;
  }

  #moreBox ul li a:hover p.btn .icn.icn_hover {
    left: 0;
  }
}

.c-cta {
  z-index: 0;
  position: relative;
  width: 100%;
  background-color: #004BDC;
  background-image: url(../img/common/footer_contact_bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: "Noto Sans JP", sans-serif;
}
.c-cta:hover{
  background-image: none;
} 

.c-cta .c-cta__inner {
  max-width: 1240px;
  padding: 97px 20px;
  margin: 0 auto;
}
@media screen and (max-width: 845px) {
  .c-cta .c-cta__inner {
    padding: 80px 20px;
  }
}

.c-cta .c-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.c-cta .c-cta__title--ja {
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
  display: inline-block;
  color: #fff;
}
@media screen and (max-width: 845px) {
  .c-cta .c-cta__title--ja {
    font-size: 24px;
    line-height: 1.25;
  }
}
.c-cta .c-cta__title--en {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.77;
  letter-spacing: .04em;
  display: inline-block;
  color: rgba(255, 255, 255, 0.4);
}
@media screen and (max-width: 845px) {
  .c-cta .c-cta__title--en {
    font-size: 12px;
    line-height: 1.41;
  }
}

.c-cta .c-cta__text {
  margin: 26px 0 24px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 845px) {
  .c-cta .c-cta__text {
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.6;
  }
}

.c-cta .c-cta__button {
  max-width: 280px;
  width: 100%;
  color: #004BDC;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
  padding: 12px 40px ;
  border-radius: 24px;
  position: relative;
  box-sizing: border-box;
}
.c-cta .c-cta__button::after {
  content: '';
  width: 22px;
  height: 5px;
  background-image: url(../img/common/nav_arrow02.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.c-cta .c-cta__button img {
  width: 24px;
  display: block;
  margin-left: 10px;
}


footer {
  background: #f2f2f2;
  padding-bottom: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 845px) {
  footer {
    background: #fff;
  }
}

footer .foot_main_nav {
  background: #f2f2f2;
}

footer .foot_main_nav li+li {
  border-top: 1px solid #fff;
}

@media screen and (max-width: 845px) {
  footer .foot_main_nav li a {
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
  }

  footer .foot_main_nav li a::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: url("../img/image_new/arrow-black.svg") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
  }

  footer .foot_main_nav li a:hover {
    background: #004bdc;
    color: #fff;
  }

  footer .foot_main_nav li a:hover::after {
    background: url("../img/image_new/arrow-white.svg") no-repeat center;
    background-size: contain;
  }
}

footer .whiteBox {
  background: #fff;
  margin-bottom: 20px;
}

@media screen and (max-width: 845px) {
  footer .whiteBox {
    margin-bottom: 0;
  }
}

footer .whiteBox .flex {
  display: flex;
  justify-content: space-between;
  max-width: 1230px;
  margin: 0 auto;
  width: 95%;
  align-items: center;
  padding: 20px 0 40px;
}

footer .whiteBox .icn img {
  height: 60px;
  display: inline-block;
}

@media screen and (max-width: 845px) {
  footer .whiteBox .icn img {
    height: 24px;
  }
}

footer .whiteBox .icn img+img {
  margin-left: 20px;
}

footer .whiteBox .text {
  display: flex;
  justify-content: flex-end;
}

footer .whiteBox .text p {
  font-size: 1.2rem;
}

footer .whiteBox .text p:last-child {
  margin-left: 1em;
}

@media screen and (max-width: 845px) {
  footer .whiteBox .text {
    margin-top: 20px;
    justify-content: space-between;
    width: 100%;
  }

  footer .whiteBox .text p {
    width: 48%;
  }

  footer .whiteBox .text p:last-child {
    margin-left: 0;
  }
}

footer .footnav ul {
  text-align: center;
}

footer .footnav ul li {
  font-size: 1.1rem;
  display: inline-block;
  padding: 0 20px;
  position: relative;

  &::after{
    content: '|';
    position: absolute;
    right: 0;
    top:0;
  }

  &:last-of-type::after{
    content: none;
  }
}

footer .footnav ul li a {
  display: block;
}

@media screen and (max-width: 845px) {
  footer .footnav ul {
    display: flex;
    margin: 0 auto;
    padding-top: 20px;
  }

  footer .footnav ul li {
    display: inline-block;
    padding: 0 1em;

    &:first-of-type{
      padding-left: 0;
    }
  }

  footer .footnav ul li a {
    display: block;
    width: fit-content;
    text-decoration: none;
    line-height: 1.6;
    text-align: left;
  }
}

footer copyright {
  font-size: 1.2rem;
  text-align: center;
  display: block;
  margin-top: 20px;
}

@media screen and (max-width: 845px) {
  footer copyright {
    text-align: left;
    margin-top: 20px;
  }
}

footer .bottomBox {
  position: relative;
  width: 100%;
}

footer .bottomBox .retop {
  position: absolute;
  width: 50px;
  height: 40px;
  top: 50%;
  transform: translateY(-50%);
  right: 10vw;
}

@media screen and (max-width: 845px) {
  footer .bottomBox {
    width: 95%;
    margin: 0 auto;
    padding-right: 0%;
    box-sizing: border-box;
    border-top: 1px solid #000;
    position: relative;
  }

  footer .bottomBox .retop {
    width: 10%;
    right: 0;
    aspect-ratio: 1/1;
    background: url("../img/image_new/retop_sp.svg") no-repeat;
    background-size: contain;
  }

  footer .bottomBox .retop img {
    display: none;
  }
}

footer .l-sitemap{
  max-width: 1230px;
  width: 95%;
  margin: 0 auto;
  padding: 40px 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
}
footer .l-sitemap__ttl{
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 8px;
}
footer .l-sitemap__list-wrap{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}
footer .l-sitemap__list__item{
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.7;
}

.text-animation {
  opacity: 0;
}

.text-animation.show {
  opacity: 1;
  display: block;
}

.text-animation.show .text-animation-span {
  display: inline-block;
  overflow: hidden;
}

.text-animation.show span {
  display: inline-block;
  letter-spacing: 0.1em;
  animation: showText .5s backwards;
}

@keyframes showText {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadein,
.fadein_auto {
  opacity: 0;
  transform: translateY(10%);
  transition: .5s;
}

.fadein.on,
.fadein_auto.on {
  opacity: 1;
  transform: translateY(0%);
}

/*=============================
.btn-trigger
=============================*/
.btn-trigger{
  background-color: #004BDC;
  width: 60px;
  min-height: 0;
  position: relative;
}
.btn-trigger-wrap{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

.btn-trigger__bar {
  position: relative;
  width: 24px;
  height: 14px;
  cursor: pointer;
}

.btn-trigger__bar span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  border-radius: 0px;
}

.btn-trigger__bar span {
  display: block;
  transition: all .5s;
  box-sizing: border-box;
}

.btn-trigger__bar span:nth-of-type(1) {
  top: 0;
}

.btn-trigger__bar span:nth-of-type(2) {
  top: 7px;
}

.btn-trigger__bar span:nth-of-type(3) {
  bottom: 0;
}

.btn-trigger__txt{
  color: #fff;
  font-size: 11px;
  
}

/*=============================
#btn03
=============================*/
#btn03.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

#btn03.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
  transform: translateY(10px) rotate(-45deg);
}

#btn03.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
  top: 10px;
}

#btn03.active span:nth-of-type(3) {
  opacity: 0;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #004bdc;
  z-index: 555;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .loadingBox {
  display: block;
}

.loader .loadingBox img {
  display: block;
  margin: 0 auto;
  width: 132.5px;
}

/* 2025/06/20top霑ｽ蜉� */
.top_bnr {
  position: absolute;
  bottom: 5%;
  left: 32px;
  max-width: 20vw;
  z-index: 998;
}

@media screen and (max-width: 845px) {
  .top_bnr {
    bottom: 20%;
    max-width: 40%;
  }
}

.motto {
  width: 90%;
  margin: 40px auto;
}

@media screen and (max-width: 845px) {
  .motto {
    width: 100%;
  }
}

.motto_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 40px auto;
}

@media screen and (max-width: 845px) {
  .motto_wrap {
    flex-direction: column;
  }
}

.motto_btn {
  width: calc(100% / 2);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 845px) {
  .motto_btn {
    width: 90%;
    gap: 24px;
  }
}

.motto_btn li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1em 1em;
  font-weight: bold;
  font-size: 2.0rem;
  letter-spacing: .05em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  border-radius: 60px;
}

.motto_btn_top {
  background-color: #004bdc;
}

.motto_btn_bottom {
  background-color: #006985;
}

.motto_btn .main {
  font-size: 1.9rem;
}

.motto_btn .site {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-top: 0.3em;
}

.motto_btn .site img {
  width: 16px;
  margin-left: 0.4em;
}

.motto_txt-inner {
  width: calc(100% / 2);
}

@media screen and (max-width: 845px) {
  .motto_txt-inner {
    width: 100%;
  }
}

.motto_txt {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  letter-spacing: .1em;
  margin-bottom: 10px;
}

.motto_txt span {
  display: block;
  font-size: 1.8rem;
  letter-spacing: .08em;
}

.motto_youtube {
  max-width: 600px;
  aspect-ratio: 16 / 9;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.motto_youtube iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.slider-wrap {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.slider .slick-slide {
  height: 400px;
  overflow: hidden;
}

.slider .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dots .slick-dots {
  text-align: center;
}

.dots .slick-dots li {
  display: inline-block;
  width: 100px;
  height: 6px;
  margin: 4px;
  background: #eaeaea;
  cursor: pointer;
}

.dots .slick-dots button {
  display: block;
  width: 0%;
  height: 6px;
  margin: 0;
  font-size: 0;
  padding: 0;
  border: 0;
  opacity: 0;
  outline: none;
  background: #0a467d;
  cursor: pointer;
}

.dots .slick-dots .slick-active button {
  background: #0a467d;
  opacity: 1;
}

/* 20250908追加 */
.top_bnr-right {
    position: absolute;
    bottom: 5%;
    right: 32px;
    max-width: 20vw;
    z-index: 998;
}
@media screen and (max-width: 845px) {
  .top_bnr-right {
  bottom:20%;
  max-width:40%;
  }
}