﻿@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 14px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #1A2340;
  text-decoration: none;
}

.pc {
  display: none !important;
}
/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

.move {
  transform: translate(0, 0);
  opacity: 1;
}

.container {
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
  z-index: 2;
}
/* main
==================================*/
main {
  display: block; /*IE対策*/
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100dvh;
  left: 0;
  top: 0;
  z-index: 998;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .4s ease, visibility .4s ease;
}

.no_move .overlay {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#AllBox {
  width: 100%;
  word-break: break-word;
  overflow: hidden;
}

.anchor_wrap {
  position: relative;
}

.anchor_wrap .anchor {
  position: absolute;
  z-index: -1;
  top: -60px;
}

/*==================================
  EFS Header / Footer
==================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  background: transparent;
  transition: background .3s;
}
header.scroll{
  background: rgba(255,255,255,1);
}

header .header_inner {
  height: 60px;
  padding: 0 10px 0 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

header .logo a {
  display: flex;
  align-items: center;
  width: 65px;
}
header .logo .is_black{
  display: none;
}
header.scroll .logo .is_white{
  display: none;
}
header.scroll .logo .is_black{
  display: block;
}

header .g-navi {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 899;
  width: 100%;
  height: 100dvh;
  padding: 80px 0;
  background: #3E5B87;
  transform: translateX(100%);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform .4s ease;
}

header.open .g-navi {
  transform: translateX(0);
}

header .nav_list {
  width: 250px;
  margin-left: 57px;
  margin: 0 auto;
}

header .nav_list li + li,
header .nav_list .parentLi {
  margin-top: 23px;
}

header .nav_list a {
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
}

header .subBtn {
  display: none;
}

header .subBox {
  display: block !important;
  margin-top: 23px;
  padding-left: 16px;
}

header .subLi + .subLi {
  margin-top: 23px;
}

header .subLi a {
  color: #8FA3C2;
}

header .header_right {
  position: relative;
  z-index: 901;
}

header #menu-toggle {
  position: relative;
  display: block;
  width: 42px;
  height: 40px;
  border-radius: 10px;
  background: #278FFF;
}

header #menu-toggle .line {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: .3s;
}

header #menu-toggle .line:nth-child(1) {
  top: 16px;
}

header #menu-toggle .line:nth-child(2) {
  top: 22px;
}

header.open #menu-toggle {
}

header.open #menu-toggle .line {
}

header.open #menu-toggle .line:nth-child(1),
header #menu-toggle .line.show:nth-child(1) {
  top: 19px;
  transform: rotate(40deg);
}

header.open #menu-toggle .line:nth-child(2),
header #menu-toggle .line.show:nth-child(2) {
  top: 19px;
  transform: rotate(-40deg);
}

.nav_contact {
  margin: 42px auto 0;
  max-width: 310px;
}

.header_mail_btn {
  height: 55px;
  border-radius: 14px;
  background: #278FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .3s ease, color .3s ease;
}

.header_mail_btn:before {
  content: '';
  width: 19px;
  height: 19px;
  margin-right: 7px;
  background: url(../images/common/icon_mail.svg)no-repeat left center;
  background-size: 100% auto;
}

.header_contact_btn {
  display: none;
}


/*==================================
  Breadcrumb
==================================*/

.breadcrumb {
  width: 100%;
  padding-bottom: 45px;
}

.breadcrumb ul {
  display: inline-flex;
  align-items: flex-start;
  justify-content: flex-start;
  font-size: 10px;
}

.breadcrumb ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 10px;
  letter-spacing: 0.02em;
  line-height: 1.5;
  position: relative;
  color: #3E5B87;
  font-weight: 500;
}

.breadcrumb ul li + li:before {
  content: '-';
  z-index: 2;
  width: 14px;
  text-align: center;
  display: inline-block;
  text-indent: 0;
  color: #3E5B87;
}

.breadcrumb ul li + li {
  padding-left: 14px;
  text-indent: -14px;
}

.breadcrumb ul li:last-child {
  word-break: break-all;
  white-space: unset;
}

.breadcrumb ul li a{
  text-indent: 0;
  color: #3E5B87;
}


footer {
  padding-bottom: 56px;
  background: #42638d;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .footer_inner {
  width: 100%;
  padding: 90px 20px 40px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  position: relative;
}

footer .footer_nav_box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  width: 100%;
  padding-right: 30px;
}

footer .footer_nav01 {
  flex: 1 1 auto;
  min-width: 0;
}

footer .footer_nav02 {
  flex: 0 0 96px;
}

footer .footer_nav03 {
  display: none;
}

footer .footer_nav li + li {
  margin-top: 10px;
}

footer .footer_nav a,
footer .footer_nav_title a {
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
}

footer .footer_nav_title {
  margin-bottom: 10px;
}
footer .footer_nav02 ul{
  margin-left: 1em;
}
footer .footer_nav02 ul a{
  color: #8FA3C2;
}

footer .footer_addr_box {
  width: 100%;
  margin-top: 29px;
  padding-top: 29px;
  border-top: 1px solid #506C96;
}

footer .footer_logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

footer .footer_logo .logo_mark {
  color: #fff;
  width: 55px;
}

footer .footer_logo .logo_text {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

footer .footer_addr {
  margin-top: 11px;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
  color: #8FA3C2;
}

footer .footer_map {
  margin-top: 7px;
}

footer .footer_map a {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  line-height: 1.33;
  font-weight: 500;
  text-decoration: underline;
  color: #8FA3C2;
}

footer .footer_contact {
  display: none;
}

footer .footer_pagetop {
  position: absolute;
  right: 20px;
  bottom: 40px;
  order: 4;
  flex: 0 0 40px;
  width: 40px;
  height: 57px;
  margin: auto 0 0 auto;
  background: #506C96;
  color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  overflow: hidden;
  transition: width .35s ease, height .35s ease, background .3s ease, color .3s ease;
}

footer .footer_pagetop .arrow {
  width: 11px;
  height: 17px;
  background: url(../images/common/page_top.svg)no-repeat bottom center;
  background-size: 100% auto;
  position: relative;
  transition: transform .45s ease;
}

footer .footer_pagetop .text {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 500;
  transition: color .3s ease;
}

footer .copy {
  margin-top: 27px;
}

footer .copy small {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .08em;
}

.footer_fixed_contact {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 850;
  width: 100%;
  padding: 7px;
  display: flex !important;
  gap: 7px;
  box-sizing: border-box;
  background: rgba(33,41,63,.85);
  /*opacity: 0;*/
  /*pointer-events: none;*/
  transition: opacity .3s;
}
.footer_fixed_contact.active{
  opacity: 1;
  pointer-events: auto;
}

.footer_fixed_contact a {
  width: 50%;
  height: 42px;
  border-radius: 14px;
  background: #278FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .3s ease, color .3s ease;
}
.footer_fixed_contact a span{
  display: flex;
  align-items: center;
  height: 100%;
}
.footer_fixed_contact a.fixed_tel span{
  padding-left: 16px;
  background: url(../images/common/icon_tel.svg)no-repeat left center;
  background-size: 12px auto;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
}
.footer_fixed_contact a.fixed_mail span{
  padding-left: 24px;
  background: url(../images/common/icon_mail.svg)no-repeat left 52%;
  background-size: 17px auto;
}

.hover_img_link .img_box,
.img_link .img_box {
  overflow: hidden;
}

.hover_img_link .img_box img,
.img_link .img_box img,
.hover_img_link .link_arrow,
.img_link .link_arrow {
  transition: transform .45s ease, background .3s ease, color .3s ease, border-color .3s ease;
}


/*==================================
  Top
==================================*/
.main_box {
  margin: -45px 0 -40px;
  position: relative;
  z-index: 9;
  border-radius: 40px;
  overflow: hidden;
  background: #E6EFFB;
}

.img_box {
  display: block;
  background: #c7d4df;
  position: relative;
  width: 100%;
  /*padding-top: 66%;*/
  overflow: hidden;
}
.img_box img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
    transition: transform .4s ease;
}

.top_content_inner {
  padding: 0 20px;
}
.top_sec_sub {
  color: #1A2340;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.top_sec_head h2 {
  color: #1A2340;
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: 0;
}

.top_sec_text {
  margin-top: 14px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .04em;
}

.link_arrow {
  width: 35px;
  height: 35px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 31px;
  transition: transform .35s ease, background .3s ease;
}
.link_arrow.is_white{
  background: #278FFF;
}

.link_arrow:before {
  content: '';
  width: 15px;
  height: 15px;
  background: url(../images/common/arrow_blue.svg)no-repeat center center;
  background-size: 100% auto;
}
.link_arrow.is_white:before{
  background: url(../images/common/arrow_white.svg)no-repeat center center;
  background-size: 100% auto;
}

.top_more_btn {
  min-width: 130px;
  height: 42px;
  border-radius: 14px;
  background: #3E5B87;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 14px;
  line-height: 1.33;
  letter-spacing: .08em;
  font-weight: 500;
  transition: background .3s ease, color .3s ease;
}


.main_visual {
  position: relative;
  background: #2f3b42;
  overflow: hidden;
}

.main_visual_img .img_box {
  padding-top: 0;
  height: 100dvh;
}

.main_visual_copy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  color: #fff;
  font-size: 35px;
  line-height: 1.4;
  font-weight: 700;
  text-align: center;
}

.top_about {
  border-radius: 40px;
  background: #3E5B87;
  color: #fff;
  position: relative;
  overflow: hidden;
  transform: translateY(-1px);
  z-index: 2;
}

.top_about_inner {
  position: relative;
  z-index: 2;
  padding: 60px 20px 75px;
  box-sizing: border-box;
}
.top_about_text{
  padding: 0 20px;
}
.top_about_text h2 {
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.top_about_text p {
  margin-top: 20px;
  color: #fff;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  font-weight: 500;
}

@media screen and (min-width: 600px) {
  .top_about_text p .tab {
    display: none;
  }
}

.top_about_links {
  margin-top: 32px;
}

.top_about_link {
  min-height: 88px;
  border: 1px solid rgba(255,255,255,.85);
  border-right: 0;
  border-bottom: 0;
  border-radius: 22px 0 0 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 31px;
  align-items: flex-end;
  column-gap: 14px;
  padding: 24px 10px 17px 27px;
  box-sizing: border-box;
}

.top_about_link + .top_about_link {
  margin-top: 15px;
}

.top_about_link .en {
  grid-column: 1;
  grid-row: 1;
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: .04em;
}

.top_about_link .ja {
  grid-column: 1;
  grid-row: 2;
  display: block;
  margin-top: 5px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .1em;
}

.top_about_link .link_arrow {
  grid-column: 2;
  grid-row: 1 / 3;
}

.top_business {
  padding: 60px 0 35px;
}

.top_business_list {
  margin-top: 27px;
}

.top_business_item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  display: block;
  color: #1A2340;
}

.top_business_item + .top_business_item {
  margin-top: 20px;
}

.top_business_item .img_box {
  width: 100%;
  aspect-ratio: 335 / 260;
  background: #b6c5cf;
  z-index: -1;
}

.top_business_item .title {
  position: absolute;
  left: 20px;
  bottom: 56px;
  background: url(../images/top/bg_arrow.png)no-repeat left 1px top 1px #fff;
  background-size: 7px auto;
  color: #1A2340;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  padding: 0 9px;
}

.top_business_item .tags {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 23px;
  color: #fff;
  font-size: 9px;
  line-height: 1.53;
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  grid-gap: 3px;
}
.top_business_item .tags span{
  padding: 0 4px;
  background: rgba(26,35,64,.85);
}

.top_business_item .link_arrow {
  position: absolute;
  right: 20px;
  bottom: 50px;
}

.top_news {
  padding: 35px 0 78px;
  overflow: hidden;
}

.top_news_inner {
  display: block;
}

.top_news_head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
}

.top_news_list {
  display: flex;
}

.top_news_list li {
  width: 270px;
  height: auto;
}

.top_news_item {
  position: relative;
  border-radius: 13px;
  background: #fff;
  color: #1A2340;
  display: block;
  padding: 100px 28px 33px;
  box-sizing: border-box;
}

.top_news_item .link_arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #E6EFFB;
}


.top_news_item .date {
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.top_news_item .cate {
  margin-left: 8px;
  padding: 2px 13px;
  border-radius: 12px;
  border: 1px solid #C6D0DD;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .04em;
}

.top_news_item .title {
  display: block;
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .06em;

  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.top_news_body {
  overflow: visible;
  padding-bottom: 28px;
}

.top_news_body .top_news_scrollbar.swiper-scrollbar {
  position: absolute;
  left: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  background: #d7e2ef;
  height: 7px !important;
  border-radius: 3px;
}

.top_news_body .top_news_scrollbar .swiper-scrollbar-drag {
  background: #3E5B87;
  height: 7px !important;
  border-radius: 3px;
}

.top_recruit {
  padding: 0 0 0;
  overflow: hidden;
}

.top_recruit_inner {
  margin: 0 0 0;
  border-radius: 40px;
  background: #fff;
  padding: 50px 0 50px;
  box-sizing: border-box;
}

.top_recruit_images {
  position: relative;
}

.top_recruit_images .img01 {
  width: 100%;
  height: auto;
  background: none;
}

.top_recruit_text {
  margin-top: 35px;
  padding:0 30px;
}

.top_recruit_text p:not(.top_sec_sub) {
  margin-top: 14px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .04em;
}
.top_recruit_btn{
  text-align: center;
}
.top_recruit_text .top_more_btn {
  margin-top: 22px;
  min-width: 170px;
}

/*==================================
  Recruit
==================================*/

.recruit_teaser {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #E6EFFB;
}

.recruit_teaser_img {
  position: absolute;
  inset: 0;
  background: #4f626a;
}

.recruit_teaser .container {
  position: relative;
  z-index: 2;
  min-height: 455px;
  padding-top: 227px;
  box-sizing: border-box;
}

.recruit_teaser .teaser_hd_jap {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_teaser .teaser_hd_eng {
  display: block;
  color: #fff;
  font-size: 53px;
  line-height: 1.3;
  font-weight: 500;
}

.recruit_requirements_btn {
  position: fixed;
  right: 0;
  bottom: 56px;
  z-index: 22;
  min-width: 184px;
  min-height: 63px;
  background: #FFD200;
  color: #162862;
  display: grid;
  grid-template-columns: 1fr 22px;
  align-content: center;
  align-items: center;
  text-align: center;
  column-gap: 15px;
  padding: 0 10px 0 25px;
  box-sizing: border-box;
  border-top-left-radius: 15px;
  transition: background .3s ease, transform .35s ease;
}

.recruit_requirements_btn span:first-child {
  grid-column: 1;
  display: block;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_requirements_btn strong {
  grid-column: 1;
  display: block;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 700;
}

.recruit_requirements_btn .link_arrow {
  grid-column: 2;
  grid-row: 1 / 3;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #fff!important;
}
.recruit_requirements_btn .link_arrow:before{
  width: 10px;
  height: 10px;
  background: url(../images/common/arrow_purple.svg)no-repeat center center;
  background-size: 100% auto;
}

.recruit_wrap {
}

.recruit_message {
  position: relative;
  background: #fff;
  border-radius: 40px;
  padding: 50px 0 60px;
  overflow: hidden;
}

.recruit_bg_shape {
  position: absolute;
  right: -210px;
  top: 155px;
  width: 430px;
  height: 430px;
  border: 78px solid #4aa3f4;
  border-radius: 50%;
  box-sizing: border-box;
}

.recruit_bg_shape:after {
  content: '';
  position: absolute;
  left: 120px;
  top: 92px;
  width: 300px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  transform: rotate(12deg);
}

.recruit_message .container {
  position: relative;
  z-index: 2;
}

.recruit_sec_sub {
  color: #0078F9;
  font-size: 17px;
  line-height: 1.32;
  font-weight: 500;
}

.recruit_message_head h2 {
  margin-top: 12px;
  color: #1A2340;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_message_text {
  margin-top: 18px;
}

.recruit_message_text p {
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .1em;
}

.recruit_message_text p + p {
  margin-top: 18px;
}

.recruit_link {
  padding: 50px 0 60px;
}

.recruit_link_list {
  display: grid;
  gap: 20px;
}

.recruit_link_item {
  position: relative;
  border-radius: 13px;
  background: #fff;
  color: #1A2340;
  display: block;
  overflow: hidden;
}

.recruit_link_img {
  width: 100%;
  aspect-ratio: 335 / 200;
  border-radius: 13px;
}

.recruit_link_text {
  display: block;
  padding: 24px 25px 30px;
  box-sizing: border-box;
  position: relative;
}

.recruit_link_title {
  display: block;
  color: #0078F9;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 500;
}

.recruit_link_sub {
  display: block;
  margin-top: 0;
  color: #0078F9;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_link_title + .recruit_link_sub {
  margin-top: 0;
}

.recruit_link_read {
  display: block;
  margin-top: 18px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .06em;
}

.recruit_link_item .link_arrow {
  position: absolute;
  right: 25px;
  top: 48px;
}

.recruit_interview_link {
  position: relative;
  min-height: 365px;
  border-radius: 13px;
  overflow: hidden;
  display: block;
  color: #fff;
  margin-top: 15px;
}

.recruit_interview_img {
  position: relative;
  z-index: -1;
  width: 100%;
  display: grid;
}
.recruit_interview_img .img_box{
  width: 100%;
  aspect-ratio: 335 / 210;
}

.recruit_interview_text {
  position: absolute;
  left: 24px;
  bottom: 23px;
}

.recruit_interview_text .recruit_link_sub {
  color: #fff;
}

.recruit_interview_title {
  display: block;
  color: #fff;
  font-size: 40px;
  line-height: 1.3;
  font-weight: 500;
}

.recruit_interview_link .link_arrow {
  position: absolute;
  right: 24px;
  bottom: 26px;
}

/*==================================
  Recruit Requirements
==================================*/
.requirements_teaser {
  background: #3E5B87;
}

.requirements_teaser .container {
  min-height: 385px;
  display: flex;
  align-items: center;
  padding-top: 40px;
}

.requirements_teaser .teaser_hd_jap {
  font-size: 14px;
}

.requirements_teaser .teaser_hd_eng {
  font-size: 51px;
}

.requirements_wrap {
}

.requirements_sec {
  position: relative;
  padding: 35px 0 67px;
  overflow: hidden;
}

.requirements_sec .recruit_bg_shape {
  right: -225px;
  top: -75px;
  width: 470px;
  height: 470px;
  border-width: 78px;
}

.requirements_sec .recruit_bg_shape:after {
  left: 135px;
  top: 95px;
  width: 300px;
  height: 150px;
  background: #E6EFFB;
}

.requirements_sec .container {
  position: relative;
  z-index: 2;
}

.requirements_table {
  width: 100%;
  box-sizing: border-box;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.requirements_table th,
.requirements_table td {
  border-top: 1px dashed #C0C9D4;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  text-align: left;
  vertical-align: top;
  box-sizing: border-box;
}

.requirements_table tr:first-child th,
.requirements_table tr:first-child td {
  border-top: 0;
}

.requirements_table th {
  width: 87px;
  font-weight: 700;
  padding: 15px 12px;
  border-right: 1px dashed #C0C9D4;
  letter-spacing: .08em;
}

.requirements_table td {
  padding: 15px 12px;
}
.requirements_table ul,
.requirements_table p{
  font-size: inherit;
  line-height: 1.8;
}
.requirements_table p+ul{
  margin-top: 5px;
}

.requirements_table li {
  font-size: inherit;
  position: relative;
  padding-left: 13px;
  line-height: 1.8;
}

.requirements_table li:before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

.requirements_col {
  display: block;
}

.requirements_col > * + * {
  margin-top: 12px;
}
.requirements_table ul{
  margin: 0!important;
}

.requirements_note {
  margin-top: 3px;
  font-size: 13px!important;
}

.requirements_entry {
  margin-top: 34px;
  text-align: center;
}

.requirements_entry_btn {
  width: 260px;
  height: 55px;
  border-radius: 14px;
  background: #3E5B87;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .08em;
  transition: background .3s ease, color .3s ease;
}



/*==================================
  Recruit Jobs
==================================*/
.jobs_teaser .recruit_teaser_img {
  background: #87949b;
}

.jobs_wrap {
}

.jobs_intro {
  position: relative;
  padding: 54px 0 35px;
  overflow: hidden;
}

.jobs_intro .recruit_bg_shape {
  right: -225px;
  top: -75px;
  width: 470px;
  height: 470px;
  border-width: 78px;
}

.jobs_intro .recruit_bg_shape:after {
  left: 135px;
  top: 95px;
  width: 300px;
  height: 150px;
  background: #E6EFFB;
}

.jobs_intro .container {
  position: relative;
  z-index: 2;
}

.jobs_intro p {
  color: #1A2340;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 700;
  letter-spacing: .05em;
}

.jobs_detail {
  position: relative;
  z-index: 2;
}

.jobs_detail_list {
  display: grid;
  gap: 20px;
}

.jobs_detail_item {
  border-radius: 13px;
  background: #fff;
  display: block;
  overflow: hidden;
}

.jobs_detail_img {
  width: 100%;
  aspect-ratio: 670 / 400;
  border-radius: 13px;
}

.jobs_detail_text {
  padding: 18px 23px 24px;
  box-sizing: border-box;
}

.jobs_detail_text h3 {
  color: #0078F9;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .03em;
}

.jobs_detail_text p {
  margin-top: 10px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .06em;
}

.jobs_flow {
  padding: 57px 0 45px;
}

.jobs_sec_head p {
  color: #1A2340;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.jobs_sec_head h2 {
  color: #1A2340;
  font-size: 40px;
  line-height: 1.33;
  font-weight: 500;
}

.jobs_flow_list {
  margin-top: 30px;
  display: grid;
  gap: 27px;
}

.jobs_flow_list li {
  position: relative;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
}

.jobs_flow_step {
  width: 70px;
  height: 27px;
  border-radius: 8px;
  background: #278FFF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
}

.jobs_flow_list li:before {
  content: '';
  position: absolute;
  left: 35px;
  transform: translateX(-50%);
  top: 20px;
  bottom: -28px;
  border-left: 3px dotted #278FFF;
}

.jobs_flow_list li:last-child:before {
  display: none;
}

.jobs_flow_list h3 {
  color: #1A2340;
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .06em;
}

.jobs_flow_list p {
  margin-top: 10px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .06em;
}


/*==================================
  Recruit Company
==================================*/

.company_wrap {
}

.company_environment {
  position: relative;
  padding: 55px 0 0;
  overflow: hidden;
}

.company_environment .recruit_bg_shape {
  right: -225px;
  top: -75px;
  width: 470px;
  height: 470px;
  border-width: 78px;
}

.company_environment .recruit_bg_shape:after {
  left: 135px;
  top: 95px;
  width: 300px;
  height: 150px;
  background: #E6EFFB;
}

.company_environment .container,
.company_data .container {
  position: relative;
  z-index: 2;
}

.recruit_page_head p {
  color: #1A2340;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_page_head h2 {
  color: #1A2340;
  font-size: 40px;
  line-height: 1.33;
  font-weight: 500;
}

.company_environment_list {
  margin-top: 20px;
  display: grid;
  gap: 18px;
}

.company_environment_item {
  border-radius: 13px;
  background: #fff;
  padding: 30px 25px;
  box-sizing: border-box;
}

.company_environment_item h3 {
  color: #0078F9;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .06em;
}

.company_environment_text ul{
  display: grid;
  grid-gap: 10px;
  margin-top: 15px;
}
.company_environment_text li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: .06em;
  font-weight: 500;
}
.company_environment_text li font ,
.company_environment_text li span {
  margin: 0 .4em;
}

.company_environment_text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 1em;
  transform: translateY(-50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #278FFF;
}

.company_environment_text p {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: .06em;
  font-weight: 500;
  margin-top: 20px;
}

.company_data {
  padding: 63px 0 45px;
}

.company_data_list {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

.company_data_list li {
  border-radius: 13px;
  background: #fff;
  color: #1A2340;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 35px 18px 30px;
  position: relative;
  text-align: center;
}

.company_data_icon {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.company_data_icon img{
  max-height: 100%;
}


.company_data_list strong {
  color: #0078F9;
  font-family: "DM Sans", sans-serif;
  font-size: 70px;
  line-height: 1.33;
  font-weight: 900;
  margin-top: -5px;
}
.company_data_list li:first-of-type strong {
  margin: 5px 0 10px;
  font-size: 59px;
  letter-spacing: -.02em;
}

.company_data_list strong span {
  color: #1A2340;
  font-size: 25px;
  font-weight: 700;
}
.company_data_list strong span.dot {
  font-size: 59px;
}

.company_data_list p {
  color: #1A2340;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
}
.company_data_note{
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: .05em;
}

/*==================================
  Recruit Interview
==================================*/
.interview_teaser .recruit_teaser_img {
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.interview_teaser .recruit_teaser_img .img_box{
  height: 100%;
}

.interview_wrap {
  padding-top: 50px;
}

.interview_block {
  position: relative;
  overflow: hidden;
}

.interview_block .recruit_bg_shape {
  right: -225px;
  top: -75px;
  width: 470px;
  height: 470px;
  border-width: 78px;
}

.interview_block .recruit_bg_shape:after {
  left: 135px;
  top: 95px;
  width: 300px;
  height: 150px;
  background: #E6EFFB;
}

.interview_block .container {
  position: relative;
  z-index: 2;
}

.interview_lead {
  display: flex;
  flex-direction: column-reverse;
  background: #fff;
  border-radius: 13px;
}

.interview_lead_img {
  aspect-ratio: 670 / 460;
  border-radius: 13px;
}

.interview_lead_text {
  padding: 30px 10px 30px 25px;
}

.interview_lead_text p {
  color: #0078F9;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 700;
}

.interview_lead_text h2 {
  margin-top: 10px;
  color: #1A2340;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .05em;
}

.interview_lead_text span {
  margin-top: 17px;
  border-radius: 8px;
  background: #0078F9;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 2.5px 15px;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .04em;
}

.interview_article {
  margin-top: 28px;
  display: grid;
  gap: 28px;
}

.interview_text h3 {
  color: #1A2340;
  font-size: 19px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .04em;
}

.interview_text p {
  margin-top: 12px;
  color: #1A2340;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: .04em;
}

.interview_article_img {
  aspect-ratio: 670 / 486;
  border-radius: 13px;
}

.interview_text_item + .interview_text_item {
  margin-top: 20px;
}

.interview_block:not(.interview_block02) .interview_group01,
.interview_block:not(.interview_block02) .interview_group02,
.interview_block:not(.interview_block02) .interview_group03 {
  display: contents;
}

.interview_block:not(.interview_block02) .interview_text01 {
  order: 1;
}

.interview_block:not(.interview_block02) .interview_text02 {
  order: 2;
}

.interview_block:not(.interview_block02) .interview_img01 {
  order: 3;
}

.interview_block:not(.interview_block02) .interview_text03 {
  order: 4;
}

.interview_block:not(.interview_block02) .interview_text04 {
  order: 5;
}

.interview_block:not(.interview_block02) .interview_img02 {
  order: 6;
}

.interview_block:not(.interview_block02) .interview_text05 {
  order: 7;
}

.interview_block:not(.interview_block02) .interview_text06 {
  order: 8;
}

.interview_block:not(.interview_block02) .interview_img03 {
  order: 9;
}

.interview_block:not(.interview_block02) .interview_text_item + .interview_text_item {
  margin-top: 0;
}

.interview_block02 .interview_lead {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 7px;
  background: #fff;
  padding: 26px 24px 24px;
  box-sizing: border-box;
}

.interview_block02 .interview_lead_img {
  margin-top: 18px;
}

.interview_block02 .interview_lead_text {
  margin-top: 0;
  padding: 0;
}

.interview_block02 .interview_group01,
.interview_block02 .interview_group02,
.interview_block02 .interview_group03 {
  display: contents;
}

.interview_block02 .interview_text01 {
  order: 1;
}

.interview_block02 .interview_text02 {
  order: 2;
}

.interview_block02 .interview_img01 {
  order: 3;
}

.interview_block02 .interview_text03 {
  order: 4;
}

.interview_block02 .interview_text04 {
  order: 5;
}

.interview_block02 .interview_img02 {
  order: 6;
}

.interview_block02 .interview_text05 {
  order: 7;
}

.interview_block02 .interview_text06 {
  order: 8;
}

.interview_block02 .interview_img03 {
  order: 9;
}

.interview_block02 .interview_text_item + .interview_text_item {
  margin-top: 0;
}

.interview_schedule {
  padding: 50px 0;
}

.interview_schedule_box {
  width: 100%;
  margin: 42px auto 0;
  background: #D6E3F3;
  display: grid;
  gap: 32px;
  padding: 25px 20px 47px;
  box-sizing: border-box;
  border-radius: 13px;
}

.interview_schedule_col h3 {
  position: relative;
  width: 160px;
  height: 33px;
  border-radius: 10px;
  background: #278FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

.interview_schedule_col h3::before {
  content: "";
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 11px;
  height: 11px;
  background: url(/images/interview/icon_before.svg) no-repeat center / contain;
}

.interview_schedule_col dl {
  position: relative;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 0;
  row-gap: 28px;
  color: #1A2340;
  font-weight: 700;
}

.interview_schedule_col dl::before {
  content: "";
  position: absolute;
  left: 71px;
  top: 7px;
  bottom: 7px;
  border-left: 3px dotted #278fff;
}

.interview_schedule_col dt {
  position: relative;
  grid-column: 1;
  color: #0078F9;
  text-align: right;
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-height: 20px;
  font-weight: 700;
  padding-right: 30px;
}

.interview_schedule_col dt::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 2;
  width: 20px;
  height: 20px;
  background: url(/images/interview/icon_dot.svg) no-repeat center / contain;
}

.interview_schedule_col dd {
  position: relative;
  grid-column: 2;
  z-index: 1;
  padding-left: 50px;
  font-size: 15px;
  line-height: 1.4;
}
.interview_schedule_col dd span {
  font-size: 12px;
  display: inline-block;
}

.interview_schedule_col dd::before {
  content: "";
  position: absolute;
  left: 7px;
  top: .6em;
  width: 36px;
  height: 1px;
  background: #278fff;
}
.interview_schedule_col dt:last-of-type{
  background: #D6E3F3;
  max-height: 100%;
  height: 100%;
  align-items: flex-start;
}
.interview_schedule_col dt:last-of-type:after{
  top: .6em;
}

/*==================================
  Lower Common
==================================*/
.lower_teaser {
  position: relative;
  min-height: 296px;
  background: #3E5B87;
  color: #fff;
  overflow: hidden;
}

.lower_teaser .container {
  position: relative;
  z-index: 2;
  min-height: 296px;
  display: flex;
  align-items: flex-end;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 70px;
  box-sizing: border-box;
}

.lower_teaser .teaser_hd_jap,
.lower_teaser .teaser_hd > span:first-child {
  display: block;
  color: #fff;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
}

.lower_teaser .teaser_hd_eng {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-size: 43px;
  line-height: 1;
  font-weight: 500;
}



/*==================================
  Overview
==================================*/
#overview .recruit_teaser_img img{
  object-position: left 55% center;
}
.overview_wrap {
}

.overview_sec{
  padding: 50px 0 63px;
}
.overview_sec .container {
  position: relative;
}

.overview_shape {
  position: absolute;
  left: 50%;
  top: -80px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  transform: translateX(-50%) rotate(18deg);
  box-sizing: border-box;
}

.overview_banner {
  margin:0 auto 50px auto;
}

.overview_banner a {
  display: block;
  aspect-ratio: 1340 / 443;
  border-radius: 17px;
  overflow: hidden;
  position: relative;
}

.overview_banner a .tit {
  font-size:10px;
  font-weight: 500;
  color:#fff;
  position:absolute;
  left:20px;
  bottom:50px;
  z-index: 3;
}
.overview_banner a .tit_en {
  font-size:35px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color:#fff;
  position:absolute;
  left:20px;
  bottom:5px;
  z-index: 3;
}
.overview_banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  display: block;
}

.overview_banner .link_arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
}

.overview_table {
  position: relative;
  z-index: 2;
  width: 100%;
  border-collapse: collapse;
}

.overview_table th,
.overview_table td {
  border-top: 1px solid #cbd8e6;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: .06em;
  text-align: left;
  vertical-align: middle;
  padding: 15px 0;
}

.overview_table tr:last-child th,
.overview_table tr:last-child td {
  border-bottom: 1px solid #cbd8e6;
}

.overview_table th {
  vertical-align: top;
  padding: 15px 5px;
  width: 100px;
}

.overview_map {
  margin-top: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
  height: 450px;
  border-radius: 13px;
  overflow: hidden;
}
.overview_map iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/*==================================
  News
==================================*/
.news_wrap {
}

.news_list_sec{
  padding: 50px 0 75px;
}
.news_select {
  margin-bottom: 25px;
}

.news_select select {
  width: 100%;
  height: 50px;
  border: 1px solid #3E5B87;
  border-radius: 15px;
  color: #3E5B87;
  padding: 0 19px;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;
  background: url(../images/common/arrow_select.svg)no-repeat right 20px center #E6EFFB;
  background-size: 12px auto;
}

.news_list {
  display: grid;
  gap: 15px;
}
.news_list .top_news_item{
  padding: 60px 28px 30px;
}
.news_pager {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.news_pager .nav-links {
  margin-top: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.news_pager a,
.news_pager span {
  color: #1A2340;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.33;
  font-weight: 700;
}
.news_pager .current{
  color: #A6B6CB;
  text-decoration: underline;
}

.news_pager .prev,
.news_pager .next {
  font-size: 0;
}

.news_pager .prev:before,
.news_pager .next:after {
  content: '';
  width: 16px;
  height: 16px;
  background: url(/images/common/arrow_prev.svg) left center no-repeat;
  background-size: 100% auto;
  display: block;
}
.news_pager .next:after {
  background: url(/images/common/arrow_next.svg) right center no-repeat;
  background-size: 100% auto;
}

/*==================================
  News Detail
==================================*/
.news_detail_teaser .container {
  display: block;
  padding-top: 120px;
  box-sizing: border-box;
}

.news_detail_teaser .teaser_hd {
  margin-top: 0;
}
.news_detail_teaser .teaser_hd_eng{
  font-size: 40px;
}

.news_detail_head {
  margin-top: 25px;
  padding:0 0 60px 0;
}

.news_detail_head .news_meta .date{
  color: #fff;
  font-size: 12px;
}
.news_detail_head .news_meta .cate {
  color: #fff;
  font-size: 12px;
  padding: 0 12px;
  height: 23px;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  border: 1px solid;
  margin-left: 10px;
}

.news_detail_head .news_meta .cate {
  border-color: #C6D0DD;
}

.news_detail_head h3 {
  margin-top: 10px;
  color: #fff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .06em;
}

.news_detail_sec {
  padding: 45px 0 75px;
}

.news_detail_body {
  color: #1A2340;
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: .06em;
}
.news_detail_body p{
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
}
.news_detail_body p + p {
  margin-top: 18px;
}

.news_detail_body img{
  width: 100%;
  margin-top: 35px;
}

.news_detail_nav {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.news_detail_nav a {
}

.news_detail_nav .list {
  min-width: 150px;
}

.news_detail_nav .prev,
.news_detail_nav .next{
  padding-right: 25px;
  color: #1A2340;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: .08em;

  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
  background: url(/images/common/arrow_next.svg) right center no-repeat;
  background-size: 16px auto;
  border-radius: 50%;
}

.news_detail_nav .prev {
  padding-right: 0;
  padding-left: 25px;
  left: 0;
  right: auto;
  background: url(/images/common/arrow_prev.svg) left center no-repeat;
  background-size: 16px auto;
}

/*==================================
  About / Business
==================================*/
#about .recruit_teaser_img img{
  object-position: 74% top;
}
.about_message {
  background: #3E5B87;
  color: #fff;
  border-radius: 40px;
  padding: 62px 10px;
  overflow: hidden;
  position: relative;
  z-index: 2;
  transform: translateY(-1px);
}

.about_message .container {
  position: relative;
}

.about_message_inner {
  position: relative;
  z-index: 2;
}

.about_message h2 {
  color: #fff;
  font-size: 25px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .08em;
}

.about_message_text{
  margin-top: 15px;
}
.about_message_text p {
  color: #fff;
  font-size: 15px;
  line-height: 2.2;
  font-weight: 500;
  letter-spacing: .06em;
}

.about_message_text p + p {
  margin-top: 15px;
}

.about_strength {
  padding: 58px 0;
}

.about_strength_list {
  margin-top: 27px;
  display: grid;
  gap: 15px;
}

.about_strength_item {
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.about_strength_img {
  border-radius: 13px;
  width: 100%;
  aspect-ratio: 670 / 320;
}

.about_strength_text {
  padding: 20px 24px 28px;
  box-sizing: border-box;
}

.about_strength_text h3 {
  color: #1A2340;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0;
  letter-spacing: 0.06em;
}

.about_strength_text p {
  margin-top: 10px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0;
}

.business_sec {
  padding: 58px 0 42px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.business_group + .business_group {
  margin-top: 45px;
}

.business_group h2 {
  display: inline-block;

  background: url(../images/top/bg_arrow.png)no-repeat left 1px top 1px #fff;
  background-size: 7px auto;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 0 10px;
}

.business_list {
  margin-top: 25px;
  display: grid;
  gap: 15px;
}

.business_item {
  border-radius: 13px;
  background: #fff;
  overflow: hidden;
}

.business_img {
  width: 100%;
  aspect-ratio: 670 / 400;
  border-radius: 13px;
}

.business_text {
  padding: 18px 24px 25px;
  box-sizing: border-box;
}

.business_text h3 {
  color: #1A2340;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .06em;
}

.business_text p {
  margin-top: 10px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: .06em;
}

/*==================================
  Contact
==================================*/
.contact_teaser {
  min-height: 250px;
  background: #3E5B87;
}

.contact_teaser .container {
  min-height: 250px;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 43px;
  box-sizing: border-box;
}

.contact_teaser .teaser_hd_jap,
.contact_teaser .teaser_hd > span:first-child {
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
}

.contact_teaser .teaser_hd_eng {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 41px;
  line-height: 1;
  font-weight: 500;
}

.contact_teaser_shape {
  position: absolute;
  left: 95px;
  bottom: -88px;
  width: 230px;
  height: 230px;
  border: 58px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(18deg);
}

.contact_wrap {
}

.contact_sec {
  position: relative;
  padding: 50px 0 70px;
  overflow: hidden;
}

.contact_sec .container {
  position: relative;
  z-index: 2;
}

.contact_shape {
  display: none;
}

.contact_intro p {
  color: #1A2340;
  font-size: 14px;
  line-height: 2.1;
  font-weight: 500;
  letter-spacing: 0;
}

.contact_tel {
  margin-top: 25px;
  color: #3E5B87;
}

.contact_tel p {
  color: #3E5B87;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
}

.contact_tel a {
  font-family: "DM Sans", sans-serif;
  position: relative;
  display: inline-block;
  padding-left: 22px;
  color: #3E5B87;
  font-size: 30px;
  line-height: 1.33;
  font-weight: 700;
  letter-spacing: .06em;
  background: url(../images/common/icon_tel_blue.svg)no-repeat left 55%;
  background-size: 18px auto;
}

.contact_form {
  margin-top: 36px;
}

.contact_row {
  display: block;
  margin: 0;
}

.contact_row + .contact_row {
  margin-top: 23px;
}

.contact_row dt {
  display: flex;
  align-items: center;
  color: #1A2340;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact_row dt .need,
.contact_row dt .free,
.agree_area .need {
  min-width: 49px;
  height: 22px;
  border-radius: 11px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
}

.contact_row dt .need,
.agree_area .need {
  background: #0078F9;
}

.contact_row dt .free {
  background: #9aacbf;
}

#Contact input[type=text],
#Contact textarea,
#Contact select {
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: #fff;
  color: #1A2340;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  box-sizing: border-box;
  padding: 15px 20px;
}
#Contact select {
  color: #3E5B87;
  border: 1px solid #3E5B87;
  background: url(../images/common/arrow_select.svg)no-repeat right 20px center #E6EFFB;
  background-size: 11px auto;
}
#Contact textarea {
  min-height: 265px;
}

main#Contact input::placeholder {
  color: #C8D0DA;
}
main#Contact input:-ms-input-placeholder {
  color: #C8D0DA;
}
main#Contact input::-webkit-input-placeholder {
  color: #C8D0DA;
}

.zip-wrap{
  position: relative;
  display: block;
}
#Contact .zip-wrap input[type=text].zip{
  width: 100%;
  max-width: 170px;
  padding-left: 45px;
}
#Contact .zip-wrap:before {
  content: "〒";
  position: absolute;
  top: 0;
  height: 54px;
  left: 18px;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.contact_address .zip {
  padding-left: 42px;
}

.contact_address .text02 {
  margin-top: 10px;
}

.agree_area {
  margin-top: 20px;
  text-align: left;
}
#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
  position: absolute;
}
#Contact input[type=checkbox] + label {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding-left: 43px;
  color: #1A2340;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  cursor: pointer;
}

#Contact input[type=checkbox] + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: #fff;
  transform: translateY(-50%);
}

#Contact input[type=checkbox] + label:after {
  content: '';
  position: absolute;
  left: 11px;
  top: 50%;
  width: 9px;
  height: 14px;
  border-right: 3px solid #0078F9;
  border-bottom: 3px solid #0078F9;
  opacity: 0;
  transform: translateY(-62%) rotate(45deg);
}

#Contact input[type=checkbox]:checked + label {
  background: none;
}

#Contact input[type=checkbox]:checked + label:after {
  opacity: 1;
}

#Contact .container p > a{
  background: none;
}

#Contact .checkAgree a {
  color: #1A2340;
  text-decoration: underline;
}

#Contact span.error {
  margin-top: 4px;
  color: #cc0303;
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.submit_area {
  margin-top: 34px;
  text-align: center;
}

.contact_submit_btn,
.contact_back_btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 260px !important;
  height: 50px !important;
  border-radius: 14px !important;
  border: 2px solid #3E5B87 !important;
  background: #3E5B87 !important;
  color: #fff !important;
  box-sizing: border-box;
  transition: background .3s ease, color .3s ease;
  overflow: hidden;
}

.contact_submit_btn input,
.contact_back_btn input{
  width: 100% !important;
  height: 100% !important;
  font-size: 16px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  background: none;
  color: #fff;
  border: 0;
  cursor: pointer;
  padding:0 0 1px 0;
}

.contact_back_btn input{
  background: #fff !important;
  color: #3E5B87 !important;
}


.contact_confirm_btns {
  display: grid;
  justify-content: center;
  gap: 14px;
  margin: 0;
}

.contact_confirm_btns li {
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

.contact_lead {
  margin-bottom: 28px;
  color: #1A2340;
  font-size: 12px;
  line-height: 2;
  font-weight: 700;
}

.contact_confirm_table dd {
  min-height: 40px;
  border-radius: 8px;
  background: #fff;
  padding: 12px 18px;
  box-sizing: border-box;
}

.contact_confirm_table dd p {
  color: #1A2340;
  font-size: 11px;
  line-height: 1.8;
  font-weight: 700;
  overflow-wrap: break-word;
}

.send_comp {
  text-align: left;
}

.send_comp h2 {
  color: #1A2340;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
}

.send_comp p {
  color: #1A2340;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
}

.contact_back {
  text-align: center;
  margin-top: 34px;
}
.sfm2 .contact_row dd p {
  color: #1A2340;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  overflow-wrap: break-word;
}

/*==================================
  About message shape adjust
==================================*/
.main_box{
  overflow: visible;
}
.business_sec .container{
  position: relative;
  z-index: 2;
}
.about_message_shape {
  position: absolute;
  left: 0;
  transform: translateX(-15%);
  top: -22.5vw;
  width: 185vw;
  height: 773px;
  background: url(/images/about/bg_white.png) no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
}
.top_about::before ,
.about_message::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  transform: translateX(-15%);
  top: -22.5vw;
  width: 185vw;
  height: 125vw;
  background: url(/images/about/bg_blue.png) no-repeat top center;
  background-size: 100% auto;
  z-index: 1;
}
.about_message_shape.is_trans {
  background: url(/images/about/bg_trans.png) no-repeat top center;
  background-size: 100% auto;
}
.about_message_shape.is_trans::after,
.about_message_shape.is_gray::after {
  background: url(/images/about/bg_gray.png) no-repeat top -84px center;
  background-size: 100% auto;
}

.business_sec::before ,
.overview_sec::before ,
.contact_sec::before ,
.news_list_sec::before ,
.news_detail_sec::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  transform: translateX(-15%);
  top: -22.5vw;
  width: 185vw;
  height: 125vw;
  background: url(/images/about/bg_gray.png) no-repeat top center;
  background-size: 100% auto;
  z-index: 1;
}

.recruit_shape {
  position: absolute;
  right: -30vw;
  top: -16.5vw;
  width: 100vw;
  height: 130vw;
  background: url(/images/recruit/bg_white.png) no-repeat top center;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 1;
}

.jobs_recruit {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.jobs_recruit_pad {
  padding:50px 0 0 0;
}

.recruit_message::before ,
.company_environment::before ,
.jobs_recruit::before ,
.requirements_sec::before {
  content: "";
  position: absolute;
  right: -30vw;
  top: -16.5vw;
  width: 100vw;
  height: 130vw;
  background: url(/images/recruit/bg_blue.png) no-repeat top center;
  background-size: 100% auto;
  z-index: 1;
}

/*0703*/
.top_business {
  position: relative;
}
.top_business:before{
  content: '';
  position: absolute;
  z-index: -1;
  left: -222px;
  top: 45px;
  width: 80vw;
  height: 100vw;
  background: url(../images/top/bg_business.png)no-repeat;
  background-size: 100% auto;
  pointer-events: none;
}

.top_recruit {
  position: relative;
}
.top_recruit:before{
  content: '';
  position: absolute;
  z-index: 0;
  right: -18vw;
  top: -13vw;
  width: 80vw;
  height: 110vw;
  background: url(../images/top/bg_recruit.png)no-repeat;
  background-size: 100% auto;
  pointer-events: none;
}

ul.privacy li {
  padding:0 0 3em 0;
}

ul.privacy li p a {
  background: linear-gradient(#3E5B87, #3E5B87) 0 100% / 0 1px no-repeat !important;
  background-size: 100% 1px !important;
  padding-bottom: 2px;
  display: inline;
}

ul.privacy li h2 {
  font-size:20px;
  padding:0 0 1em 0;
}

ul.privacy li ul.decimal {
  padding:1em 0 0 0;
}

ul.privacy li ul.decimal-ft {
  padding:1em 0 1em 0;
}

ul.privacy li ul.decimal li {
  margin:0 0 0 10px;
  text-indent: -10px;
  padding:0 0 5px 0;
}