@charset "UTF-8";
/**** 共通カラー ****/
@media screen and (max-width: 768px) {
  main {
    overflow: hidden;
  }
}

.section {
  background: #ffffff;
  padding: 140px 0 140px;
  overflow: hidden;
}

.section_about {
  background: #cccccc;
}

.section_works {
  background: #cccccc;
}

.w1200 {
  max-width: 1200px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .w1200 {
    padding: 0 15px;
  }
}

.header-inner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0 auto;
  padding: 10px 0;
  width: calc(100% - 30px);
  height: 70px;
  max-width: 1200px;
}
.header-inner .logo {
  position: relative;
  max-width: 160px;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header-inner .logo {
    top: 10px;
    left: 12px;
  }
}

.header-nav {
  position: absolute;
  right: 0;
}
@media screen and (max-width: 768px) {
  .header-nav {
    background: rgba(23, 46, 89, 0.9);
  }
}
.header-nav ul {
  display: flex;
  align-items: center;
  width: 100%;
  margin: auto;
  height: 60px !important;
  margin-right: 0;
  width: calc(100% - 30px);
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header-nav ul {
    flex-direction: column;
    margin-right: 0;
  }
}
.header-nav ul li {
  margin: 0 16px;
  text-align: center;
}
.header-nav ul li:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .header-nav ul li {
    font-size: 2rem;
    margin-bottom: 48px;
  }
}
.header-nav ul li a {
  color: #ffffff;
  display: block;
  position: relative;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.header-nav ul li a::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #396fcc;
  transition: all 0.3s;
}
.header-nav ul li a:hover:before {
  width: 100%;
}
.header-nav ul .contact_btn a {
  color: #fff;
  background-image: linear-gradient(180deg, rgb(57, 111, 204), rgb(30, 60, 114));
  margin-right: 0;
  padding: 12px 25px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.header-nav ul .contact_btn a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(0deg, rgb(57, 111, 204), rgb(30, 60, 114));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.header-nav ul .contact_btn a:hover::before {
  opacity: 1;
}

.loop_text {
  display: flex;
  font-size: clamp(6.5rem, 7vw, 13rem);
  font-family: "Syne-Bold";
  color: #f2f4f5;
  animation: flowing 25s linear infinite;
}
.loop_text span {
  display: inline-block;
  padding-right: 24px;
  white-space: nowrap;
  transform: translateX(-30%);
}

.home .blue_cover {
  position: relative;
}
.home .blue_cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url(../image/blue_cover.webp) no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 768px) {
  .home .blue_cover::before {
    content: "";
    position: absolute;
    background: url(../image/main-visual_cover.webp) no-repeat;
    width: 100%;
    height: 100%;
    /* 16:9 */
    background-size: cover;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

.home .main-visual {
  position: relative;
  width: 100%;
}
.home .main-visual::after {
  content: "";
  position: absolute;
  background: url(../image/main-visual_cover.webp) no-repeat;
  width: 100%;
  padding-top: 100%;
  /* 16:9 */
  background-size: cover;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .home .main-visual::after {
    display: none;
  }
}
.home .main-visual .element--catch {
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 */
}
@media screen and (max-width: 768px) {
  .home .main-visual .element--catch {
    padding-top: 100vh;
  }
}
.home .main-visual .element--catch .corporate_wrap {
  position: absolute;
  width: 40%;
  padding-top: 40%;
  top: 40%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .home .main-visual .element--catch .corporate_wrap {
    width: 100%;
    padding-top: 100%;
    top: 50%;
  }
}
.home .main-visual .element--catch .corporate_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../image/tittle_mark.webp) center/contain, no-repeat;
  animation: kaiten 10s infinite linear;
}
@keyframes kaiten {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.home .main-visual .element--catch .corporate_wrap h1 {
  font-family: "NotoSansJP-Regular";
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: auto;
  font-size: clamp(2rem, 5vw, 6.5rem);
  text-align: center;
  color: #ffffff;
}
@media screen and (max-width: 768px) {
  .home .main-visual .element--catch .corporate_wrap h1 {
    font-size: 4.5rem;
  }
}
.home .main-visual .element--catch .corporate_wrap h1 span {
  display: block;
  font-size: clamp(0.6rem, 1.2vw, 1.6rem);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .home .main-visual .element--catch .corporate_wrap h1 span {
    font-size: 1.1rem;
  }
}
.home .main-visual .main_view_arrow {
  position: absolute;
  bottom: 20%;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 3;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home .main-visual .main_view_arrow {
    bottom: 10%;
  }
}
.home .main-visual .main_view_arrow img {
  width: 34px;
  animation: fuwafuwa 0.8s ease-in-out infinite alternate-reverse;
}
@keyframes fuwafuwa {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
.home .main-visual .main_view_arrow p {
  font-size: 1.2rem;
  font-family: "Syne-Bold";
  margin-top: 14px;
}

.home .section_news {
  padding: 128px 0 116px 0;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  .home .section_news {
    padding: 108px 0 120px 0;
  }
}
.home .section_news .news_wrap {
  display: flex;
  color: #fff;
  justify-content: space-between;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_wrap {
    flex-direction: column;
  }
}
.home .section_news .news_wrap .news_tittle {
  width: 20%;
  border-right: solid 1px #2a5298;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_wrap .news_tittle {
    width: 100%;
    margin-bottom: 27px;
  }
}
.home .section_news .news_wrap .news_tittle h2 {
  font-family: "Syne-Bold";
  font-size: clamp(2.6rem, 2.917vw, 4.2rem);
  margin-bottom: 24px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_wrap .news_tittle h2 {
    font-size: 4.2rem;
  }
}
.home .section_news .news_wrap .news_tittle h2 span {
  display: block;
  width: 100%;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.home .section_news .news_wrap .news_tittle .news_btn {
  display: inline-block;
  color: #fff;
  background-image: linear-gradient(180deg, rgb(57, 111, 204), rgb(30, 60, 114));
  padding: 12px 25px;
  border-radius: 20px;
  transition: all 0.3s;
  position: relative;
  z-index: 0;
}
.home .section_news .news_wrap .news_tittle .news_btn a {
  display: block;
  color: #fff;
}
.home .section_news .news_wrap .news_tittle .news_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-image: linear-gradient(0deg, rgb(57, 111, 204), rgb(30, 60, 114));
  opacity: 0;
  transition: opacity 0.5s;
  z-index: -1;
}
.home .section_news .news_wrap .news_tittle .news_btn:hover::before {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_wrap .news_tittle .news_btn {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .home .section_news .news_wrap .news_btn.display_sp {
    display: inline-block;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    background-image: linear-gradient(180deg, rgb(57, 111, 204), rgb(30, 60, 114));
    padding: 6px 16px 8px 16px;
    border-radius: 20px;
    margin-right: 0;
    margin-left: auto;
    margin-top: 32px;
  }
}
.home .section_news .news_wrap .news_btn.display_sp a {
  font-size: 1.4rem;
  color: #fff;
}
.home .section_news .news_list {
  display: flex;
  width: 80%;
  padding-left: 5%;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_list {
    flex-direction: column;
    width: 100%;
    padding-left: 0;
  }
}
.home .section_news .news_list li {
  width: 30%;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .home .section_news .news_list li {
    width: 100%;
    margin-right: auto;
    margin-bottom: 40px;
  }
  .home .section_news .news_list li:last-of-type {
    margin-bottom: 0;
  }
}
.home .section_news .news_list li:nth-child(3) {
  margin-right: 0;
}
.home .section_news .news_list li .day {
  display: block;
  margin: 10px 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.home .section_news .news_list li .tittle {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.home .section_news .news_list li a {
  display: block;
  overflow: hidden;
  color: #fff;
}
.home .section_news .news_list li a .image-area {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}
.home .section_news .news_list li a img {
  transition: all 0.3s;
}
.home .section_news .news_list li a:hover img {
  transform: scale(1.08);
}
.home .section_about_service {
  background-image: url("../image/section_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px 0 120px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .home .section_about_service {
    padding: 108px 0 120px 0;
  }
}
.home .section_about_service .about_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 62px;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap {
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
}
.home .section_about_service .about_wrap h2.display_sp {
  font-family: "Syne-Bold";
  font-size: 4.2rem;
  margin-bottom: 32px;
  color: #2a5298;
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap h2.display_sp {
    display: flex;
  }
}
.home .section_about_service .about_wrap h2.display_sp span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  display: block;
  margin-top: 14px;
  color: #707070;
  width: 100%;
}
.home .section_about_service .about_wrap .about_text_box {
  width: 44%;
}
@media screen and (max-width: 1200px) {
  .home .section_about_service .about_wrap .about_text_box {
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap .about_text_box {
    padding-left: 0;
    width: 100%;
  }
}
.home .section_about_service .about_wrap .about_text_box h2 {
  font-family: "Syne-Bold";
  font-size: clamp(3.1rem, 3.5vw, 6.2rem);
  margin-bottom: 50px;
  color: #2a5298;
}
.home .section_about_service .about_wrap .about_text_box h2 span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  display: block;
  margin-top: 14px;
  color: #707070;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap .about_text_box h2 {
    display: none;
  }
}
.home .section_about_service .about_wrap .about_text_box .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap .about_text_box .description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.home .section_about_service .about_wrap .about_image_box {
  margin: 0 calc(50% - 50vw);
  width: 40vw;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .about_wrap .about_image_box {
    width: 100vw;
    margin: 0 calc(50% - 46vw);
    margin-bottom: 35px;
  }
}
.home .section_about_service .service_wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 62px;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap {
    flex-direction: column-reverse;
    padding-bottom: 40px;
  }
}
.home .section_about_service .service_wrap h2.display_sp {
  font-family: "Syne-Bold";
  font-size: 4.2rem;
  margin-bottom: 32px;
  color: #2a5298;
  display: none;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap h2.display_sp {
    display: flex;
  }
}
.home .section_about_service .service_wrap h2.display_sp span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  display: block;
  margin-top: 14px;
  color: #707070;
  width: 100%;
}
.home .section_about_service .service_wrap .service_text_box {
  width: 44%;
}
@media screen and (max-width: 1200px) {
  .home .section_about_service .service_wrap .service_text_box {
    padding-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap .service_text_box {
    padding-left: 0;
    width: 100%;
  }
}
.home .section_about_service .service_wrap .service_text_box h2 {
  font-family: "Syne-Bold";
  font-size: clamp(3.1rem, 3.5vw, 6.2rem);
  margin-bottom: 50px;
  color: #2a5298;
}
.home .section_about_service .service_wrap .service_text_box h2 span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  display: block;
  margin-top: 14px;
  color: #707070;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap .service_text_box h2 {
    display: none;
  }
}
.home .section_about_service .service_wrap .service_text_box .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap .service_text_box .description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.home .section_about_service .service_wrap .service_image_box {
  margin: 0 calc(50% - 50vw);
  width: 40vw;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .service_wrap .service_image_box {
    width: 100vw;
    margin: 0 calc(50% - 56vw);
    margin-bottom: 35px;
  }
}
.home .section_about_service .more_btn a {
  display: flex;
  justify-content: flex-end;
  color: #1e3c72;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-right: 12%;
  position: relative;
  font-weight: bold;
}
.home .section_about_service .more_btn a span {
  display: inline-block;
  position: relative;
}
.home .section_about_service .more_btn a span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #396fcc;
  transition: all 0.3s;
}
.home .section_about_service .more_btn a:hover span:before {
  width: 100%;
}
.home .section_about_service .more_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/more_arrow.svg) no-repeat;
  top: 0;
  transform: translateY(-27%);
  right: 0;
  width: 40px;
  height: 40px;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section_about_service .more_btn a::after {
    top: 3px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.home .section_about_service .more_btn a:hover::after {
  transform: scale(1.1) translateY(-27%);
}
.home .section_recruit {
  background: #172e59;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .home .section_recruit {
    padding: 120px 0;
  }
}
.home .section_recruit .recruit_wrap {
  display: flex;
  color: #fff;
  position: relative;
}
.home .section_recruit .recruit_wrap .recruit_text_box {
  position: relative;
  padding-top: 190px;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .recruit_wrap .recruit_text_box {
    padding-bottom: 0;
  }
}
.home .section_recruit .recruit_wrap .recruit_text_box h2 {
  font-size: clamp(5rem, 6.5vw, 10rem);
  font-family: "Syne-Bold";
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .recruit_wrap .recruit_text_box h2 {
    font-size: 5.4rem;
    margin-bottom: 32px;
  }
}
.home .section_recruit .recruit_wrap .recruit_text_box h2 span {
  display: block;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-top: 8px;
  width: 100%;
}
.home .section_recruit .recruit_wrap .recruit_text_box .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .recruit_wrap .recruit_text_box .description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.home .section_recruit .more_btn a {
  color: #fff;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-right: 12%;
  position: relative;
  font-weight: bold;
}
.home .section_recruit .more_btn a span {
  display: inline-block;
  position: relative;
}
.home .section_recruit .more_btn a span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
}
.home .section_recruit .more_btn a:hover span:before {
  width: 100%;
}
.home .section_recruit .more_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/more_arrow.svg) no-repeat;
  top: 0;
  transform: translateY(-27%);
  right: 0;
  width: 40px;
  height: 40px;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .more_btn a::after {
    top: 3px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.home .section_recruit .more_btn a:hover::after {
  transform: scale(1.1) translateY(-27%);
}
.home .section_recruit .recruit_contents {
  position: relative;
  z-index: 2;
}
.home .section_recruit .recruit_itme01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .recruit_itme01 {
    width: 154%;
  }
}
.home .section_recruit .recruit_image {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  margin: auto;
}
.home .section_recruit .recruit_image img {
  display: block;
  width: 88%;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .home .section_recruit .recruit_image img {
    width: 100%;
  }
}
.home .section_sdgs {
  padding: 140px 0;
  position: relative;
  background-color: #fff;
}
.home .section_sdgs:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../image/sdgs_back.webp");
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%);
}
@media screen and (max-width: 768px) {
  .home .section_sdgs {
    padding: 0 0 120px 0;
  }
}
.home .section_sdgs .sdgs_wrap {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap {
    flex-direction: column;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_image {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap .sdgs_image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    margin-bottom: 100px;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_text {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap .sdgs_text {
    width: 100%;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_text h2 {
  font-family: "Syne-Bold";
  font-size: clamp(3.1rem, 3.5vw, 6.2rem);
  margin-bottom: 50px;
  color: #2a5298;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap .sdgs_text h2 {
    font-size: 4.2rem;
    margin-bottom: 32px;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_text h2 span {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  display: block;
  margin-top: 14px;
  color: #707070;
  width: 100%;
}
.home .section_sdgs .sdgs_wrap .sdgs_text .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap .sdgs_text .description {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a {
  display: flex;
  justify-content: flex-end;
  color: #1e3c72;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-right: 12%;
  position: relative;
  font-weight: bold;
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a span {
  display: inline-block;
  position: relative;
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #396fcc;
  transition: all 0.3s;
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a:hover span:before {
  width: 100%;
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/more_arrow.svg) no-repeat;
  top: 0;
  transform: translateY(-27%);
  right: 0;
  width: 40px;
  height: 40px;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a::after {
    top: 3px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.home .section_sdgs .sdgs_wrap .sdgs_text .more_btn a:hover::after {
  transform: scale(1.1) translateY(-27%);
}

.section_contact {
  background-image: linear-gradient(128deg, rgb(42, 82, 152), rgb(30, 60, 114));
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .section_contact {
    padding-top: 30%;
  }
}
@media screen and (max-width: 768px) {
  .section_contact .w1200 {
    padding: 0;
  }
}
.section_contact .contact_wrap {
  position: relative;
  padding-top: 20%;
}
@media screen and (max-width: 768px) {
  .section_contact .contact_wrap {
    padding: 50%;
  }
}
.section_contact .contact_wrap .contact_box {
  display: inline-block;
  max-width: 515px;
  width: 43%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .section_contact .contact_wrap .contact_box {
    max-width: none;
    top: 70%;
    width: 140vw;
    margin: 0 calc(50% - 50vw);
    z-index: 1;
  }
}
.section_contact .contact_wrap .contact_box .contact_tittle {
  display: block;
  text-align: center;
  font-family: "Syne-Bold";
  font-size: clamp(3.1rem, 3.5vw, 6.2rem);
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section_contact .contact_wrap .contact_box .contact_tittle {
    font-size: 4.2rem;
  }
}
.section_contact .contact_wrap .contact_box .contact_text {
  display: block;
  text-align: center;
  line-height: 2;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .section_contact .contact_wrap .contact_box .contact_text {
    font-size: 1.4rem;
  }
}
.section_contact .contact_wrap .contact_box::after {
  content: "";
  position: absolute;
  top: -100%;
  right: 0;
  left: 0;
  margin: auto;
  background: #396fcc;
  border-radius: 50%;
  width: 100%;
  max-width: 515px;
  padding-top: 99%;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .section_contact .contact_wrap .contact_box::after {
    max-width: none;
  }
}
.section_contact .contact_wrap .contact_box:hover::after {
  scale: 1.1;
}
.section_contact .tel_wrap {
  position: absolute;
  top: -10%;
  right: 0;
  background: #1a3462;
  color: #fff;
  width: 24%;
  padding-top: 24%;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .section_contact .tel_wrap {
    width: 85%;
    padding-top: 85%;
    top: -50%;
    right: -10%;
  }
}
.section_contact .tel_wrap .inner_tel_wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
.section_contact .tel_wrap .inner_tel_wrap p {
  display: inline-block;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  border: solid 1px #fff;
  border-radius: 5px;
  line-height: 1.8;
  padding: 0 8px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .section_contact .tel_wrap .inner_tel_wrap p {
    font-size: 1.4rem;
  }
}
.section_contact .tel_wrap .inner_tel_wrap a {
  display: inline-block;
  font-size: clamp(2.4rem, 2.5vw, 2.6rem);
  font-weight: bold;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 14px;
  letter-spacing: 0.1rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .section_contact .tel_wrap .inner_tel_wrap a {
    font-size: 2.6rem;
  }
}
.section_contact .tel_wrap .inner_tel_wrap a::after {
  content: "";
  position: absolute;
  background: url("../image/tel_icon.svg") no-repeat;
  width: 13%;
  padding-top: 13%;
  background-size: contain;
  top: 0;
  left: 0;
}
.section_contact .tel_wrap .inner_tel_wrap span {
  display: block;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
@media screen and (max-width: 768px) {
  .section_contact .tel_wrap .inner_tel_wrap span {
    font-size: 1.2rem;
  }
}

.footer {
  width: 100%;
  background-color: #0f1f42;
  background-image: url("../image/footer_bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right bottom;
  padding: 140px 0 30px 0;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 30px 0;
  }
}
.footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
  border-bottom: solid 1px #396fcc;
}
@media screen and (max-width: 768px) {
  .footer .footer_wrap {
    padding: 30px 0;
  }
}
.footer .footer_wrap .map {
  width: 74%;
  height: 0;
  overflow: hidden;
  padding-bottom: 23.25%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer .footer_wrap .map {
    width: 100%;
    padding-bottom: 56.25%;
  }
}
.footer .footer_wrap .map .map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.footer .footer_wrap .footer-nav {
  width: 13%;
}
.footer .footer_wrap .footer-nav ul {
  display: flex;
  flex-direction: column;
}
.footer .footer_wrap .footer-nav ul li {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  margin-bottom: 30px;
  text-align: left;
}
.footer .footer_wrap .footer-nav ul li a {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer .footer_wrap .footer-nav {
    display: none;
  }
}
.footer .footer_bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 40px;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom {
    flex-wrap: wrap;
  }
}
.footer .footer_bottom .footer_corporate {
  display: flex;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom .footer_corporate {
    width: 100%;
    justify-content: space-between;
  }
}
.footer .footer_bottom .footer_corporate .logo {
  max-width: 180px;
  margin-right: 8%;
  background: #fff;
  padding: 10px;
}
@media screen and (max-width: 768px) {
  .footer .footer_bottom .footer_corporate .logo {
    max-width: none;
    width: 34%;
    padding: 6px;
  }
}
.footer .footer_bottom .footer_corporate .address {
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  line-height: 2;
}
.footer .policy a {
  display: block;
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
@media screen and (max-width: 768px) {
  .footer .policy a {
    margin-top: 40px;
  }
}
.footer small {
  display: block;
  width: 100%;
  margin-top: 13px;
  margin-bottom: 10px;
  text-align: right;
}

.page .main-visual {
  position: relative;
  background: #f6f7f8;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}
.page .main-visual:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42.7%;
  aspect-ratio: 1;
  background: url(../image/page_mv_decp.webp) center/contain, no-repeat;
  animation-name: fadeLeftAnime;
  animation-duration: 1.4s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  .page .main-visual:before {
    width: 60%;
    min-width: 400px;
  }
}
.page .main-visual .service_top {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .page .main-visual .service_top {
    height: 50vh;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
  }
}
.page .main-visual .service_top img {
  max-width: none;
}
@media screen and (max-width: 768px) {
  .page .main-visual .service_top img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 40%;
       object-position: 40%;
  }
}
.page .main-visual h1 {
  position: absolute;
  max-width: 1200px;
  top: 50%;
  right: 0;
  left: 0;
  transform: translateY(-50%);
  margin: auto;
  color: #fff;
  font-size: clamp(4.1rem, 5vw, 8.2rem);
  font-family: "Syne-Bold";
}
@media screen and (max-width: 1200px) {
  .page .main-visual h1 {
    padding: 0 15px;
  }
}
.page .main-visual h1 span {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-family: "NotoSansJP-Regular";
  display: block;
  margin-top: 12px;
  width: 100%;
}
.page .main-visual .bread {
  max-width: 1200px;
  position: absolute;
  bottom: 10%;
  right: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 1200px) {
  .page .main-visual .bread {
    padding: 0 15px;
  }
}
.page .main-visual .bread ul {
  display: flex;
  justify-content: flex-end;
}
.page .main-visual .bread ul li {
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.page .main-visual .bread ul a {
  color: #fff;
}

.page h2 {
  font-size: clamp(2.4rem, 2.7vw, 3.2rem);
  line-height: 1.4;
  font-weight: bold;
}
.page h2 span {
  font-family: "Syne-Bold";
  padding-left: 1.5rem;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  color: #396fcc;
  position: relative;
}
.page h2 span::before {
  content: "";
  position: absolute;
  background: #396fcc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.service-page .section_main_services {
  background: #f6f7f8;
  padding: 110px 0 80px 0;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services {
    padding: 60px 0 80px;
  }
}
.service-page .section_main_services h2 {
  margin-bottom: 55px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services h2 {
    margin-bottom: 32px;
  }
}
.service-page .section_main_services .service_wrap_one {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_one {
    width: 100%;
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: calc(35px + 15%);
  }
}
.service-page .section_main_services .service_wrap_one .service_one_text_box {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_one .service_one_text_box {
    width: 100%;
  }
}
.service-page .section_main_services .service_wrap_one .service_one_text_box h3 {
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_one .service_one_text_box h3 {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    margin-bottom: 15px;
  }
}
.service-page .section_main_services .service_wrap_one .service_one_text_box p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
}
.service-page .section_main_services .service_wrap_one .service_one_image {
  margin: 0 calc(50% - 50vw);
  width: 40vw;
  overflow: hidden;
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_one .service_one_image {
    width: calc(100vw - 15px);
    margin-bottom: 35px;
  }
}
.service-page .section_main_services .service_wrap_two {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin-bottom: 44px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
.service-page .section_main_services .service_wrap_two .service_two_text_box {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two .service_two_text_box {
    width: 100%;
  }
}
.service-page .section_main_services .service_wrap_two .service_two_text_box h3 {
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two .service_two_text_box h3 {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    margin-bottom: 15px;
  }
}
.service-page .section_main_services .service_wrap_two .service_two_text_box p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
}
.service-page .section_main_services .service_wrap_two .service_two_image {
  margin: 0 calc(50% - 50vw);
  width: 40vw;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two .service_two_image {
    width: 100%;
    margin: 0;
    margin-bottom: 35px;
  }
}
.service-page .section_main_services .service_wrap_two .service_two_image .service_item01 {
  display: block;
  width: 60%;
  margin-left: -5vw;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two .service_two_image .service_item01 {
    margin-left: 0;
  }
}
.service-page .section_main_services .service_wrap_two .service_two_image .service_item02 {
  width: 40%;
  transform: translateY(-15%);
  overflow: hidden;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .service-page .section_main_services .service_wrap_two .service_two_image .service_item02 {
    transform: translate(15px, -15%);
  }
}
.service-page .section-features {
  padding: 120px 0 140px 0;
}
@media screen and (max-width: 768px) {
  .service-page .section-features {
    padding: 100px 0 120px;
  }
}
.service-page .section-features h2 {
  margin-bottom: 55px;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .service-page .section-features h2 {
    margin-bottom: 32px;
  }
}
.service-page .section-features .features_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 78px;
}
.service-page .section-features .features_wrap:last-of-type {
  margin-bottom: 0;
}
.service-page .section-features .features_wrap .features_image {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .service-page .section-features .features_wrap .features_image {
    width: 100%;
  }
}
.service-page .section-features .features_wrap .features_text {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .service-page .section-features .features_wrap .features_text {
    width: 100%;
  }
}
.service-page .section-features .features_wrap .features_text .number {
  font-family: "Syne-Bold";
  font-size: clamp(2.8rem, 2.917vw, 5.2rem);
  margin-bottom: 12px;
  color: #396fcc;
}
@media screen and (max-width: 768px) {
  .service-page .section-features .features_wrap .features_text .number {
    margin-bottom: 0;
  }
}
.service-page .section-features .features_wrap .features_text h3 {
  font-size: clamp(2rem, 2.5vw, 2.4rem);
  margin-bottom: 44px;
  line-height: 2;
  margin-bottom: 23px;
}
@media screen and (max-width: 768px) {
  .service-page .section-features .features_wrap .features_text h3 {
    margin-bottom: 10px;
  }
}
.service-page .section-features .features_wrap .features_text h3 span {
  display: inline-block;
  color: #fff;
  background: #396fcc;
  padding: 0 5px;
  border-radius: 5px;
  line-height: 1.4;
  position: relative;
}
.service-page .section-features .features_wrap .features_text p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  color: #707070;
}
.service-page .section_service_contact {
  background: #fff;
  padding-bottom: 140px;
}
.service-page .section_service_contact .service_contact_wrap {
  background: url("../image/service_contact_bg.webp") no-repeat;
  background-size: cover;
  width: calc(100% - 40px);
  padding-top: 41.5%;
  margin: auto;
  position: relative;
  border-radius: 50px;
  min-height: 400px;
}
@media screen and (max-width: 768px) {
  .service-page .section_service_contact .service_contact_wrap {
    width: calc(100% - 30px);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0 auto;
  text-align: center;
  color: #fff;
  min-width: 465px;
}
@media screen and (max-width: 768px) {
  .service-page .section_service_contact .service_contact_wrap .service_contact_box {
    margin: 15px;
    min-width: unset;
    width: 100%;
    position: static;
    transform: translate(0);
  }
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .blue_back_text {
  display: inline-block;
  font-weight: bold;
  font-size: clamp(1.8rem, 2vw, 2rem);
  background: #396fcc;
  padding: 8px 16px;
  border-radius: 10px;
  margin-bottom: 25px;
  position: relative;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .blue_back_text::before {
  content: "";
  position: absolute;
  right: 50px;
  bottom: -7px;
  transform: rotate(25deg);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-top: 11px solid #396fcc;
  border-bottom: 0;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box h3 {
  display: inline-block;
  font-size: clamp(3.6rem, 3.5vw, 4.2rem);
  font-weight: bold;
  padding-bottom: 30px;
  border-bottom: solid 1px #396fcc;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .service-page .section_service_contact .service_contact_wrap .service_contact_box h3 {
    font-size: clamp(2.6rem, 8.5vw, 3rem);
  }
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .service_contact_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 35px;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .service_contact_btn a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  background: #1e3c72;
  padding: 16px 74px;
  border-radius: 29px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .service_contact_btn a::after {
  content: "";
  position: absolute;
  background: url("../image/arrow_2.svg") no-repeat;
  background-size: contain;
  width: 12.73px;
  height: 9.6px;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .service_contact_btn a:hover {
  background: #396fcc;
}
.service-page .section_service_contact .service_contact_wrap .service_contact_box .service_contact_btn a:hover::after {
  right: 5%;
}
.service-page .section_owned_vehicle {
  padding: 120px 0 140px;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .service-page .section_owned_vehicle {
    padding: 100px 0 120px;
  }
}
.service-page .section_owned_vehicle h2 {
  margin-bottom: 55px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-page .section_owned_vehicle h2 {
    margin-bottom: 32px;
  }
}
.service-page .section_owned_vehicle .owned_vehicle_list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  border-bottom: solid 1px #dddddd;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .service-page .section_owned_vehicle .owned_vehicle_list {
    padding-bottom: 0;
  }
}
.service-page .section_owned_vehicle .owned_vehicle_list li {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .service-page .section_owned_vehicle .owned_vehicle_list li {
    width: 49%;
    margin-bottom: 40px;
  }
  .service-page .section_owned_vehicle .owned_vehicle_list li:last-of-type {
    margin-bottom: 0;
  }
}
.service-page .section_owned_vehicle .owned_vehicle_list li .owned_vehicle_image {
  position: relative;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .service-page .section_owned_vehicle .owned_vehicle_list li .owned_vehicle_image {
    margin-bottom: 8px;
  }
}
.service-page .section_owned_vehicle .owned_vehicle_list li .owned_vehicle_image span {
  position: absolute;
  color: #fff;
  display: inline-block;
  color: #fff;
  background: #396fcc;
  border-radius: 12px;
  padding: 5px 16px;
  bottom: 5px;
  right: 5px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.service-page .section_owned_vehicle .owned_vehicle_list li .owned_vehicle_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.service-page .section_owned_vehicle .owned_vehicle_list li .owned_vehicle_text span {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.service-page .section_owned_vehicle .maintenance {
  display: flex;
  align-items: center;
}
.service-page .section_owned_vehicle .maintenance p {
  padding-left: 2rem;
  position: relative;
}
.service-page .section_owned_vehicle .maintenance p::before {
  content: "";
  position: absolute;
  background: #396fcc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-25%);
}
.service-page .section_owned_vehicle .maintenance p span {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
}
.service-page .section_owned_vehicle .maintenance .mark {
  color: #fff;
  display: inline-block;
  color: #fff;
  background: #396fcc;
  border-radius: 12px;
  padding: 5px 16px;
  font-size: clamp(1.2rem, 2vw, 1.4rem);
}
.service-page .section_safety {
  padding: 120px 0 140px;
}
@media screen and (max-width: 768px) {
  .service-page .section_safety {
    padding: 100px 0 120px;
  }
}
.service-page .section_safety h2 {
  margin-bottom: 55px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-page .section_safety h2 {
    margin-bottom: 32px;
  }
}
.service-page .section_safety .safety_sub_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 55px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .service-page .section_safety .safety_sub_text {
    margin-bottom: 32px;
  }
}
.service-page .section_safety .safety_wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.service-page .section_safety .safety_wrap .safety_image {
  width: 26%;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .service-page .section_safety .safety_wrap .safety_image {
    width: 100%;
    margin: 0 auto 32px;
  }
}
.service-page .section_safety .safety_wrap .safety_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service-page .section_safety .safety_wrap .safety_text {
    width: 100%;
  }
}
.service-page .section_safety .safety_wrap .safety_text h3 {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #396fcc;
  margin-bottom: 14px;
}
.service-page .section_safety .safety_wrap .safety_text p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  color: #707070;
}
.service-page .section_sustainability {
  padding: 120px 0 140px 0;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .service-page .section_sustainability {
    padding: 100px 0 120px;
  }
}
.service-page .section_sustainability h2 {
  margin-bottom: 55px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .service-page .section_sustainability h2 {
    margin-bottom: 32px;
  }
}
.service-page .section_sustainability .sustainability_sub_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 55px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .service-page .section_sustainability .sustainability_sub_text {
    margin-bottom: 32px;
  }
}
.service-page .section_sustainability .sustainability_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service-page .section_sustainability .sustainability_wrap .sustainability_list {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .service-page .section_sustainability .sustainability_wrap .sustainability_list {
    width: 100%;
    margin-bottom: 60px;
  }
  .service-page .section_sustainability .sustainability_wrap .sustainability_list:last-of-type {
    margin-bottom: 0;
  }
}
.service-page .section_sustainability .sustainability_wrap .sustainability_list h4 {
  color: #396fcc;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-top: 16px;
  margin-bottom: 14px;
  font-weight: bold;
}
.service-page .section_sustainability .sustainability_wrap .sustainability_list .sustainability_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 32px;
  color: #707070;
}
.service-page .section_sustainability .sustainability_wrap .sustainability_list .sustainability_text:last-of-type {
  margin-bottom: 0;
}
.service-page .section_sustainability .sustainability_wrap .more_btn a {
  display: flex;
  justify-content: flex-end;
  color: #1e3c72;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-right: 12%;
  position: relative;
  font-weight: bold;
  margin-top: 16px;
}
.service-page .section_sustainability .sustainability_wrap .more_btn a span {
  display: inline-block;
  position: relative;
}
.service-page .section_sustainability .sustainability_wrap .more_btn a span:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #396fcc;
  transition: all 0.3s;
}
.service-page .section_sustainability .sustainability_wrap .more_btn a:hover span:before {
  width: 100%;
}
.service-page .section_sustainability .sustainability_wrap .more_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/more_arrow.svg) no-repeat;
  top: 0;
  transform: translateY(-27%);
  right: 0;
  width: 40px;
  height: 40px;
  background-size: contain;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .service-page .section_sustainability .sustainability_wrap .more_btn a::after {
    top: 3px;
    right: 10px;
    width: 20px;
    height: 20px;
  }
}
.service-page .section_sustainability .sustainability_wrap .more_btn a:hover::after {
  transform: scale(1.1) translateY(-27%);
}

.company-page .section_message {
  padding: 120px 0;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .company-page .section_message {
    padding: 60px 0 100px;
  }
}
.company-page .section_message h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .company-page .section_message h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_message .message_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.company-page .section_message .message_wrap .message_image {
  width: 40%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .company-page .section_message .message_wrap .message_image {
    width: 100%;
    margin-bottom: 35px;
  }
}
.company-page .section_message .message_wrap .message_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .company-page .section_message .message_wrap .message_text {
    width: 100%;
  }
}
.company-page .section_message .message_wrap .message_text p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 40px;
}
.company-page .section_message .message_wrap .message_text p:last-child {
  text-align: right;
  margin-bottom: 0;
}
.company-page .section_philosophy {
  padding: 0 0 30px 0;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .company-page .section_philosophy {
    padding: 0;
  }
}
.company-page .section_philosophy h2 {
  margin-bottom: 55px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .company-page .section_philosophy h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_philosophy .philosophy_sub_text {
  display: inline-block;
  font-size: clamp(2rem, 2.3vw, 2.2rem);
  color: #396fcc;
  padding: 10px 20px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .company-page .section_philosophy .philosophy_sub_text {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    line-height: 1.5;
    margin-bottom: 100px;
  }
}
.company-page .mission_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-page .mission_wrap .mission_text {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .company-page .mission_wrap .mission_text {
    width: 100%;
  }
}
.company-page .mission_wrap .mission_text h2 {
  margin-top: 50px;
  margin-bottom: 55px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .company-page .mission_wrap .mission_text h2 {
    margin-top: 0;
    margin-bottom: 32px;
  }
}
.company-page .mission_wrap .mission_text .mission_item {
  display: inline-block;
  color: #396fcc;
  font-size: clamp(2rem, 2.3vw, 2.2rem);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .company-page .mission_wrap .mission_text .mission_item {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
    padding: 10px;
    margin-bottom: 40px;
  }
}
.company-page .mission_wrap .mission_image {
  width: 46%;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .company-page .mission_wrap .mission_image {
    width: 100%;
    margin-bottom: 120px;
  }
}
.company-page .section_corporate_policy {
  padding: 20px 0 140px 0;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .company-page .section_corporate_policy {
    padding: 0 0 120px 0;
  }
}
.company-page .section_corporate_policy h2 {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .company-page .section_corporate_policy h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_corporate_policy .corporate_policy_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.company-page .section_corporate_policy .corporate_policy_wrap li {
  width: 30%;
  margin-bottom: 30px;
  background: #ebf0fa;
  padding: 30px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .company-page .section_corporate_policy .corporate_policy_wrap li {
    width: 100%;
  }
  .company-page .section_corporate_policy .corporate_policy_wrap li:last-of-type {
    margin-bottom: 0;
  }
}
.company-page .section_corporate_policy .corporate_policy_wrap li .number {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 16px;
}
.company-page .section_corporate_policy .corporate_policy_wrap li .corporate_policy_text {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.6;
  color: #396fcc;
}
.company-page .section_outline {
  padding: 146px 0 150px 0;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline {
    padding: 100px 0 50px;
  }
}
.company-page .section_outline .outline_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline .outline_wrap {
    margin-bottom: 40px;
  }
}
.company-page .section_outline .outline_wrap .outline_container {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline .outline_wrap .outline_container {
    width: 100%;
  }
}
.company-page .section_outline .outline_wrap .outline_item {
  width: 100%;
  padding-top: 5%;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline .outline_wrap .outline_item {
    width: 100%;
    padding-top: 32px;
  }
}
.company-page .section_outline .outline_wrap .outline_item dl {
  display: flex;
  border-top: solid 1px #cccccc;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding: 30px 0;
}
.company-page .section_outline .outline_wrap .outline_item dl:last-of-type {
  border-bottom: solid 1px #cccccc;
}
.company-page .section_outline .outline_wrap .outline_item dl dt {
  width: 32%;
}
.company-page .section_outline .outline_wrap .outline_item dl dd {
  width: 68%;
}
.company-page .section_outline .outline_wrap .outline_image {
  width: 30%;
  position: sticky;
  position: -webkit-sticky;
  top: 80px;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline .outline_wrap .outline_image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 10px;
  }
}
.company-page .section_outline h3 {
  color: #396fcc;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-left: 2rem;
  position: relative;
  margin-bottom: 26px;
  margin-top: 50px;
}
.company-page .section_outline h3::after {
  content: "";
  position: absolute;
  background: #396fcc;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.company-page .section_outline .place_to_work {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company-page .section_outline .place_to_work {
    width: 100%;
  }
}
.company-page .section_outline .place_to_work div {
  width: 47%;
  margin-bottom: 50px;
}
.company-page .section_outline .place_to_work div p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.company-page .section_outline .place_to_work div p:first-child {
  margin-bottom: 8px;
}
.company-page .section_services {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .company-page .section_services {
    padding-bottom: 100px;
  }
}
.company-page .section_services h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .company-page .section_services h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_services .services_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap {
    justify-content: flex-end;
  }
}
.company-page .section_services .services_wrap .service_container {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap .service_container {
    width: 100%;
  }
}
.company-page .section_services .services_wrap .services_list {
  width: 100%;
  background: #ebf0fa;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap .services_list {
    width: 100%;
    padding: 15px;
  }
}
.company-page .section_services .services_wrap .services_list ul {
  display: flex;
  flex-wrap: wrap;
}
.company-page .section_services .services_wrap .services_list li {
  width: 50%;
  margin-bottom: 10px;
  line-height: 2;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap .services_list li {
    width: 100%;
  }
}
.company-page .section_services .services_wrap .services_list li:last-child {
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap .services_list li:last-child {
    margin-top: 0;
  }
}
.company-page .section_services .services_wrap .services_image {
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company-page .section_services .services_wrap .services_image {
    width: 50%;
    margin-top: 40px;
    transform: translate(20px, 0);
  }
}
.company-page .section_client {
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .company-page .section_client {
    padding-bottom: 120px;
  }
}
.company-page .section_client h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .company-page .section_client h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_client .client_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .company-page .section_client .client_wrap {
    justify-content: flex-start;
  }
}
.company-page .section_client .client_wrap .client_container {
  width: 56%;
}
@media screen and (max-width: 768px) {
  .company-page .section_client .client_wrap .client_container {
    width: 100%;
  }
}
.company-page .section_client .client_wrap .client_list {
  width: 100%;
  background: #ebf0fa;
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .company-page .section_client .client_wrap .client_list {
    width: 100%;
  }
}
.company-page .section_client .client_wrap .client_list ul {
  display: flex;
  flex-wrap: wrap;
}
.company-page .section_client .client_wrap .client_list li {
  width: 50%;
  margin-bottom: 10px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .company-page .section_client .client_wrap .client_list li {
    width: 100%;
  }
}
.company-page .section_client .client_wrap .client_image {
  width: 30%;
  transform: translateY(-25%);
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .company-page .section_client .client_wrap .client_image {
    width: 50%;
    margin-top: 40px;
    transform: translate(-20px, 0);
  }
}
.company-page .section_history {
  padding: 120px 0 140px 0;
  background: #f6f7f8;
}
@media screen and (max-width: 768px) {
  .company-page .section_history {
    padding: 100px 0 120px;
  }
}
.company-page .section_history h2 {
  margin-bottom: 47px;
}
.company-page .section_history .history_text {
  width: 54%;
  margin: auto;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.8;
  margin-bottom: 67px;
  min-width: 648px;
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_text {
    width: 100%;
    min-width: unset;
  }
}
.company-page .section_history .history_flow {
  width: 54%;
  min-width: 653px;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow {
    min-width: unset;
    width: 100%;
  }
}
.company-page .section_history .history_flow::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 101%;
  background: #cccccc;
  left: 16%;
  top: 7px;
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow::before {
    left: 20%;
    top: 10px;
  }
}
.company-page .section_history .history_flow dl {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-bottom: 55px;
}
.company-page .section_history .history_flow dl:last-of-type {
  margin-bottom: 0;
}
.company-page .section_history .history_flow dl::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 15%;
  background: #396fcc;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translate(2px, -4px);
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow dl::after {
    top: 10px;
    left: 20%;
    transform: translate(-50%, -50%);
  }
}
.company-page .section_history .history_flow dl dt {
  width: 15%;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow dl dt {
    width: 20%;
    font-size: 1.6rem;
  }
}
.company-page .section_history .history_flow dl dt .year {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow dl dt .year {
    font-size: 1.2rem;
  }
}
.company-page .section_history .history_flow dl dd {
  width: 75%;
  font-size: clamp(1.8rem, 2vw, 2rem);
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow dl dd {
    width: 80%;
    padding-left: 19px;
    display: flex;
    align-items: flex-start;
    font-size: 1.6rem;
  }
}
.company-page .section_history .history_flow dl dd .month {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  display: inline-block;
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  .company-page .section_history .history_flow dl dd .month {
    margin-right: 14px;
    font-size: 1.2rem;
    padding-top: 0.3em;
  }
}
.company-page .section_history .history_flow dl dd .description {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  display: inline-block;
  line-height: 1.5;
}
.company-page .section_sdgs_contents {
  padding: 120px 0 140px;
}
@media screen and (max-width: 768px) {
  .company-page .section_sdgs_contents {
    padding: 100px 0 120px;
  }
}
.company-page .section_sdgs_contents h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .company-page .section_sdgs_contents h2 {
    margin-bottom: 32px;
  }
}
.company-page .section_sdgs_contents .sdgs_contents_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company-page .section_sdgs_contents .sdgs_contents_wrap .sdgs_contents_text {
  width: 43%;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .company-page .section_sdgs_contents .sdgs_contents_wrap .sdgs_contents_text {
    width: 100%;
    margin-bottom: 40px;
  }
}
.company-page .section_sdgs_contents .sdgs_contents_wrap .sdgs_contents_image {
  width: 30%;
  transform: translateY(-20%);
}
@media screen and (max-width: 768px) {
  .company-page .section_sdgs_contents .sdgs_contents_wrap .sdgs_contents_image {
    width: 100%;
    transform: translateY(0);
  }
}

.recruit-page .main-visua {
  background: #fff;
}
.recruit-page .section_recruit {
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit {
    padding: 60px 0 0;
  }
}
.recruit-page .section_recruit h2 {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit h2 {
    margin-bottom: 32px;
  }
}
.recruit-page .section_recruit .recruit_contents {
  max-width: 1400px;
  margin: auto;
  background: #ebf0fa;
  border-radius: 50px 50px 0 0;
  padding: 140px 15px;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents {
    padding: 80px 15px;
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_image {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_image {
    margin-top: 30px;
    width: 100%;
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_image .interview_image02 {
  width: 75%;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_image .interview_image02 {
    width: 50%;
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text {
    width: 100%;
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 40px;
  border-bottom: solid 2px #396fcc;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_tittle {
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-family: "Syne-Bold";
  color: #396fcc;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_tittle {
    font-size: clamp(2rem, 2.3vw, 2.2rem);
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_tittle .number {
  font-size: clamp(2.4rem, 2.7vw, 3.2rem);
  font-family: "Syne-Bold";
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_tittle .number {
    font-size: clamp(2.4rem, 2.5vw, 2.6rem);
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_person .department {
  color: #fff;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  background: #396fcc;
  border-radius: 5px;
  display: inline-block;
  padding: 4px 6px;
  margin-right: 18px;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_person .initial {
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_person .initial {
    font-size: clamp(1.8rem, 2vw, 2rem);
  }
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text h3 .interview_person .honorific {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text .interview_question {
  padding-left: 50px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #396fcc;
  position: relative;
  margin-bottom: 10px;
  line-height: 2;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text .interview_question::after {
  content: "";
  position: absolute;
  background: #396fcc;
  width: 40px;
  height: 1px;
  top: 50%;
  left: 0;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text .interview_answer {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 42px;
  line-height: 2;
}
.recruit-page .section_recruit .recruit_contents .recruit_flex .interview_text .interview_answer:last-of-type {
  margin-bottom: 0;
}
.recruit-page .section_recruit .recruit_contents02 {
  border-radius: 0 0 50px 50px;
  border-top: solid 1px #396fcc;
}
.recruit-page .section_recruit .recruit_contents02 .recruit_flex {
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_recruit .recruit_contents02 .interview_image02 {
    width: 50%;
    margin-left: auto;
  }
}
.recruit-page .section_requirement {
  padding: 120px 0 140px 0;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_requirement {
    padding: 100px 0 120px;
  }
}
.recruit-page .section_requirement h2 {
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_requirement h2 {
    margin-bottom: 32px;
  }
}
.recruit-page .section_requirement .requirement_wrap {
  width: 62.5%;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .recruit-page .section_requirement .requirement_wrap {
    width: 100%;
  }
}
.recruit-page .section_requirement .requirement_wrap dl {
  display: flex;
  padding: 16px 0;
  border-top: solid 1px #ccc;
  line-height: 2;
}
.recruit-page .section_requirement .requirement_wrap dl:last-of-type {
  border-bottom: solid 1px #ccc;
}
.recruit-page .section_requirement .requirement_wrap dl dt {
  width: 30%;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #707070;
}
.recruit-page .section_requirement .requirement_wrap dl dd {
  width: 70%;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.contact-page .section_contact_form {
  background: #f6f7f8;
  padding: 114px 0 140px 0;
}
@media screen and (max-width: 768px) {
  .contact-page .section_contact_form {
    padding: 80px 0 120px;
  }
}
.contact-page .section_contact_form .form-wrap {
  max-width: 880px;
  margin: auto;
}
.contact-page .section_contact_form .form-wrap .contact-text {
  text-align: center;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact-page .section_contact_form .form-wrap .contact-text {
    margin-bottom: 80px;
  }
}
.contact-page .contact-confirm h2 {
  text-align: center;
  color: #396fcc;
  margin-bottom: 40px;
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .contact-page .contact-confirm h2 {
    font-size: 2rem;
  }
}
.contact-page .contact-thanks {
  text-align: center;
}
.contact-page .contact-thanks h2 {
  color: #396fcc;
  margin-bottom: 30px;
  font-size: clamp(2.2rem, 2.5vw, 2.4rem);
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .contact-page .contact-thanks h2 {
    font-size: 2rem;
  }
}
.contact-page .contact-thanks p {
  line-height: 2;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  margin-bottom: 30px;
}
.contact-page .contact-thanks .top_back_btn {
  margin: 40px auto 0;
  text-align: center;
}
.contact-page .contact-thanks .top_back_btn a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  background: #1e3c72;
  padding: 16px 75px;
  border-radius: 29px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
.contact-page .contact-thanks .top_back_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/arrow_2.svg) no-repeat;
  background-size: contain;
  width: 12.73px;
  height: 9.6px;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.contact-page .contact-thanks .top_back_btn a:hover {
  background: #396fcc;
}
.contact-page .contact-thanks .top_back_btn a:hover::after {
  right: 5%;
}

.archive-page .section_archive {
  background: #f6f7f8;
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  .archive-page .section_archive {
    padding: 80px 0 120px;
  }
}
.archive-page .section_archive .archive_list {
  display: flex;
  flex-wrap: wrap;
}
.archive-page .section_archive .archive_list .blog_item {
  width: 30%;
  margin-right: 5%;
  margin-bottom: 60px;
}
.archive-page .section_archive .archive_list .blog_item:nth-of-type(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .archive-page .section_archive .archive_list .blog_item {
    width: 100%;
    margin-right: 0;
  }
  .archive-page .section_archive .archive_list .blog_item:last-of-type {
    margin-bottom: 0;
  }
}
.archive-page .section_archive .archive_list .blog_item .blog_thumbnail {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 8px;
}
.archive-page .section_archive .archive_list .blog_item img {
  transition: all 0.3s;
}
.archive-page .section_archive .archive_list .blog_item a:hover img {
  transform: scale(1.08);
}
.archive-page .section_archive .archive_list .blog_item .day {
  color: #396fcc;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 8px;
}
.archive-page .section_archive .archive_list .blog_item .tittle {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}
.archive-page .section_archive .top_back_btn {
  margin: 70px auto 0;
  text-align: center;
}
.archive-page .section_archive .top_back_btn a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  background: #1e3c72;
  padding: 16px 105px;
  border-radius: 29px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
.archive-page .section_archive .top_back_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/arrow_2.svg) no-repeat;
  background-size: contain;
  width: 12.73px;
  height: 9.6px;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.archive-page .section_archive .top_back_btn a:hover {
  background: #396fcc;
}
.archive-page .section_archive .top_back_btn a:hover::after {
  right: 5%;
}

.news-page .section_news-page {
  background: #f6f7f8;
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  .news-page .section_news-page {
    padding: 80px 0 120px;
  }
}
.news-page .section_news-page .news_wrap {
  max-width: 750px;
  margin: auto;
}
.news-page .section_news-page .news_wrap .news-thumbnail {
  margin-bottom: 35px;
}
.news-page .section_news-page .news_wrap .day {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: #396fcc;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .news-page .section_news-page .news_wrap .day {
    margin-bottom: 8px;
  }
}
.news-page .section_news-page .news_wrap .tittle {
  font-size: clamp(2rem, 2.3vw, 2.2rem);
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: solid 1px #396fcc;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .news-page .section_news-page .news_wrap .tittle {
    padding-bottom: 16px;
    margin-bottom: 16px;
    font-size: clamp(1.6rem, 2vw, 1.8rem);
  }
}
.news-page .section_news-page .news_wrap .post_text {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 2;
}
.news-page .section_news-page .top_back_btn {
  margin: 70px auto 0;
  text-align: center;
}
.news-page .section_news-page .top_back_btn a {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  background: #1e3c72;
  padding: 16px 75px;
  border-radius: 29px;
  color: #fff;
  position: relative;
  transition: all 0.3s;
}
.news-page .section_news-page .top_back_btn a::after {
  content: "";
  position: absolute;
  background: url(../image/arrow_2.svg) no-repeat;
  background-size: contain;
  width: 12.73px;
  height: 9.6px;
  top: 50%;
  right: 6%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.news-page .section_news-page .top_back_btn a:hover {
  background: #396fcc;
}
.news-page .section_news-page .top_back_btn a:hover::after {
  right: 5%;
}

.section-policy {
  padding: 140px 0;
}
@media screen and (max-width: 768px) {
  .section-policy {
    padding: 80px 0 120px;
  }
}
.section-policy .policy-wrap {
  max-width: 900px;
  margin: 0 auto;
}
.section-policy .policy-wrap .policy-content {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .section-policy .policy-wrap .policy-content {
    margin-bottom: 40px;
  }
}
.section-policy .policy-wrap .policy-content h2 {
  padding: 5px 10px;
  margin-bottom: 15px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: bold;
  background-color: #ebf0fa;
  border-left: solid 3px #396fcc;
  color: #396fcc;
}
.section-policy .policy-wrap .policy-content p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.5;
}
.section-policy .policy-wrap .policy-content ul {
  margin-top: 15px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  line-height: 1.5;
}
.section-policy .policy-wrap .policy-content ul li {
  margin-bottom: 8px;
  padding-left: 1em;
  text-indent: -1em;
}

.mt20 {
  margin-top: 20px;
}/*# sourceMappingURL=page.css.map */