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

.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;
  }
}

.secttl {
  color: #e1e0e0;
}
.secttl-black {
  color: #333;
}
.secttl.animated .secttl_sub,
.secttl.animated .secttl_main > span {
  opacity: 1;
  transform: translateY(0);
}
.secttl .secttl_sub {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Bold";
  display: block;
  line-height: 1.2em;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s;
  transition-delay: 0s;
}
.secttl .secttl_sub:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 10px 0 0 0;
  background-color: #9f0000;
  margin-right: 8px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .secttl .secttl_sub:before {
    width: 1.2em;
    height: 1.2em;
    margin-right: 5px;
  }
}
.secttl .secttl_main {
  font-size: clamp(8rem, 9vw, 10rem);
  font-family: "Poppins-SemiBold";
  display: block;
  line-height: 1.4;
  margin-top: -10px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .secttl .secttl_main {
    line-height: 1;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .secttl .secttl_main {
    font-size: clamp(4.8rem, 4.9vw, 5rem);
  }
}
.secttl .secttl_main > span {
  display: block;
  opacity: 0;
  transform: translateY(1.2em);
  transition: 0.8s;
  transition-delay: 0.1s;
}

.more-btn {
  background-color: #e1e0e0;
  width: 224px;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #333;
  font-family: "NotoSansJP-Medium";
  border-radius: 10px;
  position: relative;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .more-btn {
    width: 180px;
    height: 40px;
  }
}
.more-btn:hover {
  background-color: #fff;
}
.more-btn:hover .deco {
  background-color: #d9001f;
}
.more-btn:hover .deco:before, .more-btn:hover .deco:after {
  transform: translateX(44px);
}
@media screen and (max-width: 768px) {
  .more-btn:hover .deco:before, .more-btn:hover .deco:after {
    transform: translateX(40px);
  }
}
.more-btn .deco {
  border-radius: 10px;
  background-color: #9f0000;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 46px;
  height: 40px;
  transform: translateY(-50%);
  display: block;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .more-btn .deco {
    width: 36px;
    height: 30px;
  }
}
.more-btn .deco:before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/14;
  background-image: url(../img/icon-arrow.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  left: 14px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .more-btn .deco:before {
    width: 12px;
    top: 10px;
    left: 13px;
  }
}
.more-btn .deco:after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/14;
  background-image: url(../img/icon-arrow.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  left: -30px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .more-btn .deco:after {
    width: 12px;
    top: 10px;
    left: -28px;
  }
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300;
  -webkit-backdrop-filter: blur(30px) brightness(0.9);
          backdrop-filter: blur(30px) brightness(0.9);
  background-color: rgba(0, 0, 0, 0.4);
}
.is_hmb_open .header {
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  background-color: #010101 !important;
}
.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: 243px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .header-logo {
    width: 184px;
    margin-right: 0;
    z-index: 100;
  }
}
.header .header-logo img {
  display: block;
  width: 100%;
}
.header .header-hmb {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .header-hmb {
    display: block;
    width: 40px;
    height: 100%;
    position: relative;
    z-index: 100;
  }
}
.header .header-hmb > span {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.3s;
}
.header .header-hmb > span:first-of-type {
  transform: translateY(-8px);
}
.is_hmb_open .header .header-hmb > span:first-of-type {
  transform: rotate(-30deg);
}
.is_hmb_open .header .header-hmb > span:nth-of-type(2) {
  display: none;
}
.header .header-hmb > span:last-of-type {
  transform: translateY(8px);
}
.is_hmb_open .header .header-hmb > span:last-of-type {
  transform: rotate(30deg);
}
.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: -100vh;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #010101;
    transition: 0.3s;
    padding-top: 60px;
  }
  .is_hmb_open .header .nav-wrap {
    top: 0;
  }
}
.header .nav-pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .header .nav-pc {
    display: none;
  }
}
.header .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-pc li > a:hover {
  color: #d9001f;
}
.header .nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header .nav-sp {
    width: calc(100% - 40px);
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: auto;
  }
  .header .nav-sp > li {
    width: 100%;
    border-top: 1px solid #444444;
  }
  .header .nav-sp > li:last-of-type {
    border-bottom: 1px solid #444444;
  }
  .header .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-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-btn {
  min-width: 155px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #9f0000;
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  transition: all 0.3s;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .header .header-contact-btn {
    display: none;
  }
}
.header .header-contact-btn:hover {
  background-color: #d9001f;
}

.home .header {
  background-color: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s, background-color 0.4s 1s;
}
.loaded .home .header {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
  pointer-events: auto;
}
.home .section-parallax {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  background-color: #000;
  overflow-y: auto;
  display: block;
}
.home .section-parallax:after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 2880/1080;
  background-image: url(../img/icon-wavy.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .home .section-parallax:after {
    width: 245.3333333333vw;
  }
}
.home .section-parallax .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: 0.8s;
  opacity: 0;
}
.loaded .home .section-parallax .bg {
  opacity: 1;
}
.home .section-parallax .bg-01 {
  background-image: url(../img/section-parallax01.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .bg-01 {
    background-image: url(../img/section-parallax01-sp.webp);
  }
}
.home .section-parallax .bg-02 {
  transition-delay: 5s;
  background-image: url(../img/section-parallax02.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .bg-02 {
    background-image: url(../img/section-parallax02-sp.webp);
  }
}
.home .section-parallax .bg-03 {
  transition-delay: 11s;
  background-image: url(../img/section-parallax03.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .bg-03 {
    background-image: url(../img/section-parallax03-sp.webp);
  }
}
.home .section-parallax .bg-04 {
  transition-delay: 16s;
  background-image: url(../img/section-parallax01.webp);
}
@media screen and (max-width: 768px) {
  .home .section-parallax .bg-04 {
    background-image: url(../img/section-parallax01-sp.webp);
  }
}
.home .section-parallax .circle {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.home .section-parallax .circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  transform: translate(-50%, -50%);
  background: transparent;
  border-radius: 50%;
  box-shadow: 0 0 0 9999px black;
}
.loaded .home .section-parallax .circle::before {
  animation: circle-animation-01 0.4s ease-out forwards, circle-animation-02 0.8s ease-out forwards 1s;
}
@media screen and (max-width: 768px) {
  .loaded .home .section-parallax .circle::before {
    animation: circle-animation-01-sp 0.4s ease-out forwards, circle-animation-02-sp 0.8s ease-out forwards 1s;
  }
}
.home .section-mv {
  height: 100vh;
}
.home .section-mv .mv-ttl_area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  width: 100%;
  text-align: center;
}
.home .section-mv .mv-ttl_second {
  margin-top: -22px;
  display: block;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_second {
    margin-top: -2px;
  }
}
.home .section-mv .mv-ttl_second .mv-ttl_m {
  padding-left: 26px;
  padding-right: 21px;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_second .mv-ttl_m {
    padding-left: 0.2em;
    padding-right: 0.2em;
  }
}
.home .section-mv .mv-ttl_m {
  font-family: "Poppins-SemiBold";
  line-height: 1.44;
  font-size: clamp(8rem, 8.5vw, 9rem);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_m {
    font-size: clamp(3.4rem, 3.5vw, 3.6rem);
  }
}
.home .section-mv .mv-ttl_l {
  font-family: "Poppins-SemiBold";
  line-height: 1.44;
  font-size: clamp(10rem, 11vw, 12rem);
}
@media screen and (max-width: 1000px) {
  .home .section-mv .mv-ttl_l {
    font-size: clamp(9rem, 10vw, 11em);
  }
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_l {
    font-size: clamp(4.6rem, 4.7vw, 4.8rem);
  }
}
.home .section-mv .mv-ttl_ja {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(4rem, 4.1vw, 4.2rem);
  margin-top: 5px;
  line-height: 1.48;
  display: block;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-ttl_ja {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  }
}
.home .section-mv .mv-news_link {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  border-top: 1px solid #707070;
  border-bottom: 1px solid #707070;
  opacity: 0;
  pointer-events: none;
  bottom: 0;
  transition: 0.4s;
}
.loaded .home .section-mv .mv-news_link {
  bottom: 40px;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  .loaded .home .section-mv .mv-news_link {
    bottom: 0;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
.home .section-mv .mv-news_link:hover .mv-news_box > dd > time:before {
  background-color: #d9001f;
}
.home .section-mv .mv-news_box {
  width: 100%;
  color: #fff;
  display: flex;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box {
    display: block;
  }
}
.home .section-mv .mv-news_box > dt {
  width: 136px;
  line-height: 55px;
  text-align: center;
  position: relative;
  font-family: "Poppins-SemiBold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dt {
    display: none;
  }
}
.home .section-mv .mv-news_box > dt:after {
  content: "";
  display: block;
  background-color: #707070;
  width: 1px;
  height: 35px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.home .section-mv .mv-news_box > dd {
  width: calc(100% - 136px);
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  line-height: 55px;
  font-family: "NotoSansJP-Medium";
  display: flex;
}
@media screen and (max-width: 768px) {
  .home .section-mv .mv-news_box > dd {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home .section-mv .mv-news_box > dd > time {
  width: 108px;
  padding-left: 30px;
  margin-right: 20px;
  box-sizing: border-box;
  position: relative;
}
.home .section-mv .mv-news_box > dd > time:before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: 0.3s;
}
.home .section-mv .mv-news_box > dd > p {
  line-height: 55px;
  width: calc(100% - 108px - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.home .section-about {
  background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(8, 8, 8, 0.7) 49.75%, #111 100%);
  padding-top: 167px;
  padding-bottom: 185px;
}
@media screen and (max-width: 768px) {
  .home .section-about {
    padding-top: 120px;
    padding-bottom: 327px;
  }
}
.home .section-about .about-deco {
  width: 1455px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1455px) {
  .home .section-about .about-deco {
    left: 0;
    transform: none;
  }
}
@media screen and (max-width: 768px) {
  .home .section-about .about-deco {
    width: 703px;
    top: auto;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 703px) {
  .home .section-about .about-deco {
    left: 0;
    transform: none;
  }
}
.home .section-about .about-deco span {
  width: 349px;
  aspect-ratio: 349/233;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-deco span {
    width: 168px;
  }
}
.home .section-about .about-deco span:first-of-type {
  background-image: url(../img/section-about01.webp);
  margin-top: 360px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-deco span:first-of-type {
    margin-top: 173px;
  }
}
.home .section-about .about-deco span:nth-of-type(2) {
  background-image: url(../img/section-about02.webp);
  margin-top: 240px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-deco span:nth-of-type(2) {
    margin-top: 116px;
  }
}
.home .section-about .about-deco span:nth-of-type(3) {
  background-image: url(../img/section-about03.webp);
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-deco span:nth-of-type(3) {
    margin-top: 58px;
  }
}
.home .section-about .about-deco span:last-of-type {
  background-image: url(../img/section-about04.webp);
}
.home .section-about .about-inner {
  position: relative;
}
.home .section-about .about-description {
  color: #fff;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  line-height: 2;
  margin-top: 39px;
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .home .section-about .about-description {
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
.home .section-service {
  padding-top: 120px;
  background-color: #edecec;
}
.home .section-service .service-box {
  margin: 45px auto 0;
  width: calc(100% - 40px);
}
.home .section-service .service-box li {
  margin-top: 10px;
  border-radius: 10px;
  height: 400px;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-box li {
    aspect-ratio: 335/305;
    height: auto;
    margin-top: 40px;
  }
}
.home .section-service .service-box li:first-of-type {
  margin-top: 0;
  background-image: url(../img/service-box01.webp);
}
@media screen and (max-width: 768px) {
  .home .section-service .service-box li:first-of-type {
    background-image: url(../img/service-box01-sp.webp);
  }
}
.home .section-service .service-box li:last-of-type {
  background-image: url(../img/service-box02.webp);
}
@media screen and (max-width: 768px) {
  .home .section-service .service-box li:last-of-type {
    background-image: url(../img/service-box02-sp.webp);
  }
}
.home .section-service .service-sub_head {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-family: "Poppins-SemiBold";
  line-height: 1.43;
  position: relative;
  padding-bottom: 6px;
}
.home .section-service .service-sub_head:before {
  content: "";
  display: block;
  width: 500px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-sub_head:before {
    width: 100%;
  }
}
.home .section-service .service-sub_head:after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #9f0000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home .section-service .service-ttl {
  margin-top: 26px;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  font-family: "NotoSansJP-Bold";
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-ttl {
    margin-top: 24px;
  }
}
.home .section-service .service-description {
  margin-top: 18px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-description {
    margin-top: 22px;
  }
}
.home .section-service .service-description_br1 {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-service .service-description_br1 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-service .service-description_br2 {
    display: none;
  }
}
.home .section-service .service-btn_wrap {
  margin-top: 60px;
  display: flex;
  justify-content: flex-end;
}
.home .section-tech {
  background-color: #edecec;
  padding-top: 134px;
}
@media screen and (max-width: 768px) {
  .home .section-tech {
    padding-top: 120px;
  }
}
.home .section-tech .tech-secttl {
  width: 914px;
  max-width: 100%;
  margin: auto;
}
.home .section-tech .tech-container {
  margin-top: 4px;
  position: relative;
  background: linear-gradient(#9f0000 0%, #810000 100%);
  background-repeat: no-repeat;
  background-position: 0% 9.7222222222vw;
  background-size: 100% calc(100% - max(200vh, 1952px + max((100vw - 1200px) / 2, 3.5vw) * 2) - 9.7222222222vw);
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-container {
    margin-top: 24px;
    background: linear-gradient(#9f0000 0%, #360000 100%);
    background-position: 0% 9.6vw;
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }
}
.home .section-tech .tech-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 9.7222222222vw;
  background-image: url(../img/tech-container.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-container:before {
    height: 9.6vw;
  }
}
.home .section-tech .tech-cat_box {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  counter-reset: listnum;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box {
    display: block;
    padding-top: 60px;
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
  }
}
.home .section-tech .tech-cat_box:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 10px;
  background-color: #810000;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box:before {
    content: none;
  }
}
.home .section-tech .tech-cat_box li {
  width: calc((100% - 40px) / 3);
  aspect-ratio: 1/1;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Bold";
  line-height: 1.6;
  padding: 16px 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box li {
    width: 100%;
    margin-top: 40px;
    padding: 17px;
  }
}
.home .section-tech .tech-cat_box li:first-of-type {
  background-image: url(../img/tech-cat-box01.webp);
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box li:first-of-type {
    margin-top: 0;
    transition-delay: 0s;
  }
}
.home .section-tech .tech-cat_box li:nth-of-type(2) {
  background-image: url(../img/tech-cat-box02.webp);
  transition-delay: 0.2s;
  transition-delay: 0.1s;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box li:nth-of-type(2) {
    transition-delay: 0s;
  }
}
.home .section-tech .tech-cat_box li:last-of-type {
  background-image: url(../img/tech-cat-box03.webp);
  transition-delay: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box li:last-of-type {
    transition-delay: 0s;
  }
}
.home .section-tech .tech-cat_box li:before {
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-family: "Poppins-SemiBold";
  color: #e1e0e0;
  font-size: clamp(3rem, 4vw, 5.2rem);
  line-height: 1.4;
  position: absolute;
  top: 7px;
  left: 20px;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box li:before {
    top: 10px;
  }
}
.home .section-tech .tech-cat_box .tech-cat_xl_br {
  display: none;
}
@media screen and (max-width: 1200px) {
  .home .section-tech .tech-cat_box .tech-cat_xl_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box .tech-cat_xl_br {
    display: none;
  }
}
.home .section-tech .tech-cat_box .tech-cat_lg_br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .home .section-tech .tech-cat_box .tech-cat_lg_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box .tech-cat_lg_br {
    display: none;
  }
}
.home .section-tech .tech-cat_box .tech-cat_md_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-cat_box .tech-cat_md_br {
    display: block;
  }
}
.home .section-tech .tech-working_container {
  height: max(200vh, 1952px + max((100vw - 1200px) / 2, 3.5vw) * 2);
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_container {
    height: auto;
  }
}
.home .section-tech .tech-working_wrapper {
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  z-index: 100;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  overflow: hidden;
  background-image: url(../img/tech-working-container.svg), linear-gradient(#7f0001 0%, #7f0001 100%), linear-gradient(#810000 0%, #360000 100%);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: auto calc(100vh - 140px), auto calc(100vh - 140px), 100% auto;
  background-position: 0% 100%, calc(100vh - 140px) 100%, 0% 0%;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_wrapper {
    height: auto;
    position: static;
    background-image: url(../img/tech-working-container.svg);
    background-repeat: no-repeat;
    background-size: auto calc(100vh - 120px);
    background-position: 0% 100%;
    padding-top: 240px;
    padding-bottom: 110px;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_sp_inner {
    width: 100%;
    overflow-x: scroll;
    scrollbar-color: #530000 #7f0001;
  }
}
.home .section-tech .tech-working_inner {
  display: flex;
  align-items: center;
  width: calc(1952px + max((100vw - 1200px) / 2, 3.5vw) * 2);
  padding-left: max((100vw - 1200px) / 2, 3.5vw);
  padding-right: max((100vw - 1200px) / 2, 3.5vw);
  box-sizing: border-box;
  position: absolute;
  top: 0;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_inner {
    width: 2020px;
    padding-left: 96px;
    padding-right: 20px;
    box-sizing: border-box;
    position: static;
    height: auto;
  }
}
.home .section-tech .tech-working_flex {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_flex {
    height: 292px;
  }
}
.home .section-tech .tech-working_ttl {
  color: #fff;
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  font-family: "NotoSansJP-Bold";
  width: 292px;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_ttl {
    width: 223px;
    font-size: clamp(2.2rem, 2.3vw, 2.4rem);
  }
}
.home .section-tech .tech-working_ttl > span {
  position: relative;
  height: 60px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_ttl > span {
    height: 42px;
  }
}
.home .section-tech .tech-working_ttl > span:before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #d9001f;
  position: absolute;
  top: 4px;
  left: 4px;
}
.home .section-tech .tech-working_ttl > span > span {
  position: relative;
  display: inline-block;
  background-color: #111;
  padding-left: 6px;
  padding-right: 6px;
  line-height: 60px;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_ttl > span > span {
    line-height: 42px;
  }
}
.home .section-tech .tech-working_box {
  width: 1660px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_box {
    width: 1655px;
  }
}
.home .section-tech .tech-working_box > li {
  width: 300px;
  color: #fff;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_box > li {
    width: 295px;
  }
}
.home .section-tech .tech-working_box > li:before {
  content: "";
  display: block;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 10px;
  background-color: #fff;
  background-size: cover;
  background-position: 50% 50%;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-working_box > li:before {
    height: 197px;
  }
}
.home .section-tech .tech-working_box > li:nth-of-type(2n) {
  margin-top: auto;
}
.home .section-tech .tech-working_box > li:first-of-type:before {
  background-image: url(../img/tech-working-box01.webp);
}
.home .section-tech .tech-working_box > li:nth-of-type(2):before {
  background-image: url(../img/tech-working-box02.webp);
}
.home .section-tech .tech-working_box > li:nth-of-type(3):before {
  background-image: url(../img/tech-working-box03.webp);
}
.home .section-tech .tech-working_box > li:nth-of-type(4):before {
  background-image: url(../img/tech-working-box04.webp);
}
.home .section-tech .tech-working_box > li:last-of-type:before {
  background-image: url(../img/tech-working-box05.webp);
}
.home .section-tech .tech-btn_wrap {
  position: absolute;
  bottom: calc(50% - 150px - 80px);
  right: max((100vw - 1200px) / 2, 3.5vw);
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .home .section-tech .tech-btn_wrap {
    position: static;
    margin-top: 120px;
    display: flex;
    justify-content: flex-end;
    margin-right: 20px;
  }
}
.home .section-company {
  padding-top: 140px;
  padding-bottom: 140px;
  background: radial-gradient(circle, #333 0%, #000 100%);
  position: relative;
}
@media screen and (max-width: 768px) {
  .home .section-company {
    padding-top: 118px;
    padding-bottom: 120px;
  }
}
.home .section-company:before {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.home .section-company .secttl {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(8rem, 9vw, 10rem);
  font-family: "Poppins-SemiBold";
  width: 5.2em;
}
@media screen and (max-width: 768px) {
  .home .section-company .secttl {
    font-size: clamp(4.8rem, 4.9vw, 5rem);
  }
}
.home .section-company .company-description {
  margin-top: 20px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  line-height: 2;
  max-width: 100%;
  color: #fff;
  text-align: center;
  transition-delay: 0.2s;
}
.home .section-company .company-description_md_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-company .company-description_md_br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .home .section-company .company-description_md_none {
    display: none;
  }
}
.home .section-company .company-btn_wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .home .section-company .company-btn_wrap {
    margin-top: 60px;
  }
}
.home .section-recruit {
  padding-top: 138px;
  padding-bottom: 208px;
  background: linear-gradient(rgba(17, 17, 17, 0) 0%, #111 100%);
}
@media screen and (max-width: 768px) {
  .home .section-recruit {
    padding-top: 118px;
    padding-bottom: 120px;
  }
}
.home .section-recruit .recruit-deco {
  width: 830px;
  height: 400px;
  position: absolute;
  top: 215px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco {
    width: 652px;
    height: 314px;
    top: 175px;
  }
}
.home .section-recruit .recruit-deco span {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
  border-radius: 10px;
}
.home .section-recruit .recruit-deco span:first-of-type {
  width: 225px;
  aspect-ratio: 225/300;
  background-image: url(../img/recruit-deco01.webp);
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco span:first-of-type {
    width: 177px;
  }
}
.home .section-recruit .recruit-deco span:nth-of-type(2) {
  width: 300px;
  aspect-ratio: 300/400;
  background-image: url(../img/recruit-deco02.webp);
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco span:nth-of-type(2) {
    width: 236px;
  }
}
.home .section-recruit .recruit-deco span:last-of-type {
  width: 225px;
  aspect-ratio: 225/300;
  background-image: url(../img/recruit-deco03.webp);
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-deco span:last-of-type {
    width: 177px;
  }
}
.home .section-recruit .recruit-inner {
  position: relative;
}
.home .section-recruit .recruit-secttl {
  font-size: clamp(8rem, 9vw, 10rem);
  font-family: "Poppins-SemiBold";
  width: 4.2em;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-secttl {
    font-size: clamp(4.8rem, 4.9vw, 5rem);
  }
}
.home .section-recruit .recruit-description {
  color: #fff;
  margin-top: 10px;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  line-height: 2;
  text-align: center;
  transition-delay: 0.2s;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-description {
    margin-top: 40px;
    font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  }
}
.home .section-recruit .recruit-description_br {
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section-recruit .recruit-description_br {
    display: block;
  }
}
.home .section-recruit .recruit-btn_wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

footer {
  background-color: #111111;
  position: relative;
}
footer .footer-contact_box {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  footer .footer-contact_box {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .footer-contact_box {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
footer .footer-contact_box > li {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 1000px) {
  footer .footer-contact_box > li {
    width: 100%;
  }
}
footer .footer-contact_box > li:first-of-type .footer-contact_link {
  background-image: url(../img/footer-contact-link01.webp);
}
@media screen and (max-width: 768px) {
  footer .footer-contact_box > li:first-of-type .footer-contact_link {
    background-image: url(../img/footer-contact-link01-sp.webp);
  }
}
@media screen and (max-width: 1000px) {
  footer .footer-contact_box > li:last-of-type {
    margin-top: 20px;
  }
}
footer .footer-contact_box > li:last-of-type .footer-contact_link {
  background-image: url(../img/footer-contact-link02.webp);
}
@media screen and (max-width: 768px) {
  footer .footer-contact_box > li:last-of-type .footer-contact_link {
    background-image: url(../img/footer-contact-link02-sp.webp);
  }
}
footer .footer-contact_link {
  display: block;
  height: 140px;
  border-radius: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  color: #e1e0e0;
  position: relative;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 26px;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_link {
    height: 100px;
    padding-top: 30px;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
  }
}
footer .footer-contact_link:hover {
  filter: brightness(1.3);
}
footer .footer-contact_link:hover .footer-contact_deco:before, footer .footer-contact_link:hover .footer-contact_deco:after {
  transform: translateX(44px);
}
@media screen and (max-width: 768px) {
  footer .footer-contact_link:hover .footer-contact_deco:before, footer .footer-contact_link:hover .footer-contact_deco:after {
    transform: translateX(40px);
  }
}
footer .footer-contact_sub {
  background-color: #9f0000;
  width: 238px;
  height: 41px;
  border-radius: 10px 0 10px 0;
  display: block;
  font-family: "NotoSansJP-Medium";
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_sub {
    width: 153px;
    height: 31px;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  }
}
footer .footer-contact_form {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_form {
    font-size: clamp(1.6rem, 1.8vw, 1.8rem);
    margin-right: 35px;
  }
}
footer .footer-contact_deco {
  border-radius: 10px;
  background-color: #9f0000;
  width: 46px;
  height: 40px;
  display: block;
  transition: 0.3s;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_deco {
    width: 36px;
    height: 30px;
  }
}
footer .footer-contact_deco:before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/14;
  background-image: url(../img/icon-arrow.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  left: 14px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_deco:before {
    width: 12px;
    top: 10px;
    left: 13px;
  }
}
footer .footer-contact_deco:after {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 19/14;
  background-image: url(../img/icon-arrow.svg);
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 13px;
  left: -30px;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_deco:after {
    width: 12px;
    top: 10px;
    left: -28px;
  }
}
footer .footer-contact_tel {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
}
@media screen and (max-width: 768px) {
  footer .footer-contact_tel {
    font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  }
}
footer .footer-contact_note {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  padding-top: 0.4em;
}
@media screen and (max-width: 768px) {
  footer .footer-contact_note {
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  }
}
footer .footer-bottom_wrap {
  border-top: solid 1px #e1e0e0;
  padding-top: 70px;
  padding-bottom: 64px;
}
@media screen and (max-width: 768px) {
  footer .footer-bottom_wrap {
    padding-top: 37px;
    padding-bottom: 95px;
  }
}
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: 280px;
}
@media screen and (max-width: 768px) {
  footer .footer-info {
    width: 100%;
  }
}
footer .footer-logo {
  display: block;
  width: 270px;
}
@media screen and (max-width: 768px) {
  footer .footer-logo {
    width: 184px;
  }
}
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: 10px;
  }
}
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: 2px;
  }
}
footer .footer-sns {
  margin-top: 22px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer-sns {
    margin-top: 17px;
  }
}
footer .footer-sns_link {
  display: block;
  background-position: 50% 50%;
  background-size: contain;
  background-repeat: no-repeat;
}
footer .footer-sns_link-instagram {
  width: 16px;
  aspect-ratio: 16/16;
  margin-right: 20px;
  background-image: url(../img/icon-instagram.webp);
}
footer .footer-sns_link-x {
  width: 16px;
  aspect-ratio: 16/17;
  background-image: url(../img/icon-x.webp);
}
footer .footer-sns_link:hover {
  opacity: 0.7;
}
footer .footer-menu {
  max-width: calc(100% - 280px);
  width: 512px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  footer .footer-menu {
    max-width: 100%;
    width: 100%;
    margin-top: 38px;
  }
}
footer .footer-menu_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  footer .footer-menu_box > li {
    display: none;
  }
}
footer .footer-menu_box > li > a {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
}
footer .footer-menu_box > li > a:hover {
  color: #d9001f;
}
footer .footer-menu_box > li:last-of-type {
  width: 100%;
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  footer .footer-menu_box > li:last-of-type {
    display: block;
    margin-top: 0;
  }
}
footer .footer-menu_box > li .footer-menu_privacy {
  color: #ccc;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  footer .footer-menu_box > li .footer-menu_privacy {
    line-height: 1.42;
  }
}
footer .footer-sub_menu {
  margin-top: auto;
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .footer-sub_menu {
    margin-top: 37px;
  }
}
footer .footer-sub_menu img {
  display: block;
  width: auto;
  margin-right: 5px;
}
footer .footer-sub_menu img.w34 {
  width: 34px;
}
footer .footer-sub_menu img.w70 {
  width: 70px;
  margin-right: 0;
}
footer .footer-copyright {
  padding-top: 20px;
  padding-bottom: 18px;
  border-top: 1px solid #707070;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer-copyright {
    padding-top: 16px;
  }
}
footer .footer-copyright small {
  color: #ccc;
  font-size: clamp(1rem, 1vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  footer .footer-copyright small {
    display: block;
    font-size: clamp(1.2rem, 1.4vw, 1.4rem);
    line-height: 1.42;
  }
}

.page .top_visual .w1200 {
  position: relative;
  height: 100%;
}
.page .bread-area {
  position: absolute;
  bottom: 20px;
  right: 0;
  z-index: 9;
  color: #fff;
  font-size: 1.2rem;
}
.page .bread-area a {
  color: #fff;
}
.page.service .top_visual {
  background-image: url(../img/page-mv_02.webp);
}
@media screen and (max-width: 768px) {
  .page.service .top_visual {
    background-image: url(../img/page-mv_02_sp.webp);
  }
}
.page.company .top_visual {
  background-image: url(../img/page-mv_03.webp);
}
@media screen and (max-width: 768px) {
  .page.company .top_visual {
    background-image: url(../img/page-mv_03_sp.webp);
  }
}
.page.recruit .top_visual {
  background-image: url(../img/page-mv_04.webp);
}
@media screen and (max-width: 768px) {
  .page.recruit .top_visual {
    background-image: url(../img/page-mv_03_sp.webp);
  }
}
.page.contact .top_visual {
  background-image: url(../img/contact/top_visual_contact.webp);
}
.page.news .top_visual {
  background-image: url(../img/page-mv_01.webp);
}
@media screen and (max-width: 768px) {
  .page.news .top_visual {
    background-image: url(../img/page-mv_01_sp.webp);
  }
}
.page.contact .top_visual {
  background-image: url(../img/page-mv_05.webp);
}
@media screen and (max-width: 768px) {
  .page.contact .top_visual {
    background-image: url(../img/page-mv_05_sp.webp);
  }
}
.page.policy .top_visual {
  background-image: url(../img/page-mv_05.webp);
}
@media screen and (max-width: 768px) {
  .page.policy .top_visual {
    background-image: url(../img/page-mv_05_sp.webp);
  }
}
.page.error .top_visual {
  background-image: url(../img/page-mv_05.webp);
}
@media screen and (max-width: 768px) {
  .page.error .top_visual {
    background-image: url(../img/page-mv_05_sp.webp);
  }
}
.page .top_visual {
  width: 100vw;
  height: 27.7777777778vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page .top_visual {
    height: 96vw;
  }
}
.page .top_visual::after {
  content: "";
  background-image: url(../img/page-top-deco.webp);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 14.1666666667vw;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: -webkit-clip-path 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: clip-path 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: clip-path 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-clip-path 1.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
@media screen and (max-width: 768px) {
  .page .top_visual::after {
    background-image: url(../img/page-top-deco_sp.webp);
    background-position: bottom;
    height: 100%;
  }
}
.page .top_visual.animated::after {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}
@media screen and (max-width: 768px) {
  .page .top_visual {
    height: 80vw;
  }
}
.page .top_visual .secttl {
  color: #e1e0e0;
  position: absolute;
  top: 50%;
  transform: translateY(-30%);
}
.page .top_visual .secttl.animated .secttl_sub,
.page .top_visual .secttl.animated .secttl_main > span {
  opacity: 1;
  transform: translateY(0);
}
.page .top_visual .secttl .secttl_sub {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Bold";
  display: block;
  line-height: 1.2em;
  opacity: 0;
  transform: translateY(60px);
  transition: 0.8s;
  transition-delay: 0s;
}
.page .top_visual .secttl .secttl_sub:before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  border-radius: 10px 0 0 0;
  background-color: #9f0000;
  margin-right: 8px;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  .page .top_visual .secttl .secttl_sub:before {
    width: 1.2em;
    height: 1.2em;
    margin-right: 5px;
  }
}
.page .top_visual .secttl .secttl_main {
  font-size: clamp(8rem, 9vw, 10rem);
  font-family: "Poppins-SemiBold";
  display: block;
  line-height: 1.4;
  margin-top: -10px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .page .top_visual .secttl .secttl_main {
    line-height: 1;
    margin-top: 12px;
  }
}
@media screen and (max-width: 768px) {
  .page .top_visual .secttl .secttl_main {
    font-size: clamp(4.8rem, 4.9vw, 5rem);
  }
}
.page .top_visual .secttl .secttl_main > span {
  display: block;
  opacity: 0;
  transform: translateY(1.2em);
  transition: 0.8s;
  transition-delay: 0.1s;
}
.page .section_news_contents {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .page .section_news_contents {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}
.page .news_archive_list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page .news_archive_list {
    flex-direction: column;
  }
}
.page .news_archive_list li {
  width: calc(33.33% - 60px);
  margin-right: 60px;
  font-family: "NotoSansJP-Medium";
}
@media screen and (max-width: 768px) {
  .page .news_archive_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 57px;
  }
}
.page .news_archive_list li a .thumbnail {
  overflow: hidden;
  border-radius: 10px;
}
.page .news_archive_list li a .thumbnail img {
  transition: all 0.3s;
}
.page .news_archive_list li a:hover img {
  transform: scale(1.05);
}
.page .news_archive_list li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page .news_archive_list li:last-of-type {
    margin-bottom: 0;
  }
}
.page .news_archive_list li .day {
  color: #9f0000;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  margin-top: 10px;
  line-height: 1.4;
}
.page .news_archive_list li .news_tittle {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #333;
  line-height: 1.5;
}
.page .w600 {
  max-width: 600px;
  width: 100%;
  margin: auto;
}
.page .w600 .day {
  font-family: "NotoSansJP-Medium";
  color: #9f0000;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  margin-top: 10px;
  line-height: 1.4;
  margin-bottom: 8px;
}
.page .w600 .tittle {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  color: #333;
  line-height: 1.5;
  padding-bottom: 12px;
  border-bottom: solid 1px #9f0000;
  margin-bottom: 16px;
}
.page .w600 .post_text {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 56px;
}
.page .news-btn .more-btn {
  margin: auto;
}
.page.service .section_service_contents {
  padding-top: 110px;
  padding-bottom: 84px;
}
@media screen and (max-width: 768px) {
  .page.service .section_service_contents {
    padding-top: 80px;
    padding-bottom: 118px;
  }
}
@media screen and (max-width: 768px) {
  .page.service .section_service_contents .secttl {
    margin-bottom: 26px;
  }
}
.page.service .section_service_contents .secttl .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .page.service .section_service_contents .secttl .secttl_sub {
    margin-bottom: 0;
  }
}
.page.service .section_service_contents .secttl .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .page.service .section_service_contents .secttl .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.page.service .section_service_contents .more_btn {
  display: flex;
  justify-content: center;
  margin: 0 auto 120px;
  text-align: center;
  font-family: "NotoSansJP-Medium";
  width: 155px;
  height: 40px;
  color: #ffffff;
  background-color: #333;
  border-radius: 20px;
  font-size: 1.6rem;
  line-height: 40px;
  overflow: hidden;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .page.service .section_service_contents .more_btn {
    margin-bottom: 80px;
  }
}
.page.service .section_service_contents .more_btn span {
  display: block;
  width: 100%;
}
.page.service .section_service_contents .more_btn :hover {
  background-color: #9f0000;
}
.page.service .feature_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list {
    flex-direction: column-reverse;
    margin-bottom: 76px;
  }
}
.page.service .feature_list.mt60 {
  margin-top: 60px;
}
.page.service .feature_list .feature-text {
  width: 41.6666666667vw;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature-text {
    width: 100%;
  }
}
.page.service .feature_list .feature-text h3 {
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  font-family: "NotoSansJP-Bold";
  color: #333;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature-text h3 {
    font-size: 2.4rem;
    margin-top: 32px;
    margin-bottom: 30px;
  }
}
.page.service .feature_list .feature-text .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  color: #333;
}
.page.service .feature_list .feature-text .indent {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  padding-left: 20px;
  margin-bottom: 30px;
  position: relative;
  color: #333;
}
.page.service .feature_list .feature-text .indent::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #707070;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature-text .indent:last-of-type {
    margin-bottom: 0;
  }
}
.page.service .feature_list .feature-image01 {
  width: 41.6666666667vw;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature-image01 {
    width: calc(100% + 20px);
    margin: auto;
  }
}
.page.service .feature_list.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list.reverse {
    flex-direction: column-reverse;
    margin-top: 0;
  }
}
.page.service .feature_list .feature-image02 {
  width: 31.25vw;
  max-width: 450px;
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature-image02 {
    width: calc(100% + 20px);
    max-width: none;
    transform: translateX(-10px);
  }
}
@media screen and (max-width: 768px) {
  .page.service .feature_list .feature_auto {
    width: 100%;
    margin: auto;
    transform: none;
  }
}
.page.service .facilities_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
}
@media screen and (max-width: 768px) {
  .page.service .facilities_list {
    margin-top: 0;
    justify-content: space-between;
  }
}
.page.service .facilities_list .text-indent {
  text-indent: -0.5em;
}
.page.service .facilities_list li {
  width: 21.25%;
  margin-right: 5%;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .page.service .facilities_list li {
    width: 47%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.page.service .facilities_list li:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .page.service .facilities_list li:last-of-type {
    margin-bottom: 60px;
  }
}
.page.service .facilities_list li .facilities_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 14px;
  margin-top: 10px;
}
.page.service .facilities_list li .facilities_text::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #9f0000;
  top: 0;
  left: 0;
}
.page.service .facilities_list li .facilities_text .red {
  font-family: "NotoSansJP-Medium";
  display: block;
  width: 100%;
  color: #9f0000;
  font-size: clamp(1rem, 1vw, 1.2rem);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page.service .facilities_list li .facilities_text .red {
    font-size: 1.2rem;
    margin-bottom: 2px;
  }
}
.page.service .facilities_list li .facilities_text .item {
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-family: "NotoSansJP-Medium";
  line-height: 1.8;
  margin-bottom: 4px;
}
@media screen and (max-width: 1200px) {
  .page.service .facilities_list li .facilities_text .item {
    width: 100%;
  }
}
@media screen and (max-width: 1000px) {
  .page.service .facilities_list li .facilities_text .item {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .page.service .facilities_list li .facilities_text .item {
    font-size: 1.4rem;
    margin-bottom: 2px;
  }
}
.page.service .facilities_list li .facilities_text .units {
  display: inline-block;
  background-color: #9f0000;
  font-family: "NotoSansJP-Medium";
  color: #fff;
  font-size: clamp(1rem, 1vw, 1.2rem);
  width: 3.4722222222vw;
  height: 25px;
  line-height: 25px;
  text-align: center;
  border-radius: 5px;
}
@media screen and (max-width: 1200px) {
  .page.service .facilities_list li .facilities_text .units {
    font-size: 1rem;
    width: 40px;
    height: 18px;
    line-height: 18px;
  }
}
.page.service .facilities_box {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}
.page.service .full-height {
  height: 100%;
}
.page.service #expandBtn .hide {
  display: none;
}
.page.service #expandBtn.active .show {
  display: none;
}
.page.service #expandBtn.active .hide {
  display: inline;
}
.page.service .case_list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .page.service .case_list {
    flex-direction: column;
  }
}
.page.service .case_list li {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .page.service .case_list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 56px;
  }
}
@media screen and (max-width: 768px) {
  .page.service .case_list li:last-of-type {
    margin-bottom: 0;
  }
}
.page.service .case_list li .note {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-top: 12px;
}
.page.service .case_list li:nth-child(3n) {
  margin-right: 0;
}

.company .section_messeage_contents {
  padding-top: 110px;
  padding-bottom: 108px;
  background-color: #edecec;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents {
    padding-top: 80px;
    padding-bottom: 76px;
  }
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents h2 {
    margin-bottom: 26px;
  }
}
.company .section_messeage_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_messeage_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_messeage_contents .message_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap {
    flex-direction: column-reverse;
    margin-top: 26px;
  }
}
.company .section_messeage_contents .message_wrap .message-text {
  width: 50%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap .message-text {
    width: 100%;
  }
}
.company .section_messeage_contents .message_wrap .message-text h3 {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  margin-bottom: 28px;
  color: #333;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap .message-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.company .section_messeage_contents .message_wrap .message-text .description {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 30px;
  line-height: 1.8;
  color: #333;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap .message-text .description {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap .message-text .description::last-of-type {
    margin-bottom: 20px;
  }
}
.company .section_messeage_contents .message_wrap .message-text .note {
  font-family: "NotoSansJP-Regular";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
  line-height: 1.8;
}
.company .section_messeage_contents .message_wrap .message-president {
  width: 25%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .company .section_messeage_contents .message_wrap .message-president {
    width: 100%;
    max-width: 57.3333333333vw;
    margin: 0 auto 32px;
  }
}
.company .section_messeage_contents .message_wrap .message-president p {
  text-align: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-top: 10px;
  color: #333;
}
.company .section_profile_contents {
  padding: 140px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents {
    padding: 78px 0;
  }
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents h2 {
    margin-bottom: 26px;
  }
}
.company .section_profile_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_profile_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_profile_contents .profile_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents .profile_wrap {
    flex-direction: column;
    margin-top: 26px;
  }
}
.company .section_profile_contents .profile_wrap .company_image {
  width: 37.5%;
  max-width: 450px;
  overflow: hidden;
  position: relative;
  padding-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents .profile_wrap .company_image {
    width: 100%;
    max-width: 100%;
  }
}
.company .section_profile_contents .profile_wrap .swiper-pagination {
  bottom: 0;
}
.company .section_profile_contents .profile_wrap .swiper-pagination-bullet {
  background-color: #9f0000;
  opacity: 0.4;
}
.company .section_profile_contents .profile_wrap .swiper-pagination-bullet-active {
  background-color: #9f0000;
  opacity: 1;
}
.company .section_profile_contents .profile_wrap .company_info {
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  .company .section_profile_contents .profile_wrap .company_info {
    margin-top: 20px;
    width: 100%;
    max-width: 100%;
  }
}
.company .section_profile_contents .profile_wrap .company_info dl {
  display: flex;
  align-items: start;
  border-top: solid 1px #cccccc;
  padding: 25px 0;
}
.company .section_profile_contents .profile_wrap .company_info dl:last-of-type {
  border-bottom: solid 1px #cccccc;
}
.company .section_profile_contents .profile_wrap .company_info dl dt {
  width: 28%;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: normal;
  color: #707070;
  line-height: 1.8;
}
.company .section_profile_contents .profile_wrap .company_info dl dd {
  width: 72%;
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-weight: normal;
  color: #707070;
  line-height: 1.8;
}
.company .section_facility_contents {
  padding: 140px 0;
  background-color: #edecec;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents {
    padding: 78px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents h2 {
    margin-bottom: 26px;
  }
}
.company .section_facility_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_facility_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_facility_contents .facility_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents .facility_wrap {
    flex-direction: column;
  }
}
.company .section_facility_contents .facility_wrap .facility_list {
  width: 75%;
  max-width: 900px;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents .facility_wrap .facility_list {
    width: 100%;
    max-width: 100%;
  }
}
.company .section_facility_contents .facility_wrap .facility_list h3 {
  font-size: clamp(1.8rem, 1.97vw, 2rem);
  font-family: "NotoSansJP-Bold";
  padding-bottom: 12px;
  margin-bottom: 52px;
  border-bottom: solid 1px #9f0000;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents .facility_wrap .facility_list h3 {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.company .section_facility_contents .facility_wrap .facility_list .facility_item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.company .section_facility_contents .facility_wrap .facility_list .facility_item:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents .facility_wrap .facility_list .facility_item {
    flex-direction: column;
    margin-bottom: 44px;
  }
  .company .section_facility_contents .facility_wrap .facility_list .facility_item:last-of-type {
    margin-bottom: 36px;
  }
}
.company .section_facility_contents .facility_wrap .facility_list .facility_item img {
  width: 45%;
  max-width: 410px;
}
@media screen and (max-width: 768px) {
  .company .section_facility_contents .facility_wrap .facility_list .facility_item img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }
}
.company .section_mission_contents {
  background-color: #0a0c0b;
  padding: 140px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents {
    padding: 78px 0;
  }
}
.company .section_mission_contents::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/mission_deco01.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10.7638888889vw;
  height: 10.7638888889vw;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents::before {
    width: 41.3333333333vw;
    height: 41.3333333333vw;
  }
}
.company .section_mission_contents::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-image: url(../img/mission_deco02.webp);
  background-repeat: no-repeat;
  background-size: contain;
  width: 17.3611111111vw;
  height: 10.0694444444vw;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents::after {
    width: 66.6666666667vw;
    height: 38.6666666667vw;
  }
}
.company .section_mission_contents .mission_contents {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents .mission_contents {
    flex-direction: column;
  }
}
.company .section_mission_contents .mission_wrap {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents .mission_wrap {
    width: 100%;
  }
}
.company .section_mission_contents h2 {
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents h2 {
    margin-bottom: 26px;
  }
}
.company .section_mission_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_mission_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #ffffff;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_mission_contents h3 {
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #ffffff;
  line-height: 1.8;
  font-family: "NotoSansJP-Bold";
  margin-bottom: 28px;
}
.company .section_mission_contents .vision-ttl {
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents .vision_mb {
    margin-bottom: 74px;
  }
}
.company .section_mission_contents .description {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #ffffff;
  line-height: 1.8;
  margin-bottom: 136px;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents .description {
    margin-bottom: 74px;
  }
}
.company .section_mission_contents ul {
  font-family: "NotoSansJP-Medium";
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents ul {
    margin-bottom: 70px;
  }
}
.company .section_mission_contents ul li {
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents ul li {
    display: flex;
    align-items: flex-start;
    line-height: 1.8;
  }
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents ul li span {
    width: calc(100% - 20px);
  }
}
.company .section_mission_contents ul li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #9f0000;
  border-radius: 50%;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents ul li::before {
    transform: translateY(9px);
  }
}
.company .section_mission_contents .mission_image {
  position: sticky;
  top: 80px;
  max-width: 480px;
  width: 40%;
}
@media screen and (max-width: 768px) {
  .company .section_mission_contents .mission_image {
    max-width: 100%;
    width: 100%;
  }
}
.company .section_susutainability_contents {
  padding-top: 140px;
  background-color: #edecec;
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents h2 {
    margin-bottom: 26px;
  }
}
.company .section_susutainability_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_susutainability_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_susutainability_contents ul {
  margin-top: 55px;
  margin-left: 12.5%;
  display: flex;
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents ul {
    margin: auto;
    flex-direction: column;
  }
}
.company .section_susutainability_contents ul li {
  max-width: 375px;
  margin-right: 12.5%;
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents ul li {
    margin: 0 auto 56px;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company .section_susutainability_contents ul li:last-of-type {
    margin-bottom: 0;
  }
}
.company .section_susutainability_contents ul li span {
  display: block;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  margin-top: 13px;
  color: #333333;
}
.company .section_susutainability_contents ul li:last-child {
  margin-right: 0;
}
.company .section_group_company {
  padding: 140px 0;
  background-color: #edecec;
}
@media screen and (max-width: 768px) {
  .company .section_group_company {
    padding: 80px 0;
  }
}
@media screen and (max-width: 768px) {
  .company .section_group_company h2 {
    margin-bottom: 26px;
  }
}
.company .section_group_company h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_group_company h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_group_company h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_group_company h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_group_company .company-box {
  margin-top: 55px;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .company .section_group_company .company-box {
    margin: auto;
    flex-direction: column;
  }
}
.company .section_group_company .company-box li {
  max-width: 375px;
  margin-right: 12.5%;
}
@media screen and (max-width: 768px) {
  .company .section_group_company .company-box li {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 60px;
  }
}
.company .section_group_company .company-box li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .company .section_group_company .company-box li:last-child {
    margin-bottom: 0;
  }
}
.company .section_group_company .group_company_link {
  overflow: hidden;
  border-radius: 10px;
}
.company .section_group_company .group_company_link img {
  transition: 0.3s;
}
.company .section_group_company .group_company_link:hover img {
  transform: scale(1.06);
}
.company .section_group_company .group_company_adress {
  width: 100%;
}
.company .section_group_company .company-list_inner {
  margin-top: 13px;
}
.company .section_group_company .company-list_ttl {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Bold";
  line-height: 1.5;
  padding-bottom: 8px;
  position: relative;
  color: #333333;
}
.company .section_group_company .company-list_ttl:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #cccccc;
  position: absolute;
  bottom: 0;
  left: 0;
}
.company .section_group_company .company-list_ttl:after {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #9f0000;
  position: absolute;
  bottom: 0;
  left: 0;
}
.company .section_group_company .company-list_description {
  margin-top: 5px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  line-height: 1.8;
}
.company .section_group_company .company-list_address {
  background-color: #e1e0e0;
  padding: 2px 10px;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  font-family: "NotoSansJP-Regular";
  line-height: 1.8;
  margin-top: 16px;
}
.company .section_history {
  padding: 140px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .company .section_history {
    padding: 80px 0;
  }
}
.company .section_history .history_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap {
    flex-direction: column;
  }
}
.company .section_history .history_wrap .history_box {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box h2 {
    margin-bottom: 26px;
  }
}
.company .section_history .history_wrap .history_box h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.company .section_history .history_wrap .history_box h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.company .section_history .history_wrap .history_box .history_flow {
  margin-top: 55px;
  padding: 40px 0 30px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box .history_flow {
    margin-top: 0;
    padding: 30px 0 40px 0;
  }
}
.company .section_history .history_wrap .history_box .history_flow::after {
  content: "";
  position: absolute;
  left: 20%;
  top: 0;
  width: 1px;
  height: 100%;
  background-color: #e1e0e0;
  transform: translateX(-0.5px);
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box .history_flow::after {
    left: 27.7333333333vw;
  }
}
.company .section_history .history_wrap .history_box .history_flow dl {
  display: flex;
  align-items: flex-start;
  margin-bottom: 50px;
}
.company .section_history .history_wrap .history_box .history_flow dl:last-of-type {
  margin-bottom: 0;
}
.company .section_history .history_wrap .history_box .history_flow dl dt {
  width: 20%;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-family: "NotoSansJP-Medium";
  font-weight: normal;
  position: relative;
  color: #707070;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box .history_flow dl dt {
    width: 27.7333333333vw;
  }
}
.company .section_history .history_wrap .history_box .history_flow dl dt::after {
  content: "";
  position: absolute;
  background-color: #9f0000;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: 14px;
  right: 0;
  transform: translate(50%, -50%);
  z-index: 2;
}
.company .section_history .history_wrap .history_box .history_flow dl dd {
  width: 80%;
  padding-left: 45px;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  font-family: "NotoSansJP-Medium";
  color: #707070;
  font-weight: normal;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_box .history_flow dl dd {
    width: calc(100% - 27.7333333333vw);
  }
}
.company .section_history .history_wrap .history_image {
  max-width: 450px;
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_image {
    max-width: 100%;
    width: 100%;
    margin-top: 30px;
  }
}
.company .section_history .history_wrap .history_image img {
  margin-bottom: 38px;
}
@media screen and (max-width: 768px) {
  .company .section_history .history_wrap .history_image img {
    margin-bottom: 30px;
  }
}
.company .section_history .history_wrap .history_image img:last-child {
  margin-bottom: 0;
}

.recruit .section_message_contents {
  background-image: url(../img/message_bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
  padding: 110px 0 114px 0;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents {
    padding: 80px 0;
    background-image: none;
  }
}
.recruit .section_message_contents h2 {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents h2 {
    margin-bottom: 26px;
  }
}
.recruit .section_message_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.recruit .section_message_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.recruit .section_message_contents .message_wrap {
  width: 50%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents .message_wrap {
    width: 100%;
  }
}
.recruit .section_message_contents .message_wrap h3 {
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  font-family: "NotoSansJP-Bold";
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .recruit .section_message_contents .message_wrap h3 {
    margin-bottom: 22px;
  }
}
.recruit .section_message_contents .message_wrap p {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 1.8rem;
}
.recruit .message_image {
  position: absolute;
  width: 38.5416666667vw;
  height: 43.75vw;
  -o-object-fit: cover;
     object-fit: cover;
  background-image: url(../img/message_goroup.webp);
  background-size: contain;
  background-repeat: no-repeat;
  top: 230px;
  right: 15px;
}
@media screen and (max-width: 768px) {
  .recruit .message_image {
    position: static;
    background-image: url(../img/message_goroup_sp.webp);
    width: 100%;
    max-width: 100%;
    height: 145.8666666667vw;
  }
}
.recruit .section_interview_contents h2 {
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents h2 {
    margin-bottom: 26px;
  }
}
.recruit .section_interview_contents h2 .secttl_sub {
  font-family: "NotoSansJP-Bold";
  color: #9f0000;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  margin-bottom: 8px;
  line-height: 1.2em;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents h2 .secttl_sub {
    margin-bottom: 0;
  }
}
.recruit .section_interview_contents h2 .secttl_main {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #333;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents h2 .secttl_main {
    font-size: 2rem;
    margin-top: 0;
  }
}
.recruit .section_interview_contents .interview {
  position: relative;
  padding: 70px 0 80px 0;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview {
    padding-top: 71.4666666667vw;
    padding-bottom: 5.2533333333vw;
  }
}
.recruit .section_interview_contents .interview .btn {
  width: 100%;
  transition: 0.3s;
  position: relative;
  border: solid 1px #ffffff;
  z-index: 2;
}
.recruit .section_interview_contents .interview h3 {
  font-size: clamp(2.6rem, 2.917vw, 3.2rem);
  font-family: "NotoSansJP-Bold";
  line-height: 1.8;
  color: #ffffff;
  margin-bottom: 40px;
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview h3 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: auto;
    margin-bottom: 28px;
    width: calc(100% - 40px);
  }
}
.recruit .section_interview_contents .interview .interview_btn {
  max-width: 410px;
  margin-left: 40px;
  text-align: center;
  overflow: hidden;
  position: relative;
  border: solid 1px #ffffff;
  border-radius: 10px;
  z-index: 2;
}
.recruit .section_interview_contents .interview .interview_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  border-radius: 10px;
  background-color: #9f0000;
  z-index: 1;
  transition: 0.3s;
  opacity: 0.7;
}
.recruit .section_interview_contents .interview .interview_btn:hover::after {
  left: 0;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview .interview_btn {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: auto;
  }
}
.recruit .section_interview_contents .interview .interview_btn span {
  display: block;
  width: 100%;
  padding: 13px 0;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  color: #ffffff;
  position: relative;
}
.recruit .section_interview_contents .interview_01 {
  background-image: url(../img/interview01.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_01 {
    background-image: url(../img/interview01_sp.webp);
  }
}
.recruit .section_interview_contents .interview_02 {
  background-image: url(../img/interview02.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_02 {
    background-image: url(../img/interview02_sp.webp);
    margin-top: 60px;
  }
}
.recruit .section_interview_contents .interview_02 h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  padding-left: 0;
  padding-right: 36px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_02 h3 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: auto;
    margin-bottom: 28px;
    width: calc(100% - 40px);
  }
}
.recruit .section_interview_contents .interview_02 .interview_btn {
  margin-right: 36px;
  margin-left: auto;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_02 .interview_btn {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: auto;
  }
}
.recruit .section_interview_contents .interview_03 {
  background-image: url(../img/interview03.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_03 {
    background-image: url(../img/interview03_sp.webp);
    margin-top: 60px;
  }
}
.recruit .section_interview_contents .interview_04 {
  background-image: url(../img/interview04.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_04 {
    background-image: url(../img/interview04_sp.webp);
    margin-top: 60px;
  }
}
.recruit .section_interview_contents .interview_04 h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0;
  margin-left: auto;
  padding-left: 0;
  padding-right: 36px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_04 h3 {
    font-size: 1.8rem;
    line-height: 1.8;
    margin: auto;
    margin-bottom: 28px;
    width: calc(100% - 40px);
  }
}
.recruit .section_interview_contents .interview_04 .interview_btn {
  margin-right: 36px;
  margin-left: auto;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_04 .interview_btn {
    width: calc(100% - 40px);
    max-width: 100%;
    margin: auto;
  }
}
.recruit .section_interview_contents .interview_box {
  display: none;
  overflow: hidden;
}
.recruit .section_interview_contents .interview_box .intervier_item {
  display: flex;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item {
    flex-direction: column-reverse;
    margin-top: 60px;
    margin-bottom: 0;
  }
}
.recruit .section_interview_contents .interview_box .intervier_item.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item.reverse {
    flex-direction: column-reverse;
  }
}
.recruit .section_interview_contents .interview_box .intervier_item .interview_article {
  width: 50%;
  color: #333;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item .interview_article {
    width: 100%;
  }
}
.recruit .section_interview_contents .interview_box .intervier_item .interview_article h4 {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
  font-family: "NotoSansJP-Medium";
  padding-bottom: 12px;
  margin-bottom: 15px;
  border-bottom: solid 1px #cccccc;
  line-height: 1.8;
  padding-left: 2.25em;
  text-indent: -2.25em;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item .interview_article h4 {
    font-size: 1.4rem;
  }
}
.recruit .section_interview_contents .interview_box .intervier_item .interview_article h4 span {
  font-family: "Poppins-SemiBold";
  color: #9f0000;
  font-size: clamp(1.8rem, 1.97vw, 2rem);
  margin-right: 12px;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item .interview_article h4 span {
    font-size: 1.6rem;
  }
}
.recruit .section_interview_contents .interview_box .intervier_item .interview_article p {
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
.recruit .section_interview_contents .interview_box .intervier_item .interview_image {
  width: 37.5%;
}
@media screen and (max-width: 768px) {
  .recruit .section_interview_contents .interview_box .intervier_item .interview_image {
    width: 100%;
    margin-bottom: 16px;
  }
}
.recruit .section_recruit_flow_contents {
  margin-top: 140px;
  padding-top: 6.9444444444vw;
  padding-bottom: 6.25vw;
  background-image: url(../img/recruit_bg.webp);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .recruit .section_recruit_flow_contents {
    padding-top: 76px;
    padding-bottom: 0;
    background-image: url(../img/recruit_bg_sp.webp);
  }
}
.recruit .recruit_flow_box {
  position: relative;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box img {
    display: none;
  }
}
.recruit .recruit_flow_box .center_wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .center_wrapper {
    position: static;
    display: block;
  }
}
.recruit .recruit_flow_box .center_wrapper h3 {
  font-family: "NotoSansJP-Bold";
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .recruit .recruit_flow_box .center_wrapper h3 {
    font-size: 1.6rem;
  }
}
.recruit .recruit_flow_box .center_wrapper h3 span {
  display: block;
  margin-bottom: 30px;
}
@media screen and (max-width: 1000px) {
  .recruit .recruit_flow_box .center_wrapper h3 span {
    margin-bottom: 20px;
  }
}
.recruit .recruit_flow_box .center_wrapper h3 .red {
  background-color: #9f0000;
  display: inline-block;
  margin-bottom: 0;
  padding: 4px 0;
}
.recruit .recruit_flow_box .recruit_item {
  background-color: #9f0000;
  max-width: 300px;
  width: 20.8333333333vw;
  min-width: 240px;
  max-height: 124px;
  height: 8.6111111111vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .recruit_item {
    position: relative;
    padding: 8px 0;
    width: 47%;
    height: auto;
    min-height: 67px;
    max-width: 100%;
    max-height: 100%;
    min-width: 0;
  }
}
.recruit .recruit_flow_box .recruit_item::after {
  content: "";
  position: absolute;
  bottom: -8px;
  right: 60px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 17.39px solid #9f0000;
  border-top: 0;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .recruit_item::after {
    bottom: -3px;
    right: 30px;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 9.14px solid #9f0000;
  }
}
.recruit .recruit_flow_box .recruit_item span {
  font-family: "NotoSansJP-Bold";
  color: #ffffff;
  text-align: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  .recruit .recruit_flow_box .recruit_item span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .recruit_item span {
    font-size: 1.1rem;
  }
}
.recruit .recruit_flow_box .item01 {
  top: 40px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .item01 {
    top: auto;
    left: auto;
    right: auto;
    margin-right: auto;
    margin-left: 0;
  }
}
.recruit .recruit_flow_box .item02 {
  top: 50%;
  right: 0;
  transform: translateY(-75%);
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .item02 {
    transform: translateY(-50%);
    top: auto;
    left: auto;
    right: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
.recruit .recruit_flow_box .item03 {
  top: 50%;
  left: 0;
  transform: translateY(-75%);
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .item03 {
    transform: translateY(-50%);
    top: auto;
    left: auto;
    right: auto;
    margin-right: auto;
    margin-left: 0;
  }
}
.recruit .recruit_flow_box .item04 {
  bottom: 65px;
  right: 13.16%;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .item04 {
    transform: translateY(-90%);
    bottom: auto;
    right: auto;
    margin-right: 0;
    margin-left: auto;
  }
}
.recruit .recruit_flow_box .item05 {
  bottom: 65px;
  left: 13.16%;
}
@media screen and (max-width: 768px) {
  .recruit .recruit_flow_box .item05 {
    transform: translateY(-110%);
    bottom: auto;
    left: auto;
    margin-right: auto;
    margin-left: 0;
  }
}
.recruit .more-recruit_btn {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .recruit .more-recruit_btn {
    margin-top: 0;
    padding-bottom: 60px;
  }
}
.recruit .more-recruit_btn .more-btn {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .recruit .more-recruit_btn .more-btn {
    padding-left: 10px;
    width: 210px;
  }
}

.contact .section_contact_form {
  padding-top: 124px;
  padding-bottom: 120px;
  background-color: #edecec;
}
@media screen and (max-width: 768px) {
  .contact .section_contact_form {
    padding-top: 76px;
    padding-bottom: 120px;
  }
}
.contact .section_contact_form .w880 {
  max-width: 880px;
  margin: auto;
}
.contact .section_contact_form .description {
  text-align: center;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact .section_contact_form .description {
    margin-bottom: 36px;
  }
}
.contact .flex_warp {
  margin-top: 16px;
}
.contact .flex_warp label {
  margin-bottom: 0;
}
.contact .contact-complete {
  font-family: "NotoSansJP-Bold";
  text-align: center;
  font-size: clamp(2.4rem, 2.5vw, 2.8rem);
  margin-bottom: 60px;
}
.contact .top_back_btn {
  width: 288px;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  margin: auto;
  border-radius: 30px;
  padding: 15px;
  background-color: #333333;
  transition: 0.3s;
}
.contact .top_back_btn:hover {
  background-color: #9f0000;
}

.policy .section-policy {
  padding-top: 110px;
  padding-bottom: 180px;
}
@media screen and (max-width: 768px) {
  .policy .section-policy {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}
.policy .red {
  color: #9f0000;
  font-family: "Poppins-SemiBold";
}
.policy .policy-content {
  max-width: 880px;
  margin: auto;
  font-size: clamp(1.4rem, 1.2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-top: 40px;
  color: #333;
}
.policy .policy-content li {
  padding-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
.policy .policy-content h2 {
  padding-top: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .policy .policy-content {
    margin-bottom: 0;
    padding-top: 30px;
  }
  .policy .policy-content h2 {
    padding-top: 16px;
    margin-bottom: 8px;
  }
}

.error .error_section {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .error .error_section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.error h2 {
  font-family: "NotoSansJP-Bold";
  text-align: center;
  font-size: clamp(1.8rem, 2.917vw, 2.4rem);
  color: #9f0000;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .error h2 {
    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: #333333;
  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: #9f0000;
}/*# sourceMappingURL=page.css.map */