@charset "UTF-8";
/**** 共通カラー ****/
body {
  background-color: #eef0f5;
}

.section {
  position: relative;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  width: 93%;
}
@media screen and (max-width: 768px) {
  .w1200 {
    width: calc(100% - 40px);
  }
}

.w900 {
  max-width: 900px;
  margin: auto;
  width: 93%;
}
@media screen and (max-width: 1200px) {
  .w900 {
    padding: 0 15px;
  }
}

.main_content-wrapper {
  position: relative;
}
.main_content-wrapper:before {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  background-image: url(../img/icon-scale.svg);
  background-position: 0% 0%;
  background-repeat: repeat-y;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .main_content-wrapper:before {
    content: none;
  }
}
.main_content-wrapper:after {
  content: "";
  display: block;
  width: 26px;
  height: 100%;
  background-image: url(../img/icon-scale.svg);
  background-position: 0% 0%;
  background-repeat: repeat-y;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
  .main_content-wrapper:after {
    content: none;
  }
}

.secttl {
  color: #333;
}
.secttl-white {
  color: #fff;
}
.secttl .secttl_sub {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-family: "NotoSansJP-Bold";
  display: block;
  line-height: 1.42;
  margin-top: 4px;
}
@media screen and (max-width: 768px) {
  .secttl .secttl_sub {
    line-height: 1.5;
  }
}
.secttl .secttl_sub:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg);
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .secttl .secttl_sub:before {
    width: 8px;
    height: 8px;
    border-width: 2px;
    margin-right: 3px;
  }
}
.secttl .secttl_main {
  font-size: clamp(4.8rem, 4.9vw, 5rem);
  font-family: "Lato-Bold";
  display: block;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .secttl .secttl_main {
    font-size: clamp(4rem, 4.1vw, 4.2em);
  }
}

.sec_subttl > span {
  color: #fff;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  background-color: #3b66fc;
  line-height: 42px;
  padding: 0 10px;
  margin-top: 16px;
  display: inline-block;
}
@media screen and (max-width: 1000px) {
  .sec_subttl > span {
    font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  }
}
@media screen and (max-width: 768px) {
  .sec_subttl > span {
    font-size: clamp(2rem, 2.1vw, 2.2em);
    line-height: 40px;
  }
}
.sec_subttl > span:first-of-type {
  margin-top: 0;
}
.sec_subttl .narrow {
  letter-spacing: -0.5em;
}

.more-btn {
  background-color: #2e50c9;
  width: 175px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #fff !important;
  font-family: "NotoSansJP-Bold";
  border-radius: 5px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .more-btn {
    width: 136px;
    height: 40px;
    padding-left: 10px;
    font-family: "NotoSansJP-Medium";
  }
}
.more-btn:after {
  content: "";
  display: block;
  background-color: #fff;
  width: 1px;
  height: 20px;
  right: 56px;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .more-btn:after {
    right: 36px;
  }
}
.more-btn:hover {
  background-color: #3b66fc;
  color: #fff !important;
}
.more-btn:hover .deco:before, .more-btn:hover .deco:after {
  transform: translateX(20px);
}
.more-btn .deco {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  display: block;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .more-btn .deco {
    right: 10px;
  }
}
.more-btn .deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.more-btn .deco:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -20px;
  transition: 0.3s;
}
.more-btn-white {
  background-color: #fff;
  color: #333 !important;
}
.more-btn-white:after {
  background-color: #333;
}
.more-btn-white .deco:before {
  background-image: url(../img/icon-arrow-black.svg);
}
.more-btn-white:hover:after {
  background-color: #fff;
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  -webkit-backdrop-filter: blur(30px) brightness(0.7);
          backdrop-filter: blur(30px) brightness(0.7);
  background-color: rgba(1, 3, 26, 0.5);
}
@media screen and (max-width: 768px) {
  .header {
    background-color: rgba(1, 3, 26, 0.8);
  }
}
.home .header {
  transition: 0.3s;
  transition-delay: 1.8s;
  opacity: 0;
  pointer-events: none;
}
.loaded .home .header {
  opacity: 1;
  pointer-events: auto;
}
.is-transition-disabled .home .header {
  transition: 0s;
  transition-delay: 0s;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    height: 60px;
  }
}
.header .header-logo {
  width: 205px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    width: 154px;
    margin-right: 0;
  }
}
.header .header-logo img {
  display: block;
  width: 100%;
}
.header .header-hmb {
  width: 40px;
  height: 100%;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header-hmb {
    display: block;
  }
}
.header .header-hmb > span {
  display: block;
  background-color: #3b66fc;
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.3s;
}
.header .header-hmb > span:first-of-type {
  transform: translateY(-4px);
}
.is_hmb_open .header .header-hmb > span:first-of-type {
  transform: rotate(11deg);
}
.header .header-hmb > span:last-of-type {
  transform: translateY(4px);
}
.is_hmb_open .header .header-hmb > span:last-of-type {
  transform: rotate(-11deg);
}
.header .nav-wrap {
  width: 600px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header .nav-wrap {
    position: absolute;
    top: 60px;
    left: 120%;
    width: 100%;
    height: calc(100dvh - 60px);
    background-color: #01031a;
    transition: 0.3s;
  }
  .is_hmb_open .header .nav-wrap {
    left: 0;
  }
}
.header .nav-wrap .nav-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .nav-wrap .nav-pc {
    display: none;
  }
}
.header .nav-wrap .nav-pc li > a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  transition: all 0.3s;
  color: #fff;
}
.header .nav-wrap .nav-pc li > a:hover {
  color: #3b66fc;
}
.header .nav-wrap .nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .nav-wrap .nav-sp {
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .header .nav-wrap .nav-sp > li {
    width: 100%;
    border-top: 1px solid #444444;
  }
  .header .nav-wrap .nav-sp > li:last-of-type {
    border-bottom: 1px solid #444444;
  }
  .header .nav-wrap .nav-sp > li > a {
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    font-family: "NotoSansJP-Medium";
    position: relative;
  }
  .header .nav-wrap .nav-sp > li > a:after {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background-image: url(../img/icon-arrow-white.svg);
    background-position: 50% 50%;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
.header .header-contact-pc_btn {
  min-width: 136px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2e50c9;
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  transition: all 0.3s;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .header .header-contact-pc_btn {
    display: none;
  }
}
.header .header-contact-pc_btn:hover {
  background-color: #3b66fc;
}

.home .main {
  background-color: #01031a;
}
.home .section-parallax {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  background-image: url(../img/section-parallax01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  .home .section-parallax {
    background-image: url(../img/section-parallax-sp01.webp);
  }
}
.home .section-parallax.is_adjust {
  background-size: auto 100vh;
}
.home .section-parallax.is_adjust .parallax-list li {
  background-size: auto 100vh;
}
.home .section-parallax.is_adjust .parallax-list li:after {
  background-size: auto 100vh;
}
.home .section-parallax.is_adjust .parallax-list li > span:before {
  background-size: auto 100vh;
}
.home .section-parallax:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100vh 100vw 0 0;
  border-color: #01031a transparent transparent transparent;
  z-index: 100;
  transition: 0.8s ease-out;
}
.loaded .home .section-parallax:before {
  top: -100vh;
  left: -100vw;
}
.is-transition-disabled .home .section-parallax:before {
  transition: 0s;
}
.home .section-parallax:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 100vh 100vw 0 0;
  border-color: transparent #01031a #01031a #01031a;
  z-index: 100;
  transition: 0.8s ease-out;
}
.loaded .home .section-parallax:after {
  bottom: -100vh;
  right: -100vw;
}
.is-transition-disabled .home .section-parallax:after {
  transition: 0s;
}
.home .section-parallax .flash {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  opacity: 0;
}
.loaded .home .section-parallax .flash {
  animation: flash 0.3s ease-out 0.025s;
}
.home .section-parallax .parallax-list li {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li {
    display: block;
  }
}
.home .section-parallax .parallax-list li:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-position: 50% 50%;
  background-size: 100vw auto;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.1s;
}
.loaded .home .section-parallax .parallax-list li:after {
  opacity: 1;
}
.is-transition-disabled .home .section-parallax .parallax-list li:after {
  transition: 0s !important;
  transition-delay: 0s !important;
}
.home .section-parallax .parallax-list li > span {
  display: block;
  width: 25vw;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span {
    width: 100vw;
    height: 50vh;
  }
}
.home .section-parallax .parallax-list li > span:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -100%;
  background-repeat: no-repeat;
  background-size: 100vw auto;
  transition: 0.6s ease-out;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span:before {
    top: -100%;
    left: 0;
  }
}
.loaded .home .section-parallax .parallax-list li > span:before {
  left: 0;
}
@media screen and (max-width: 768px) {
  .loaded .home .section-parallax .parallax-list li > span:before {
    top: 0;
  }
}
.is-transition-disabled .home .section-parallax .parallax-list li > span:before {
  transition: 0s !important;
  transition-delay: 0s !important;
}
.home .section-parallax .parallax-list li > span:first-of-type:before {
  background-position: calc(50% + 37.5vw) 50%;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span:first-of-type:before {
    background-position: 50% calc(50% + 25vh);
  }
}
.home .section-parallax .parallax-list li > span:nth-of-type(2):before {
  background-position: calc(50% + 12.5vw) 50%;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span:nth-of-type(2):before {
    background-position: 50% calc(50% - 25vh);
  }
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span:nth-of-type(3) {
    display: none;
  }
}
.home .section-parallax .parallax-list li > span:nth-of-type(3):before {
  background-position: calc(50% - 12.5vw) 50%;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li > span:last-of-type {
    display: none;
  }
}
.home .section-parallax .parallax-list li > span:last-of-type:before {
  background-position: calc(50% - 37.5vw) 50%;
}
.home .section-parallax .parallax-list li:first-of-type:after {
  transition-delay: 2.4s;
  background-image: url(../img/section-parallax02.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:first-of-type:after {
    background-image: url(../img/section-parallax-sp02.webp);
  }
}
.home .section-parallax .parallax-list li:first-of-type > span:before {
  background-image: url(../img/section-parallax02.webp);
  transition-property: opacity, left;
  transition-delay: 16.6s, 1.8s;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:first-of-type > span:before {
    transition-property: opacity, top;
    background-image: url(../img/section-parallax-sp02.webp);
  }
}
.home .section-parallax .parallax-list li:nth-of-type(2):after {
  transition-delay: 7.1s;
  background-image: url(../img/section-parallax03.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:nth-of-type(2):after {
    transition-property: opacity, top;
    background-image: url(../img/section-parallax-sp03.webp);
  }
}
.home .section-parallax .parallax-list li:nth-of-type(2) > span:before {
  background-image: url(../img/section-parallax03.webp);
  transition-property: opacity, left;
  transition-delay: 16.6s, 6.5s;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:nth-of-type(2) > span:before {
    transition-property: opacity, top;
    background-image: url(../img/section-parallax-sp03.webp);
  }
}
.home .section-parallax .parallax-list li:nth-of-type(3):after {
  transition-delay: 11.8s;
  background-image: url(../img/section-parallax04.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:nth-of-type(3):after {
    transition-property: opacity, top;
    background-image: url(../img/section-parallax-sp04.webp);
  }
}
.home .section-parallax .parallax-list li:nth-of-type(3) > span:before {
  background-image: url(../img/section-parallax04.webp);
  transition-property: opacity, left;
  transition-delay: 16.6s, 11.2s;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:nth-of-type(3) > span:before {
    transition-property: opacity, top;
    background-image: url(../img/section-parallax-sp04.webp);
  }
}
.home .section-parallax .parallax-list li:last-of-type:after {
  transition-delay: 16.5s;
  background-image: url(../img/section-parallax05.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:last-of-type:after {
    background-image: url(../img/section-parallax-sp05.webp);
  }
}
.home .section-parallax .parallax-list li:last-of-type > span:before {
  background-image: url(../img/section-parallax05.webp);
  transition-delay: 15.9s;
  transition-property: left;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .home .section-parallax .parallax-list li:last-of-type > span:before {
    transition-property: top;
    background-image: url(../img/section-parallax-sp05.webp);
  }
}
.home .mv-ttl_text {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  margin-top: 16px;
  color: #333;
  display: inline-block;
  padding-left: 2px;
  padding-right: 2px;
  background-color: #fff;
  transition: 0.8s ease-out;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .home .mv-ttl_text {
    margin-top: 11px;
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.43;
    padding: 0;
  }
}
.loaded .home .mv-ttl_text {
  color: #fff;
  background-color: transparent;
}
.is-transition-disabled .home .mv-ttl_text {
  transition: 0s;
}
.home .section-mv {
  position: relative;
  height: 100vh;
}
.home .section-mv .mv-ttl_area {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.home .section-mv .mv-ttl {
  font-family: "NotoSansJP-Bold";
  line-height: 1.5;
  font-size: clamp(5.5rem, 6vw, 6.5rem);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl {
    font-size: clamp(3.6rem, 3.7vw, 3.8rem);
  }
}
.home .section-mv .mv-news_link {
  background-color: rgba(1, 3, 26, 0.5);
  display: block;
  position: absolute;
  bottom: 40px;
  left: 0;
  border-radius: 10px;
  width: 100%;
  transition: 0.3s ease-out;
  transition-delay: 1.8s;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_link {
    width: 100vw;
    bottom: 0;
    border-radius: 0px;
    left: -20px;
  }
}
.loaded .home .section-mv .mv-news_link {
  opacity: 1;
  pointer-events: auto;
}
.is-transition-disabled .home .section-mv .mv-news_link {
  transition: 0.3s;
  transition-delay: 0s;
}
.home .section-mv .mv-news_link:hover {
  background-color: rgba(1, 3, 26, 0.8);
}
.home .section-mv .mv-news_box {
  width: 100%;
  color: #fff;
  display: flex;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
.home .section-mv .mv-news_box > dt {
  width: 158px;
  line-height: 70px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dt {
    width: 109px;
    line-height: 60px;
  }
}
.home .section-mv .mv-news_box > dt:after {
  content: "";
  display: block;
  background-color: #d3dae6;
  width: 1px;
  height: 50px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dt:after {
    height: 40px;
  }
}
.home .section-mv .mv-news_box > dd {
  width: calc(100% - 158px);
  padding-left: 48px;
  padding-right: 80px;
  box-sizing: border-box;
  line-height: 70px;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dd {
    width: calc(100% - 109px);
    line-height: 60px;
    padding-left: 20px;
    padding-right: 40px;
  }
}
.home .section-mv .mv-news_box > dd:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon-arrow-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 40px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dd:after {
    right: 20px;
  }
}
.home .section-intro .intro-subttl {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-subttl {
    margin-top: 31px;
  }
}
.home .section-intro .intro-description {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  width: 450px;
  margin-top: 20px;
  max-width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-description {
    line-height: 2.06;
    width: 100%;
    max-width: 100%;
    margin-top: 35px;
  }
}
.home .section-intro .intro-description .br-md {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-intro .intro-description .br-md {
    display: block;
  }
}
.home .section-intro .intro-btn_wrap {
  margin-top: 36px;
}
.home .section-intro .service_content-wrapper {
  padding-top: 80px;
  background: linear-gradient(rgba(1, 3, 26, 0.5) 0%, #030525 100%);
  position: relative;
}
.home .section-intro .service_content-wrapper .w1200 {
  border-left: 1px solid rgba(188, 193, 204, 0.3);
  border-right: 1px solid rgba(188, 193, 204, 0.3);
}
.home .section-intro .service_content-wrapper .w1200:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.home .section-intro .service_content-wrapper .w1200:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-intro .service_content-wrapper .service-text_area {
  position: relative;
  padding-top: 148px;
  padding-bottom: 115px;
}
@media screen and (max-width: 768px) {
  .home .section-intro .service_content-wrapper .service-text_area {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.home .section-intro .service_content-wrapper .service-text_area:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-intro .service_content-wrapper .service-text_area:before {
    content: none;
  }
}
.home .section-intro .service_content-wrapper .service-deco {
  width: 50%;
  aspect-ratio: 60/53;
  position: absolute;
  top: calc(50% + 16.5px);
  left: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .home .section-intro .service_content-wrapper .service-deco {
    width: 100%;
    margin-top: 40px;
    position: static;
    transform: translateY(0);
    aspect-ratio: 335/297;
  }
}
.home .section-intro .service_content-wrapper .service-deco > span {
  position: absolute;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  aspect-ratio: 3/2;
}
.home .section-intro .service_content-wrapper .service-deco > span:first-of-type {
  width: 50%;
  background-image: url(../img/service-deco01.webp);
  top: 0;
  right: 0;
}
.home .section-intro .service_content-wrapper .service-deco > span:nth-of-type(2) {
  width: 37.5%;
  background-image: url(../img/service-deco03.webp);
  bottom: 0;
  right: 6%;
}
.home .section-intro .service_content-wrapper .service-deco > span:last-of-type {
  width: 75%;
  background-image: url(../img/service-deco02.webp);
  top: 26.4%;
  left: 0;
}
.home .section-intro .feature_content-wrapper {
  background: linear-gradient(#01031a 0%, #1e337e 100%);
  position: relative;
}
.home .section-intro .feature_content-wrapper:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/feature-content-wrapper.webp);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: overlay;
}
.home .section-intro .feature_content-wrapper .w1200 {
  border-left: 1px solid rgba(188, 193, 204, 0.3);
  border-right: 1px solid rgba(188, 193, 204, 0.3);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .w1200 {
    padding-top: 60px;
  }
}
.home .section-intro .feature_content-wrapper .w1200:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .w1200:before {
    top: 60px;
  }
}
.home .section-intro .feature_content-wrapper .w1200:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-intro .feature_content-wrapper .feature-text_area {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-text_area {
    padding-top: 70px;
  }
}
.home .section-intro .feature_content-wrapper .feature-text_area:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-text_area:before {
    content: none;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box {
  width: 50%;
  aspect-ratio: 60/50;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box {
    width: 100%;
    position: static;
    transform: translateY(0);
    margin-top: 40px;
    aspect-ratio: 335/280;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li {
  width: 46.6666666667%;
  aspect-ratio: 2/3;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li {
    width: 46.5671641791%;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li:first-of-type {
  margin-top: auto;
}
.home .section-intro .feature_content-wrapper .feature-link_box li:first-of-type > a:before {
  background-image: url(../img/feature-link-box01.webp);
}
.home .section-intro .feature_content-wrapper .feature-link_box li:last-of-type > a:before {
  background-image: url(../img/feature-link-box02.webp);
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: end;
  padding: 16px 10px;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li > a {
    padding: 10px 6px;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 3, 26, 0.2);
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:hover {
  box-shadow: rgb(59, 102, 252) 0px 0px 1px 1px;
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:hover:before {
  transform: scale(1.1);
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:hover:after {
  opacity: 1;
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a:hover .deco:before, .home .section-intro .feature_content-wrapper .feature-link_box li > a:hover .deco:after {
  transform: translateX(20px);
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li > a:hover .deco:before, .home .section-intro .feature_content-wrapper .feature-link_box li > a:hover .deco:after {
    transform: translateX(12px);
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a .text {
  position: relative;
  font-family: "NotoSansJP-Medium";
  color: #fff;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li > a .text {
    font-size: clamp(1rem, 1vw, 1.2rem);
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a .deco {
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  margin-left: 15px;
  margin-bottom: 3px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li > a .deco {
    width: 9px;
    height: 9px;
    margin-left: 5px;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a .deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: 0;
  transition: 0.3s;
}
.home .section-intro .feature_content-wrapper .feature-link_box li > a .deco:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-white.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 1px;
  left: -20px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box li > a .deco:after {
    left: -12px;
  }
}
.home .section-intro .feature_content-wrapper .feature-link_box .br-lg {
  display: none;
}
@media screen and (max-width: 1000px) {
  .home .section-intro .feature_content-wrapper .feature-link_box .br-lg {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-link_box .br-lg {
    display: none;
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation {
  background-color: rgba(59, 102, 252, 0.2);
  position: relative;
}
.home .section-intro .feature_content-wrapper .feature-consultation:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.3);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_ttl {
  text-align: center;
  color: #fff;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  line-height: 1.5;
  border-bottom: 1px solid rgba(188, 193, 204, 0.3);
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_ttl {
    padding-top: 26px;
    padding-bottom: 26px;
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box {
  display: flex;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box {
    display: block;
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li {
  width: 33.3333333333%;
  padding: 77px min(3.3333333333%, 38px);
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li {
    width: 100%;
    padding: 40px 20px 38px;
    border-bottom: 1px solid rgba(188, 193, 204, 0.3);
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:first-of-type .feature-consultation_deco {
  background-image: url(../img/icon-menu.svg);
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:nth-of-type(2) {
  border-left: 1px solid rgba(188, 193, 204, 0.3);
  border-right: 1px solid rgba(188, 193, 204, 0.3);
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:nth-of-type(2) {
    border-left: none;
    border-right: none;
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:nth-of-type(2) .feature-consultation_deco {
  background-image: url(../img/icon-clock.svg);
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:nth-of-type(2) .feature-consultation_deco:before {
  top: 10px;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:last-of-type {
    border-bottom: none;
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_box > li:last-of-type .feature-consultation_deco {
  background-image: url(../img/icon-gear.svg);
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_deco {
  display: block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(59, 102, 252, 0.2);
  margin: 0 auto 40px;
  position: relative;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_deco {
    margin-bottom: 23px;
  }
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(59, 102, 252, 0.2);
  position: absolute;
  top: 10px;
  left: 10px;
  animation: fuwafuwa 5s infinite ease-out both;
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_text {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
.home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 7px;
}
@media screen and (max-width: 1200px) {
  .home .section-intro .feature_content-wrapper .feature-consultation .feature-consultation_description .br-xl {
    display: none;
  }
}
.home .section-photo {
  background-color: #eef0f5;
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.home .section-photo:before {
  content: "";
  display: block;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  border-right: 1px solid rgba(188, 193, 204, 0.5);
}
@media screen and (max-width: 768px) {
  .home .section-photo:before {
    width: calc(100% - 40px);
  }
}
.home .section-photo .photo-box {
  width: 4000px;
  display: flex;
  z-index: 101;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box {
    width: 2168px;
  }
}
.home .section-photo .photo-box > div {
  width: 50%;
  display: flex;
  animation: infinity-scroll-left 60s infinite linear both;
}
.home .section-photo .photo-box > div > span {
  display: block;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.home .section-photo .photo-box > div > span:first-of-type {
  width: 200px;
  height: 133px;
  background-image: url(../img/photo-box01.webp);
  margin-top: 127px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:first-of-type {
    width: 109px;
    height: 73px;
    margin-top: 70px;
  }
}
.home .section-photo .photo-box > div > span:nth-of-type(2) {
  width: 300px;
  height: 200px;
  background-image: url(../img/photo-box02.webp);
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:nth-of-type(2) {
    width: 163px;
    height: 109px;
    margin-right: 20px;
  }
}
.home .section-photo .photo-box > div > span:nth-of-type(3) {
  width: 300px;
  height: 200px;
  background-image: url(../img/photo-box03.webp);
  margin-right: 40px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:nth-of-type(3) {
    width: 163px;
    height: 109px;
    margin-right: 20px;
    margin-top: 54px;
  }
}
.home .section-photo .photo-box > div > span:nth-of-type(4) {
  width: 200px;
  height: 133px;
  background-image: url(../img/photo-box04.webp);
  margin-right: 40px;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:nth-of-type(4) {
    width: 109px;
    height: 73px;
    margin-right: 20px;
    margin-top: 18px;
  }
}
.home .section-photo .photo-box > div > span:nth-of-type(5) {
  width: 200px;
  height: 133px;
  background-image: url(../img/photo-box05.webp);
  margin-top: 133px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:nth-of-type(5) {
    width: 109px;
    height: 73px;
    margin-top: 72px;
  }
}
.home .section-photo .photo-box > div > span:nth-of-type(6) {
  width: 300px;
  height: 200px;
  background-image: url(../img/photo-box06.webp);
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:nth-of-type(6) {
    width: 162px;
    height: 109px;
    margin-right: 20px;
  }
}
.home .section-photo .photo-box > div > span:last-of-type {
  width: 300px;
  height: 200px;
  background-image: url(../img/photo-box07.webp);
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .home .section-photo .photo-box > div > span:last-of-type {
    width: 163px;
    height: 109px;
    margin-top: 54px;
  }
}
.home .section-about {
  background-color: #eef0f5;
}
.home .section-about .about-inner_img {
  display: block;
  width: 100%;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-inner_img {
    height: 188px;
    -o-object-fit: cover;
       object-fit: cover;
    box-sizing: content-box;
  }
}
.home .section-about .about-inner {
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  border-right: 1px solid rgba(188, 193, 204, 0.5);
  position: relative;
}
.home .section-about .about-inner:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-about .about-container {
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-container {
    display: block;
    padding-top: 70px;
  }
}
.home .section-about .about-container:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-about .about-text_area {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-text_area {
    width: 100%;
  }
}
.home .section-about .about-subttl {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-subttl {
    margin-top: 32px;
  }
}
.home .section-about .about-description {
  font-family: "NotoSansJP-Regular";
  color: #333;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  width: 450px;
  margin-top: 20px;
  max-width: calc(100% - 40px);
}
@media screen and (max-width: 768px) {
  .home .section-about .about-description {
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
  }
}
.home .section-about .about-nav_box {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-nav_box {
    width: 100%;
    margin-top: 40px;
    border-top: 1px solid rgba(188, 193, 204, 0.5);
    border-bottom: 1px solid rgba(188, 193, 204, 0.5);
  }
}
.home .section-about .about-nav_box:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-nav_box:before {
    content: none;
  }
}
.home .section-about .about-nav_box > li:last-of-type > a {
  border-bottom: none;
}
.home .section-about .about-nav_box > li > a {
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: min(6.6666666667%, 40px);
  padding-right: min(6.6666666667%, 40px);
  height: 133px;
  transition: 0.3s;
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
}
@media screen and (max-width: 768px) {
  .home .section-about .about-nav_box > li > a {
    height: 78px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .section-about .about-nav_box > li > a:hover {
  color: #3b66fc;
  box-shadow: 0px 0px 1px 1px #3b66fc;
}
.home .section-about .about-nav_box > li > a:hover .deco:before, .home .section-about .about-nav_box > li > a:hover .deco:after {
  transform: translateX(20px);
}
.home .section-about .about-nav_ttl {
  font-family: "Lato-Regular";
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
}
@media screen and (max-width: 768px) {
  .home .section-about .about-nav_ttl {
    font-size: clamp(2.2rem, 2.3vw, 2.4rem);
  }
}
.home .section-about .about-nav_sub {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  line-height: 1.42;
  display: flex;
  align-items: center;
}
.home .section-about .about-nav_sub .deco {
  width: 16px;
  height: 16px;
  display: block;
  overflow: hidden;
  margin-left: 9px;
  margin-bottom: 3px;
  position: relative;
}
.home .section-about .about-nav_sub .deco:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-black.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.home .section-about .about-nav_sub .deco:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/icon-arrow-blue.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: -20px;
  transition: 0.3s;
}
.home .section-about .about-nav_sub .br-lg {
  display: none;
}
@media screen and (max-width: 1000px) {
  .home .section-about .about-nav_sub .br-lg {
    display: block;
  }
}
.home .section-about .about-btn_wrap {
  margin-top: 36px;
}
.home .section-about .about-group_container {
  padding-top: 80px;
  padding-bottom: 80px;
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  border-right: 1px solid rgba(188, 193, 204, 0.5);
}
.home .section-about .about-group_inner {
  background-color: rgba(1, 3, 26, 0.05);
  position: relative;
}
.home .section-about .about-group_inner:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-about .about-group_inner:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-about .about-group_ttl {
  text-align: center;
  color: #333;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  line-height: 1.5;
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
  padding-top: 36px;
  padding-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_ttl {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    padding-top: 36px;
    padding-bottom: 36px;
  }
}
.home .section-about .about-group_box {
  display: flex;
  color: #333;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_box {
    display: block;
  }
}
.home .section-about .about-group_box > li {
  width: 50%;
  border-right: 1px solid rgba(188, 193, 204, 0.5);
  padding: 60px 64px 64px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_box > li {
    width: 100%;
    padding: 21px 20px;
    border-right: none;
  }
}
.home .section-about .about-group_box > li:last-of-type {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_box > li:last-of-type {
    border-top: 1px solid rgba(188, 193, 204, 0.5);
  }
}
.home .section-about .about-group_link {
  aspect-ratio: 470/313;
  transition: 0.3s;
  margin: 0 auto 13px;
  display: block;
  overflow: hidden;
}
.home .section-about .about-group_link:hover {
  box-shadow: 0px 0px 2px 2px #3b66fc;
}
.home .section-about .about-group_link:hover > img {
  transform: scale(1.06);
}
.home .section-about .about-group_link > img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s;
}
.home .section-about .about-group_text {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_text {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 1.43;
  }
}
.home .section-about .about-group_description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_description {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.42;
    margin-top: 5px;
    margin-bottom: 9px;
  }
}
.home .section-about .about-group_description .br-lg {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_description .br-lg {
    display: block;
  }
}
.home .section-about .about-group_address {
  background-color: #eef0f5;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  line-height: 1.8;
  padding: 4px 60px 4px 10px;
  position: relative;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_address {
    padding: 7px 44px 7px 10px;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.5;
  }
}
.home .section-about .about-group_address:after {
  content: "";
  display: block;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  background-color: #3b66fc;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background-image: url(../img/icon-address.webp);
  background-position: 50% 50%;
  background-size: 30px auto;
  background-repeat: no-repeat;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_address:after {
    width: 29px;
    height: 29px;
    background-size: 21px auto;
  }
}
.home .section-about .about-group_address:hover:after {
  background-color: #2e50c9;
}
.home .section-about .about-group_address .about-group_br {
  display: none;
}
@media screen and (max-width: 1060px) {
  .home .section-about .about-group_address .about-group_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-about .about-group_address .about-group_br {
    display: none;
  }
}
.home .section-recruit {
  background-color: rgba(1, 3, 26, 0.6);
}
.home .section-recruit .w1200 {
  position: relative;
  padding-top: 80px;
  padding-bottom: 80px;
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  border-right: 1px solid rgba(188, 193, 204, 0.5);
}
.home .section-recruit .w1200:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.home .section-recruit .w1200:after {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .home .section-recruit .w1200:after {
    content: none;
  }
}
.home .section-recruit .recruit-text_area {
  position: relative;
  padding-top: 68px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-text_area {
    padding-bottom: 0;
  }
}
.home .section-recruit .recruit-text_area:before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background-color: rgba(188, 193, 204, 0.5);
  position: absolute;
  top: 0;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-text_area:before {
    content: none;
  }
}
.home .section-recruit .recruit-subttl {
  margin-top: 38px;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-subttl {
    margin-top: 32px;
  }
}
.home .section-recruit .recruit-description {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  width: 450px;
  margin-top: 20px;
  max-width: calc(50% - 40px);
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-description {
    margin-top: 36px;
    width: 100%;
    max-width: 100%;
  }
}
.home .section-recruit .recruit-btn_wrap {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-btn_wrap {
    margin-top: 37px;
  }
}
.home .section-recruit .recruit-deco {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco {
    width: 100%;
    aspect-ratio: 335/403;
    position: relative;
    margin-top: 40px;
    top: auto;
    left: auto;
  }
}
.home .section-recruit .recruit-deco_inner {
  width: 73.3333333333%;
  aspect-ratio: 11/24;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  animation: infinity-scroll-bottom 60s infinite linear both;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco_inner {
    width: 88.3582089552%;
    aspect-ratio: 296/645;
  }
}
.home .section-recruit .recruit-deco_inner > span {
  width: 100%;
  aspect-ratio: 220/147;
  display: block;
  margin-bottom: 40px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}
.home .section-recruit .recruit-deco_inner > span:first-of-type {
  background-image: url(../img/recruit-deco-inner01.webp);
}
.home .section-recruit .recruit-deco_inner > span:nth-of-type(2) {
  background-image: url(../img/recruit-deco-inner02.webp);
}
.home .section-recruit .recruit-deco_inner > span:nth-of-type(3) {
  background-image: url(../img/recruit-deco-inner03.webp);
}

footer {
  background-color: #01031a;
  position: relative;
}
footer .footer-contact_box {
  border-top: 1px solid rgba(188, 193, 204, 0.5);
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
  background-color: #050c5f;
}
footer .footer-contact_link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 314px;
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  border-right: 1px solid rgba(188, 193, 204, 0.5);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_link {
    height: auto;
    padding-top: 60px;
    padding-bottom: 80px;
  }
}
footer .footer-contact_link:before {
  content: "";
  display: block;
  background-color: #3b66fc;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: 0.4s;
}
footer .footer-contact_link:hover:before {
  opacity: 1;
  width: 1200px;
  height: 1200px;
}
footer .footer-contact_ttl {
  font-family: "Lato-Bold";
  font-size: clamp(7rem, 7.5vw, 8rem);
  line-height: 1.2;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_ttl {
    font-size: clamp(4rem, 4.1vw, 4.2rem);
  }
}
footer .footer-contact_text {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  padding-top: 18px;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_text {
    line-height: 1.8;
    padding-top: 8px;
  }
}
footer .footer-contact_text .br-md {
  display: none;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_text .br-md {
    display: block;
  }
}
footer .footer-bottom_wrap {
  padding-top: 100px;
  padding-bottom: 36px;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom_wrap {
    padding-top: 40px;
    padding-bottom: 18px;
  }
}
footer .footer-bottom_inner {
  display: flex;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom_inner {
    display: block;
  }
}
footer .footer-info {
  width: 260px;
}
@media screen and (max-width: 768px) {
  footer .footer-info {
    width: 100%;
  }
}
footer .footer-logo {
  display: block;
  width: 204px;
}
@media screen and (max-width: 768px) {
  footer .footer-logo {
    width: 154px;
  }
}
footer .footer-address {
  margin-top: 20px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  footer .footer-address {
    margin-top: 16px;
    line-height: 1.8;
  }
}
footer .footer-tel {
  margin-top: 9px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  footer .footer-tel {
    margin-top: 8px;
    line-height: 1.8;
  }
}
footer .footer-menu {
  width: calc(100% - 260px);
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  footer .footer-menu {
    width: 100%;
  }
}
footer .footer-menu_box {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  footer .footer-menu_box {
    display: none;
  }
}
footer .footer-menu_box > li {
  margin-right: 40px;
}
@media screen and (max-width: 1000px) {
  footer .footer-menu_box > li {
    margin-right: 20px;
  }
}
footer .footer-menu_box > li:last-of-type {
  margin-right: 0;
}
footer .footer-menu_box > li > a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
footer .footer-sub_menu {
  margin-top: auto;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  footer .footer-sub_menu {
    display: block;
    margin-top: 32px;
  }
}
footer .footer-sub_menu a {
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.2rem);
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer-sub_menu a {
    display: block;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    margin-right: 0;
    line-height: 1.42;
  }
}
footer .footer-sub_menu small {
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  footer .footer-sub_menu small {
    margin-top: 8px;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.42;
    display: block;
  }
}

.page .top_visual .w1200 {
  position: relative;
  height: 100%;
}
.page .bread-area {
  position: absolute;
  left: 0;
  bottom: 17px;
  color: #fff;
  font-size: 1.2rem;
}
.page .bread-area a {
  color: #fff;
}
.page.service .top_visual {
  background-image: url(../img/service/top_visual_service.webp);
}
.page.company .top_visual {
  background-image: url(../img/company/top_visual_company.webp);
}
.page.recruit .top_visual {
  background-image: url(../img/recruit/top_visual_recruit.webp);
}
@media screen and (max-width: 768px) {
  .page.recruit .top_visual {
    background-image: url(../img/recruit/top_visual_recruit-sp.webp);
  }
}
.page.contact .top_visual {
  background-image: url(../img/contact/top_visual_contact.webp);
}
.page.news .top_visual {
  background-image: url(../img/news/top_visual_news.webp);
}
.page.policy .top_visual {
  background-image: url(../img/news/top_visual_news.webp);
}
.page.error .top_visual {
  background-image: url(../img/news/top_visual_news.webp);
}
.page .top_visual {
  width: 100vw;
  height: 30.1388888889vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .top_visual {
    height: 80vw;
  }
}
.page .top_visual .page_tittle {
  font-size: clamp(4.8rem, 6.3194444444vw, 9.1rem);
  color: #fff;
  font-family: "Lato-Bold";
  position: absolute;
  top: 12.2916666667vw;
  left: 0;
  line-height: 1.19;
}
@media screen and (max-width: 768px) {
  .page .top_visual .page_tittle {
    font-size: clamp(4rem, 4.1vw, 4.2rem);
    top: 33.3333333333vw;
  }
}
.page .top_visual .page_tittle span {
  display: block;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-family: "NotoSansJP-Bold";
  line-height: 1.42;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .top_visual .page_tittle span {
    margin-top: 7px;
    line-height: 1.5;
  }
}
.page .top_visual .page_tittle span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg);
  margin-right: 6px;
}
@media screen and (max-width: 768px) {
  .page .top_visual .page_tittle span::before {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }
}
.page h2 {
  font-family: "NotoSansJP-Bold";
  color: #333;
  line-height: 1.5;
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page h2 {
    margin-bottom: 37px;
    padding-top: 70px;
  }
}
.page h2.display_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .page h2.display_sp {
    display: block;
  }
}
.page h2.display_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .page h2.display_pc {
    display: none;
  }
}
.page h2 .section_tittle {
  display: block;
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
}
@media screen and (max-width: 768px) {
  .page h2 .section_tittle {
    font-size: clamp(2rem, 2.1vw, 2.2rem);
  }
}
.page h2 .tittle_sub {
  font-family: "Lato-Bold";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  color: #3b66fc;
  margin-top: 10px;
  display: block;
  line-height: 1.21;
}
@media screen and (max-width: 768px) {
  .page h2 .tittle_sub {
    font-size: 1.2rem;
    margin-top: 3px;
    line-height: 1.5;
  }
}
.page h2 .tittle_sub::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg);
  margin-right: 6px;
}
.page .container {
  border-top: solid 1px #d4d8e0;
}
.page .page_box {
  padding-top: 70px;
  padding-bottom: 76px;
}

.border_item {
  padding-top: 80px;
  border-right: solid 1px #d4d8e0;
  border-left: solid 1px #d4d8e0;
  position: relative;
}
.border_item::before {
  display: block;
  content: "";
  background-color: #d4d8e0;
  position: absolute;
  top: 80px;
  left: 50%;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
}

.company.page .greeting_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company.page .greeting_wrap {
    flex-direction: column-reverse;
    padding-top: 0;
  }
}
.company.page .greeting_box {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .company.page .greeting_box {
    width: 100%;
  }
}
.company.page .greeting_box .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .company.page .greeting_box .description {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
.company.page .greeting_box .note {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #707070;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .company.page .greeting_box .note {
    font-size: 1.4rem;
  }
}
.company.page .president {
  display: flex;
  flex-direction: column;
  width: 46%;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  text-align: right;
  color: #3b66fc;
}
@media screen and (max-width: 768px) {
  .company.page .president {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company.page .president {
    width: 100%;
    margin-bottom: 33px;
  }
}
.company.page .president::before {
  display: block;
  content: "";
  background-image: url("../img/company/president.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 46vw;
  max-height: 373px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .company.page .president::before {
    height: 58.9vw;
    max-height: 221px;
  }
}
.company.page .mission_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company.page .mission_wrap {
    flex-direction: column-reverse;
    padding-top: 0;
    padding-bottom: 52px;
  }
}
.company.page .mission_box {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .company.page .mission_box {
    width: 100%;
  }
}
.company.page .mission_box .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .company.page .mission_box .description {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
.company.page .mission_box .note {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #707070;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .company.page .mission_box .note {
    font-size: 1.4rem;
  }
}
.company.page .office {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .company.page .office {
    width: 100%;
  }
}
.company.page .office::before {
  display: block;
  content: "";
  background-image: url("../img/company/office01.webp");
  background-size: cover;
  background-repeat: no-repeat;
  height: 46vw;
  max-height: 373px;
  margin-bottom: 13px;
}
@media screen and (max-width: 768px) {
  .company.page .office::before {
    height: 58.9vw;
    max-height: 221px;
    margin-bottom: 20px;
  }
}
.company.page .blue_back {
  font-family: "NotoSansJP-Medium";
  line-height: 2;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #fff;
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .company.page .blue_back {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}
.company.page .blue_back span {
  display: inline-block;
  background-color: #3b66fc;
  padding: 0 10px;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .company.page .blue_back span {
    padding: 0 5px;
    margin-bottom: 10px;
  }
}
.company.page .vision_value_wrap {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #d4d8e0;
}
@media screen and (max-width: 1000px) {
  .company.page .vision_value_wrap {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 63px;
  }
}
.company.page .vision_box {
  width: 46%;
}
@media screen and (max-width: 1000px) {
  .company.page .vision_box {
    width: 100%;
    padding-bottom: 56px;
  }
}
.company.page .value_box {
  width: 46%;
}
@media screen and (max-width: 1000px) {
  .company.page .value_box {
    width: 100%;
    border-top: solid 1px #d4d8e0;
  }
}
.company.page .value_box ul li {
  position: relative;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 12px;
  padding-left: 28px;
  color: #01031a;
}
@media screen and (max-width: 768px) {
  .company.page .value_box ul li {
    font-size: 1.4rem;
    border-top: none;
  }
}
.company.page .value_box ul li span {
  display: inline-block;
}
.company.page .value_box ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  transform: translateY(50%);
  display: inline-block;
  background-color: #3b66fc;
  width: 10px;
  height: 10px;
}
.company.page .section_outline {
  background-color: #e9ebf0;
  border-top: solid 1px #d4d8e0;
  border-bottom: solid 1px #d4d8e0;
}
.company.page .section_outline::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d4d8e0;
  bottom: 0;
}
.company.page .section_outline h2 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline h2 {
    padding-top: 70px;
  }
}
.company.page .section_outline .outline_wrap {
  display: flex;
  justify-content: space-between;
  overflow: visible;
  border-top: solid 1px #d4d8e0;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_wrap {
    flex-direction: column-reverse;
  }
}
.company.page .section_outline .outline_box {
  width: 66%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_box {
    width: 100%;
    max-width: 100%;
  }
}
.company.page .section_outline .outline_box dl {
  font-family: "NotoSansJP-Regular";
  display: flex;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  width: 100%;
  border-bottom: solid 1px #d4d8e0;
  border-right: solid 1px #d4d8e0;
  padding-top: 30px;
  padding-bottom: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_box dl {
    flex-direction: column;
    border-right: none;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 20px;
  }
  .company.page .section_outline .outline_box dl:first-child {
    border-top: solid 1px #d4d8e0;
  }
}
.company.page .section_outline .outline_box dl:last-of-type {
  border-bottom: none;
}
.company.page .section_outline .outline_box dl dt {
  font-weight: normal;
  width: 26%;
  max-width: 208px;
  padding-left: 10%;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_box dl dt {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
    margin-bottom: 14px;
  }
}
.company.page .section_outline .outline_box dl dd {
  width: 74%;
  max-width: 592px;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_box dl dd {
    width: 100%;
    max-width: 100%;
    padding-right: 20px;
  }
}
.company.page .section_outline .outline_image {
  width: 34%;
  position: sticky;
  position: -webkit-sticky;
  top: 150px;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company.page .section_outline .outline_image {
    position: static;
    width: 100%;
    margin-bottom: 40px;
    height: auto;
  }
}
.company.page .map-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9アスペクト比 */
  height: 0;
  overflow: hidden;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .company.page .map-wrapper {
    margin-top: 20px;
  }
}
.company.page .map-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.company.page .bank_list {
  display: flex;
  width: 100%;
}
.company.page .bank_list p:first-child {
  width: 30%;
}
.company.page .bank_list p:last-child {
  width: 70%;
}
.company.page .section_sustainability h2 {
  padding-top: 70px;
}
.company.page .sustainability_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company.page .sustainability_list {
    flex-direction: column;
    padding-bottom: 20px;
  }
}
.company.page .sustainability_item {
  background-color: #e9ebf0;
  width: 48%;
  padding: 60px 60px 55px 60px;
}
@media screen and (max-width: 768px) {
  .company.page .sustainability_item {
    width: 100%;
    padding: 20px;
    margin-bottom: 40px;
  }
}
.company.page .sustainability_item span {
  display: inline-block;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-top: 10px;
  font-family: "NotoSansJP-Medium";
}
@media screen and (max-width: 768px) {
  .company.page .sustainability_item span {
    font-size: 1.6rem;
  }
}
.company.page .sustainability_item span::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg);
  margin-right: 6px;
}
.company.page .section_history {
  border-top: solid 1px #d4d8e0;
  border-bottom: solid 1px #d4d8e0;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .company.page .section_history {
    border-bottom: none;
    margin-bottom: 0;
  }
}
.company.page .section_history h2 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .company.page .section_history h2 {
    padding-top: 70px;
  }
}
.company.page .section_history .history_wrap {
  display: flex;
  justify-content: space-between;
  overflow: visible;
  border-top: solid 1px #d4d8e0;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company.page .section_history .history_wrap {
    flex-direction: column-reverse;
  }
}
.company.page .section_history .history_wrap::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #d4d8e0;
  bottom: 80px;
}
.company.page .section_history .history_box {
  width: 66%;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .company.page .section_history .history_box {
    width: 100%;
    max-width: 100%;
  }
}
.company.page .section_history .history_box dl {
  font-family: "NotoSansJP-Regular";
  display: flex;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  width: 100%;
  border-bottom: solid 1px #d4d8e0;
  border-right: solid 1px #d4d8e0;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .company.page .section_history .history_box dl {
    border-top: solid 1px #d4d8e0;
    border-right: none;
    border-bottom: none;
  }
}
.company.page .section_history .history_box dl:last-of-type {
  border-bottom: none;
}
.company.page .section_history .history_box dl dt {
  font-weight: normal;
  width: 27%;
  max-width: 221px;
  padding-left: 10%;
  border-right: solid 1px #d4d8e0;
  padding-top: 30px;
  padding-bottom: 26px;
}
@media screen and (max-width: 1000px) {
  .company.page .section_history .history_box dl dt {
    padding-left: 20px;
    width: 37%;
  }
}
.company.page .section_history .history_box dl dt span {
  position: relative;
  display: block;
}
.company.page .section_history .history_box dl dt span::after {
  content: "";
  position: absolute;
  display: inline-block;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg) translate(102%, 50%);
  margin-right: 6px;
}
.company.page .section_history .history_box dl dd {
  width: 73%;
  max-width: 579px;
  padding-right: 10%;
  padding-left: 8.6%;
  padding-top: 30px;
  padding-bottom: 26px;
}
@media screen and (max-width: 1000px) {
  .company.page .section_history .history_box dl dd {
    padding-left: 27px;
    width: 63%;
  }
}
.company.page .section_history .history_image {
  width: 34%;
  position: sticky;
  position: -webkit-sticky;
  top: 150px;
  height: 300px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company.page .section_history .history_image {
    width: 100%;
    height: auto;
    position: static;
    margin-bottom: 40px;
  }
}

.service.page .section_main_services h2 {
  padding-top: 70px;
}
.service.page .section_main_services .border_item {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service.page .section_main_services .border_item {
    padding-bottom: 80px;
  }
}
.service.page .main_services_wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
  padding: 60px;
  background-color: #e2e4ea;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_wrap {
    flex-direction: column-reverse;
    padding: 20px;
    margin-bottom: 20px;
  }
}
.service.page .main_services_wrap:last-of-type {
  margin-bottom: 0;
}
.service.page .main_services_box {
  width: 47.5%;
  max-width: 510px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_box {
    width: 100%;
    max-width: 100%;
  }
}
.service.page .main_services_box h3 {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_box h3 {
    margin-bottom: 16px;
  }
}
.service.page .main_services_box h3 span {
  display: inline-block;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #fff;
  line-height: 1.5;
  background-color: #3b66fc;
  padding: 6px 10px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_box h3 span {
    font-size: 1.6rem;
  }
}
.service.page .main_services_box h3 .mb_8 {
  margin-bottom: 8px;
}
.service.page .main_services_box .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_box .description {
    font-size: 1.4rem;
  }
}
.service.page .main_services_box .note {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_box .note {
    font-size: 1.2rem;
  }
}
.service.page .main_services_imge {
  width: 47.5%;
  max-width: 510px;
}
@media screen and (max-width: 768px) {
  .service.page .main_services_imge {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
.service.page .seciont_quality_policy {
  border-top: solid 1px #d4d8e0;
  background-color: #e9ebf0;
  border-bottom: solid 1px #d4d8e0;
}
.service.page .seciont_quality_policy h2 {
  margin-bottom: 55px;
  padding-top: 63px;
}
@media screen and (max-width: 768px) {
  .service.page .seciont_quality_policy h2 {
    margin-bottom: 37px;
    padding-top: 70px;
  }
}
.service.page .seciont_quality_policy h3 {
  margin-bottom: 36px;
}
.service.page .seciont_quality_policy h3 span {
  display: inline-block;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #fff;
}
.service.page .seciont_quality_policy h3 .mb_8 {
  margin-bottom: 8px;
  background-color: #3b66fc;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .service.page .seciont_quality_policy h3 .mb_8 {
    margin-bottom: 0;
    background-color: transparent;
  }
}
.service.page .seciont_quality_policy h3 .sp_block {
  display: inline;
  line-height: 1.5;
  background-color: #3b66fc;
}
@media screen and (max-width: 768px) {
  .service.page .seciont_quality_policy h3 .sp_block {
    display: inline-block;
    margin-bottom: 5px;
    padding: 0 10px;
  }
}
.service.page .seciont_quality_policy .quality_policy_list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service.page .seciont_quality_policy .quality_policy_list {
    flex-direction: column;
  }
}
.service.page .seciont_quality_policy .quality_policy_item {
  background-color: #e2e4ea;
  width: 31%;
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .service.page .seciont_quality_policy .quality_policy_item {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
.service.page .seciont_quality_policy .quality_policy_item h4 {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px #3b66fc;
  margin-bottom: 10px;
}
.service.page .seciont_quality_policy .quality_policy_item h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 3px solid #3b66fc;
  transform: rotate(-45deg);
  margin-right: 6px;
}
.service.page .seciont_quality_policy .quality_policy_item .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities {
    border-bottom: solid 1px #d4d8e0;
  }
}
.service.page .section_facilities h2 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities h2 {
    padding-top: 70px;
  }
}
.service.page .section_facilities .scroll_wrap {
  width: 100%;
  overflow-x: auto;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .scroll_wrap {
    overflow: hidden;
  }
}
.service.page .section_facilities .facilities_list {
  width: 1198px;
  display: flex;
  border-top: solid 1px #d4d8e0;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list {
    width: 100%;
    flex-direction: column;
  }
}
.service.page .section_facilities .facilities_list_inner_01_01 {
  width: 600px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_01 {
    width: 100%;
  }
}
.service.page .section_facilities .facilities_list_inner_01_02 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_02 {
    width: 100%;
    flex-direction: column;
  }
}
.service.page .section_facilities .facilities_list_inner_01_03_01 {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_03_01 {
    width: 100%;
  }
}
.service.page .section_facilities .facilities_list_inner_01_03_02 {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_03_02 {
    width: 100%;
    margin-bottom: 60px;
  }
}
.service.page .section_facilities .facilities_list_inner_02_01 {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_02_01 {
    width: 100%;
    margin-bottom: 60px;
  }
}
.service.page .section_facilities .facilities_list_inner_03_01 {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_03_01 {
    width: 100%;
  }
}
.service.page .section_facilities .facilities_list_inner_03_01 .list_titte {
  border-right: none;
}
.service.page .section_facilities .facilities_list_inner_03_02 .parts_box {
  border-right: none;
}
.service.page .section_facilities .facilities_list_inner_01_03_01_01 {
  padding: 20px 20px 0 20px;
  border-right: solid 1px #d4d8e0;
  border-bottom: solid 1px #d4d8e0;
  height: 225px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_03_01_01 {
    height: auto;
    border-right: none;
  }
}
.service.page .section_facilities .facilities_list_inner_01_03_01_01 img {
  margin-bottom: 4.5px;
}
.service.page .section_facilities .facilities_list_inner_01_03_01_02 {
  padding: 20px 20px 0 20px;
  border-right: solid 1px #d4d8e0;
  border-bottom: solid 1px #d4d8e0;
  height: 225px;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .facilities_list_inner_01_03_01_02 {
    height: auto;
    border-right: none;
  }
}
.service.page .section_facilities .facilities_list_inner_01_03_01_02 img {
  margin-bottom: 4.5px;
}
.service.page .section_facilities .list_titte {
  color: #3b66fc;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  height: 35px;
  line-height: 35px;
  text-align: center;
  border-bottom: solid 1px #d4d8e0;
  border-right: solid 1px #d4d8e0;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .list_titte {
    border-top: solid 1px #d4d8e0;
    border-right: none;
  }
}
.service.page .section_facilities .blue_text {
  color: #3b66fc;
  font-family: "NotoSansJP-Regular";
  font-size: 1.2rem;
  line-height: 1.5;
}
.service.page .section_facilities .parts_name {
  font-family: "NotoSansJP-Regular";
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .parts_name {
    font-size: 1.4rem;
    padding-bottom: 20px;
  }
}
.service.page .section_facilities .blue_back {
  display: inline-block;
  background-color: #3b66fc;
  color: #fff;
  font-size: 1.4rem;
  font-family: "NotoSansJP-Regular";
  height: 20px;
  line-height: 20px;
  padding: 0 10px;
  margin-left: 10px;
}
.service.page .section_facilities .parts_box {
  height: 90px;
  padding: 26px 20px;
  border-bottom: solid 1px #d4d8e0;
  border-right: solid 1px #d4d8e0;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .parts_box {
    height: auto;
    padding: 20px 20px 0 20px;
    border-right: none;
  }
}
.service.page .section_facilities .no_parts {
  background-image: url(../img/service/border.png);
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .service.page .section_facilities .no_parts {
    display: none;
  }
}
.service.page .section_case {
  background-color: #e9ebf0;
}
.service.page .section_case h2 {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .service.page .section_case h2 {
    padding-top: 70px;
  }
}
.service.page .case_wrap {
  display: flex;
  justify-content: space-between;
  border-top: solid 1px #d4d8e0;
  position: relative;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .service.page .case_wrap {
    flex-direction: column;
  }
}
.service.page .case_wrap::after {
  content: "";
  position: absolute;
  background-color: #d4d8e0;
  width: 100vw;
  height: 1px;
  transform: translateX(-50%);
  left: 50%;
  bottom: 80px;
}
.service.page .case_item {
  width: 25%;
  padding: 40px;
  border-right: solid 1px #d4d8e0;
}
@media screen and (max-width: 768px) {
  .service.page .case_item {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-top: solid 1px #d4d8e0;
  }
  .service.page .case_item:first-of-type {
    border-top: none;
  }
}
.service.page .case_item:last-of-type {
  border-right: none;
}
.service.page .case_item p {
  font-family: "NotoSansJP-Medium";
  color: #3b66fc;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  margin-top: 9px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .service.page .case_item p {
    font-size: 1.6rem;
  }
}
.service.page .case_item span {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .service.page .case_item span {
    font-size: 1.2rem;
  }
}

.recruit.page .section_tittle {
  line-height: 1.47;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_tittle {
    font-size: clamp(2rem, 2.1vw, 2.2rem);
    line-height: 1.5;
  }
}
.recruit.page .tittle_sub {
  margin-top: 10px;
  display: block;
  line-height: 1.21;
}
@media screen and (max-width: 768px) {
  .recruit.page .tittle_sub {
    margin-top: 3px;
    line-height: 1.5;
  }
}
.recruit.page .section_message {
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
}
.recruit.page .section_message h2 {
  padding-top: 70px;
  position: sticky;
  position: -webkit-sticky;
  top: 32px;
  overflow: hidden;
  width: 41.25%;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message h2 {
    position: static;
    width: 100%;
    padding-top: 73px;
  }
}
.recruit.page .section_message h2 br {
  display: none;
}
@media screen and (max-width: 1200px) {
  .recruit.page .section_message h2 br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message h2 br {
    display: none;
  }
}
.recruit.page .section_message_wrap {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message_wrap {
    display: block;
  }
}
.recruit.page .section_message_txt {
  width: 58.75%;
  box-sizing: border-box;
  border-left: 1px solid rgba(188, 193, 204, 0.5);
  padding-top: 70px;
  padding-bottom: 76px;
  padding-left: 7.0833333333%;
  padding-right: 6.6666666667%;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message_txt {
    width: 100%;
    padding: 0 0 76px;
    margin-top: 38px;
    border-left: none;
  }
}
.recruit.page .section_message_txt .sec_subttl > span {
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message_txt .sec_subttl > span {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
    line-height: 2.25;
  }
}
.recruit.page .section_message_txt p {
  color: #707070;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 1.8em;
  font-family: "NotoSansJP-Regular";
}
.recruit.page .section_message_txt p:first-of-type {
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_message_txt p:first-of-type {
    margin-top: 16px;
  }
}
.recruit.page .section_message_txt ul {
  color: #707070;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-top: 1.8em;
}
.recruit.page .section_message_txt ul > li:before {
  content: "・";
}
.recruit.page .section_interview {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_interview {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .section_interview .container {
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .section_interview_wrap {
    padding-top: 80px;
  }
}
.recruit.page .section_interview_wrap:before {
  content: none;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_interview_wrap:before {
    content: "";
  }
}
.recruit.page .interview_list {
  border-top: 1px solid rgba(188, 193, 204, 0.5);
  padding: 40px 20px 80px;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_list {
    padding: 0 0 76px;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_list_wrap {
    width: 100%;
    overflow-y: visible;
    overflow-x: auto;
    padding: 40px 3px 3px 20px;
  }
}
.recruit.page .interview_nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav {
    width: 1161px;
  }
}
.recruit.page .interview_nav > li {
  width: 23.6864771748%;
  aspect-ratio: 275/367;
  transition: 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav > li {
    width: 275px;
    transform: 0;
    opacity: 1;
  }
}
.recruit.page .interview_nav > li:before {
  content: "";
  display: block;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  background-color: #3b66fc;
  width: 16px;
  height: 14px;
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav > li:before {
    content: none;
  }
}
.recruit.page .interview_nav > li:nth-of-type(2) > a:before {
  background-image: url(../img/recruit/interview_nav02.webp);
}
.recruit.page .interview_nav > li:nth-of-type(3) > a:before {
  background-image: url(../img/recruit/interview_nav03.webp);
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav > li:last-of-type {
    position: relative;
  }
  .recruit.page .interview_nav > li:last-of-type:after {
    content: "";
    display: block;
    width: 20px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -20px;
  }
}
.recruit.page .interview_nav > li:last-of-type > a:before {
  background-image: url(../img/recruit/interview_nav04.webp);
}
.recruit.page .interview_nav > li > a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px 8px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: 0.3s;
}
.recruit.page .interview_nav > li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/recruit/interview_nav01.webp);
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
}
.recruit.page .interview_nav > li > a:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 3, 26, 0.2);
  transition: 0.3s;
  position: absolute;
  top: 0;
  left: 0;
}
.recruit.page .interview_nav > li > a:hover:before {
  transform: scale(1.1);
}
.recruit.page .interview_nav > li > a:hover:after {
  background-color: rgba(1, 3, 26, 0);
}
.recruit.page .interview_nav > li.is_active {
  box-shadow: 0px 0px 2px 2px #3b66fc;
}
.recruit.page .interview_nav > li.is_active:before {
  opacity: 1;
}
.recruit.page .interview_nav_desc {
  color: #fff;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  position: relative;
  z-index: 100;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .recruit.page .interview_nav_desc {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav_desc {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
.recruit.page .interview_nav_desc .display_xl {
  display: none;
}
@media screen and (max-width: 1200px) {
  .recruit.page .interview_nav_desc .display_xl {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav_desc .display_xl {
    display: none;
  }
}
.recruit.page .interview_nav_desc .display_lg {
  display: none;
}
@media screen and (max-width: 1000px) {
  .recruit.page .interview_nav_desc .display_lg {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_nav_desc .display_lg {
    display: none;
  }
}
.recruit.page .interview_nav_name {
  color: #fff;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  position: relative;
  z-index: 100;
  line-height: 1.42;
  margin-top: 12px;
}
.recruit.page .interview_detail {
  margin-top: 40px;
  display: none;
  opacity: 0;
  transition: 0.3s;
}
.recruit.page .interview_detail.is_active {
  opacity: 1;
  display: block;
}
.recruit.page .interview_detail h3 {
  background-color: #3b66fc;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
}
.recruit.page .interview_detail h3 > span {
  color: #fff;
}
.recruit.page .interview_detail h3 > span:first-of-type {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
.recruit.page .interview_detail h3 > span:last-of-type {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
.recruit.page .interview_detail ul {
  background-color: #e9ebf0;
}
.recruit.page .interview_detail ul > li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 60px;
  box-sizing: border-box;
  border-bottom: 1px solid #bcc1cc;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_detail ul > li {
    padding: 40px 20px;
    display: block;
  }
}
.recruit.page .interview_detail ul > li:last-of-type {
  border-bottom: none;
}
.recruit.page .interview_detail ul > li > img {
  display: block;
  width: 32.6923076923%;
  aspect-ratio: 340/227;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_detail ul > li > img {
    width: 100%;
  }
}
.recruit.page .interview_detail ul > li > div {
  width: 63.3653846154%;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_detail ul > li > div {
    width: 100%;
    margin-top: 26px;
  }
}
.recruit.page .interview_detail ul > li h4 {
  color: #3b66fc;
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
}
.recruit.page .interview_detail ul > li p {
  margin-top: 30px;
  color: #333;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .recruit.page .interview_detail ul > li p {
    margin-top: 14px;
  }
}
.recruit.page .section_requirement {
  background-color: #e9ebf0;
}
.recruit.page .section_requirement_wrap {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .recruit.page .section_requirement_wrap {
    padding-top: 80px;
  }
}
.recruit.page .requirement_list {
  margin-top: 36px;
  display: flex;
  align-items: flex-start;
  border-top: 1px solid rgba(188, 193, 204, 0.5);
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list {
    margin-top: 38px;
    display: block;
  }
}
.recruit.page .requirement_list dl {
  width: 66.6666666667%;
  border-right: 1px solid rgba(188, 193, 204, 0.5);
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl {
    width: 100%;
    border-right: none;
  }
}
.recruit.page .requirement_list dl > div {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid rgba(188, 193, 204, 0.5);
  padding-top: 30px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl > div {
    display: block;
    padding-top: 16px;
    padding-bottom: 18px;
  }
}
.recruit.page .requirement_list dl > div:last-of-type {
  border-bottom: none;
}
.recruit.page .requirement_list dl > div dt {
  width: 27%;
  box-sizing: border-box;
  padding-left: 10%;
  padding-right: 4%;
  color: #707070;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl > div dt {
    width: 100%;
    padding-left: 5.3731343284%;
    padding-right: 5.3731343284%;
    line-height: 1.8;
  }
}
.recruit.page .requirement_list dl > div dd {
  width: 73%;
  color: #333;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  font-weight: 400;
  padding-right: 4%;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl > div dd {
    width: 100%;
    padding-left: 5.3731343284%;
    padding-right: 5.3731343284%;
    line-height: 1.8;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl > div dd .requirement_indent {
    text-indent: -1em;
    padding-left: 1em;
    display: block;
  }
}
.recruit.page .requirement_list dl > div dd .display_md {
  display: none;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list dl > div dd .display_md {
    display: block;
  }
}
.recruit.page .requirement_list_img {
  width: 33.3333333333%;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list_img {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 20px;
    box-sizing: border-box;
    border-top: 1px solid rgba(188, 193, 204, 0.5);
  }
}
.recruit.page .requirement_list_img img {
  display: block;
  width: 100%;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .recruit.page .requirement_list_img img {
    width: calc((100% - 20px) / 2);
    margin-top: 0;
  }
}
.recruit.page .requirement_list_img img:first-of-type {
  margin-top: 0;
}

.contact.page .contact_section {
  padding-top: 90px;
  padding-bottom: 133px;
}
@media screen and (max-width: 768px) {
  .contact.page .contact_section {
    padding-bottom: 60px;
  }
}
.contact.page .contact_section .w880 {
  max-width: 880px;
  margin: auto;
  width: 93%;
}
@media screen and (max-width: 768px) {
  .contact.page .contact_section .w880 {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.contact.page .contact_section .description {
  font-family: "NotoSansJP-Regular";
  text-align: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .contact.page .contact_section .description {
    margin-bottom: 30px;
  }
}
.contact.page .contact_thanks .thanks_tittle {
  font-family: "NotoSansJP-Bold";
  text-align: center;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #3b66fc;
  margin-bottom: 40px;
}
.contact.page .contact_thanks .description {
  margin-bottom: 24px;
}
.contact.page .contact_thanks .contact-content--btn {
  display: block;
  width: 208px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  height: 48px;
  line-height: 48px;
  background: #3b66fc;
  transition: 0.3s;
  font-size: 1.6rem;
  margin: 60px auto 0;
}

.page.news .container {
  border-bottom: solid 1px #d4d8e0;
}
.page.news .border_item {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .page.news .border_item {
    padding-bottom: 40px;
  }
}
.page.news .news_wrap {
  max-width: 600px;
  margin: auto;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .page.news .news_wrap {
    padding: 20px;
  }
}
.page.news .news-thumbnail {
  width: 100%;
  height: 400px;
  overflow: hidden;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .page.news .news-thumbnail {
    height: auto;
    margin-bottom: 10px;
  }
}
.page.news .news-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page.news .day {
  font-size: 1.4rem;
  color: #3b66fc;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
  .page.news .day {
    font-size: 1.2rem;
  }
}
.page.news .tittle {
  font-family: "NotoSansJP-Regular";
  line-height: 1.5;
  font-size: 2rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: solid 1px #3b66fc;
}
@media screen and (max-width: 768px) {
  .page.news .tittle {
    font-size: 1.4rem;
    padding-bottom: 11px;
    margin-bottom: 14px;
  }
}
.page.news .post_text {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .page.news .post_text {
    font-size: 1.4rem;
  }
}
.page.news .top_back_btn {
  border-left: solid 1px #d4d8e0;
  border-right: solid 1px #d4d8e0;
  padding: 40px 0 120px 0;
  position: relative;
  margin: auto;
  text-align: center;
}
.page.news .top_back_btn::after {
  content: "";
  position: absolute;
  background-color: #d4d8e0;
  width: 100vw;
  height: 1px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
.page.news .summary {
  display: inline-block;
  width: 136px;
  height: 40px;
  color: #fff;
  background-color: #3b66fc;
  font-size: 1.6rem;
  line-height: 40px;
  border-radius: 5px;
}
.page.news .news_archive_list {
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page.news .news_archive_list {
    flex-direction: column;
  }
}
.page.news .news_archive_list::before {
  content: "";
  position: absolute;
  width: 100vw;
  background-color: #d4d8e0;
  height: 1px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.page.news .archive_item {
  width: 25%;
  padding: 40px;
  border-right: solid 1px #d4d8e0;
}
.page.news .archive_item a {
  transition: all 0.3s;
}
.page.news .archive_item a:hover .thumbnail {
  box-shadow: rgb(59, 102, 252) 0px 0px 1px 1px;
}
.page.news .archive_item a:hover .thumbnail img {
  scale: 1.05;
}
@media screen and (max-width: 768px) {
  .page.news .archive_item {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #d4d8e0;
  }
}
.page.news .archive_item:last-of-type {
  border-right: none;
}
.page.news .archive_item .thumbnail {
  width: 100%;
  max-width: 220px;
  transition: all 0.3s;
  overflow: hidden;
}
.page.news .archive_item .thumbnail img {
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .page.news .archive_item .thumbnail {
    max-width: 100%;
  }
}
.page.news .archive_item .m-article_list--img {
  width: 100%;
  aspect-ratio: 1/1;
  /* 正方形にする */
  -o-object-fit: cover;
     object-fit: cover;
  /* はみ出した部分はトリミング */
  display: block;
}
.page.news .archive_item .day {
  font-family: "NotoSansJP-Medium";
  font-size: 1.4rem;
  color: #3b66fc;
  font-weight: normal;
  margin-top: 10px;
}
.page.news .archive_item .news_tittle {
  font-family: "NotoSansJP-Medium";
  font-size: 1.6rem;
}

.policy .section-policy .border_item {
  padding-bottom: 160px;
}
@media screen and (max-width: 768px) {
  .policy .section-policy .border_item {
    padding-bottom: 80px;
  }
}
.policy .section-policy .border_item::after {
  content: "";
  position: absolute;
  background-color: #d4d8e0;
  width: 100vw;
  height: 1px;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .policy .section-policy .border_item::after {
    bottom: 40px;
  }
}
.policy .policy-content {
  max-width: 880px;
  margin: auto;
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-top: 40px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .policy .policy-content {
    margin-bottom: 0;
  }
  .policy .policy-content h2 {
    padding-top: 16px;
    margin-bottom: 16px;
  }
}

.error .error_section {
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .error .error_section {
    padding-bottom: 60px;
  }
}
.error h2 {
  text-align: center;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #2e50c9;
  padding-top: 80px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .error h2 {
    padding-top: 70px;
    margin-bottom: 30px;
  }
}
.error .note {
  text-align: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .error .note {
    font-size: 1.4rem;
  }
}
.error .top_back_btn {
  margin: 40px auto 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .error .top_back_btn {
    margin: 20px auto 0;
  }
}
.error .top_back_btn a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  background: #050c5f;
  padding: 16px 75px;
  border-radius: 30px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .error .top_back_btn a {
    font-size: 1.4rem;
    padding: 12px 43px;
  }
}
.error .top_back_btn a:hover {
  background-color: #3b66fc;
}

.img-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.img-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.img-modal__content {
  position: relative;
  opacity: 0;
  transform: scale(0.97);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.img-modal.is-active .img-modal__content {
  opacity: 1;
  transform: scale(1);
}

.img-modal__content img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 6px;
  display: block;
}

/* 背景（押したら閉じる） */
.img-modal__bg {
  position: absolute;
  inset: 0;
}

/* 閉じるボタン */
.img-modal__close {
  position: absolute;
  top: -32px;
  right: -32px;
  font-size: 30px;
  line-height: 1;
  color: #ffffff;
  cursor: pointer;
}

@media (max-width: 768px) {
  .img-modal__close {
    top: -40px;
    right: 0;
  }
}
.js-modal-list img {
  cursor: pointer;
}/*# sourceMappingURL=page.css.map */