/*=============================================*/
/*Sass import */
/*=============================================*/
/*=============================================*/
/*Reset CSS*/
/*=============================================*/
article, aside, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, main {
  display: block;
}

blockquote, body, dd, div, dl, dt, fieldset, figure, form, h1, h2, h3, h4, h5, h6, input, li, ol, p, pre, td, textarea, th, ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

li {
  list-style: none;
}

a,
a:link {
  text-decoration: none;
}

a:visited,
a:active {
  color: #1A1A1A;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
  height: auto;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

button, input, select, textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
  display: none;
}

i {
  font-style: normal;
}

textarea {
  resize: none;
  font-family: sans-serif;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/*=============================================*/
/*Common Base*/
/*=============================================*/
.more_btn.non a {
  padding: 18px 30px;
  min-width: 230px;
  color: #FFF;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-radius: 50px;
  font-weight: 500;
}
.more_btn.non a::after {
  content: none;
}

.more_btn a {
  background: #E60039;
}
.more_btn.cen {
  margin: 20px auto 0;
}

.corp_btn a {
  position: relative;
  padding: 18px 66px 18px 40px;
  text-align: center;
  color: #E60039;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background: #FFF;
  border: 2px solid #E60039;
  border-radius: 50px;
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 768px) {
  .corp_btn a {
    padding: 16px 74px 16px 30px;
  }
}
.corp_btn a:hover {
  opacity: 0.7;
}
.corp_btn a::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/ico/ico-external-red.svg) no-repeat 0 0/contain;
  top: calc(50% - 6px);
  right: 40px;
}

.ttl.brackets {
  margin-bottom: 60px;
  color: #003A91;
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.ttl.brackets span {
  margin-left: 15px;
  margin-right: 15px;
  color: #1A1A1A;
  font-size: clamp(2.3rem, 3vw, 3.5rem);
}

/*=============================================*/
/*  layout  Base                               */
/*=============================================*/
main {
  padding-top: 84px;
}
@media (min-width: 768px) {
  main {
    padding-top: 128px;
  }
}

/*=============================================*/
/*  layout                                     */
/*=============================================*/
/*=============================================*/
/*  header                                     */
/*=============================================*/
.header_recruit {
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 84px;
  z-index: 9999;
  background: #FFF;
}
@media (min-width: 768px) {
  .header_recruit {
    height: 128px;
  }
}

.header_recruit .ham_menu_trigger {
  position: fixed;
  top: 33px;
  right: 20px;
  width: 30px;
  height: 18px;
  z-index: 9999;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (min-width: 1300px) {
  .header_recruit .ham_menu_trigger {
    display: none;
  }
}
.header_recruit .ham_menu_trigger span {
  position: absolute;
  background: #1A1A1A;
  width: 30px;
  height: 2px;
  left: 0;
  right: 0;
  margin: auto;
}
.header_recruit .ham_menu_trigger span:nth-of-type(1) {
  top: 0;
}
.header_recruit .ham_menu_trigger span:nth-of-type(2) {
  top: 8px;
}
.header_recruit .ham_menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
.header_recruit .ham_menu_trigger.active span:nth-of-type(1) {
  top: -1px;
  -webkit-transform: translateY(9px) rotate(-315deg);
          transform: translateY(9px) rotate(-315deg);
}
.header_recruit .ham_menu_trigger.active span:nth-of-type(2) {
  opacity: 0;
}
.header_recruit .ham_menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
          transform: translateY(-9px) rotate(315deg);
}

.header_recruit .ham_nav_wrapper {
  position: absolute;
  padding: 40px 20px;
  top: 83px;
  right: 0;
  width: 52.6%;
  height: 100vh;
  overflow-y: scroll;
  background: #FFF;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(150px);
          transform: translateX(150px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 9980;
}
@media screen and (max-width: 767px) {
  .header_recruit .ham_nav_wrapper {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .header_recruit .ham_nav_wrapper {
    top: 128px;
  }
}
.header_recruit .ham_nav_wrapper.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.header_recruit .ham_main_nav {
  font-size: clamp(1.8rem, 1.6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
}
.header_recruit .ham_main_nav ul {
  margin-bottom: 40px;
}
.header_recruit .ham_main_nav ul li {
  margin-bottom: 30px;
  text-align: center;
}
.header_recruit .ham_main_nav ul li a {
  color: #1A1A1A;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-transition: all 0.9s;
  transition: all 0.9s;
}
.header_recruit .ham_main_nav ul li a:hover {
  opacity: 0.5;
}
.header_recruit .ham_main_nav .more_btn.non {
  margin-bottom: 25px;
}
.header_recruit .ham_main_nav .more_btn.non a {
  min-width: 276px;
}
.header_recruit .ham_main_nav .corp_btn a {
  min-width: 276px;
}

.header_recruit .head_wrapper {
  padding: 15px;
  height: 100%;
}
@media (min-width: 768px) {
  .header_recruit .head_wrapper {
    padding: 10px 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.header_recruit .logo {
  max-width: 164px;
  line-height: 1;
}
.header_recruit .logo img {
  font-size: 0;
}
@media (min-width: 480px) {
  .header_recruit .logo {
    max-width: 200px;
  }
}
@media (min-width: 768px) {
  .header_recruit .logo {
    margin-right: 3%;
    width: 30%;
    max-width: 250px;
  }
}
.header_recruit .logo span {
  margin-top: 5px;
  color: #FFF;
  width: 100%;
  font-size: clamp(1.2rem, 1.8vw, 1.6rem);
  font-weight: 500;
  letter-spacing: 0.25em;
  line-height: 1.8;
  text-align: center;
  background: #003A91;
  display: block;
}

.header_recruit .gnav_wrapper {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 1299px) {
  .header_recruit .gnav_wrapper {
    display: none;
  }
}
.header_recruit .gnav_wrapper ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
.header_recruit .gnav_wrapper ul li {
  position: relative;
}
.header_recruit .gnav_wrapper ul li a,
.header_recruit .gnav_wrapper ul li span {
  color: #1A1A1A;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.header_recruit .gnav_wrapper ul li a:hover,
.header_recruit .gnav_wrapper ul li span:hover {
  color: #E60039;
}
.header_recruit .gnav_wrapper ul li span {
  padding-bottom: 48px;
}
@media screen and (max-width: 1360px) {
  .header_recruit .gnav_wrapper .more_btn.non a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1360px) {
  .header_recruit .gnav_wrapper .corp_btn a {
    padding: 18px 56px 18px 30px;
    font-size: 1.6rem;
  }
}

/********************************************/
/*footer */
/********************************************/
.recruit_footer .f_recruit {
  position: relative;
  margin-bottom: 200px;
  width: 100%;
  height: 600px;
  background: url(../img/recruit/f-entry-bg.webp) no-repeat center 0/cover;
}
@media (max-width: 768px) {
  .recruit_footer .f_recruit {
    margin-bottom: 100px;
    height: 300px;
  }
}
.recruit_footer .f_recruit .f_recruit_bnr {
  position: absolute;
  margin: 0 auto;
  padding: 50px;
  width: 90%;
  max-width: 1200px;
  height: 260px;
  background: #E60039;
  left: 50%;
  bottom: -90px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media (max-width: 768px) {
  .recruit_footer .f_recruit .f_recruit_bnr {
    padding: 20px;
    height: 130px;
    bottom: -45px;
  }
}
.recruit_footer .f_recruit .f_recruit_bnr a {
  position: relative;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../img/recruit/f-entry.svg) no-repeat left 50px top/contain;
}
@media (max-width: 768px) {
  .recruit_footer .f_recruit .f_recruit_bnr a {
    background: url(../img/recruit/f-entry.svg) no-repeat left 25px top 22px/70% auto;
  }
}
.recruit_footer .f_recruit .f_recruit_bnr a p {
  color: #FFF;
  font-size: clamp(2rem, 3vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.recruit_footer .f_recruit .f_recruit_bnr a .btn_circle {
  width: 176px;
  height: 176px;
}
@media (max-width: 1300px) {
  .recruit_footer .f_recruit .f_recruit_bnr a .btn_circle {
    width: 90px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  .recruit_footer .f_recruit .f_recruit_bnr a .btn_circle {
    width: 60px;
    height: 60px;
  }
}
.recruit_footer .f_recruit .f_recruit_bnr:hover p {
  letter-spacing: 0.2em;
}
@media (any-hover: hover) {
  .recruit_footer .f_recruit .f_recruit_bnr:hover .btn_circle {
    -webkit-transform: scale(0.773);
            transform: scale(0.773);
  }
}

.recruit_footer .wrapper {
  margin: 0 auto;
  padding: 30px 20px 15px;
  width: 96%;
  max-width: 1200px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 1024px) {
  .recruit_footer .wrapper {
    padding: 80px 0;
  }
}
@media (max-width: 768px) {
  .recruit_footer .wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 60px 0;
  }
}

.recruit_footer .f_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.recruit_footer .f_top .f_info .f_logo {
  width: 262px;
}
.recruit_footer .f_top .f_info .addr {
  margin-top: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.recruit_footer .f_top .copyright {
  padding-top: 40px;
}
.recruit_footer .f_top .copyright p {
  color: #ADADAD;
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recruit_footer .f_top .copyright p {
    font-size: 1.2rem;
    text-align: center;
  }
}

.recruit_footer .f_nav ul {
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .recruit_footer .f_nav ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .recruit_footer .f_nav ul li {
    width: 46%;
  }
}
.recruit_footer .f_nav ul a {
  color: #1A1A1A;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.recruit_footer .f_nav ul a:hover {
  opacity: 0.5;
}
.recruit_footer .f_nav .corp_btn {
  text-align: right;
}
@media (max-width: 768px) {
  .recruit_footer .f_nav .corp_btn {
    text-align: center;
  }
}

/*=============================================*/
/*  info_list_block     */
/*=============================================*/
.info_list_block a {
  margin-bottom: 30px;
  color: #1A1A1A;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 50px;
}
@media (max-width: 768px) {
  .info_list_block a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.info_list_block a figure {
  width: 40%;
  max-width: 270px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .info_list_block a figure {
    margin: 0 auto;
    width: 80%;
    max-width: 540px;
  }
}
@media (max-width: 480px) {
  .info_list_block a figure {
    width: 100%;
  }
}
.info_list_block a figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .info_list_block a figure img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.info_list_block a .txt {
  width: 80%;
}
@media (max-width: 768px) {
  .info_list_block a .txt {
    width: 100%;
  }
}
.info_list_block a .txt .cat {
  margin-bottom: 20px;
}
.info_list_block a .txt .cat span {
  padding: 0 20px;
  color: #003A91;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  border: 2px solid #003A91;
  border-radius: 50px;
}
.info_list_block a .txt .sttl {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.info_list_block a .txt p {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (any-hover: hover) {
  .info_list_block a:hover figure img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

/*=============================================*/
/*  recruit_top_fv_block     */
/*=============================================*/
.recruit_top_fv_block {
  padding: 70px 0 78px;
  background: url(../img/recruit/top/fv-bg.png) no-repeat 0 0/100% auto;
}
@media (max-width: 768px) {
  .recruit_top_fv_block {
    padding: 40px 0 0;
    background: url(../img/recruit/top/fv-bg-sp.svg) no-repeat left top -30px/100% auto;
  }
}
.recruit_top_fv_block .txt_block {
  padding-bottom: 80px;
  margin-left: 11%;
}
@media (max-width: 768px) {
  .recruit_top_fv_block .txt_block {
    margin-left: 20px;
  }
}
.recruit_top_fv_block .txt_block p {
  margin-bottom: 20px;
  padding: 8px 20px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  background: #003A91;
}
@media (max-width: 768px) {
  .recruit_top_fv_block .txt_block p {
    margin-bottom: 10px;
  }
}
.recruit_top_fv_block .fv_loop_swiper .swiper-wrapper .swiper-slide img {
  border-radius: 20px;
}

.recruit_top_imgtxt_block {
  padding: 150px 0;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block {
    padding: 68px 0;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0 24px;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 22px 0;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .ttl_box {
  width: 17.5%;
  max-width: 336px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .ttl_box {
    margin-left: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: inherit;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .ttl_box .ttl {
  padding: 20px 10px;
  color: #FFF;
  font-size: clamp(4rem, 4vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  background: #003A91;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .ttl_box .ttl {
    padding: 5px 20px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img {
  position: relative;
  width: 85%;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img {
    width: 100%;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img figure {
  font-size: 0;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img figure img {
  border-radius: 50px 0 0 0;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img figure img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .en {
  position: absolute;
  bottom: -150px;
  right: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .en {
    bottom: -45px;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .en img {
  width: auto;
  height: 156px;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .en img {
    height: 48px;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox {
  width: 30%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox {
    margin: 0 auto;
    width: 100%;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: block;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a .fig img {
  border-radius: 20px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a .fig img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a .personal_info {
  position: absolute;
  width: calc(100% - 40px);
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a .personal_info .name {
  margin-bottom: 10px;
  width: 100%;
  color: #FFF;
  font-size: clamp(1.8rem, 2vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a .personal_info .job {
  width: 100%;
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-size: 1.6rem;
  font-weight: 500;
}
@media (any-hover: hover) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner .img .img_inner .imgbox a:hover .fig img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner.right {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner.right .ttl_box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner.right .img figure img {
  border-radius: 0 50px 0 0;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .recruit_top_imgtxt_block_inner.right .img figure img {
    border-radius: 0;
  }
}
.recruit_top_imgtxt_block .txt_inner {
  padding-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 80px;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .txt_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 40px 0;
  }
}
.recruit_top_imgtxt_block .txt_inner .txt_base {
  width: 60%;
  max-width: 850px;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .txt_inner .txt_base {
    width: 100%;
  }
}
.recruit_top_imgtxt_block .txt_inner .txt_base .catch {
  margin-bottom: 50px;
  font-size: clamp(2.5rem, 3.3vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .txt_inner .txt_base .catch {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .recruit_top_imgtxt_block .txt_inner .txt_base p {
    font-size: 1.6rem;
  }
}
.recruit_top_imgtxt_block .txt_inner .more_btn a {
  padding: 18px 110px 18px 60px;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}
.recruit_top_imgtxt_block .txt_inner .more_btn a span {
  font-size: 1em;
}

.recruit_top_profile_block {
  padding: 80px 0;
  background: #EDF7FD;
}
@media (max-width: 768px) {
  .recruit_top_profile_block {
    padding: 40px 0;
  }
}
.recruit_top_profile_block .profile_block {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 22px;
}
@media (max-width: 768px) {
  .recruit_top_profile_block .profile_block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.recruit_top_profile_block .profile_block .profile_box {
  padding: 50px 30px 20px;
  background: #FFF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .recruit_top_profile_block .profile_block .profile_box {
    padding: 20px;
  }
}
.recruit_top_profile_block .profile_block .profile_box .sttlbox {
  margin-bottom: 30px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 10px;
}
@media (max-width: 768px) {
  .recruit_top_profile_block .profile_block .profile_box .sttlbox {
    margin-bottom: 20px;
    gap: 0 5px;
  }
}
.recruit_top_profile_block .profile_block .profile_box .sttlbox .sttl {
  padding-top: 10px;
  font-size: clamp(1.7rem, 1.8vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.recruit_top_profile_block .profile_block .profile_box .sttlbox figure {
  width: 62px;
}
.recruit_top_profile_block .profile_block .profile_box:last-of-type .sttlbox figure {
  width: 58px;
}

.recruit_top_info_block {
  padding: 80px 0;
  background: #EDF7FD;
}
@media (max-width: 768px) {
  .recruit_top_info_block {
    padding: 40px 0;
  }
}
.recruit_top_info_block .ttl {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .recruit_top_info_block .ttl {
    margin-bottom: 60px;
  }
}
.recruit_top_info_block .info_btn {
  margin: 80px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recruit_top_info_block .info_btn .more_btn a {
  padding: 18px 110px 18px 60px;
  font-size: clamp(1.6rem, 1.8vw, 2rem);
}
.recruit_top_info_block .info_btn .more_btn a span {
  font-size: 1em;
}

/*--- page -------------------------------------------*/
/*====================================================*/
/*@Page Common*/
/*====================================================*/
.page_main_block {
  position: relative;
  height: 34.9vw;
  display: block;
}
@media (max-width: 1440px) {
  .page_main_block {
    height: 45vw;
  }
}
@media (max-width: 768px) {
  .page_main_block {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.page_main_block .h1box {
  position: absolute;
  width: 54%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 11vw;
  z-index: 2;
}
@media (max-width: 768px) {
  .page_main_block .h1box {
    position: static;
    margin-top: -20px;
    -webkit-transform: none;
            transform: none;
    width: 100%;
  }
}
.page_main_block .h1box .cat {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .page_main_block .h1box .cat {
    margin-top: 30px;
    margin-left: 20px;
  }
}
.page_main_block .h1box .cat span {
  padding: 4px 20px 7px;
  color: #003A91;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  border: 2px solid #003A91;
  border-radius: 50px;
}
.page_main_block .h1box h1 {
  padding: 5px 10px 8px 20px;
  color: #FFF;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(3rem, 3vw, 7rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  background: #003A91;
}
@media (max-width: 768px) {
  .page_main_block .h1box h1 {
    margin-right: 10%;
  }
}
.page_main_block .h1box .txt_base {
  margin-top: 50px;
  width: 68%;
  max-width: 700px;
}
@media (max-width: 1440px) {
  .page_main_block .h1box .txt_base {
    width: 60%;
  }
}
@media (max-width: 768px) {
  .page_main_block .h1box .txt_base {
    margin: 30px auto 0;
    width: calc(100% - 40px);
  }
}
.page_main_block .h1box .personal_info {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .page_main_block .h1box .personal_info {
    margin-top: 30px;
    margin-bottom: 60px;
  }
}
.page_main_block .h1box .personal_info .name {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.page_main_block .h1box .personal_info .job {
  font-size: clamp(1.4rem, 1.6vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.page_main_block .img {
  position: absolute;
  width: 50%;
  max-width: 960px;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .page_main_block .img {
    position: static;
    padding-left: 20px;
    width: 100%;
  }
}
.page_main_block .img figure {
  font-size: 0;
}
.page_main_block .img figure img {
  border-radius: 50px 0 0 50px;
  width: 100%;
  height: 42vw;
  max-height: 670px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1440px) {
  .page_main_block .img figure img {
    height: 35vw;
  }
}
@media (max-width: 1440px) {
  .page_main_block .img figure img {
    border-radius: 30px 0 0 30px;
  }
}
@media (max-width: 768px) {
  .page_main_block .img figure img {
    height: auto;
  }
}
.page_main_block .img .en {
  margin-top: 10px;
}
@media (max-width: 1440px) {
  .page_main_block.single {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .page_main_block.single {
    margin-top: 0;
  }
}
.page_main_block.single .h1box h1 {
  padding: 5px 20px 10px 20px;
  font-size: clamp(3rem, 2.6vw, 5rem);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.page_main_en_block {
  position: relative;
  height: 12.2vw;
  top: -70px;
}
@media (max-width: 1300px) {
  .page_main_en_block {
    height: 18.6vw;
  }
}
@media (max-width: 768px) {
  .page_main_en_block {
    position: static;
    margin-top: -30px;
    height: auto;
  }
}
.page_main_en_block .en {
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .page_main_en_block .en {
    position: static;
    left: auto;
    right: 0;
  }
}
.page_main_en_block .en img {
  width: auto;
  height: 100%;
}
@media (max-width: 768px) {
  .page_main_en_block .en img {
    height: 64px;
  }
}

.breadcrumb_block {
  position: absolute;
  height: 100%;
  top: 0;
  right: 40px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2;
}
@media (max-width: 768px) {
  .breadcrumb_block {
    position: static;
    padding: 0 0 20px 15px;
    top: inherit;
    height: auto;
    right: inherit;
    display: block;
  }
}
.breadcrumb_block a {
  color: #1A1A1A;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-weight: 400;
}
.breadcrumb_block a:hover {
  opacity: 0.5;
}
.breadcrumb_block .separator {
  padding: 0 0.3em;
}
.breadcrumb_block .aioseo-breadcrumbs {
  display: inline;
}
.breadcrumb_block .aioseo-breadcrumb-separator {
  padding: 0;
}

/***************************/
/** pagination */
/***************************/
.page-numbers_wrap {
  margin: 100px auto 0;
  line-height: 1;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 25px;
}
@media (max-width: 768px) {
  .page-numbers_wrap {
    margin: 40px auto 0;
  }
}

.page-numbers {
  gap: 15px;
}
.page-numbers li {
  margin: 0 !important;
}
.page-numbers li a,
.page-numbers li .current {
  width: 50px;
  height: 50px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  line-height: 1;
  background: #fff;
  border: 2px solid #003A91;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-numbers li a {
  color: #003A91;
}
.page-numbers li a:hover {
  color: #FFF;
  background: #003A91;
}
.page-numbers li .current {
  color: #FFF;
  background: #003A91;
}
.page-numbers li .prev:before,
.page-numbers li .next:before {
  content: "";
  width: 11px;
  height: 19px;
  background: url(../img/ico/ico-next.svg) no-repeat 0 0/contain;
  display: block;
  -webkit-filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(5520%) hue-rotate(173deg) brightness(96%) contrast(91%);
          filter: brightness(0) saturate(100%) invert(84%) sepia(30%) saturate(5520%) hue-rotate(173deg) brightness(96%) contrast(91%);
  z-index: 1;
  -webkit-transform: none;
          transform: none;
}
.page-numbers li .prev:before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/*====================================================*/
/*@Page main ttl*/
/*====================================================*/
/*====================================================*/
/*@Page about */
/*====================================================*/
.about_page_block {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1300px) {
  .about_page_block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.about_page_block .about_main_block .about_main_block_inner {
  margin-bottom: 150px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0 50px;
}
@media (max-width: 768px) {
  .about_page_block .about_main_block .about_main_block_inner {
    margin-bottom: 80px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
}
.about_page_block .about_main_block .about_main_block_inner figure {
  width: 45.85%;
  max-width: 500px;
}
@media (max-width: 768px) {
  .about_page_block .about_main_block .about_main_block_inner figure {
    width: 100%;
  }
}
.about_page_block .about_main_block .about_main_block_inner figure img {
  border-radius: 20px;
}
.about_page_block .about_main_block .about_main_block_inner .txt_base {
  width: 50%;
}
@media (max-width: 768px) {
  .about_page_block .about_main_block .about_main_block_inner .txt_base {
    width: 100%;
  }
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sttl {
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 2.2vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .catch {
  margin-bottom: 40px;
  font-size: clamp(1.8rem, 2vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .about_page_block .about_main_block .about_main_block_inner .txt_base .catch {
    margin-bottom: 20px;
  }
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sign {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (max-width: 768px) {
  .about_page_block .about_main_block .about_main_block_inner .txt_base .sign {
    margin-top: 20px;
  }
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sign p {
  position: relative;
  margin-bottom: 2em;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sign p:last-of-type {
  margin-bottom: 0;
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sign p::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #1A1A1A;
  bottom: 0;
  right: 0;
}
.about_page_block .about_main_block .about_main_block_inner .txt_base .sign span {
  padding-left: 10px;
  font-size: clamp(2rem, 2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.about_page_block .about_swiper_block {
  padding: 100px 0 150px;
  background: #EDF7FD;
}
@media (max-width: 1150px) {
  .about_page_block .about_swiper_block {
    padding: 10% 0 18%;
  }
}
.about_page_block .about_swiper_block .recruit_loop_swiper.swiper {
  overflow: unset;
  overflow: hidden;
}
.about_page_block .about_swiper_block .recruit_loop_swiper.swiper .swiper-wrapper .swiper-slide:nth-of-type(2n) {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}
.about_page_block .about_swiper_block .recruit_loop_swiper.swiper .swiper-wrapper .swiper-slide:nth-of-type(3) {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.about_page_block .about_swiper_block .recruit_loop_swiper.swiper .swiper-wrapper .swiper-slide:nth-of-type(4) {
  -webkit-transform: translateY(15%);
          transform: translateY(15%);
}
.about_page_block .about_swiper_block .recruit_loop_swiper.swiper .swiper-wrapper .swiper-slide img {
  border: 1px solid #003A91;
  border-radius: 20px;
}
.about_page_block .about_thinking_block {
  padding-top: 120px;
  padding-bottom: 120px;
}
@media (max-width: 1300px) {
  .about_page_block .about_thinking_block {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box {
  position: relative;
  padding: 120px 0;
  border-top: 1px solid #DDDDDD;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box {
    padding: 60px 0;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 85px;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl {
  padding: 50px 0 0 50px;
  width: 38%;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl {
    padding: 20px 0 0 0;
    width: 100%;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl span {
  position: relative;
  padding-right: 90px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #003A91;
  font-size: clamp(2rem, 2.5vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: block;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl span {
    padding-right: 50px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl span::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 2px;
  background: #003A91;
  bottom: 0.5em;
  right: 0;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .ttl span::after {
    width: 40px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base {
  width: 100%;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base p.sttl {
  margin-bottom: 40px;
  font-size: clamp(2.5rem, 3vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base p.sttl {
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    font-size: clamp(4.2vw, 2.2vw, 4rem);
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base p.ssttl {
  position: relative;
  padding-left: 1em;
  font-size: clamp(1.6rem, 2vw, 2.7rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base p.ssttl::before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  background: #003A91;
  border-radius: 50%;
  top: calc(50% - 5px);
  left: 0;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px 0;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner {
    gap: 0 15px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner .num {
  width: 130px;
  height: 130px;
  background: #FFF;
  border: 1px solid #1A1A1A;
  border-radius: 50%;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner .num {
    width: 80px;
    height: 80px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner .num span {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner .txt_inbox {
  width: calc(100% - 160px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .thinking_box_txt .txt_base.flex .txt_base_inner .txt_inbox {
    width: calc(100% - 100px);
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .en {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 156px;
  top: 120px;
  left: 0;
  z-index: -1;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .en {
    height: 78px;
    top: 60px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box .en img {
  width: auto;
  height: 100%;
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box:first-of-type {
  padding: 30px 0 120px;
  border-top: none;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box:first-of-type {
    padding: 0 0 60px;
  }
}
.about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box:first-of-type .en {
  height: 130px;
  top: 30px;
}
@media (max-width: 768px) {
  .about_page_block .about_thinking_block .about_thinking_block_inner .thinking_box:first-of-type .en {
    height: 65px;
    top: 15px;
  }
}
.about_page_block .about_numbers_block {
  padding-top: 120px;
}
@media (max-width: 1300px) {
  .about_page_block .about_numbers_block {
    padding-top: 60px;
  }
}
.about_page_block .about_numbers_block .about_numbers_block_inner {
  height: 500px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*====================================================*/
/*@Page work */
/*====================================================*/
.work_page_block {
  padding-top: 150px;
}
@media (max-width: 1300px) {
  .work_page_block {
    padding-top: 80px;
  }
}
.work_page_block .work_main_block {
  padding-bottom: 150px;
}
@media (max-width: 1300px) {
  .work_page_block .work_main_block {
    padding-bottom: 80px;
  }
}
.work_page_block .work_main_block .ttl {
  text-align: left;
}
.work_page_block .work_main_block .catch {
  margin-bottom: 70px;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .work_page_block .work_main_block .catch {
    margin-bottom: 35px;
    letter-spacing: 0;
  }
}
.work_page_block .work_service_list_block {
  padding: 120px 0;
  background: #EDF7FD;
}
@media (max-width: 1300px) {
  .work_page_block .work_service_list_block {
    padding: 60px 0;
  }
}
.work_page_block .work_service_list_block .service_block {
  padding-bottom: 0;
}
.work_page_block .work_service_list_block .service_block .service_box .txt_box {
  padding-right: 0;
}
.work_page_block .work_service_list_block .service_block .service_box .txt_box::after {
  content: none;
}
.work_page_block .work_service_list_block .service_block .service_box .txt_box .txt_base {
  color: #1A1A1A;
}

/*====================================================*/
/*@Page people */
/*====================================================*/
.people_page_block {
  padding-top: 150px;
  padding-bottom: 150px;
  /***************************/
  /** list page */
  /***************************/
  /***************************/
  /** single page */
  /***************************/
}
@media (max-width: 1300px) {
  .people_page_block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.people_page_block .txt_base {
  width: 70%;
  max-width: 660px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-line-pack: justify;
      align-content: space-between;
}
@media (max-width: 768px) {
  .people_page_block .txt_base {
    width: 100%;
    max-width: inherit;
  }
}
.people_page_block .txt_base .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.people_page_block .txt_base .txt .sttl {
  padding-left: 10px;
  padding-right: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  line-height: 1.4;
  background: #003A91;
}
@media (max-width: 768px) {
  .people_page_block .txt_base .txt .sttl {
    margin-bottom: 20px;
    line-height: 1.2;
  }
}
.people_page_block .txt_base .txt p {
  margin-top: 30px;
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .people_page_block .txt_base .txt p {
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
@media (max-width: 768px) {
  .people_page_block .txt_base .personal_info {
    margin-top: 30px;
  }
}
.people_page_block .txt_base .personal_info .name {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.people_page_block .txt_base .personal_info .job {
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.people_page_block .people_list_block .post_box {
  padding: 100px 0;
  border-bottom: 1px solid #DDDDDD;
}
@media (max-width: 768px) {
  .people_page_block .people_list_block .post_box {
    padding: 50px 0;
  }
}
.people_page_block .people_list_block .post_box a {
  color: #1A1A1A;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 60px;
}
@media (max-width: 768px) {
  .people_page_block .people_list_block .post_box a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
}
.people_page_block .people_list_block .post_box a figure {
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .people_page_block .people_list_block .post_box a figure {
    width: 100%;
    max-width: inherit;
  }
}
.people_page_block .people_list_block .post_box a figure img {
  min-height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (any-hover: hover) {
  .people_page_block .people_list_block .post_box a figure img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media (any-hover: hover) {
  .people_page_block .people_list_block .post_box a:hover figure img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.people_page_block .people_post_block .figimgbox {
  margin-bottom: 80px;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 50px;
}
@media (max-width: 768px) {
  .people_page_block .people_post_block .figimgbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px 0;
  }
}
.people_page_block .people_post_block .figimgbox:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .people_page_block .people_post_block .figimgbox:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.people_page_block .people_post_block .figimgbox figure {
  margin: 0 auto;
  max-width: 530px;
}
.people_page_block .people_post_block .figimgbox .txt_base.col1 {
  width: 100%;
  max-width: inherit;
}
.people_page_block .people_post_block .figimgbox .txt_base .sttl {
  margin-bottom: 30px;
  font-size: clamp(2rem, 2.2vw, 2.5rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.people_page_block .people_faq_block {
  margin-top: 20px;
  padding-top: 100px;
  padding-bottom: 120px;
  border-top: 1px solid #DDDDDD;
}
@media (max-width: 768px) {
  .people_page_block .people_faq_block {
    padding-top: 50px;
    padding-bottom: 60px;
  }
}
.people_page_block .people_faq_block .faqbox {
  margin-bottom: 50px;
}
.people_page_block .people_faq_block .faqbox .qbox {
  position: relative;
  margin-bottom: 30px;
  padding-left: 40px;
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.people_page_block .people_faq_block .faqbox .qbox::before {
  position: absolute;
  content: "Q";
  color: #003A91;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 1;
  top: -2px;
  left: 0;
}
.people_page_block .people_faq_block .faqbox .abox {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .people_page_block .people_faq_block .faqbox .abox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.people_page_block .people_faq_block .faqbox .abox .txt {
  padding: 30px 40px;
  width: calc(100% - 145px);
  border: 5px solid #003A91;
  border-radius: 20px 20px 0 20px;
}
@media (max-width: 768px) {
  .people_page_block .people_faq_block .faqbox .abox .txt {
    padding: 15px 20px;
    width: 100%;
  }
}
.people_page_block .people_faq_block .faqbox .abox .txt p {
  position: relative;
  padding-left: 47px;
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 2;
}
.people_page_block .people_faq_block .faqbox .abox .txt p::before {
  position: absolute;
  content: "A";
  color: #E60039;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3.5rem;
  line-height: 1;
  top: 2px;
  left: 0;
}
.people_page_block .people_faq_block .faqbox .abox figure {
  width: 115px;
  height: 115px;
}
@media (max-width: 768px) {
  .people_page_block .people_faq_block .faqbox .abox figure {
    width: 80px;
    height: 80px;
  }
}
.people_page_block .people_faq_block .faqbox .abox figure img {
  overflow: hidden;
  border-radius: 50%;
}
.people_page_block .people_schedule_block {
  background: #EDF7FD;
}
.people_page_block .people_schedule_block .people_schedule_block_inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 100px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner {
    padding-bottom: 20px;
    display: block;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .ttl {
  padding-top: 80px;
  color: #003A91;
  font-size: clamp(2rem, 2.2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -o-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-font-feature-settings: initial;
          font-feature-settings: initial;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .ttl {
    padding-top: 60px;
    padding-bottom: 50px;
    -webkit-writing-mode: horizontal-tb;
    -ms-writing-mode: horizontal-tb;
    -o-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .ttl span {
  padding-top: 15px;
  padding-bottom: 15px;
  color: #1A1A1A;
  font-size: clamp(2.3rem, 2.5vw, 4rem);
  text-orientation: upright;
  display: inline-block;
  -webkit-transform: translateX(-0.1em);
          transform: translateX(-0.1em);
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .ttl span {
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox {
    width: 100%;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dt {
  width: 110px;
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dt {
    font-size: 1.6rem;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd {
  position: relative;
  width: calc(100% - 110px);
  padding-left: 70px;
  padding-bottom: 70px;
  text-align: left;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd::before {
  position: absolute;
  content: "";
  width: 2px;
  height: calc(100% - 1rem);
  background: #003A91;
  top: 1rem;
  left: 0;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd::after {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  top: -10px;
  left: -29px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd::after {
    width: 30px;
    height: 30px;
    top: -5px;
    left: -14px;
  }
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd {
    width: 100%;
    padding-left: 40px;
    padding-bottom: 40px;
    font-size: 1.5rem;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0630::after {
  background: url(../img/ico/ico-clock-0630.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0745::after {
  background: url(../img/ico/ico-clock-0745.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0750::after {
  background: url(../img/ico/ico-clock-0750.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0800::after {
  background: url(../img/ico/ico-clock-0800.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0815::after {
  background: url(../img/ico/ico-clock-0815.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0830::after {
  background: url(../img/ico/ico-clock-0830.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0900::after {
  background: url(../img/ico/ico-clock-0900.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t0930::after {
  background: url(../img/ico/ico-clock-0930.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1000::after {
  background: url(../img/ico/ico-clock-1000.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1030::after {
  background: url(../img/ico/ico-clock-1030.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1200::after {
  background: url(../img/ico/ico-clock-1200.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1300::after {
  background: url(../img/ico/ico-clock-1300.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1400::after {
  background: url(../img/ico/ico-clock-1400.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1500::after {
  background: url(../img/ico/ico-clock-1500.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1600::after {
  background: url(../img/ico/ico-clock-1600.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1700::after {
  background: url(../img/ico/ico-clock-1700.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox dl dd.t1800::after {
  background: url(../img/ico/ico-clock-1800.svg) no-repeat 0 0/contain;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.first {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.first {
    padding-top: 0;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.last dd {
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.last dd {
    padding-bottom: inherit;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.last dd::before {
  top: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box01 dl.last dd::before {
    height: 100%;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dt {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dt {
    padding-top: 40px;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dd {
  padding-top: 120px;
}
@media (max-width: 768px) {
  .people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dd {
    padding-top: 40px;
  }
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dd::before {
  top: 0;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.first dd::after {
  top: 35px;
}
.people_page_block .people_schedule_block .people_schedule_block_inner .schedulebox.box02 dl.last dd::before {
  content: none;
}
.people_page_block .people_other_block {
  padding: 150px 0 50px;
}
@media (max-width: 768px) {
  .people_page_block .people_other_block {
    padding: 80px 0 40px;
  }
}
.people_page_block .people_other_block .people_other_block_inner {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 30px;
}
@media (max-width: 768px) {
  .people_page_block .people_other_block .people_other_block_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px 0;
  }
}
.people_page_block .people_other_block .people_other_block_inner .imgbox {
  width: 30%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .people_page_block .people_other_block .people_other_block_inner .imgbox {
    margin: 0 auto;
    width: 100%;
  }
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a {
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 50%;
  left: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a .fig img {
  border-radius: 20px;
  overflow: hidden;
}
@media (any-hover: hover) {
  .people_page_block .people_other_block .people_other_block_inner .imgbox a .fig img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a .personal_info {
  position: absolute;
  left: 40px;
  bottom: 40px;
  z-index: 2;
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a .personal_info .name {
  margin-bottom: 10px;
  color: #FFF;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.people_page_block .people_other_block .people_other_block_inner .imgbox a .personal_info .job {
  color: #FFF;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media (any-hover: hover) {
  .people_page_block .people_other_block .people_other_block_inner .imgbox a:hover .fig img {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

/*====================================================*/
/*@Page company */
/*====================================================*/
.company_page_block {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1300px) {
  .company_page_block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.company_page_block .company_information_block dl dd a {
  color: #1A1A1A;
}
.company_page_block .company_information_block dl dd a:hover {
  color: #003A91;
}
.company_page_block .company_outline_block {
  margin: 150px auto;
  padding: 80px;
  background: #EDF7FD;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block {
    margin: 80px auto;
    padding: 40px 20px 40px 30px;
  }
}
.company_page_block .company_outline_block_inner dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block_inner dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.company_page_block .company_outline_block_inner dl dt {
  width: 150px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block_inner dl dt {
    padding-left: 40px;
    width: 46%;
    max-width: 140px;
    font-size: 1.6rem;
  }
}
.company_page_block .company_outline_block_inner dl dd.date {
  margin-right: 50px;
  width: 150px;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: right;
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block_inner dl dd.date {
    margin-right: 0;
    width: 40%;
    font-size: 1.6rem;
    text-align: left;
  }
}
.company_page_block .company_outline_block_inner dl dd.txt {
  position: relative;
  width: calc(100% - 300px);
  padding-left: 60px;
  padding-bottom: 40px;
  text-align: left;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.company_page_block .company_outline_block_inner dl dd.txt::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  background: #003A91;
  top: 1rem;
  left: 0;
}
.company_page_block .company_outline_block_inner dl dd.txt::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  background: #003A91;
  border-radius: 50%;
  top: 6px;
  left: -9px;
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block_inner dl dd.txt {
    width: 100%;
    padding-left: 40px;
    padding-bottom: 20px;
    font-size: 1.5rem;
  }
  .company_page_block .company_outline_block_inner dl dd.txt::before {
    top: 0;
    height: 120%;
  }
  .company_page_block .company_outline_block_inner dl dd.txt::after {
    top: -20px;
  }
}
@media (max-width: 768px) {
  .company_page_block .company_outline_block_inner dl:last-of-type dd.txt::before {
    height: 100%;
  }
}

/*====================================================*/
/*@Page info */
/*====================================================*/
.info_page_block {
  padding-top: 150px;
  padding-bottom: 150px;
  /***************************/
  /** list page */
  /***************************/
  /***************************/
  /** single page */
  /***************************/
}
@media (max-width: 1300px) {
  .info_page_block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.info_page_block .info_list_block {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .info_page_block .info_list_block {
    margin-bottom: 50px;
  }
}
.info_page_block .info_list_block a {
  margin: 0;
  padding: 40px 0;
  border-bottom: 1px solid #DDDDDD;
}
.info_page_block .info_app_detail_block dl {
  padding: 30px 0;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid #DDDDDD;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 0 20px;
}
.info_page_block .info_app_detail_block dl:first-of-type {
  border-top: 1px solid #DDDDDD;
}
.info_page_block .info_app_detail_block dl dt {
  width: 26%;
  max-width: 278px;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 700;
}
.info_page_block .info_app_detail_block dl dd {
  width: 72%;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}
.info_page_block .info_app_detail_block dl dd p.mb {
  margin-bottom: 1em;
}
.info_page_block .info_app_detail_block dl dd ul {
  margin-left: 1em;
}
.info_page_block .info_app_detail_block dl dd ul li {
  list-style-type: disc;
}
.info_page_block .info_app_detail_block dl dd ul li::marker {
  font-size: 0.7em;
}
.info_page_block .info_app_entry_block {
  padding-top: 40px;
  padding-bottom: 60px;
}
.info_page_block .info_app_entry_block .info_app_entry_block_inner {
  position: relative;
  text-align: center;
}
.info_page_block .info_app_entry_block .en {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
  color: #EDF7FD;
  font-size: clamp(14rem, 26vw, 28rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
@media (max-width: 480px) {
  .info_page_block .info_app_entry_block .en {
    font-size: 12rem;
    -webkit-transform: translateX(-6%);
            transform: translateX(-6%);
  }
}
@media (max-width: 375px) {
  .info_page_block .info_app_entry_block .en {
    -webkit-transform: translateX(-10%);
            transform: translateX(-10%);
  }
}
.info_page_block .info_app_entry_block .more_btn {
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.info_page_block .info_app_entry_block .more_btn a {
  padding: 26px 88px 26px 36px;
  color: #FFF;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  min-width: 550px;
  min-height: 105px;
  border-radius: 55px;
}
@media (max-width: 768px) {
  .info_page_block .info_app_entry_block .more_btn a {
    padding: 16px 88px 16px 36px;
    min-width: 380px;
    min-height: inherit;
  }
}
@media (max-width: 480px) {
  .info_page_block .info_app_entry_block .more_btn a {
    padding: 10px 68px 10px 36px;
    min-width: 320px;
  }
}
.info_page_block .info_other_block {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #EDF7FD;
}
.info_page_block .info_other_block .info_list_block a {
  margin-bottom: 30px;
  padding: 0;
  border-bottom: none;
}

/*====================================================*/
/*@Page entry */
/*====================================================*/
.entry_page_block {
  padding-top: 150px;
  padding-bottom: 150px;
}
@media (max-width: 1300px) {
  .entry_page_block {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .entry_page_block {
    padding-top: 40px;
  }
}
.entry_page_block .page_main_ttl_block {
  margin-bottom: 150px;
  text-align: center;
}
@media (max-width: 1300px) {
  .entry_page_block .page_main_ttl_block {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .entry_page_block .page_main_ttl_block {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .entry_page_block .page_main_ttl_block .txt_base p {
    text-align: left;
  }
}
.entry_page_block .form_block dl dd:first-of-type span.required {
  color: #E60039;
  border: 1px solid #E60039;
}
.entry_page_block .form_block input[type=text],
.entry_page_block .form_block input[type=email],
.entry_page_block .form_block textarea,
.entry_page_block .form_block select {
  background: #EDF7FD;
}
.entry_page_block .form_block input[name=your_addr] {
  margin-top: 20px;
}
.entry_page_block .form_block .mwform-checkbox-field label input[type=checkbox] {
  color: #003A91;
  background: #EDF7FD;
}
.entry_page_block .form_block .p-country-name {
  display: none;
}
.entry_page_block .form_block .submit--container .submit {
  background: #E60039;
}
.entry_page_block .form_block .submit--container .back_btn .back {
  background: #E60039;
}