@charset "utf-8";

/* PC */

body {
  font-size: 16px;
}

a:hover {
  text-decoration: underline;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea,
select {
  padding: 5px 5px 5px 1em;
  font-size: 16px;
}

.sp {
  display: none;
}


/* 基本レイアウト---------------- */
#wrapper {
  position: relative;
  width: 100%;
  text-align: center;
}

#container {
  width: 100%;
  padding-top: 80px;
}

.main {
  width: 98%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: left;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.flex_st {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  align-self: center;
}


/* ヘッダー---------------- */
#head {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  background: #fff;
}

#head_logo {
  position: absolute;
  z-index: 10;
  width: 300px;
  height: 110px;
  padding: 20px 0 24px 40px;
  text-align: left;
  background: #fff;
  transition: .3s;
}

#head_logo.small {
  width: 170px;
  height: 80px;
  transition: .3s;
}

#head_logo img {
  max-width: 100%;
  height: auto;
}

#head_menu {
  width: calc(100% - 300px);
  padding-top: 25px;
  margin-left: 300px;
  text-align: right;
}

#head_navi ul {
  display: inline;
  padding-right: 40px;
}

#head_navi ul li {
  display: inline;
  font-size: 18px;
  font-weight: bold;
}

#head_navi ul li a {
  position: relative;
  display: inline-block;
  margin-right: 40px;
  text-decoration: none;
}

#head_navi ul li.on a::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #000;
}


.has-hover-button {
  position: relative;
}

.menu-item-text-only {
  margin-right: 40px;
  cursor: pointer;
}

.menu-item-text-only::before,
.menu-item-text-only::after {
  position: absolute;
  right: 15px;
  bottom: calc(50% - 5px);
  width: 2px;
  height: 10px;
  content: "";
  background-color: #000;
  border-radius: 9999px;
  transform-origin: 50% 100%;
}

.menu-item-text-only::before {
  transform: rotate(45deg);
}

.menu-item-text-only::after {
  transform: rotate(-45deg);
}


/* ホバーボタンのラッパー */
.hover-button-wrapper {
  position: absolute;
  top: 25px;
  left: -40px;
  z-index: 10;
  /* 他の要素より手前に表示 */
  padding: 20px 0 0;
  text-align: center;
  pointer-events: none;
  /* 初期状態ではクリックできないようにする */
  visibility: hidden;
  /* 初期状態では非表示 */
  background-color: #fff;
  opacity: 0;
  /* 初期状態では透明 */
  transition: all 0.3s ease;
  /* フェードイン/アウトのアニメーション */
}

/* メニュー項目にホバーした時にボタンを表示 */
.has-hover-button:hover .hover-button-wrapper,
.has-hover-button .hover-button-wrapper:hover {
  pointer-events: auto;
  /* ホバー時にクリックできるようにする */
  visibility: visible;
  opacity: 1;
}

/* ホバーボタン本体 */
#head_navi .menu-hover-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  padding: 20px 8px 20px 16px;
  margin-right: 0;
  font-size: 0.9em;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  background-color: #21428B;
  border-top: 1px solid #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}

#head_navi .menu-hover-button:first-child {
  border-top: none;
}

#head_navi .menu-hover-button:hover {
  color: #21428B;
  background-color: #fff;
}

#head_navi .menu-hover-button:hover line {
  stroke: #21428B;
}



@media screen and (width <=1150px) {
  #head_navi ul li {
    font-size: 16px;
  }

  #head_navi ul li a {
    padding-right: 30px;
  }
}

@media screen and (width <=1024px) {
  #head_navi ul {
    padding-right: 15px;
  }

  #head_navi ul li {
    font-size: 14px;
  }

  #head_navi ul li a {
    padding-right: 20px;
  }
}

@media screen and (width <=900px) {
  #head_navi ul {
    padding-right: 10px;
  }

  #head_navi ul li {
    font-size: 12px;
  }

  #head_navi ul li a {
    padding-right: 10px;
  }
}

.sp_navi_btn,
#sp_navi,
#sp_menu {
  display: none;
}


/* フッター----------------- */
#foot {
  width: 100%;
}

#foot01 {
  position: relative;
  height: 80px;
  padding-top: 30px;
  background: #EEF0F2;
}

.foot_t01 {
  font-size: 14px;
}

.foot_t01::after {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 6px;
  vertical-align: middle;
  content: "";
  background: url("../img/icon_link01.png") no-repeat;
}

#pagetop {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
}

#pagetop a {
  transition: .3s;
}

#pagetop a:hover {
  opacity: .7;
  transition: .3s;
}

#foot02 {
  padding: 40px 0;
}

#foot02 .main {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot_col01 {
  width: 50%;
  text-align: left;
}

.foot_col02 {
  width: 50%;
  text-align: right;
}

#foot_logo img {
  max-width: 100%;
  height: auto;
}

#copyright small {
  font-size: 12px;
  color: #A2A2A2;
}


/* トップ---------------- */
#top_main {
  position: relative;
}

#top_copy {
  position: absolute;
  top: 135px;
  right: 0;
  left: 0;
  z-index: 10;
  width: 89%;
  margin: 0 auto;
  color: #fff;
  text-align: left;
}

.top_copy01 {
  width: 515px;
  margin-bottom: 30px;
  margin-left: calc(100% - 515px);
  font-size: 60px;
  font-weight: bold;
  line-height: 1.8;
}

.top_copy02 {
  width: 515px;
  margin-left: calc(100% - 515px);
  font-size: 24px;
  line-height: 1.8;
}

.swiper-container {
  width: 100%;
  height: 780px;
  overflow: hidden;
}

.slide-img {
  width: 100%;
  height: 780px;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
}

.slide01 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide02 {
  background: url("../img/top_slide02.jpg") no-repeat;
  background-size: cover;
}

.slide03 {
  background: url("../img/top_slide03.jpg") no-repeat;
  background-size: cover;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 10s linear 0s 1 normal both;
}

.slide-img img {
  display: block;
}

#top_info {
  position: absolute;
  right: 0;
  bottom: -70px;
  z-index: 10;
  width: 83.3%;
  min-height: 140px;
  padding: 20px 40px;
  background: #fff;
}

.top_info_in {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  text-align: left;
}

.top_info_col01 {
  width: 20%;
  min-width: 160px;
  padding: 15px 0 20px;
  border-right: 1px solid #B2B2B2;
}

.top_info_col02 {
  align-self: center;
  width: 80%;
  padding: 0 40px;
}

.top_info_t01 {
  margin-bottom: 5px;
  font-size: 16px;
  color: #6195FF;
}

.top_info_t02 {
  font-size: 24px;
  font-weight: bold;
}

.top_info_date {
  margin-bottom: 10px;
  font-size: 14px;
}

.top_info_txt {
  font-size: 18px;
}

.top_info_txt+.top_info_txt {
  margin-top: 8px;
}

#top_work {
  position: relative;
  padding: 175px 0 235px;

  /* background: url("../img/top_work_bg.png") no-repeat; */

  /* background-position: top 60px center; */
}

#top_work::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 734px;
  content: "";
  background: #EEF0F2;
}

.top_work_bg {
  position: absolute;
  top: 60px;
  right: 0;
  left: 0;
  z-index: -1;
  margin: 0 auto;
}

.top_work_bg_sp {
  display: none;
}

.h2_01 {
  margin-bottom: 80px;
  font-size: 44px;
}

.main01 {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

#top_work .main01 {
  position: relative;
}

.top_work_ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 94.44%;
  margin-left: 5.56%;
}

.top_work_ul li {
  width: 30.88%;
  margin-right: 3.68%;
  margin-bottom: 185px;
  text-align: left;
}

.top_work_ul li:nth-child(3n) {
  margin-right: 0;
}

.top_work_ul li a {
  position: relative;
  display: block;
}

.top_work_ul li:nth-child(10),
.top_work_ul li:nth-child(11),
.top_work_ul li:nth-child(12) {
  margin-bottom: 170px;
}

.top_work_ul_img img {
  width: 100%;
  height: auto;
}

.top_work_ul_t01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 47.6%;
  height: 70px;
  font-size: 30px;
  font-weight: bold;
  background: #EEF0F2;
}

.top_work_ul li:nth-child(4) .top_work_ul_t01,
.top_work_ul li:nth-child(5) .top_work_ul_t01,
.top_work_ul li:nth-child(6) .top_work_ul_t01,
.top_work_ul li:nth-child(7) .top_work_ul_t01,
.top_work_ul li:nth-child(8) .top_work_ul_t01,
.top_work_ul li:nth-child(9) .top_work_ul_t01,
.top_work_ul li:nth-child(10) .top_work_ul_t01,
.top_work_ul li:nth-child(11) .top_work_ul_t01,
.top_work_ul li:nth-child(12) .top_work_ul_t01,
.top_work_ul li:nth-child(13) .top_work_ul_t01,
.top_work_ul li:nth-child(14) .top_work_ul_t01 {
  background: #fff;
}

.top_work_ul_box {
  position: absolute;
  right: 0;
  bottom: -90px;
  z-index: 2;
  width: 85.7%;
  height: 150px;
  padding: 30px 40px;
  background: #fff;
}

.top_work_ul_t02 {
  margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.3;
}

.top_work_ul_t03 {
  font-size: 24px;
  font-weight: bold;
}

.top_work_ul li a .top_work_ul_box .btn01 {
  position: absolute;
  right: 10px;
  bottom: 23px;
  width: 117px;
  font-size: 12px;
  color: #6195FF;
}

.top_work_ul li a:hover .top_work_ul_box .btn01 {
  color: #21428B;
}

.top_work_ul li a .top_work_ul_box .btn01::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
}

.top_work_ul li a:hover .top_work_ul_box .btn01::after {
  background: url("../img/arrow01_on.png") no-repeat;
}

.top_work_ul li a .top_work_ul_on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(97 149 255 / 50%);
  opacity: 0;
  transition: .3s;
}

.top_work_ul li a:hover .top_work_ul_on {
  opacity: 1;
  transition: .3s;
}

#top_work .main01 .btn02 {
  position: absolute;
  right: 5.55%;
  bottom: -78px;
}

.btn02 a {
  position: relative;
  display: block;
  width: 400px;
  height: 100px;
  padding-top: 35px;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: url("../img/arrow02.png") no-repeat;
  background-position: top 41px right 9px;
}

.btn02 a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: #21428B;
  transition: transform .3s;
  transform: scale(1, 1);
  transform-origin: right top;
}

.btn02 a:hover::before {
  transform: scale(0, 1);
  transform-origin: left top;
}

.btn02 a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background: #000;
}


#top_secret {
  position: relative;
  padding: 150px 0 122px;
  background: #EEF0F2;
}

#top_secret .bg_text {
  position: absolute;
  top: -167px;
  right: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 340px;
  content: "";
}

.top_col01 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  text-align: left;
}

.top_col01_01 {
  width: 40.625%;
  margin-right: 7.812%;
}

.top_col01_02 {
  width: 51.563%;
}

.img_hov {
  position: relative;
}

.img_hov a .img_on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(97 149 255 / 50%);
  opacity: 0;
  transition: .3s;
}

.img_hov a:hover .img_on {
  opacity: 1;
  transition: .3s;
}

#stability02 h2,
.tab_contents h2,
.h2_02 {
  margin-bottom: 60px;
  font-size: 44px;
}

.top_col01_02 .h2_02 {
  margin-top: ;
}

#business01 p,
.p01 {
  margin-bottom: 60px;
}

.btn03 {
  width: 117px;
}

.btn03 a {
  position: relative;
  display: block;
  width: 117px;
  font-size: 12px;
  color: #6195FF;
  transition: .3s;
}

.btn03 a::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
  transition: .3s;
}

.btn03 a:hover {
  color: #21428B;
  text-decoration: none;
  transition: .3s;
}

.btn03 a:hover::after {
  background: url("../img/arrow01_on.png") no-repeat;
  transition: .3s;
}

#top_menu {
  padding-bottom: 120px;
  background: #EEF0F2;
}

.top_menu_col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.top_menu_col01 {
  width: 57.81%;
  margin-right: 3.125%;
}

.top_menu_col02 {
  width: 39.065%;
}

.top_menu_col03 {
  width: 39.065%;
  margin-right: 3.125%;
}

.top_menu_col04 {
  width: 57.81%;
}

.top_menu01,
.top_menu02,
.top_menu03,
.top_menu04,
.top_menu05 {
  margin-bottom: 40px;
}

.top_menu01 a,
.top_menu02 a,
.top_menu03 a,
.top_menu04 a,
.top_menu05 a {
  position: relative;
  display: block;
}

.top_menu01 a .top_menu_img_on,
.top_menu02 a .top_menu_img_on,
.top_menu03 a .top_menu_img_on,
.top_menu04 a .top_menu_img_on,
.top_menu05 a .top_menu_img_on {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgb(97 149 255 / 50%);
  opacity: 0;
  transition: .3s;
}

.top_menu01 a:hover .top_menu_img_on,
.top_menu02 a:hover .top_menu_img_on,
.top_menu03 a:hover .top_menu_img_on,
.top_menu04 a:hover .top_menu_img_on,
.top_menu05 a:hover .top_menu_img_on {
  opacity: 1;
  transition: .3s;
}

.top_menu_box01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 67.57%;
  height: 90px;
  padding-top: 20px;
  background: #EEF0F2;
}

.top_menu_box02 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 67.57%;
  height: 80px;
  padding-top: 15px;
  background: #EEF0F2;
}

.top_menu_box03 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 64%;
  height: 77px;
  padding-top: 15px;
  background: #EEF0F2;
}

.top_menu_box04 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 64%;
  height: 80px;
  padding-top: 15px;
  background: #EEF0F2;
}

.top_menu_box05 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 67.57%;
  height: 80px;
  padding-top: 15px;
  background: #EEF0F2;
}

.top_menu_box_t01 {
  font-size: 30px;
  font-weight: bold;
}

.btn04 {
  position: relative;
  display: block;
  width: 117px;
  font-size: 12px;
  color: #6195FF;
}

.btn04::after {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
}

.top_menu01 a:hover .btn04,
.top_menu02 a:hover .btn04,
.top_menu03 a:hover .btn04,
.top_menu04 a:hover .btn04,
.top_menu05 a:hover .btn04 {
  color: #21428B;
  transition: .3s;
}

.top_menu01 a:hover .btn04::after,
.top_menu02 a:hover .btn04::after,
.top_menu03 a:hover .btn04::after,
.top_menu04 a:hover .btn04::after,
.top_menu05 a:hover .btn04::after {
  background: url("../img/arrow01_on.png") no-repeat;
  transition: .3s;
}

.top_menu01 .btn04 {
  position: absolute;
  top: 32px;
  right: 10px;
}

.top_menu02 .btn04 {
  position: absolute;
  top: 27px;
  right: 10px;
}

.top_menu03 .btn04 {
  position: absolute;
  top: 27px;
  right: 10px;
}

.top_menu04 .btn04 {
  position: absolute;
  top: 27px;
  right: 10px;
}

.top_menu05 .btn04 {
  position: absolute;
  top: 27px;
  right: 10px;
}

@media screen and (width <=1280px) {

  .top_menu01,
  .top_menu02,
  .top_menu03,
  .top_menu04,
  .top_menu05 {
    margin-bottom: 3.125vw;
  }
}

@media screen and (width <=1150px) {
  .top_menu_box03 {
    height: 100px;
  }

  .top_menu03 .btn04 {
    top: 65px;
  }
}

@media screen and (width <=980px) {

  .top_menu_box02,
  .top_menu_box04 {
    height: 100px;
  }

  .top_menu02 .btn04,
  .top_menu04 .btn04 {
    top: 65px;
  }
}

#entry_bar {
  padding: 150px 0;
  color: #fff;
  background: #21428B;
}

.main02 {
  width: 98%;
  max-width: 780px;
  margin: 0 auto;
}

.entry_bar_col {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  text-align: left;
}

.entry_bar_col01 {
  width: 53.85%;
  padding-top: 30px;
}

.entry_bar_col02 {
  width: 46.15%;
}

.entry_bar_t01 {
  font-size: 24px;
}

.entry_bar_t01::after {
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: 30px;
  content: "";
  background: url("../img/arrow02.png") no-repeat;
}

#mynavi a {
  position: relative;
}

#mynavi a .bn_on {
  position: absolute;
  top: 0;
  left: 0;
  width: 360px;
  height: 100px;
  opacity: 0;
  transition: .5s;
}

#mynavi a:hover .bn_of {
  opacity: 0;
  transition: .5s;
}

#mynavi a:hover .bn_on {
  opacity: 1;
  transition: .5s;
}


/* 下層ページ---------------- */

/* メッセージ */
#message_title {
  position: relative;
}

#message_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

.content01 {
  padding: 105px 0 130px;
}

.h1_01 {
  position: relative;
  z-index: 10;
  font-size: 50px;
}

.message01_01,
.message01_03 {
  background: #EEF0F2;
}

.message01_01 .main,
.message01_03 .main {
  position: relative;
  padding-top: 250px;
}

.message01_01 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;

  /* background: url("../img/message_img01.jpg") no-repeat; */

  /* background-size: cover; */
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
  content: "";
}

.message01_03 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;

  /* background: url("../img/message_img03.jpg") no-repeat;
  background-size: cover;
  background-position: right center; */
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
  content: "";
}

@media screen and (width <=1440px) {

  .message01_01 .main .main_bg,
  .message01_03 .main .main_bg {
    width: 107.8%;
  }
}

.txt_box01 {
  position: relative;
  z-index: 10;
  width: 84.38%;
  padding: 70px 0;
  background: #EEF0F2;
}

.h2_03 {
  margin-bottom: 40px;
  font-size: 24px;
}

.h2_03 span::after {
  display: inline-block;
  width: 300px;
  height: 1px;
  margin-left: 15px;
  vertical-align: middle;
  content: "";
  background: #000;
}

.txt01 {
  margin-right: 22.8%;
  font-size: 44px;
  font-weight: bold;
}

.message01_02 {
  padding: 90px 0 200px;
}

.message01_02::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 376px;
  content: "";
  background: #EEF0F2;
}

.message01_02 .main {
  position: relative;
  z-index: 10;
  text-align: left;
}

.bg01 {
  position: relative;
}

.bg01::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 30.56%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.main03 {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.h3_01,
.message-sentence h3 {
  margin-bottom: 35px;
  font-size: 24px;
}

.h4_01,
.message-sentence h4 {
  margin-bottom: 10px;
  font-size: 18px;
}

.p02,
.message-sentence p {
  margin-bottom: 60px;
}

.p03 {
  margin-bottom: 80px;
}

.col01 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.col01_01 {
  width: 45.31%;
  padding-left: 80px;
}

@media screen and (width <=1280px) {
  .col01_01 {
    padding-left: 5%;
  }
}

@media screen and (width <=1260px) {
  .col01_01 {
    padding-left: 3%;
  }
}

@media screen and (width <=1240px) {
  .col01_01 {
    padding-left: 2%;
  }
}

@media screen and (width <=1200px) {
  .col01_01 {
    padding-left: 1%;
  }
}

.col01_02 {
  width: 54.69%;
}

.txt02 {
  font-size: 18px;
}

.txt03 {
  font-size: 24px;
  font-weight: bold;
}


/* 会社について */
#company_title {
  position: relative;
}

#company_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

.company01_01 {
  background: #EEF0F2;
}

.company01_01 .main {
  position: relative;
  padding-top: 250px;
}

.company01_01 .main .main_bg {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
}

.main_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (width <=1440px) {
  .company01_01 .main .main_bg {
    width: 107.8%;
  }
}

.txt04 {
  margin-right: 6%;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.8;
}

.company01_02 {
  padding: 120px 0 5px;
}

.ul01 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ul01 li {
  width: 47.77%;
  margin-right: 4.46%;
  margin-bottom: 195px;
}

.ul01 li:nth-child(2n) {
  margin-right: 0;
}

.ul01 li a {
  position: relative;
  display: block;
}

.ul01_t01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 60%;
  height: 70px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.1;
  background: #fff;
}

.ul01 li a .ul01_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 200px;
  height: 60px;
  padding: 24px 0 0 80px;
  font-size: 12px;
  color: #6195FF;
  background: #fff;
  transition: .3s;
}

.ul01 li a .ul01_btn::after {
  position: absolute;
  top: 23px;
  right: 0;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
  transition: .3s;
}

.ul01 li a:hover .ul01_btn {
  color: #21428B;
}

.ul01 li a:hover .ul01_btn::after {
  background: url("../img/arrow01_on.png") no-repeat;
  transition: .3s;
}

.ul01_img img {
  width: 100%;
  height: auto;
}


/* 会社下部ナビ */
.foot_navi01 {
  width: 100%;
  height: 120px;
  padding: 36px 0 0 40px;
  color: #fff;
  text-align: left;
  background: #6195FF;
}

.foot_navi_btn a {
  position: relative;
  display: inline-block;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
}

.foot_navi_btn a::before,
.foot_navi_btn a::after {
  position: absolute;
  top: 15px;
  right: -50px;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow02.png") no-repeat;
}

.foot_navi_btn a:hover {
  text-decoration: none;
}

.foot_navi_btn a::after {
  right: -30px;
  opacity: 0;
}

.foot_navi_btn a:hover::before {
  animation: arrowbefore .5s;
}

.foot_navi_btn a:hover::after {
  animation: arrowafter .5s;
}

@keyframes arrowbefore {
  100% {
    right: -60px;
    opacity: 0;
  }
}

@keyframes arrowafter {
  99% {
    right: -50px;
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.foot_navi02 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot_navi02 ul li {
  width: 25%;
  line-height: 1.4;
  text-align: left;
}

.foot_navi02 ul li a {
  position: relative;
  display: block;
  height: 200px;
  padding: 80px 0 0 11.1%;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.foot_navi02 ul li.company_navi01 a img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foot_navi02 ul li.company_navi01 a .image_hover {
  opacity: 0;
}

.foot_navi02 ul li.company_navi01 a:hover .image_hover {
  opacity: 1;
  transition: .3s;
}

.foot_navi02 ul li.company_navi01_on a .image_hover {
  opacity: 1;
  transition: .3s;
}

.foot_navi02 ul li.company_navi01 .image_sp,
.foot_navi02 ul li.company_navi01 .image_sp_hover {
  display: none;
}

/* .foot_navi02 ul li.company_navi02 a {
  background: url("../img/company_navi02.jpg") no-repeat;
  background-size: cover;
}
.foot_navi02 ul li.company_navi02 a:hover {
  background: url("../img/company_navi02_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
}
.foot_navi02 ul li.company_navi02_on a {
  background: url("../img/company_navi02_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
}
.foot_navi02 ul li.company_navi03 a {
  background: url("../img/company_navi03.jpg") no-repeat;
  background-size: cover;
}
.foot_navi02 ul li.company_navi03 a:hover {
  background: url("../img/company_navi03_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
}
.foot_navi02 ul li.company_navi03_on a {
  background: url("../img/company_navi03_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
}
.foot_navi02 ul li.company_navi04 a {
  background: url("../img/company_navi04.jpg") no-repeat;
  background-size: cover;
}
.foot_navi02 ul li.company_navi04 a:hover {
  background: url("../img/company_navi04_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
}
.foot_navi02 ul li.company_navi04_on a {
  background: url("../img/company_navi04_on.jpg") no-repeat;
  background-size: cover;
  transition: .3s;
} */
.foot_navi_t01 {
  font-size: 24px;
  font-weight: bold;
}

.foot_navi02 ul li a .foot_navi_t01 span::after {
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: 20px;
  vertical-align: -2px;
  content: "";
  background: url("../img/arrow02.png") no-repeat;
}

.foot_navi02 ul li a:hover .foot_navi_t01 span::after {
  display: none;
}

.foot_navi02 ul li.company_navi01_on a .foot_navi_t01 span::after,
.foot_navi02 ul li.company_navi02_on a .foot_navi_t01 span::after,
.foot_navi02 ul li.company_navi03_on a .foot_navi_t01 span::after,
.foot_navi02 ul li.company_navi04_on a .foot_navi_t01 span::after {
  display: none;
}


/* 安定性の秘密 */
#stability_title {
  position: relative;
}

#stability_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 258px;
  content: "";
  background: #EEF0F2;
}

#stability_title .main {
  position: relative;
}

.content03 {
  padding: 70px 0 440px;
}

#stability_title .main .main_bg {
  position: absolute;
  top: 110px;
  left: 0;

  /* background: url("../img/stability_img01.jpg") no-repeat;
  background-size: cover; */
  z-index: 1;
  display: block;
  width: 130%;
  height: 300px;
  content: "";
}

@media screen and (width <=1440px) {
  #stability_title .main::before {
    width: 107.8%;
  }
}

#stability01 {
  padding: 90px 0 110px;
}

.h2_04 {
  padding-bottom: 15px;
  margin-bottom: 95px;
  font-size: 44px;
  border-bottom: 1px solid #000;
}

.ul02 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ul02 li {
  width: 31.25%;
  margin-right: 3.125%;
  text-align: center;
}

.ul02 li:nth-child(3n) {
  margin-right: 0;
}

.ul02_img {
  margin-bottom: 55px;
}

.ul02_t01 {
  position: relative;
  margin-bottom: 40px;
  text-align: left;
}

.ul02_t01::after {
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #6195FF;
}

.ul02_t01 span {
  display: inline-block;
  padding-right: 10px;
  font-size: 12px;
  color: #6195FF;
  background: #fff;
}

.ul02_t02 {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
}

.stability01 .ul02 p,
.ul02_t03 {
  margin-bottom: 15px;
  line-height: 1.6;
}

#stability02 {
  position: relative;
  padding-top: 100px;
}

#stability02::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 63.9%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.stability02_01 {
  width: 53.9%;
  margin-bottom: 70px;
}

.stability02_01 p {
  margin-bottom: 40px;
}

.stability02_02 {
  position: relative;
  width: 58.3vw;
  text-align: right;
}

.stability02_02 .bg {
  position: absolute;
  right: -41.7vw;
  bottom: 0;
  display: block;
  width: 41.7vw;
  height: 778px;
  content: "";
}

.stability02_02 .bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn05 {
  display: inline-block;
  text-align: left;
}

.btn05 a {
  position: relative;
  display: block;
  width: 300px;
  height: 100px;
  padding: 40px 0 0 130px;
  font-size: 12px;
  color: #6195FF;
  background: #fff;
}

.btn05 a::before,
.btn05 a::after {
  position: absolute;
  top: 40px;
  right: 10px;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
}

.btn05 a:hover {
  text-decoration: none;
}

.btn05 a::after {
  right: 30px;
  opacity: 0;
}

.btn05 a:hover::before {
  animation: arrowbefore2 .5s;
}

.btn05 a:hover::after {
  animation: arrowafter2 .5s;
}

@keyframes arrowbefore2 {
  100% {
    right: 0;
    opacity: 0;
  }
}

@keyframes arrowafter2 {
  99% {
    right: 10px;
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

#stability03 {
  padding: 130px 0 200px;
}

.stability03_01,
.stability03_02,
.stability03_03 {
  position: relative;
  padding: 70px 0 110px;
  margin-bottom: 2px;
}

.stability03_01::before,
.stability03_02::before,
.stability03_03::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 88.9%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.stability03_01 .stability_bg {
  position: absolute;
  right: 0;
  bottom: -19px;

  /* background: url("../img/stability_policy_bg.png") no-repeat; */

  /* background-size: contain; */
  z-index: 1;
  display: block;

  /* width: 640px; */
  height: 120px;
  content: "";
}

.stability03_01 .stability_bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}

.main04 {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.stability03_02::after {
  position: absolute;
  right: 0;
  bottom: -19px;
  z-index: 1;
  display: block;
  width: 740px;
  height: 120px;
  content: "";
  background: url("../img/stability_mission_bg.png") no-repeat;
  background-size: contain;
}

.stability03_03::after {
  position: absolute;
  right: 0;
  bottom: -19px;
  z-index: 1;
  display: block;
  width: 610px;
  height: 120px;
  content: "";
  background: url("../img/stability_vision_bg.png") no-repeat;
  background-size: contain;
}

.h3_02 {
  margin-bottom: 40px;
  font-size: 50px;
}

.txt_box02 {
  margin: 0 60px;
}

.stability03_04 {
  position: relative;
  width: 88.9%;
  height: 238px;
  background: #EEF0F2;
}

.btn06 {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: left;
}

.btn06 a {
  position: relative;
  display: block;
  width: 220px;
  height: 100px;
  padding: 40px 0 0 50px;
  font-size: 12px;
  color: #6195FF;
  background: #fff;
}

.btn06 a::before,
.btn06 a::after {
  position: absolute;
  top: 40px;
  right: 10px;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
}

.btn06 a:hover {
  text-decoration: none;
}

.btn06 a::after {
  right: 30px;
  opacity: 0;
}

.btn06 a:hover::before {
  animation: arrowbefore2 .5s;
}

.btn06 a:hover::after {
  animation: arrowafter2 .5s;
}


/* フォトロンについて */
#profile_title {
  position: relative;
}

#profile_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 258px;
  content: "";
  background: #EEF0F2;
}

#profile_title .main {
  position: relative;
}

#profile_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 300px;
  content: "";
  background: url("../img/profile_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #profile_title .main::before {
    width: 107.8%;
  }
}

#profile01 {
  padding-bottom: 110px;
  background: #EEF0F2;
}

.col02 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.col02_01 {
  width: 74.75%;
  margin-right: 6.25%;
}

.col02_02 {
  width: 19%;
}

.wp-block-table.table01 {
  margin: 0;
}

.table01 table,
.table01 {
  width: 100%;
  font-size: 18px;
  border-top: 1px solid #D2D8DE;
}

.table01 tr {
  border-bottom: 1px solid #D2D8DE;
}

.table01 td:first-child,
.table01 th {
  width: 27%;
  padding: 35px 20px;
  font-weight: bold;
}

.table01 td {
  width: 73%;
  padding: 35px 20px 35px 0;
}

#profile02 {
  padding: 90px 0 120px;
  background: #02020E url("../img/profile_bg01.jpg") no-repeat;
  background-position: center top;
  background-size: 100%;
}

.profile02_01 {
  color: #fff;
}

.h2_05 {
  padding-bottom: 15px;
  margin-bottom: 60px;
  font-size: 44px;
  border-bottom: 1px solid #fff;
}

.txt05 {
  margin-bottom: 70px;
  font-size: 30px;
  font-weight: bold;
}

.profile02_02 {
  position: relative;
  margin-bottom: 40px;
}

.profile02_02::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 80%;
  height: 100%;
  content: "";
  background: #fff;
}

.box01 {
  position: relative;
  z-index: 2;
  padding-bottom: 90px;
  background: #fff;
}

.box01_t01 {
  width: 280px;
  height: 100px;
  padding-top: 32px;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #6195FF;
}

.box01_img {
  margin: 0 10.15%;
}

#profile03 {
  padding: 90px 0 110px;
}

.h2_06 {
  padding-bottom: 15px;
  margin-bottom: 60px;
  font-size: 44px;
  border-bottom: 1px solid #000;
}

.h3_03 {
  margin-bottom: 70px;
  font-size: 30px;
  font-weight: bold;
}

.box02 {
  position: relative;
  margin-bottom: 90px;
}

.box02_t01 {
  position: absolute;
  top: -15px;
  left: 0;
  z-index: 2;
  width: 78.1%;
  padding: 0 70px 40px 0;
  background: #fff;
}


/* ７つの事業 */
#business_title {
  position: relative;
}

#business_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 258px;
  content: "";
  background: #EEF0F2;
}

#business_title .main {
  position: relative;
}

#business_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 300px;
  content: "";
  background: url("../img/business_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #business_title .main::before {
    width: 107.8%;
  }
}

#business01 {
  position: relative;
  padding-bottom: 160px;
}

#business01::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 750px;
  content: "";
  background: #EEF0F2;
}

#business01 h2,
.h2_07 {
  padding-bottom: 15px;
  margin-bottom: 70px;
  font-size: 44px;
  border-bottom: 1px solid #000;
}

#business01 h3,
.h3_05 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
}

.business01_01 {
  position: relative;
  z-index: 2;
}

.business01_01::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 80%;
  height: 100%;
  content: "";
  background: #fff;
}

.business01_01 .main {
  padding-top: 74px;
  text-align: center;
  background: #fff;
}

#business02,
#business03,
#business04,
#business05,
#business06,
#business07 {
  padding-bottom: 160px;
}

.business02_01,
.business03_01,
.business04_01,
.business05_01,
.business06_01,
.business07_01,
.business08_01 {
  position: relative;
}

.business02_01 .main_bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
}

.txt_box03 {
  width: 50.8%;
}

.business02_01 p,
.business03_01 p,
.event02_01 p,
.p04 {
  margin-bottom: 40px;
}

.business02_01 h3,
.business03_01 h3,
.h3_04 {
  position: relative;
  margin-bottom: 20px;
  font-size: 16px;
  color: #6195FF;
}

.business02_01 h3::after,
.business03_01 h3::after,
.h3_04::after {
  position: absolute;
  top: 12px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #6195FF;
}

.business02_01 h3 strong,
.business03_01 h3 strong,
.h3_04 span {
  display: inline-block;
  padding-right: 20px;
  background: #fff;
}

.wp-block-lazyblock-recruit-sentence-block p,
.table02 p,
.p05 {
  margin-bottom: 30px;
}

.p06 {
  margin-bottom: 70px;
}

.ul06 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ul06 li {
  width: 31.25%;
  margin-right: 3.125%;
  text-align: center;
}

.ul06 li:nth-child(3n) {
  margin-right: 0;
}

.ul07 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-top: 20px;
}

.ul07 li {
  width: 31.25%;
  margin-right: 3.125%;
  text-align: center;
}

.ul07 li:nth-child(3n) {
  margin-right: 0;
}

.btn08 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  padding-top: 23px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: url("../img/arrow02.png") no-repeat;
  background-position: top 41px right 9px;
}

.btn08 a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: #21428B;
  transition: transform .3s;
  transform: scale(1, 1);
  transform-origin: right top;
}

.btn08 a:hover::before {
  transform: scale(0, 1);
  transform-origin: left top;
}

.btn08 a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background: #000;
}

.btn08_t01 {
  margin-bottom: 10px;
  font-size: 20px;
}

.btn08_t02 {
  font-size: 16px;
}

.btn09 a {
  position: relative;
  display: block;
  width: 400px;
  height: 100px;
  padding-top: 23px;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: url("../img/arrow02.png") no-repeat;
  background-position: top 41px right 9px;
}

.btn09 a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: #21428B;
  transition: transform .3s;
  transform: scale(1, 1);
  transform-origin: right top;
}

.btn09 a:hover::before {
  transform: scale(0, 1);
  transform-origin: left top;
}

.btn09 a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background: #000;
}

.btn09_t01 {
  margin-bottom: 10px;
  font-size: 20px;
}

.btn09_t02 {
  font-size: 16px;
}


.business03_01 .main_bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
}

.txt_box04 {
  width: 50.8%;
  margin-left: 49.2%;
}

.business04_01::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
  background: url("../img/business_img05.jpg") no-repeat;
  background-size: cover;
}

.business05_01::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
  background: url("../img/business_img06.jpg") no-repeat;
  background-size: cover;
}

.business06_01::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
  background: url("../img/business_img07.jpg") no-repeat;
  background-size: cover;
}

.business07_01::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
  background: url("../img/business_img08.jpg") no-repeat;
  background-size: cover;
}

#business08 {
  padding-bottom: 200px;
}

.business08_01::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.4%;
  height: 360px;
  content: "";
  background: url("../img/business_img09.jpg") no-repeat;
  background-size: cover;
}


/* 業績 */
#performance_title {
  position: relative;
}

#performance_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 258px;
  content: "";
  background: #EEF0F2;
}

#performance_title .main {
  position: relative;
}

#performance_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 300px;
  content: "";
  background: url("../img/performance_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #performance_title .main::before {
    width: 107.8%;
  }
}

.performance01 {
  position: relative;
  padding-bottom: 140px;
  background: #EEF0F2;
}

.performance01::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 750px;
  content: "";
  background: #EEF0F2;
}

.performance01_01 {
  position: relative;
}

.performance01_01::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  display: block;
  width: 75%;
  height: 100%;
  content: "";
  background: #fff;
}

.performance01_01 .main {
  position: relative;
  z-index: 2;
}

.txt_box05 {
  width: 610px;
  height: 100px;
  padding-left: 80px;
  margin-bottom: 40px;
  font-size: 18px;
  background: #EEF0F2;
}

.main05 {
  width: 98%;
  max-width: 800px;
  margin: 0 auto;
}

.performance01_01 .main05 {
  padding-bottom: 50px;
  text-align: right;
}

.performance02 {
  position: relative;
  padding-bottom: 100px;
  background: #EEF0F2;
}

#performance03 {
  position: relative;
  padding: 140px 0 200px;
}

.col03 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.col03_01 {
  width: 47%;
  margin-right: 6%;
}

.col03_02 {
  width: 47%;
}

.box03 {
  padding-bottom: 90px;
  background: #EEF0F2;
}

.box03_t01 {
  width: 66.7%;
  min-height: 80px;
  padding: 16px 10px 10px 0;
  font-size: 24px;
  font-weight: bold;
  background: #fff;
}

.box03_img {
  margin: 90px 30px 0;
}


/* 仕事と人 */
#people_title {
  position: relative;
}

#people_title .bg_text {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 250px;
  margin: 0 auto;
  content: "";
}

.people01_01 {
  background: #EEF0F2;
}

.people01_01 .main {
  position: relative;
  padding-top: 250px;
}

.people01_01 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
}

@media screen and (width <=1440px) {
  .people01_01 .main .main_bg {
    width: 107.8%;
  }
}

#people02 {
  padding: 120px 0 70px;
}

.main06 {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.box04 a {
  position: relative;
  display: block;
  margin-bottom: 195px;
}

.box04_t01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 200px;
  height: 70px;
  font-size: 30px;
  font-weight: bold;
  background: #fff;
}

.box04_txt {
  position: absolute;
  top: 82.7%;
  right: 0;
  z-index: 2;
  width: 71.4%;
  padding: 30px 30px 30px 85px;
  background: #fff;
}

.box04_col {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.box04_col01 {
  width: 57%;
}

.box04_col02 {
  width: 43%;
}

.box04_t02 {
  font-size: 18px;
  font-weight: bold;
}

.box04_t03 {
  margin-bottom: 15px;
  font-size: 18px;
}

.box04_t04 {
  font-size: 24px;
  font-weight: bold;
}

.box04_btn,
.box05_btn {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 117px;
  font-size: 12px;
  color: #6195FF;
  transition: .3s;
}

.box04_btn::after,
.box05_btn::after {
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: 20px;
  vertical-align: -4px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
  transition: .3s;
}

.box04 a:hover .box04_btn,
.box05 a:hover .box05_btn {
  color: #21428B;
  transition: .3s;
}

.box04 a:hover .box04_btn::after,
.box05 a:hover .box05_btn::after {
  vertical-align: -4px;
  background: url("../img/arrow01_on.png") no-repeat;
  transition: .3s;
}

.ul03 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.ul03 li {
  width: 47.8%;
  margin-right: 4.4%;
  line-height: 1.5;
}

.ul03 li:nth-child(2n) {
  margin-right: 0;
}

.box05 a {
  position: relative;
  display: block;
  margin-bottom: 195px;
}

.box05_t01 {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 200px;
  height: 70px;
  font-size: 30px;
  font-weight: bold;
  background: #fff;
}

.box05_txt {
  position: absolute;
  top: 84.8%;
  right: 0;
  z-index: 2;
  width: 71.4%;
  padding: 30px 35px 20px;
  background: #fff;
}

.box05_t02 {
  margin-bottom: 15px;
  font-size: 18px;
}

.box05_t03 {
  font-size: 24px;
  font-weight: bold;
}


/* 仕事と人下部ナビ */
.foot_navi03 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.foot_navi03 ul li {
  width: 33.333%;
  line-height: 1.4;
  text-align: left;
}

.foot_navi03 ul li a {
  position: relative;
  display: block;
  height: 200px;
  padding: 80px 5% 0 8%;
  color: #fff;
  text-decoration: none;
  transition: .3s;
}

.foot_navi03 ul li a img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  transition: .3s;
  object-fit: cover;
}

.foot_navi03 ul li a .people_navi_img_on {
  opacity: 0;
}

.foot_navi03 ul li a:hover .people_navi_img_on,
.foot_navi03 ul .people_navi.-on a .people_navi_img_on {
  opacity: 1;
}

.foot_navi03 ul .people_navi a .foot_navi_t01 span::after {
  display: inline-block;
  width: 30px;
  height: 18px;
  margin-left: 20px;
  vertical-align: -2px;
  content: "";
  background: url("../img/arrow02.png") no-repeat;
}

.foot_navi03 ul .people_navi a:hover .foot_navi_t01 span::after {
  display: none;
}

.foot_navi03 ul .people_navi.-on a .foot_navi_t01 span::after {
  display: none;
}


/* 技術×小林 磨里・廣部 美優 */
#people_01_title {
  position: relative;
}

#people_01_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 810px;
  content: "";
  background: #EEF0F2;
}

#people_01_title .main {
  position: relative;
}

#people_01_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_01_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_01_title .main::before {
    width: 107.8%;
  }
}

#people_01_title .main07 {
  margin-top: 620px;
}

.people_01_01_01,
.people_01_01_03 {
  margin-bottom: 80px;
}

/* 左に画像 */
.people_01_01_02 {
  position: relative;
  width: 100%;
  max-width: 880px;
  margin: 0 auto 120px;

  /* width: 62.5%; */

  /* padding: 460px 0 90px; */
  text-align: right;
}

.people_01_01_02 .people_bg {
  /* position: absolute; */

  /* top: 0;
  left: 0; */
  display: block;

  /* content: ""; */

  /* width: 100%;
  height: 450px; */

  /* background: url("../img/people_01_img02.jpg") no-repeat;
  background-size: cover; */
}

.people_01_01_02 .caption01 {
  margin-top: 12px;
}

.people_bg img {
  /* object-fit: cover;
  width: 100%;
  height: 100%; */
  width: 100%;
}

/* 右に画像 */
.people_01_01_04 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  margin-left: 37.5%;
  text-align: left;
}

.people_01_01_04::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_01_img03.jpg") no-repeat;
  background-size: cover;
}

.people_01_01_05 {
  margin-bottom: 80px;
}

#people_01_02 {
  position: relative;
}

#people_01_02::before {
  position: absolute;
  top: -16px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1380px;
  height: 100px;
  margin: 0 auto;
  content: "";
  background: url("../img/people_schedule_bg.png") no-repeat;
  background-size: contain;
}

.content06 {
  padding: 150px 0 190px;
  background: #EEF0F2;
}

.people_01_02_01 {
  padding-bottom: 70px;
  border-bottom: 2px solid #fff;
}

.people_01_02_02 {
  padding-top: 70px;
}


/* 02_林田 */
#people_02_title {
  position: relative;
}

#people_02_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_02_title .main {
  position: relative;
}

#people_02_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_02_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_02_title .main::before {
    width: 107.8%;
  }
}

#people_02_title .main07 {
  margin-top: 620px;
}

.people_02_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_02_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_02_img02.jpg") no-repeat;
  background-size: cover;
}

.people_02_02_01 {
  padding-bottom: 70px;
}


/* 03_見ル野 */
#people_03_title {
  position: relative;
}

#people_03_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_03_title .main {
  position: relative;
}

#people_03_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_03_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_03_title .main::before {
    width: 107.8%;
  }
}

#people_03_title .main07 {
  margin-top: 620px;
}

.people_03_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_03_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_03_img02.jpg") no-repeat;
  background-size: cover;
}

/* 04_佐藤 */
#people_04_title {
  position: relative;
}

#people_04_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_04_title .main {
  position: relative;
}

#people_04_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_04_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_04_title .main::before {
    width: 107.8%;
  }
}

#people_04_title .main07 {
  margin-top: 620px;
}

.people_04_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_04_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_04_img02.jpg") no-repeat;
  background-size: cover;
}

/* 05_西 */
#people_05_title {
  position: relative;
}

#people_05_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_05_title .main {
  position: relative;
}

#people_05_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_05_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_05_title .main::before {
    width: 107.8%;
  }
}

#people_05_title .main07 {
  margin-top: 620px;
}

.people_05_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_05_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_05_img02.jpg") no-repeat;
  background-size: cover;
}

/* 06_石川 */
#people_06_title {
  position: relative;
}

#people_06_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_06_title .main {
  position: relative;
}

#people_06_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_06_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_06_title .main::before {
    width: 107.8%;
  }
}

#people_06_title .main07 {
  margin-top: 620px;
}

.people_06_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_06_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_06_img02.jpg") no-repeat;
  background-size: cover;
}

/* 07_小川 */
#people_07_title {
  position: relative;
}

#people_07_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_07_title .main {
  position: relative;
}

#people_07_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_07_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_07_title .main::before {
    width: 107.8%;
  }
}

#people_07_title .main07 {
  margin-top: 620px;
}

.people_07_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_07_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_07_img02.jpg") no-repeat;
  background-size: cover;
}

/* 08_佐藤 */
#people_08_title {
  position: relative;
}

#people_08_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_08_title .main {
  position: relative;
}

#people_08_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_08_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_08_title .main::before {
    width: 107.8%;
  }
}

#people_08_title .main07 {
  margin-top: 620px;
}

.people_08_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_08_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_08_img02.jpg") no-repeat;
  background-size: cover;
}

/* 09_高橋 */
#people_09_title {
  position: relative;
}

#people_09_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_09_title .main {
  position: relative;
}

#people_09_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_09_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_09_title .main::before {
    width: 107.8%;
  }
}

#people_09_title .main07 {
  margin-top: 620px;
}

.people_09_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_09_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_09_img02.jpg") no-repeat;
  background-size: cover;
}

/* 10_檜垣 */
#people_10_title {
  position: relative;
}

#people_10_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_10_title .main {
  position: relative;
}

#people_10_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_10_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_10_title .main::before {
    width: 107.8%;
  }
}

#people_10_title .main07 {
  margin-top: 620px;
}

.people_10_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_10_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_10_img02.jpg") no-repeat;
  background-size: cover;
}

/* 11_森嵜 */
#people_11_title {
  position: relative;
}

#people_11_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_11_title .main {
  position: relative;
}

#people_11_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_11_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_11_title .main::before {
    width: 107.8%;
  }
}

#people_11_title .main07 {
  margin-top: 620px;
}

.people_11_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_11_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_11_img02.jpg") no-repeat;
  background-size: cover;
}

/* 12_原 */
#people_12_title {
  position: relative;
}

#people_12_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_12_title .main {
  position: relative;
}

#people_12_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_12_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_12_title .main::before {
    width: 107.8%;
  }
}

#people_12_title .main07 {
  margin-top: 620px;
}

.people_12_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_12_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_12_img02.jpg") no-repeat;
  background-size: cover;
}

/* 13_佐藤 */
#people_13_title {
  position: relative;
}

#people_13_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_13_title .main {
  position: relative;
}

#people_13_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_13_img01.jpg") no-repeat;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_13_title .main::before {
    width: 107.8%;
  }
}

#people_13_title .main07 {
  margin-top: 620px;
}

.people_13_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_13_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_13_img02.jpg") no-repeat;
  background-size: cover;
}

/* 14_板垣 */
#people_14_title {
  position: relative;
}

#people_14_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_14_title .main {
  position: relative;
}

#people_14_title .main_bg {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
}

@media screen and (width <=1440px) {
  #people_14_title .main_bg {
    width: 107.8%;
  }
}

#people_14_title .main07 {
  margin-top: 620px;
}

.people_14_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_14_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_14_img02.jpg") no-repeat;
  background-size: cover;
}


/* 15_廣部 */
#people_15_title {
  position: relative;
}

#people_15_title::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 610px;
  content: "";
  background: #EEF0F2;
}

#people_15_title .main {
  position: relative;
}

#people_15_title .main::before {
  position: absolute;
  top: 110px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 540px;
  content: "";
  background: url("../img/people_15_img01.jpg") no-repeat;
  background-position: 30% 20%;
  background-size: cover;
}

@media screen and (width <=1440px) {
  #people_15_title .main::before {
    width: 107.8%;
  }
}

#people_15_title .main07 {
  margin-top: 620px;
}

.people_15_01_02 {
  position: relative;
  width: 62.5%;
  padding: 460px 0 90px;
  text-align: right;
}

.people_15_01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 450px;
  content: "";
  background: url("../img/people_15_img02.jpg") no-repeat;
  background-size: cover;
}



.content04 {
  padding: 70px 0;
}

.main07 {
  width: 98%;
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.dl01 {
  line-height: 1.8;
}

.dl01 dt {
  width: 210px;
  font-size: 24px;
  font-weight: bold;
}

.dl01 dt span {
  font-size: 14px;
}

.dl01 dd {
  padding: 0 0 30px 210px;
  margin: -2.2em 0 35px;
  font-size: 18px;
  border-bottom: 1px solid #000;
}

.dl01 dd:last-child {
  padding: 0 0 0 210px;
  margin: -2.2em 0 0;
  border-bottom: none;
}

.sage01 {
  margin-left: 3em;
  text-indent: -3em;
}

.sage11 {
  margin-left: 3em;
  text-indent: -3em;
}

.content05 {
  position: relative;
  padding: 90px 0 140px;
}

.content05::after {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 11.1%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.txt06 {
  margin-bottom: 70px;
  font-size: 24px;
  font-weight: bold;
}

.txt_line01 {
  position: relative;
  margin-bottom: 60px;
  font-size: 12px;
  color: #6195FF;
}

.txt_line01::after {
  position: absolute;
  top: 8px;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 1px;
  content: "";
  background: #6195FF;
}

.txt_line01 span {
  display: inline-block;
  padding-right: 10px;
  background: #fff;
}

.wp-block-lazyblock-recruit-sentence-block h2,
.h2_08 {
  margin-bottom: 35px;
  font-size: 30px;
  font-weight: bold;
}

.txt_box06 {
  margin-bottom: 30px;
  color: #848A91;
}

.txt_box06 p {
  margin-left: 1em;
  text-indent: 1em;
}

.main08 {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.col04 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.col04_01 {
  width: 39.28%;
}

.col04_02 {
  width: 60.72%;
}

.txt07 {
  margin-bottom: 10px;
  font-size: 30px;
  font-weight: bold;
}

.schedule01 dl {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.schedule01 dl::before {
  position: absolute;
  top: 15px;
  left: 145px;
  display: block;
  width: 1px;
  height: calc(100% - 30px);
  content: "";
  background: #6195FF;
}

.schedule01 dl dt {
  width: 110px;
  font-size: 30px;
  color: #6195FF;
  text-align: center;
}

.schedule01 dl dd {
  position: relative;
  width: calc(100% - 110px);
  padding: 10px 0 0 77px;
  margin-bottom: 60px;
}

.schedule01 dl dd:last-child {
  margin-bottom: 0;
}

.schedule01 dl dd::before {
  position: absolute;
  top: 15px;
  left: 27px;
  z-index: 2;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background: url("../img/dot01.png") no-repeat;
}



/* 働く環境 */
#environment_title {
  position: relative;
}

#environment_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

.environment01_01 {
  background: #EEF0F2;
}

.environment01_01 .main {
  position: relative;
  padding-top: 250px;
}

.environment01_01 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
  content: "";
}

@media screen and (width <=1440px) {
  .environment01_01 .main .main_bg {
    width: 107.8%;
  }
}

.environment01_02 {
  padding-bottom: 100px;
  background: #EEF0F2;
}

.main09 {
  width: 98%;
  max-width: 760px;
  margin: 0 auto;
}

.page_navi01 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.page_navi01 li:nth-child(1) {
  width: 29.6%;
  border-left: 1px solid #000;
}

.page_navi01 li:nth-child(2) {
  width: 32.2%;
  border-left: 1px solid #000;
}

.page_navi01 li:nth-child(3) {
  width: 38.2%;
  border-right: 1px solid #000;
  border-left: 1px solid #000;
}

.page_navi01 li a {
  display: block;
  height: 80px;
  padding-top: 26px;
  font-size: 20px;
  text-align: center;
}

.content07 {
  position: relative;
  padding: 100px 0 320px;
}

.content07::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 11.1%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.content07::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 160px;
  content: "";
  background: #EEF0F2;
}

.content07 h2,
.h2_09 {
  padding-bottom: 15px;
  margin-bottom: 150px;
  font-size: 44px;
  border-bottom: 1px solid #000;
}

.environment02_01 {
  position: relative;
  margin-bottom: 80px;
}

.txt_box07 {
  position: absolute;
  top: -75px;
  left: 0;
  z-index: 2;
  width: 78%;
  height: 125px;
  padding-right: 4%;
  font-size: 20px;
  background: #fff;
}

.ul04 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.ul04 li {
  width: 33.33%;
}

.environment02_02 {
  margin-bottom: 80px;
}

.dl02 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  border-top: 1px solid #6195FF;
}

.dl02 dt {
  width: 37.5%;
  padding: 50px 50px 50px 20px;
  font-size: 24px;
  font-weight: bold;
}

.dl02 dd {
  position: relative;
  width: 62.5%;
  padding: 50px 0;
  font-size: 16px;
}

.dl02 dd::after {
  position: absolute;
  bottom: 0;
  left: -60%;
  display: block;
  width: 160%;
  height: 1px;
  content: "";
  background: #6195FF;
}

.col05 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 3.14%;
  align-items: flex-start;
}

.col05_01 {
  width: 48.43%;

  /* margin-right: 3.14%; */
}

.col05_02 {
  width: 48.43%;
}

.environment03_01,
.environment03_02 {
  position: relative;
  min-height: 360px;
  margin-bottom: 100px;
}

.environment03_03 {
  position: relative;
  min-height: 360px;
}

.environment03_01 .main_bg {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.44%;
  height: 360px;
  content: "";
}

.environment03_02 .main_bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 44.44%;
  height: 360px;
  content: "";
}

.environment03_03::before {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 44.44%;
  height: 360px;
  content: "";
  background: url("../img/environment_img09.jpg") no-repeat;
  background-size: cover;
}

.main10 {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  text-align: left;
}

.txt_box08 {
  width: 50%;
}

.txt_box09 {
  width: 50%;
  margin-left: 50%;
}

.content07 h3,
.h3_06 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: bold;
}

.environment04_01 {
  padding-bottom: 100px;
}

.txt_box10 {
  width: 78%;
  font-size: 20px;
}

.img_box01 {
  position: relative;
  right: 0;
  width: 100%;
  height: 293px;
}

.img_box01::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 78%;
  height: 40px;
  content: "";
  background: #fff;
}

.environment04_02 {
  padding-bottom: 100px;
}

.col06 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.col06_01 {
  width: 15.6%;
}

.col06_02 {
  width: 84.4%;
}

.h3_07 {
  margin-bottom: 60px;
  font-size: 44px;
  font-weight: bold;
}

.txt08 {
  margin-bottom: 60px;
  font-size: 20px;
  line-height: 2;
}

.dl03 dt {
  padding: 50px 20px 40px;
  font-size: 24px;
  font-weight: bold;
  border-top: 1px solid #6195FF;
}

.dl03 dd {
  padding: 0 0 60px 15.62%;
  font-size: 16px;
}

.p07 {
  margin-bottom: 50px;
}

.ul05 {
  margin: 10px 0 30px;
}

.ul05 li {
  margin-left: 30px;
  line-height: 1.8;
  list-style: disc;
}

.txt_box11 {
  font-size: 14px;
  color: #848A91;
}

.environment04_04 {
  position: relative;
}

.environment04_04 .bg_text {
  position: absolute;
  top: 50px;
  left: 0;
  display: block;
  width: 100%;
  height: 120px;
  content: "";
}

.bg_text.-left img {
  object-position: left;
}

.bg_text.-right img {
  object-position: right;
}

.bg_text.-left.-top img {
  object-position: left top;
}

.bg_text.-right.-top img {
  object-position: right top;
}

.bg_text img {
  object-fit: contain;
  object-position: top;
  width: 100%;
  height: 100%;
}

.h3_08 {
  margin-bottom: 20px;
  font-size: 30px;
}

.table02_wrap {
  width: 98%;
  max-width: 1240px;
  margin: 0 auto 60px;
}

.table02 {
  width: 100%;
  text-align: left;
}

.table02 th {
  width: 27.4%;
  padding: 45px 4.8%;
  font-size: 24px;
  font-weight: bold;
  vertical-align: top;
  border-left: 1px solid #6195FF;
}

.table02 td {
  font-size: 16px;
  vertical-align: top;
}

.table02 .th01 {
  background: #F4F8FF;
  border-top: 1px solid #6195FF;
  border-right: 1px solid #6195FF;
}

.table02 .th02 {
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
}

.table02 .th03 {
  background: #F4F8FF;
  border-right: 1px solid #6195FF;
}

.table02 .th04 {
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
  border-bottom: 1px solid #6195FF;
}

.table02 .td01 {
  padding: 45px 4.8%;
  background: #F4F8FF;
  border-right: 1px solid #6195FF;
}

.table02 .td02 {
  padding: 45px 4.8%;
  background: #F4F8FF;
  border-right: 1px solid #6195FF;
}

.table02 .td03 {
  padding: 45px 4.8%;
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
}

.table02 .td04 {
  padding: 45px 4.8%;
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
}

.table02 .td05 {
  padding: 45px 4.8%;
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
  border-bottom: 1px solid #6195FF;
}

.table02 .td06 {
  padding: 45px 4.8%;
  background: #DFE9FE;
  border-right: 1px solid #6195FF;
  border-bottom: 1px solid #6195FF;
}

.table02 .td07 {
  padding: 60px 4.8%;
  background: #F4F8FF;
  border-right: 1px solid #6195FF;
  border-bottom: 1px solid #6195FF;
  border-left: 1px solid #6195FF;
}

.environment_td_img01 {
  position: relative;
  width: 36.3%;
  height: 320px;
  border-top: 1px solid #6195FF;
  border-left: 1px solid #6195FF;
}

.environment_td_img02 {
  position: relative;
  width: 36.3%;
  height: 320px;
  border-top: 1px solid #6195FF;
  border-right: 1px solid #6195FF;
  border-left: 1px solid #6195FF;
}

.environment_td_img01_txt {
  position: absolute;
  top: 52px;
  left: 12%;
}

.environment_td_img01_t01 {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: bold;
}

.environment_td_img01_t02 {
  margin-bottom: 15px;
  font-size: 18px;
}

.environment_td_img01_t03 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: bold;
}

.environment_td_img01_t04 {
  font-size: 14px;
}

.table02 p strong,
.table01_t01 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: bold;
}

.table02 p:has(> strong) {
  margin-bottom: 15px;
}

.dl04 {
  border-bottom: 1px solid #6195FF;
}

.dl04 dt {
  padding: 50px 20px 40px;
  font-size: 24px;
  font-weight: bold;
  border-top: 1px solid #6195FF;
}

.dl04 dd {
  padding: 0 0 60px 15.62%;
  font-size: 16px;
}


/* 募集要項 */
#recruitment_title {
  position: relative;
}

#recruitment_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

#recruitment01 {
  padding-bottom: 200px;
}

.recruitment01_01 {
  background: #EEF0F2;
}

.recruitment01_01 .main {
  position: relative;
  padding-top: 250px;
}

.recruitment01_01 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
  content: "";
}

@media screen and (width <=1440px) {
  .recruitment01_01 .main .main_bg {
    width: 107.8%;
  }
}

.recruitment01_02 {
  position: relative;
}

.recruitment01_02::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 80px;
  content: "";
  background: #EEF0F2;
}

.tab_wrap ul {
  display: flex;
  width: 574px;
  background: #fff;
}

.tab_wrap ul li {
  width: 287px;
  height: 80px;
  padding-top: 27px;
  font-size: 20px;
  text-align: center;
  cursor: pointer;
  background: #EEF0F2;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  border-left: 1px solid #000;
}

.tab_wrap ul li:last-child {
  border-left: none;
}

.tab_wrap ul li.show {
  background: #fff;
  border-bottom: none;
}

.tab_contents {
  display: none;
}

.tab_contents.show {
  display: block;
  padding-top: 110px;
}

.tab_contents p,
.txt09 {
  margin-bottom: 60px;
  font-size: 20px;
}

.recruitment01_02_01 {
  margin-bottom: 110px;
}

.tab_contents table,
.table03 {
  width: 100%;
  border-top: 1px solid #D2D8DE;
}

.tab_contents table td:first-child,
.table03 th {
  width: 23%;
  padding: 35px 20px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #D2D8DE;
}

.tab_contents table td,
.table03 td {
  width: 77%;
  padding: 35px 20px;
  font-size: 18px;
  line-height: 2;
  vertical-align: top;
  border: none;
  border-bottom: 1px solid #D2D8DE;
}

.dl05 {
  line-height: 2;
}

.dl05 dt {
  width: 7em;
  font-weight: bold;
}

.dl05 dd {
  margin: -2em 0 30px 7em;
}

.dl05 dd:last-child {
  margin: -1.8em 0 0 7em;
}

.dl06 {
  line-height: 2;
}

.dl06 dt {
  width: 6.5em;
}

.dl06 dd {
  margin: -2em 0 0 6.5em;
}

.h3_09 {
  margin-bottom: 10px;
}

.sage02 {
  margin: 0 0 30px 1em;
}

.p08 {
  margin-bottom: 10px;
}

#recruitment02 {
  padding: 70px 0;
  background: #DFE9FE;
}

.col07 {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
}

.col07_01 {
  width: 37.5%;
  padding-top: 90px;
  margin-right: 5.3%;
  text-align: center;
}

.col07_02 {
  width: 57.2%;
}

.txt10 {
  font-size: 30px;
  font-weight: bold;
}

.p09 {
  margin-bottom: 15px;
  font-size: 18px;
}

.dl07 {
  font-size: 18px;
  line-height: 1.8;
}

.dl07 dt {
  width: 3em;
}

.dl07 dd {
  margin: -1.8em 0 0 3em;
}


/* 採用イベント */
#event_title {
  position: relative;
}

#event_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

.event01_01 {
  padding-bottom: 100px;
  background: #EEF0F2;
}

.event01_01 .main {
  position: relative;
  padding-top: 250px;
}

.event01_01 .main .main_bg {
  position: absolute;
  top: -60px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
  content: "";
}

@media screen and (width <=1440px) {
  .event01_01 .main .main_bg {
    width: 107.8%;
  }
}

.h2_10 {
  padding-bottom: 15px;
  font-size: 44px;
  border-bottom: 1px solid #000;
}

.content08 {
  position: relative;
  padding-bottom: 60px;
}

.content08::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 11.1%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.content08::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 60px;
  content: "";
  background: #EEF0F2;
}

.event02_01 {
  position: relative;
  padding: 70px 0 80px;
}

.txt_box12 {
  width: 61%;
}

.event02_01 h3,
.h3_10 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: bold;
}

.event02_01 .btn07 {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 10;
  width: 31.25%;
}

.btn07 a {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  padding: 35px 35px 0 0;
  font-size: 20px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background: url("../img/arrow02.png") no-repeat;
  background-position: top 41px right 9px;
}

.btn07 a::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  background: #21428B;
  transition: transform .3s;
  transform: scale(1, 1);
  transform-origin: right top;
}

.btn07 a:hover::before {
  transform: scale(0, 1);
  transform-origin: left top;
}

.btn07 a::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: '';
  background: #000;
}

.table04 {
  width: 100%;
  border-top: 1px solid #D2D8DE;
}

.table04 td:first-child,
.table04 th {
  width: 33%;
  padding: 35px 20px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: top;
  border-bottom: 1px solid #D2D8DE;
}

.table04 td {
  width: 67%;
  padding: 35px 0;
  font-size: 18px;
  vertical-align: top;
  border-bottom: 1px solid #D2D8DE;
}

.content09 {
  position: relative;
  padding-bottom: 200px;
}

.content09::before {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  display: block;
  width: 11.1%;
  height: 100%;
  content: "";
  background: #EEF0F2;
}

.content09::after {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 200px;
  content: "";
  background: #EEF0F2;
}

.event03_01 {
  position: relative;
  padding: 70px 0 80px;
}

.event03_01 .btn07 {
  position: absolute;
  top: 80px;
  right: 0;
  z-index: 10;
  width: 31.25%;
}









/* 汎用スタイル---------------- */
.clearfix::after {
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  visibility: hidden;
  content: "";
}

.clear {
  clear: both;
}

.center {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.img100 img {
  width: 100%;
  height: auto;
}

.img_res img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: 600;
}

/* ==========================================================================
* 2024 WordPress ブロック対応
========================================================================== */

.main11 {
  width: 98%;
  max-width: 865px;
  margin: 0 auto;
}

/* 採用情報：ページリンク
----------------------------------------------------------------- */

.recruit-page-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recruit-page-link {
  position: relative;
  display: block;
}

.recruit-page-link__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.recruit-page-link__title {
  font-size: 21px;
  font-weight: bold;
}

.recruit-page-link__image {
  position: relative;
  display: block;
  width: 100%;
  margin-top: 20px;
}

.recruit-page-link__image>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-page-link__more {
  position: relative;

  /* background: #fff; */
  z-index: 2;
  width: 200px;
  padding: 0 0 0 80px;
  font-size: 12px;
  color: #6195FF;
  text-align-last: left;
  transition: .3s;
}

.recruit-page-link__more::after {
  position: absolute;
  top: calc(50% - 9px);
  right: 0;
  display: block;
  width: 30px;
  height: 18px;
  content: "";
  background: url("../img/arrow01.png") no-repeat;
  transition: .3s;
}

.recruit-page-link:hover {
  text-decoration: none;
}

.recruit-page-link__image::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  content: '';
  background: rgb(97 149 255 / 50%);
  opacity: 0;
  transition: .3s;
}

.recruit-page-link:hover .recruit-page-link__image::after {
  opacity: 1;
  transition: .3s;
}

.recruit-page-link:hover .recruit-page-link__more {
  color: #21428B;
}

.recruit-page-link:hover .recruit-page-link__more::after {
  background: url("../img/arrow01_on.png") no-repeat;
  transition: .3s;
}


/* よくある質問 */
#faq_title {
  position: relative;
}

#faq_title .bg_text {
  position: absolute;
  top: 30px;
  right: 0;
  left: 0;
  display: block;
  width: 100%;
  max-width: 1280px;
  height: 120px;
  margin: 0 auto;
  content: "";
}

.faq01_01 {
  background: #EEF0F2;
}

.faq01_01 .main {
  position: relative;
  padding-top: 250px;
}

.faq01_01 .main .main_bg {
  position: absolute;
  top: -70px;
  left: 0;
  z-index: 1;
  display: block;
  width: 130%;
  height: 400px;
}

.main_bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media screen and (width <=1440px) {
  .faq01_01 .main .main_bg {
    width: 107.8%;
  }
}

.faq01_02 {
  padding-bottom: 100px;
  background: #EEF0F2;
}

.faq01_02 .main09 {
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}

.faq01_02 .page_navi01 {
  flex-wrap: wrap;
  align-items: center;
  justify-self: center;
}

.faq01_02 .page_navi01 li {
  width: 275px;
}

@media screen and (width <=900px) {
  .faq01_02 .page_navi01 li {
    width: 224px;
  }
}

.faq01_02 .page_navi01 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: clamp(16px, 0.9259vw + 8.889px, 20px);
  line-height: 1.5;
}

.qa_block {
  padding: 40px 0 0;
  text-align: left;
}

.qa_wrap {
  width: 100%;
  max-width: 1360px;
  padding: 0 40px;
  margin: 0 auto;
}

.qa_heading {
  font-size: 42px;
  font-weight: 700;
  color: #000;
  text-align: left;
  border-bottom: 1px solid #000;
}

.qa_item {
  margin-top: 40px;
  background-color: #F6F7F8;
  border-radius: 4px;
}

.qa_item:last-child {
  margin-bottom: 60px;
}

.qa_item-q {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 32px 36px 108px;
  font-size: 30px;
  font-weight: 700;
  color: #000;
}

.qa_item-q::after {
  position: absolute;
  top: 50%;
  left: 32px;
  width: 47px;
  height: 54px;
  content: "";
  background: url("/recruit/img/icon_q.png") no-repeat;
  transform: translateY(-50%)
}

.qa_item-q__toggle {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-left: 16px;
  transition: transform 0.2s ease;
  transform: translateY(2px)
}

.qa_item-q__toggle::after,
.qa_item-q__toggle::before {
  position: absolute;
  display: inline-block;
  content: "";
  background: #21428B;
}

.qa_item-q__toggle::before {
  top: calc(50% - 2px);
  left: 0;
  width: 40px;
  height: 4px;
  transition: opacity 0.2s ease;
}

.qa_item-q.is-active .qa_item-q__toggle::before {
  opacity: 0;
}

.qa_item-q__toggle::after {
  top: 0;
  left: calc(50% - 2px);
  width: 4px;
  height: 40px;
}

.qa_item-q.is-active .qa_item-q__toggle {
  transform: translateY(2px) rotate(90deg)
}




.qa_item-a {
  position: relative;
  max-height: 0;
  padding: 0 32px 0 108px;
  overflow: hidden;
  font-size: 24px;
  font-weight: 400;
  color: #000;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.qa_item-a::after {
  position: absolute;
  top: 50%;
  left: 32px;
  width: 48px;
  height: 50px;
  content: "";
  background: url("/recruit/img/icon_a.png") no-repeat;
  transform: translateY(-50%)
}

.qa_item-a a {
  color: #21428B;
  text-decoration: underline;
}

.qa_item-a.is-open {
  max-height: 500px;
  padding: 16px 32px 16px 108px;
  border-top: 1px solid #C9C9C9;
}


/* Utility
----------------------------------------------------------------- */
.u-mt-120 {
  margin-top: 120px;
}

.p-recruit-videos-title {
  padding-top: 60px;
  margin-top: 80px;
  border-top: 1px solid #6195FF;
}

.p-recruit-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;

}

.p-recruit-videos__item {
  position: relative;
  display: block;
  aspect-ratio: 9/16;
}

.p-recruit-videos iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p-recruit-videos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 詳細ブロック
  ----------------------------------------------------------------- */
.wp-block-details {
  margin-top: 30px;
  overflow: hidden;
  background-color: #F6F7F8;
  border-radius: 4px;
}

.wp-block-details[open]>summary::after {
  transform: rotate(0deg);
}

.wp-block-details>summary {
  position: relative;
  padding: 24px 48px 24px 24px;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  list-style: none;
  cursor: pointer;
}

.wp-block-details>summary::-webkit-details-marker {
  display: none;
}

.wp-block-details>summary::before,
.wp-block-details>summary::after {
  position: absolute;
  top: calc(50% - 1px);
  right: 24px;
  width: 16px;
  height: 2px;
  content: '';
  background-color: #000;
  transition: 0.3s ease;
}

.wp-block-details>summary::after {
  transform: rotate(90deg);
}

@media (hover: hover) {
  .wp-block-details>summary {
    transition: color 0.3s ease;
  }

  .wp-block-details>summary:hover {
    color: #6195FF;
  }

  .wp-block-details>summary:hover::before,
  .wp-block-details>summary:hover::after {
    background-color: #6195FF;
  }
}

.wp-block-details .wp-block-details__content {
  position: relative;
  padding: 0 24px;
}

.wp-block-details .wp-block-details__content>*:last-child {
  margin-bottom: 24px;
}

.wp-block-details .wp-block-details__content::before {
  display: block;
  width: calc(100% + 48px);
  height: 1px;
  margin: 0 -24px 24px;
  content: '';
  border-top: 1px solid #C9C9C9;
}

.wp-block-image img {
  display: block;
  margin: 0 auto;
}