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

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

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

a:hover {
  text-decoration: none;
}

a[href^="tel:"],
a.tel {
  pointer-events: none;
  cursor: default;
}

a.hover_line,
.hover_line a,
a.hover_line,
a .hover_line {
  background: linear-gradient(#1A2340,#1A2340) left bottom no-repeat;
  background-size: 0 1px;
  transition: background-size .5s ease;
}

a.hover_line:hover,
.hover_line a:hover,
a:hover .hover_line {
  background-size: 100% 1px;
}

.hover_opacity:hover {
  opacity: .7;
}

.hover_scale img {
  transition: transform .5s ease;
}

.hover_scale:hover img {
  transform: scale(1.1);
}

.sp {
  display: none !important;
}
/* 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: -86px;
}

/*　Retina対応時のCSS↓　*/
/* header
==================================*/
header {}

header #menu-toggle {}

header .g-navi {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: transform .4s ease;
}

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


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

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

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

.breadcrumb ul li {
  word-break: keep-all;
  white-space: nowrap;
  font-size: 11px;
  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;
}


/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

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

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

.delay1 {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}

.delay2 {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}

.delay3 {
  -moz-transition-delay: 900ms;
  -webkit-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
}

.delay4 {
  -moz-transition-delay: 1200ms;
  -webkit-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
}

.delay5 {
  -moz-transition-delay: 1500ms;
  -webkit-transition-delay: 1500ms;
  -o-transition-delay: 1500ms;
  -ms-transition-delay: 1500ms;
}

.delay6 {
  -moz-transition-delay: 1800ms;
  -webkit-transition-delay: 1800ms;
  -o-transition-delay: 1800ms;
  -ms-transition-delay: 1800ms;
}

.delay7 {
  -moz-transition-delay: 2100ms;
  -webkit-transition-delay: 2100ms;
  -o-transition-delay: 2100ms;
  -ms-transition-delay: 2100ms;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

.container {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media (max-width: 799px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
}
.row .col {
  position: relative;
  width: 100%;
  min-height: 1px;
  box-sizing: border-box;
}
.row .col.col_4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

/*==================================
  リスト系
==================================*/

.news_ul {
}

.news_ul .news_li {
  border-bottom: 1px solid #EBEBEB;
}

.news_ul .news_li > a {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
}

.news_ul .news_li > a .date {
  font-size: 14px;
  letter-spacing: .08em;
  line-height: 1.785;
  font-weight: 500;
  font-family: "DM Sans", sans-serif;
  min-width: 115px;
}

.news_ul .news_li > a .cate {
  display: inline-flex;
  padding: 4px 16px 2px;
  background: #F5F5F5;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-right: 15px;
  gap: 6px;
  min-width: 95px;
}

.news_ul .news_li > a .cate:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 100%;
  margin-bottom: 2px;
}

.news_ul .news_li > a .cate.cate01:before {
  background: #F88869;
}

.news_ul .news_li > a .cate.cate02:before {
  background: #66A2EB;
}

.news_ul .news_li > a .title {
  font-size: 15px;
  letter-spacing: .05em;
  line-height: 1.667;
  font-weight: 500;
  background: linear-gradient(#1A2340, #1A2340) 0 100%/0 1px no-repeat;
  transition: background 0.4s ease;
}

.news_ul .news_li > a:hover .title {
  background-size: 100% 1px;
}

@media screen and (max-width: 899px) {
  .news_ul .news_li > a .cate {
    padding: 2px 16px 3px;
  }

  .news_ul .news_li > a .cate:before {
    margin-bottom: 0;
    margin-top: 1px;
  }
}

/*==================================
  ページナビ
==================================*/
.page_navigation .wp-pagenavi .nav-links{
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 55px 0 0;
}
.page_navigation .wp-pagenavi .page-numbers {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  margin: 0;
  border: 0;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  color: #1A2340;
}
.page_navigation .wp-pagenavi .page-numbers.dots{
  border-radius: 0;
  width: auto;
  background: none;
  pointer-events: none;
  color: #1A2340;
  margin: 0 3px;
  border: 0;
  padding-bottom: 10px;
}
.page_navigation .wp-pagenavi .page-numbers.prev,
.page_navigation .wp-pagenavi .page-numbers.next{
  width: 115px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  border: 0!important;
  border-radius: 30px;
  font-size: 15px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  background: #2CB1AE;
  position: relative;
}

.page_navigation .wp-pagenavi .page-numbers.prev {
  padding: 0 21px 0 15px;
}

.page_navigation .wp-pagenavi .page-numbers.next{
  padding: 0 15px 0 21px;
}

.page_navigation .wp-pagenavi .page-numbers.prev:before,
.page_navigation .wp-pagenavi .page-numbers.next:after {
  width: 19px;
  height: 11px;
  content: '';
  display: block;
  background: url(/images/common/icon_arrow_right.svg) center center no-repeat;
  background-size: cover;
}

.page_navigation .wp-pagenavi .page-numbers.prev:before {
  transform: scaleX(-1);
}

.page_navigation .wp-pagenavi .page-numbers:not(.current):hover,
.page_navigation .wp-pagenavi .current:not(.current):hover {
  opacity: .3;
}

.page_navigation .wp-pagenavi .page-numbers.prev {
  margin-right: 13px;
}

.page_navigation .wp-pagenavi .page-numbers.next {
  margin-left: 13px;
}

.page_navigation .wp-pagenavi > .page.current,
.page_navigation .wp-pagenavi .current.current {
  background: #2CB1AE;
  color: #fff;
  margin: 0 15px;
}

.page_navigation .wp-pagenavi .first,
.page_navigation .wp-pagenavi .last {
  display: none;
}




/*==================================
  Contact_reset
==================================*/
main#Contact {
  /*------ Reset CSS ------*/
  /*------ Reset END ------*/
}
main#Contact input {
  -webkit-appearance: none;
}
main#Contact input[type=text] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
main#Contact input[type=radio] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
}
main#Contact input[type=radio]:checked + label {
  background: #ff0000;
}
main#Contact input[type=checkbox] {
  opacity: 0;
  margin: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 1;
  position: absolute;
}
main#Contact input[type=checkbox]:checked + label {
  background: #ff0000;
}
main#Contact input::placeholder {
  color: #C8D0DA;
}
main#Contact input:-ms-input-placeholder {
  color: #C8D0DA;
}
main#Contact input::-webkit-input-placeholder {
  color: #C8D0DA;
}
main#Contact button,
main#Contact input[type=button],
main#Contact input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
}
main#Contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
  border-radius: 0;
}
main#Contact select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  border-radius: 0;
}

/*==================================
  Contact_base
==================================*/
/* input, textarea
--------------------------------*/
/* radio_button
--------------------------------*/
main#Contact {
  /*------ Form Base ------*/
  /*------ Form Base END ------*/
}
@keyframes onAutoFillStart {}
main#Contact span.error {
  color: #cc0303;
  display: block;
  margin: 7px 0 0;
}
main#Contact input:-webkit-autofill {
  animation-name: onAutoFillStart;
  background: rgb(255, 255, 255) !important;
  transition: background-color 50000s ease-in-out 0s;
}
main#Contact input[type=text]:focus,
main#Contact input[type=email]:focus,
main#Contact input[type=tel]:focus,
main#Contact input[type=search]:focus,
main#Contact input[type=url]:focus,
main#Contact textarea:focus {
  color: #1A2340;
  background-color: #fff;
}
main#Contact .ERR {
  color: #cc0303;
}
main#Contact textarea,
main#Contact .select-box select,
main#Contact input[type=text] {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  padding: 20px 28px;
  border: 0;
  background: #fff;
  box-sizing: border-box;
  color: #1A2340;
  width: 100%;
  font-weight: 500;
  border-radius: 15px;
}
main#Contact input[type=text].zip {
  max-width: 223px;
  width: 100%;
  padding-left: 56px;
}
main#Contact .select-box select{
  color: #3E5B87;
  width: 525px;
  max-width: 100%;
  border: 1px solid #3E5B87;
  background: url(../images/common/arrow_select.svg)no-repeat right 26px center #E6EFFB;
  background-size: 12px auto;
}
main#Contact .select-box select::-ms-expand {
  display: none;
}
main#Contact textarea {
  min-height: 320px;
}
main#Contact .zip-wrap {
  position: relative;
  display: block;
}
main#Contact .zip-wrap::before {
  content: "〒";
  position: absolute;
  top: 0;
  height: 64px;
  left: 28px;
  display: flex;
  align-items: center;
}
main#Contact input[type=button] {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: #3E5B87;
  max-width: 140px;
  width: 100%;
  background: #dddddd;
  border: 3px solid #dddddd;
  padding: 10px 19px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  cursor: pointer;
}
main#Contact input[type=button]:hover {
  background: none;
}
main#Contact input[type=checkbox] + label {
  padding-left: 57px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
main#Contact input[type=checkbox] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  box-sizing: border-box;
  border-radius: 9px;
}
main#Contact input[type=checkbox] + label::after {
  content: "";
  position: absolute;
  opacity: 0;
  border-right: 3px solid #278FFF;
  border-bottom: 3px solid #278FFF;
  display: block;

  left: 15px;
  top: 50%;
  width: 9px;
  height: 15px;
  transform: translateY(-62%) rotate(45deg);
}
main#Contact input[type=checkbox]:checked + label {
  background: none;
}
main#Contact input[type=checkbox]:checked + label::after {
  opacity: 1;
}
main#Contact input[type=radio] + label {
  padding-left: 27px;
  position: relative;
  margin-right: 27px;
  cursor: pointer;
}
main#Contact input[type=radio] + label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  border: 1px solid #dddddd;
  background: #dddddd;
  box-sizing: border-box;
  border-radius: 50%;
}
main#Contact input[type=radio] + label::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 9px;
  height: 9px;
  background: #3E5B87;
  border-radius: 50%;
  opacity: 0;
}
main#Contact input[type=radio]:checked + label {
  background: none;
}
main#Contact input[type=radio]:checked + label::after {
  opacity: 1;
}
main#Contact .overscroll {
  overflow-y: scroll;
  height: 237px;
  padding: 25px 21px;
  background: #dddddd;
}
main#Contact .overscroll ul > li {
  margin-bottom: 25px;
}
main#Contact .overscroll ul > li strong {
  font-size: 16px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 5px;
  color: #3E5B87;
}
main#Contact .overscroll ul > li p {
  font-size: 14px;
  line-height: 1.42;
}
main#Contact .overscroll ul > li > ol {
  margin-top: 5px;
}
main#Contact .overscroll ul > li > ol li {
  text-indent: -1.25em;
  padding-left: 1.25em;
}
main#Contact .overscroll ul > li:first-child strong {
  margin-bottom: 20px;
}
main#Contact .overscroll ul > li:last-child {
  margin-bottom: 0;
}
main#Contact .submit_area {
  margin-top: 85px;
  text-align: center;
}
main#Contact .submit_area span {
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  color: #3E5B87;
  width: 350px;
  background: #dddddd;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
main#Contact .submit_area span input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #3E5B87;
  cursor: pointer;
  width: 100%;
  height: 70px;
  box-sizing: border-box;
}
main#Contact .submit_area span:hover {
  background: #278FFF;
}
main#Contact .submit_area span:hover input[type=submit] {
  color: #3E5B87;
}
main#Contact .submit_area ul.koumoku {
  max-width: 590px;
  margin: 20px auto 0;
}
main#Contact .submit_area ul.koumoku li {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #3E5B87;
  width: 262px;
  background: #5f4b08;
  box-sizing: border-box;
  font-feature-settings: "palt";
  position: relative;
  display: inline-block;
  text-align: center;
  box-sizing: border-box;
  border: 3px solid #5f4b08;
  transition: all 0.3s ease;
}
main#Contact .submit_area ul.koumoku li input[type=submit] {
  font-size: 18px;
  line-height: 1.4;
  letter-spacing: 0.13em;
  color: #3E5B87;
  cursor: pointer;
  width: 100%;
  height: 58px;
  box-sizing: border-box;
}
main#Contact .submit_area ul.koumoku li:hover {
  background: none;
}
main#Contact .submit_area ul.koumoku li:hover input[type=submit] {
  color: #3E5B87;
}
main#Contact .submit_area ul.koumoku li:hover svg path {
  fill: #3E5B87;
}
main#Contact .btn_back {
  margin-top: 25px;
  text-align: center;
}
main#Contact .btn_back input {
}
main#Contact .contact_back {
  text-align: center;
}

/*==========================================
  Layout
==========================================*/
/*==================================
  Top
==================================*/

/*==================================
  Contact
==================================*/
main#Contact .container {
  margin: auto;
}
main#Contact .container p > a {
  background: linear-gradient(#3E5B87, #3E5B87) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
  padding-bottom: 2px;
  display: inline;
}
main#Contact .container p > a:hover {
  color: #704f00;
  background: linear-gradient(#704f00, #704f00) 0 100%/0 1px no-repeat;
  background-size: 100% 1px;
}
main#Contact table {
  display: block;
}
main#Contact table tbody {
  display: block;
}
main#Contact table tr {
  display: block;
  margin-bottom: 30px;
}
main#Contact table tr th {
  font-size: 16px;
  letter-spacing: 0.03em;
  font-weight: 500;
  display: block;
  text-align: left;
  margin-bottom: 13px;
}
main#Contact table tr td {
  display: block;
}
main#Contact table tr td .text02 {
  margin-top: 8px;
}
main#Contact .check-list {
  padding-top: 5px;
  padding-left: 0;
}
main#Contact .check-list li {
  display: inline-block;
}
main#Contact .form_wrap > p {
  margin-top: 0 !important;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 500;
}
main#Contact.sfm2 td p {
  overflow-wrap: break-word;
}

/*==================================
  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 {
  padding: 12px 30px 12px 35px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

header .logo .is_black{
  display: none;
}
header.scroll .logo .is_white{
  display: none;
}
header.scroll .logo .is_black{
  display: block;
}

header .logo a {
  display: flex;
  align-items: center;
  width: 85px;
}

header .g-navi {
  flex: 1 1 auto;
  display: block !important;
  overflow: visible;
}

header .nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.1vw, 34px);
  grid-gap: 26px;
}

header .nav_list li {
  position: relative;
}

header .nav_list a {
  display: block;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
  white-space: nowrap;
  padding: 20px 0;
}

header .nav_list .parentA {
  padding-right: 15px;
}

header .subBtn {
  position: absolute;
  top: 50%;
  right: 0;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  pointer-events: none;
}

header .subBtn:before,
header .subBtn:after {
  content: '';
  position: absolute;
  background: #fff;
}

header .subBtn:before {
  top: 4px;
  left: 0;
  width: 10px;
  height: 2px;
}

header .subBtn:after {
  top: 0;
  left: 4px;
  width: 2px;
  height: 10px;
  transition: opacity .3s;
}

header .subBox {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 190px;
  padding: 8px 22px;
  background: rgba(26,35,64,.95);
  border-radius: 15px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
header .parentLi:hover .subBtn:after {
  opacity: 0;
}

header .parentLi:hover .subBox {
  opacity: 1;
  pointer-events: auto;
}

header .subLi + .subLi {
  background-image: linear-gradient(to right, #fff 0%, #fff 0%, transparent 25%);
  background-size: 4px 1px;
  background-position: top center;
  background-repeat: repeat-x;
}

header .subLi a {
  padding: 13px 0;
  color: #fff;
  font-size: 15px;
  line-height: 1.5;
  text-align: center;
}

header .header_right {
  flex: 0 0 auto;
  margin-left: 25px;
}

.header_contact_btn {
  width: 130px;
  height: 35px;
  border-radius: 13px;
  background: #278FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  transition: background .3s ease, color .3s ease;
}

.header_contact_btn:hover {
  background: #E97517;
}

header #menu-toggle {
  display: none;
}

main {
  padding-top: 0;
}


footer {
  background: #3E5B87;
  color: #fff;
}

footer a {
  color: #fff;
}

footer .footer_inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 135px 40px 55px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  box-sizing: border-box;
  position: relative;
}

footer .footer_addr_box {
  order: 1;
  flex: 0 1 38%;
  max-width: 38%;
}

footer .footer_nav_box {
  max-width: 60%;
  order: 2;
  flex: 1 1 60%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-gap: clamp(20px, 7vw, 100px);
  min-width: 0;
}

footer .footer_nav li + li {
  margin-top: 27px;
}
footer .footer_nav02 li + li {
  margin-top: 13px;
}

footer .footer_nav a,
footer .footer_nav_title a {
  display: inline-block;
  padding: 0;
  color: #fff;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: .08em;
}
footer .footer_nav02 ul a{
  color: #8FA3C2;
}
@media (max-width: 999px) {
  footer .footer_addr_box{
    padding-right: 20px;
  }
  footer .footer_nav_box {
    grid-gap: clamp(20px, 10vw, 20px);
  }
  footer .footer_logo .logo_text,
  footer .footer_nav_box a{
    white-space: nowrap;
  }
  footer .footer_nav a, 
  footer .footer_nav_title a{
    font-size: 13px;
  }
}


footer .footer_nav a:before {
  content: none;
}

footer .footer_nav_title {
  margin-bottom: 19px;
}
footer .footer_nav02 ul a{
  margin-left: 1em;
}


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

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

footer .footer_logo .logo_text {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
}

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

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

footer .footer_map a {
  color: #8FA3C2;
  font-size: 15px;
  line-height: 1.33;
  font-weight: 500;
  text-decoration: underline;
}
footer .footer_map a:hover{
  text-decoration: none;
}

footer .footer_contact {
  order: 3;
  flex: 0 0 50%;
  margin-top: 12px;
  background: transparent;
  color: #fff;
}

footer .footer_contact_en {
  font-family: "DM Sans", sans-serif;
  font-size: 19px;
  line-height: 1.33;
  font-weight: 500;
}

footer .footer_contact_text {
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}

footer .footer_tel {
}

footer .footer_tel a {
  font-family: "DM Sans", sans-serif;
  font-size: 32px;
  line-height: 1.33;
  font-weight: 700;
  letter-spacing: .06em;
}

footer .footer_mail {
  margin-top: 23px;
}

footer .footer_mail a {
  width: 273px;
  height: 55px;
  border: 1px solid #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  line-height: 1;
  font-weight: 500;
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

footer .footer_mail a:hover {
  background: #5575A5;
  border-color: #5575A5;
}

footer .footer_pagetop {
  position: absolute;
  right: 40px;
  bottom: 120px;
  order: 4;
  flex: 0 0 45px;
  width: 45px;
  height: 63px;
  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 .footer_pagetop:hover {
  height: 76px;
  background: #E97517;
}

footer .copy {
  order: 5;
  flex: 0 0 50%;
  margin-top: auto;
  text-align: right;
}

footer .copy small {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

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

.hover_img_link:hover .img_box img,
.img_link:hover .img_box img {
  transform: scale(1.08);
}

a:hover .link_arrow,
.hover_img_link:hover .link_arrow,
.img_link:hover .link_arrow {
  background: #278FFF;
  transform: scale(1.08);
}
a:hover .link_arrow.is_white{
  background: #FFFFFF;
}
a:hover .link_arrow:before {
  background: url(../images/common/arrow_white.svg)no-repeat center center;
  background-size: 100% auto;
}
a:hover .link_arrow.is_white:before{
  background: url(../images/common/arrow_blue.svg)no-repeat center center;
  background-size: 100% auto;
}

.link_underline02 a{
    text-decoration: none;
}
.link_underline02 span,
.link_underline a{
    position: relative;
    z-index: 1;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}
.link_underline02 a:hover span,
.link_underline a:hover{
    text-decoration: none;
}
.link_underline02 span:after,
.link_underline a:after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    position: absolute;
    right: 0;
    top: 100%;
    pointer-events: none;
    background: currentColor;
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    z-index: -1;
}
.link_underline02 a:hover span:after,
.link_underline a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

/*==================================
  Top
==================================*/
.main_box {
  margin: -70px 0 -50px;
  position: relative;
  z-index: 9;
  border-radius: 50px;
  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 {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.top_sec_sub {
  color: #1A2340;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .08em;
}

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

.top_sec_text {
  margin-top: 45px;
  max-width: 290px;
  color: #1A2340;
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
}

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

.link_arrow:before {
  content: '';
  width: 18px;
  height: 18px;
  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: 190px;
  height: 55px;
  border-radius: 20px;
  background: #3E5B87;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  box-sizing: border-box;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .08em;
  transition: background .3s ease, color .3s ease;
}

.top_more_btn:hover {
  background: #278FFF;
}

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

.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: 70px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  z-index: 9;
  font-style: italic;
}

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

.top_about_inner {
  position: relative;
  z-index: 2;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 175px 40px 160px;
  grid-gap: 30px;
  box-sizing: border-box;
}

.top_about_text h2 {
  color: #fff;
  font-size: 54px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .08em;
}

.top_about_text p {
  margin-top: 60px;
  max-width: 560px;
  color: #fff;
  font-size: 16px;
  line-height: 3;
  font-weight: 500;
  letter-spacing: .1em;
}

.top_about_links {
  width: 500px;
}

.top_about_link {
  min-height: 108px;
  border: 1px solid rgba(255,255,255,.85);
  border-right: 0;
  border-bottom: 0;
  border-radius: 25px 0 0 0;
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 36px;
  align-items: center;
  padding: 37px 20px 13px 52px;
  box-sizing: border-box;
}

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

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

.top_about_link .ja {
  grid-column: 1;
  grid-row: 2;
  display: block;
  margin-top: 7px;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .1em;
}

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

.top_business {
  padding: 160px 0 80px;
}
.top_business .top_sec_head{
  padding-top: 30px;
  width: 295px;
}
.top_business .top_content_inner {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
  align-items: start;
}

.top_business_list {
  width: calc(100% - 30px - 290px);
  max-width: 845px;
  display: grid;
  gap: 55px;
}

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

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

.top_business_item .title {
  position: absolute;
  left: 40px;
  bottom: 90px;
  background: url(../images/top/bg_arrow.png)no-repeat left 1px top 1px #fff;
  background-size: 14px auto;
  font-size: 50px;
  line-height: 1.24;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 0 20px 2px 20px;
}

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

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

.top_news {
  padding: 80px 0 160px;
  overflow: hidden;
}

.top_news_inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  column-gap: 30px;
}

.top_news_head {
  display: flex;
  flex-direction: column;
  margin: 0;
  align-items: flex-start;
}

.top_news_head .top_more_btn {
  margin-top: 92px;
}

.top_news_body {
  max-width: 100%;
  overflow: visible;
  padding-bottom: 60px;
}

.top_news_list {
  display: flex;
  padding: 0;
}

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

.top_news_item {
  position: relative;
  border-radius: 15px;
  background: #fff;
  color: #1A2340;
  display: block;
  padding: 142px 27px 30px;
  box-sizing: border-box;
}

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

.top_news_item .link_arrow:before {
  width: 14px;
  height: 14px;
}

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

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

.top_news_item .title {
  display: block;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  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 .top_news_scrollbar.swiper-scrollbar {
  position: absolute;
  left: 0 !important;
  bottom: 0 !important;
  width: 100%;
  background: #D4E0F0;
  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;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
}

.top_recruit_inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 410px;
  gap: 30px;
  align-items: center;
  padding: 0 40px;
  box-sizing: border-box;
}

.top_recruit_images {
  position: relative;
  min-height: 640px;
}

.top_recruit_images .img_box {
  position: absolute;
  border-radius: 13px;
}

.top_recruit_images .img01 {
  width: 265px;
  height: 195px;
  left: 70px;
  top: 80px;
}

.top_recruit_images .img02 {
  width: 219px;
  height: 271px;
  left: 437px;
  left: 54.6%;
  /*right: 145px;*/
  top: 177px;
}

.top_recruit_images .img03 {
  width: 375px;
  height: 235px;
  left: 0;
  bottom: -18px;
}

.top_recruit_text{
  position: relative;
  z-index: 4;
}
.top_recruit_text p:not(.top_sec_sub) {
  margin-top: 20px;
  color: #1A2340;
  font-size: 15px;
  line-height: 2.2;
  font-weight: 500;
  letter-spacing: .06em;
}

.top_recruit_text .top_more_btn {
  margin-top: 50px;
  min-width: 234px;
}

/*==================================
  Recruit
==================================*/
.recruit_teaser {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #E6EFFB;
}

.recruit_teaser_img {
  position: absolute;
  inset: 0;
}

.recruit_teaser .container {
  position: relative;
  z-index: 2;
  min-height: 660px;
  padding-top: 328px;
  /*display: flex;*/
  align-items: center;
}

.recruit_teaser .teaser_hd {
  color: #fff;
}

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

.recruit_teaser .teaser_hd_eng {
  display: block;
  margin-top: 0;
  font-size: 105px;
  line-height: 1.3;
  font-weight: 500;
}

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

.recruit_requirements_btn:hover {
  background: #FFA11A;
}

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

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

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

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


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

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

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

.recruit_message_text {
  margin-top: 50px;
  column-count: 2;
  column-gap: 50px;
}

.recruit_message_text p {
  color: #1A2340;
  font-size: 16px;
  line-height: 2.4;
  font-weight: 500;
  break-inside: avoid;
  letter-spacing: .05em;
}

.recruit_link {
  padding: 145px 0 160px;
  /*position: relative;*/
  z-index: 2;
  background: #E6EFFB;
}

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

.recruit_link_item {
  position: relative;
  border-radius: 15px;
  background: #fff;
  color: #1A2340;
  display: grid;
  grid-template-columns: 485px 1fr;
  gap: 6%;
  align-items: center;
  padding: 0 110px 0 0;
  box-sizing: border-box;
  overflow: hidden;
}

.recruit_link_img {
  width: 485px;
  height: 100%;
  min-height: 290px;
  aspect-ratio: 970 / 580;
  border-radius: 15px;
}

.recruit_link_title {
  display: inline-block;
  color: #0078F9;
  font-size: 53px;
  line-height: 1.3;
  font-weight: 500;
}
.recruit_link_text{
  padding: 30px 0;
}
.recruit_link_sub {
  display: inline-block;
  margin-left: 7px;
  color: #0078F9;
  font-size: 17px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .08em;
}

.recruit_link_read {
  display: block;
  margin-top: 25px;
  color: #1A2340;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: .06em;
  max-width: 495px;
}

.recruit_link_item .link_arrow {
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.recruit_link_list a:hover .link_arrow.is_white{
  background: #FF8610;
}
.recruit_link_list a:hover .link_arrow.is_white:before{
  background: url(../images/common/arrow_white.svg)no-repeat center center;
  background-size: 100% auto;
}

.recruit_interview_link {
  position: relative;
  min-height: 430px;
  border-radius: 17px;
  overflow: hidden;
  display: block;
  color: #fff;
  margin-top: 72px;
}

.recruit_interview_img {
  position: relative;
  z-index: -1;
  width: 100%;
  height: 475px;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.recruit_interview_text {
  position: absolute;
  left: 64px;
  bottom: 52px;
}

.recruit_interview_text .recruit_link_sub {
  display: block;
  color: #fff;
  margin: 0;
}

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

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



/*==================================
  Recruit Requirements
==================================*/
.requirements_teaser {
  background: #3E5B87;
}
.requirements_teaser .container {
  min-height: 575px;
  padding-top: 90px;
  display: flex;
  align-items: center;
}

.requirements_wrap {
}

.requirements_sec {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
}

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

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

.requirements_table th,
.requirements_table td {
  border-top: 1px dashed #C0C9D4;
  color: #1A2340;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  letter-spacing: .05em;
  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: 180px;
  padding: 19px 18px 19px 38px;
  border-right: 1px dashed #C0C9D4;
  font-weight: 700;
}

.requirements_table td {
  padding: 19px 46px;
}
.requirements_table ul,
.requirements_table p{
  font-size: inherit;
  line-height: 2;
}
.requirements_table li {
  font-size: inherit;
  position: relative;
  line-height: 2;
  padding-left: 1em;
}

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

.requirements_col {
  display: flex;
  gap: 55px;
}

.requirements_note {
  /*margin-top: 4px;*/
}

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

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

.requirements_entry_btn:hover {
  background: #FF8610;
}


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

.jobs_wrap {
}

.jobs_intro {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

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

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

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

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

.jobs_detail_item {
  border-radius: 15px;
  background: #fff;
  display: grid;
  grid-template-columns: 485px 1fr;
  align-items: center;
  overflow: hidden;
}

.jobs_detail_img {
  width: 485px;
  height: 100%;
  min-height: 290px;
  /*aspect-ratio: 970 / 580;*/
  border-radius: 15px;
}

.jobs_detail_text {
  padding: 30px 8%;
}

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

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

.jobs_flow {
  padding: 130px 0 150px;
}

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

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

.jobs_flow_list {
  margin-top: 74px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 30px;
  row-gap: 40px;
  counter-reset: jobs-flow;
  overflow: hidden;
}

.jobs_flow_list li {
  max-width: 560px;
  position: relative;
  display: grid;
  grid-template-columns: 126px 1fr;
  gap: 32px;
}

.jobs_flow_list li:nth-child(1),
.jobs_flow_list li:nth-child(2),
.jobs_flow_list li:nth-child(3) {
  grid-column: 1;
}

.jobs_flow_list li:nth-child(4),
.jobs_flow_list li:nth-child(5) {
  grid-column: 2;
}

.jobs_flow_list li:nth-child(1),
.jobs_flow_list li:nth-child(4) {
  grid-row: 1;
}

.jobs_flow_list li:nth-child(2),
.jobs_flow_list li:nth-child(5) {
  grid-row: 2;
}

.jobs_flow_list li:nth-child(3) {
  grid-row: 3;
}

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

.jobs_flow_list li:before {
  content: '';
  position: absolute;
  left: 63px;
  transform: translateX(-50%);
  top: 38px;
  bottom: -42px;
  border-left: 3px dotted #278FFF;
  z-index: -1;
}

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

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

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


/*==================================
  Recruit Company
==================================*/
.company_wrap {
}

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

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

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

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

.company_environment_list {
  margin-top: 48px;
  display: grid;
  gap: 25px;
}

.company_environment_item {
  border-radius: 15px;
  background: #fff;
  display: grid;
  grid-template-columns: 27% 1fr;
  padding: 60px 5.6%;
  box-sizing: border-box;
}

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

.company_environment_text ul{
  display: grid;
  grid-gap: 13px;
}
.company_environment_text li {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  line-height: 2;
  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;
  text-align: right;
  letter-spacing: .06em;
  font-weight: 500;
  margin-top: -1.5em;
}

.company_data {
  padding: 127px 0;
}

.company_data_list {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

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

.company_data_icon {
  width: 100%;
  height: 100px;
  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: 105px;
  line-height: 1.33;
  font-weight: 900;
  margin-top: -10px;
}
.company_data_list li:first-of-type strong {
  margin: 20px 0 14px;
  font-size: 70px;
  letter-spacing: -.02em;
}

.company_data_list strong span {
  color: #1A2340;
  font-size: 30px;
}
.company_data_list strong span.dot {
  font-size: 75px;
}

.company_data_list p {
  color: #1A2340;
  font-size: 25px;
  line-height: 1.44;
  font-weight: 700;
}
.company_data_note{
  position: absolute;
  right: 25px;
  top: 22px;
  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: 130px 0 0;
}

.interview_block {
  position: relative;
}

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

.interview_lead {
  display: grid;
  grid-template-columns: 1fr 49%;
  align-items: center;
  border-radius: 15px;
  background: #fff;
}

.interview_lead_img {
  /*aspect-ratio: 1220 / 840;*/
  border-radius: 15px;
  height: 100%;
  min-height: 420px;
}

.interview_lead_text {
  padding: 30px 30px 30px 14%;
  box-sizing: border-box;
}

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

.interview_lead_text h2 {
  margin-top: 28px;
  color: #1A2340;
  font-size: 35px;
  line-height: 1.6;
  font-weight: 700;
  letter-spacing: .08em;
}

.interview_lead_text span {
  margin-top: 25px;
  border-radius: 10px;
  background: #278FFF;
  color: #fff;
  display: inline-flex;
  align-items: center;
  padding: 4px 18px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .04em;
}

.interview_article {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 70px 30px;
}

.interview_text h3 {
  color: #1A2340;
  font-size: 27px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .05em;
}

.interview_text p {
  margin-top: 18px;
  color: #1A2340;
  font-size: 16px;
  line-height: 2.2;
  font-weight: 500;
  letter-spacing: .05em;
}

.interview_article_img {
  width: 41.1%;
  aspect-ratio: 510 / 370;
  border-radius: 15px;
}

.interview_text_group {
  align-self: center;
  width: 54%;
}

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

.interview_schedule {
  padding: 50px 0 160px;
}

.interview_schedule_box {
  width: 100%;
  margin: 42px auto 0;
  background: #D6E3F3;
  display: flex;
  align-items: flex-start;
  gap: 6%;
  padding: 66px 6.4% 75px;
  box-sizing: border-box;
  border-radius: 15px;
}

.interview_schedule_col h3 {
  position: relative;
  width: 170px;
  height: 35px;
  border-radius: 10px;
  background: #278FFF;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  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: 36px;
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  align-items: flex-start;
  column-gap: 0;
  row-gap: 34px;
  color: #1A2340;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 700;
}

.interview_schedule_col dl::before {
  content: "";
  position: absolute;
  left: 119px;
  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: 16px;
  line-height: 1.5;
  font-weight: 700;
  padding-right: 31px;
}

.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: 60px;
  font-size: 18px;
  line-height: 1.4;
}
.interview_schedule_col dd span {
  font-size: 14px;
  display: inline-block;
}

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


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

.lower_teaser .container {
  position: relative;
  z-index: 2;
  min-height: 530px;
  display: flex;
  align-items: center;
}

.lower_teaser .teaser_hd {
  margin-top: 120px;
}

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

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



/*==================================
  Overview
==================================*/
.overview_wrap {
}

.overview_sec{
  padding: 140px 0 106px;
  position: relative;
  z-index: 2;
  background-color: #E6EFFB;
  overflow: hidden;
}
.overview_sec .container {
  position: relative;
}

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

.overview_banner {
  max-width: 750px;
  margin:0 auto 70px auto;
}

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

.overview_banner a .tit {
  font-size:16px;
  font-weight: 500;
  color:#fff;
  position:absolute;
  left:80px;
  bottom:80px;
  z-index: 3;
}
.overview_banner a .tit_en {
  font-size:55px;
  letter-spacing: 0.02em;
  font-weight: 500;
  color:#fff;
  position:absolute;
  left:80px;
  bottom:10px;
  z-index: 3;
}
.overview_banner img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}

.overview_banner a:hover img {
  transform: scale(1.08);
}

.overview_banner .link_arrow {
  position: absolute;
  right: 25px;
  bottom: 25px;
  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 #BCCADD;
  color: #1A2340;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-align: left;
  letter-spacing: .06em;
  padding: 32px 26px;
}

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

.overview_table th {
  width: 210px;
}

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

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

.news_list_sec .container,
.news_detail_sec .container {
  position: relative;
  z-index: 2;
}
.news_list_sec{
  padding: 114px 0 160px;
  position: relative;
  z-index: 2;
  background-color: #E6EFFB;
  overflow: hidden;
}

.news_select {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 70px;
}

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

.news_list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.news_pager {
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
}

.news_pager .nav-links {
  margin-top: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 37px;
}

.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: 180px;
  box-sizing: border-box;
}

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

.news_detail_head {
  margin-top: 75px;
  padding:0 0 100px 0;
}

.news_detail_head .news_meta .date{
  color: #fff;
  font-size: 15px;
}
.news_detail_head .news_meta .cate {
  color: #fff;
  font-size: 13px;
  padding: 0 13px;
  height: 25px;
  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: 20px;
  color: #fff;
  font-size: 30px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .06em;
}

.news_detail_sec {
  padding: 125px 0 165px;
  position: relative;
  z-index: 2;
  background-color: #E6EFFB;
  overflow: hidden;
}

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

.news_detail_body img{
  width: 726px;
  margin-top: 60px;
}

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

.news_detail_nav a {
}

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

.news_detail_nav .prev,
.news_detail_nav .next{
  padding-right: 40px;
  color: #1A2340;
  font-size: 16px;
  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: 40px;
  left: 0;
  right: auto;
  background: url(/images/common/arrow_prev.svg) left center no-repeat;
  background-size: 16px auto;
}

/*==================================
  About / Business
==================================*/

.about_message {
  background: #3E5B87;
  color: #fff;
  border-radius: 50px;
  padding: 150px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.about_message .container {
  position: relative;
}

.about_message_inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 45% 1fr;
  grid-gap: 3%;
}

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

.about_message_text{
  margin-top: 150px;
}
.about_message_text p {
  color: #fff;
  font-size: 16px;
  line-height: 2.4;
  font-weight: 500;
  letter-spacing: .1em;
}

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

.about_strength {
  padding: 145px 0 125px;
  position: relative;
  z-index: 3;
  background: #E6EFFB;
}

.about_strength_list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

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

.about_strength_img {
  border-radius: 15px;
  width: 100%;
  aspect-ratio: 1210 / 580;
}

.about_strength_text {
  padding: 42px 8.4% 48px;
  box-sizing: border-box;
}

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

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

.business_sec {
  padding: 140px 0 180px;
  position: relative;
  z-index: 2;
  background-color: #E6EFFB;
  overflow: hidden;
}

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

.business_group h2 {
  display: inline-block;

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

.business_list {
  margin-top: 55px;
  display: grid;
  gap: 30px;
}

.business_item {
  border-radius: 15px;
  background: #fff;
  display: grid;
  grid-template-columns: 485px 1fr;
  grid-template-columns: 39.1% 1fr;
  align-items: center;
  overflow: hidden;
}

.business_img {
  width: 100%;
  /*aspect-ratio: 970 / 580;*/
  height: 100%;
  min-height: 290px;
  border-radius: 15px;
}

.business_text {
  padding: 30px 8.7%;
  box-sizing: border-box;
}

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

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

/*==================================
  Contact
==================================*/
.contact_teaser {
  background: #3E5B87;
}

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

.contact_wrap {
}

.contact_sec {
  position: relative;
  padding: 125px 0;
  z-index: 2;
  background-color: #E6EFFB;
  overflow: hidden;
}

.contact_sec .container {
  position: relative;
  z-index: 2;
  max-width: 1185px;
}

.contact_shape {
  position: absolute;
  left: -160px;
  top: -185px;
  width: 1080px;
  height: 1080px;
  border: 170px solid rgba(65, 98, 141, .05);
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(16deg);
  pointer-events: none;
  z-index: -1;
}

.contact_intro {
}

.contact_intro p {
  color: #1A2340;
  font-size: 16px;
  line-height: 2.2;
  font-weight: 500;
}

.contact_tel {
  margin: 45px auto 0;
  color: #3E5B87;
}

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

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


.contact_form {
  margin: 65px auto 0;
}

.contact_row {
  display: grid;
  grid-template-columns: 230px 1fr;
  column-gap: 25px;
  align-items: center;
  margin: 0;
}

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

.contact_row dt {
  height: 100%;
  display: flex;
  align-items: flex-start;
  padding-top: 19px;
  color: #1A2340;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: .05em;
}

.contact_row dt .need,
.contact_row dt .free,
.agree_area .need {
  min-width: 55px;
  height: 25px;
  border-radius: 13px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: .05em;
}

.contact_row dt .need,
.agree_area .need {
  background: #278FFF;
}

.contact_row dt .free {
  background: #A8BBD8;
}

.contact_row dd {
  min-width: 0;
}

.contact_address dd {
  display: grid;
  gap: 15px 0;
}

.contact_address .text02 {
  grid-column: 1 / 3;
}

.agree_area {
  margin-top: 35px;
  padding-left: 255px;
  text-align: left;
}

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

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

#Contact span.error {
  margin-top: 8px;
  color: #cc0303;
  font-size: 14px;
  font-weight: 500;
}

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

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

.contact_submit_btn input,
.contact_back_btn input{
  width: 100% !important;
  height: 100% !important;
  color: inherit !important;
  font-size: 17px !important;
  line-height: 1 !important;
  font-weight: 700 !important;
  letter-spacing: .08em;
  cursor: pointer;
}

.contact_submit_btn:hover,
.contact_back_btn:hover{
  background: #fff !important;
  color: #3E5B87 !important;
}

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

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

.contact_confirm_btns {
  display: flex;
  justify-content: center;
  flex-direction: row-reverse;
  gap: 28px;
  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: 0 auto 55px;
  color: #1A2340;
  font-size: 15px;
  line-height: 2;
  font-weight: 700;
}
.sfm2 .contact_row dd {
  padding-top: 19px;
}
.sfm2 .contact_row dd p {
  color: #1A2340;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
  overflow-wrap: break-word;
}

.send_comp {
  text-align: center;
}

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

.send_comp p {
  color: #1A2340;
  font-size: 16px;
  line-height: 2;
  font-weight: 700;
}
.send_comp p+p{
  margin-top: 30px;
}
.contact_back {
  margin-top: 60px;
}

/*==================================
  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(-5%);
  top: -14.5vw;
  width: 125vw;
  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(-5%);
  top: -14.5vw;
  width: 125vw;
  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 -223px 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(-5%);
  top: -14.5vw;
  width: 125vw;
  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: -4vw;
  top: -8.5vw;
  width: 54vw;
  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:130px 0 0 0;
}

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

/*==================================
  PC narrow layout adjust
==================================*/

@media (min-width: 1101px) and (max-width: 1260px) {
  .company_data_list li:first-of-type strong{
    font-size: 62px;
  }
  .interview_lead_text{
    padding: 30px 30px 30px 8%;
  }
  .interview_lead_text h2{
    font-size: 30px;
  }
}
@media (min-width: 800px) and (max-width: 1100px) {
  .main_visual_copy {
    font-size: clamp(52px, 6.5vw, 70px);
    white-space: nowrap;
  }

  .teaser_hd_eng,
  .recruit_teaser .teaser_hd_eng {
    font-size: 74px;
  }

  .top_sec_head h2,
  .top_about_text h2,
  .recruit_page_head h2,
  .jobs_sec_head h2 {
    font-size: 48px;
  }

  .top_about_text h2 {
    font-size: 40px;
    line-height: 1.55;
  }

  .top_about_link {
    padding-left: 28px;
    padding-right: 14px;
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .top_about_link .ja {
    font-size: 19px;
    letter-spacing: .04em;
    white-space: nowrap;
  }

  .top_business_item .title {
    left: 25px;
    bottom: 64px;
    font-size: 34px;
    padding: 0 13px;
  }

  .top_business_item .tags {
    left: 25px;
    bottom: 34px;
    font-size: 12px;
    height: 1.5em;
    grid-gap: 4px;
  }

  .top_business_item .tags span {
    padding: 0 7px;
  }

  .top_business_item .link_arrow {
    right: 20px;
    bottom: 24px;
  }

  .top_recruit_inner {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .top_recruit_images {
    min-height: 540px;
  }

  .top_recruit_images .img01 {
    width: 220px;
    height: 162px;
    left: 40px;
  }

  .top_recruit_images .img02 {
    width: 180px;
    height: 223px;
    left: 47%;
  }

  .top_recruit_images .img03 {
    width: 300px;
    height: 188px;
  }

  .recruit_link_item,
  .jobs_detail_item {
    grid-template-columns: 42% 1fr;
    gap: 5%;
  }
  .recruit_link_item{
    padding-right: 80px;
  }
  .recruit_link_item .link_arrow{
    right: 20px;
    bottom: 20px;
  }

  .recruit_link_img,
  .jobs_detail_img {
    width: 100%;
  }

  .recruit_link_read {
    margin-top: 18px;
  }

  .interview_lead {
    grid-template-columns: 48% 1fr;
  }

  .interview_lead_img {
    min-height: 360px;
  }

  .interview_lead_text {
    padding: 24px 20px 24px 24px;
    max-width: calc(100% - )
  }

  .interview_lead_text p {
    font-size: 22px;
  }

  .interview_lead_text h2 {
    margin-top: 18px;
    font-size: 24px;
    line-height: 1.55;
    letter-spacing: .04em;
  }

  .interview_lead_text span {
    margin-top: 16px;
    font-size: 14px;
  }

  .jobs_detail_text h3,
  .company_environment_item h3,
  .about_strength_text h3 {
    font-size: 24px;
  }

  .about_strength_text h3 {
    font-size: 22px;
    line-height: 1.5;
  }

  .jobs_detail_text p,
  .jobs_flow_list p,
  .company_environment_text li,
  .about_strength_text p {
    font-size: 15px;
    line-height: 1.8;
  }

  .jobs_flow_list {
    column-gap: 22px;
  }

  .jobs_flow_list li {
    grid-template-columns: 105px 1fr;
    gap: 20px;
  }

  .jobs_flow_step {
    width: 105px;
    font-size: 17px;
  }

  .jobs_flow_list li:before {
    left: 52px;
  }

  .company_data_list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company_data_list strong {
    font-size: 82px;
  }

  .company_data_list li:first-of-type strong {
    font-size: 58px;
  }

  .company_data_list p {
    font-size: 21px;
  }

  .news_list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about_message {
    padding: 110px 0;
  }

  .about_message_inner {
    grid-template-columns: 44% 1fr;
  }

  .about_message h2 {
    font-size: 28px;
    line-height: 1.8;
  }

  .about_message_text {
    margin-top: 90px;
  }

  .about_message_text p {
    font-size: 15px;
    line-height: 2;
  }
  .about_strength_text{
    padding: 30px 20px;
  }
  .recruit_message_text{
    grid-gap: 30px;
  }
  .jobs_detail_text{
    padding-left: 0;
  }
  .jobs_flow_list h3{
    /*font-size: 22px;*/
  }
  .requirements_col{
    grid-gap: 20px;
  }
  .requirements_table th,
  .requirements_table td{
    padding: 19px 25px;
  }

  .interview_schedule_box{
    padding: 66px 30px 75px;
    grid-gap: 20px;
  }
  .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 font{
    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;
  }
}

/*0703*/
.top_business {
  position: relative;
}
.top_business:before{
  content: '';
  position: absolute;
  z-index: -1;
  right: 50%;
  top: 330px;
  width: 100vw;
  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;
  left:-3vw;
  top: -11vw;
  width: 60vw;
  height: 80vw;
  background: url(../images/top/bg_recruit.png)no-repeat;
  background-size: 100% auto;
  pointer-events: none;
}
header.scroll .nav_list a{
  color: #1A2340;
}
header.scroll .subBtn:before, 
header.scroll .subBtn:after{
  background: #1A2340;
}
header .subLi a{
  color: #fff!important;
}

/*0710*/
.company_environment_text li{
  display: flex;
}
.company_environment_text li b{
  white-space: nowrap;
}

/*0714*/
.top_news {
  overflow: hidden;
}

.top_news_inner {
  grid-template-columns: 250px minmax(0, 1fr);
}

.top_news_body {
  width: calc(100% + max(40px, (100vw - 1240px) / 2));
  max-width: none;
  margin-right: calc(-1 * max(40px, (100vw - 1240px) / 2));
  overflow: hidden;
}

.top_news_list {
  overflow: visible;
}

.top_news_body .top_news_scrollbar.swiper-scrollbar {
  width: calc(100% - max(40px, (100vw - 1240px) / 2));
}


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

ul.privacy li p a {
  background: none !important;
}

ul.privacy li h2 {
  font-size:24px;
  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;
}