@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* 大枠 */
html,
body {
  height: 100%;
}

body {
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow-x: hidden;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}
body #wrapper {
  height: auto;
}

#wrapper {
  width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

#screen {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.94);
  z-index: 200;
}

@media print {
  html,
  html body {
    overflow: visible !important;
  }
}
/* アクセシビリティ */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-box-shadow: #000 0 0 0;
          box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}

img,
x:-moz-any-link,
x:default {
  box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {
  display: inline-block;
}
a:link, a:visited, a:active {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover {
    color: inherit;
    opacity: 0.7;
    text-decoration: none !important;
  }
}

.container {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.garamond {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
}

.f-inter {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-mincho {
  font-family: "Zen Old Mincho", serif;
  font-style: normal;
}

.mb24 {
  margin-bottom: 32px;
}
@media screen and (min-width: 768px) {
  .mb24 {
    margin-bottom: 24px;
  }
}

@media screen and (min-width: 768px) {
  .mb54 {
    margin-bottom: 54px;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #site_title {
    margin-top: -10px;
  }
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  header {
    top: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 74px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .header_inner {
  width: 95%;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 10px;
  z-index: 99999;
  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;
  padding: 0 71px 0 13px;
}
@media screen and (min-width: 768px) {
  header .header_inner {
    top: 0;
    height: 4.625rem;
    padding: 0 clamp(1rem, 2vw, 1.375rem) 0 clamp(1rem, 2vw, 2.25rem);
    z-index: 999;
  }
}
@media screen and (min-width: 768px) {
  header .container {
    max-width: 95%;
  }
}
@media screen and (min-width: 768px) {
  header .language-btn-sp {
    display: none;
  }
}
header .language-btn {
  max-width: 22px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  header .language-btn {
    max-width: 24px;
  }
}

.menu {
  --menu-width:52px;
  --menu-height:30px;
  --menu-bg-color:#fff;
  --menu-bar-color:#333333;
  --menu-bar-width:24px;
  --menu-bar-height:1px;
  --menu-bar-gap:5px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  background: var(--menu-bg-color);
  border: 1px solid #CFDADF;
  border-radius: 6px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2000;
}
.menu .icon {
  display: block;
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  top: 60%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.menu .icon::before {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  display: none;
}
.menu .icon.active span:before {
  content: "CLOSE";
  color: var(--menu-bar-color);
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -70%);
          transform: translate(-50%, -70%);
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

/* SP　　グローバルナビゲーション */
.gnav_sp {
  display: block;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  max-height: 100vh;
  margin: 0;
  padding: 82px 20px;
  background-color: rgba(255, 255, 255, 0.94);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .gnav_sp {
    display: none;
  }
}
.gnav_sp.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.gnav_sp .gnav_sp_inner_block .gnav_sp_ttl {
  padding: 16px 0px 16px;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #9ACBF3;
}
.gnav_sp .gnav_sp_inner_block .gnav_sp_ttl::before {
  content: "";
  position: absolute;
  background: url(../img/arrow_circle_blue.svg) no-repeat center center/contain;
  width: 20px;
  height: 20px;
  top: 50%;
  right: 0px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.gnav_sp .gnav_sp_inner_block .gnav_sp_ttl.open::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.gnav_sp .gnav_sp_inner_block .gnav_sp_ttl.close {
  border-bottom: none;
}
.gnav_sp .gnav_sp_inner_block .gnav_sp_ttl.close::before {
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
}
.gnav_sp .gnav_sp_inner .gnav_sp_list_wrap {
  display: none;
  padding: 0 20px;
  background-color: #D4E6F1;
  border-radius: 10px;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list {
  padding: 20px 0;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list:not(:last-child) {
  border-bottom: 1px solid #9ACBF3;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list_ttl {
  font-weight: 600;
  color: #1184D2;
  margin-bottom: 10px;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list_item {
  font-size: 13px;
  font-weight: 600;
  padding-left: 18px;
  position: relative;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: #1184D2;
}
.gnav_sp .gnav_sp_inner .gnav_sp_list_sub_item {
  font-size: 13px;
  font-weight: 400;
  padding-left: 18px;
}
.gnav_sp .gnav_sp_inner_list {
  margin-top: 20px;
}
.gnav_sp .gnav_sp_inner_list li a {
  font-size: 13px;
  margin-bottom: 16px;
}

/* SP　　言語選択ナビゲーション */
.gnav_language_sp {
  display: block;
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  height: 100vh;
  margin: 0;
  padding: 92px 20px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (min-width: 768px) {
  .gnav_language_sp {
    display: none;
  }
}
.gnav_language_sp.open {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* PC　　グローバルナビゲーション */
.gnav_pc {
  display: none;
  margin: 0;
  z-index: 1000;
  overflow: auto;
  background: none;
  padding-top: 0;
  position: relative;
  overflow: hidden;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: clamp(0.5rem, 1.5vw, 0.75rem);
  width: calc(100% - min(290px, 25%));
  margin: 0 0 0 auto;
}
@media screen and (min-width: 768px) {
  .gnav_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.gnav_pc .gnav_inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      gap: clamp(0.5rem, 1.5vw, 0.625rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gnav_pc .gnav_inner > li {
  width: 100%;
  font-size: clamp(0.75rem, 1.5vw, 0.875rem);
  cursor: pointer;
  width: auto;
  font-weight: 600;
  white-space: nowrap;
}
.gnav_pc .gnav_inner > li a {
  display: block;
  text-decoration: none;
}
.gnav_pc .gnav_inner-btn {
  display: block;
}
@media screen and (min-width: 768px) {
  .gnav_pc .gnav_inner-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(0.5rem, 1.5vw, 0.75rem);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.gnav_pc .gnav_inner-btn > li {
  width: 100%;
  max-width: 100%;
  height: auto;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  .gnav_pc .gnav_inner-btn > li {
    width: auto;
  }
}
.gnav_pc .gnav_inner-btn > li a {
    font-weight: 700;
    width: clamp(7rem, 12vw, 8.75rem);
    height: clamp(2rem, 4vw, 2.5rem);
    line-height: clamp(2rem, 4vw, 2.25rem);
    font-size: clamp(0.75rem, 1.5vw, 0.875rem);
    text-align: center;
}

.gnav_megamenu {
  position: absolute;
  top: 85px;
  left: 0;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 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;
}
.gnav_megamenu .megamenu_ttl em{
  color: #1184d2;
  font-size: 40px;
  line-height: 1.2;
  font-weight: normal;
  font-style: normal;
  font-family: "EB Garamond", serif;
  display: block;
  padding-right: 10px;
}
.gnav_megamenu .megamenu-list-wrap {
  width: 70%;
  background-color: #D4E6F1;
  border-radius: 10px;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gnav_megamenu .megamenu-list {
  width: 33%;
}
.gnav_megamenu .megamenu-cont {
  width: 50%;
}
.gnav_megamenu .megamenu-cont p:last-child{
  margin-bottom: 0;
}
.gnav_megamenu .megamenu-list-ttl {
  font-weight: 600;
  color: #1184D2;
  padding-left: 24px;
  position: relative;
  margin-bottom: 15px;
}
.gnav_megamenu .megamenu-list-ttl::before {
  content: "";
  position: absolute;
  background: url(../img/arrow_circle_blue.svg) no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
}
.gnav_megamenu .megamenu-list-item {
  font-size: 14px;
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}
.gnav_megamenu .megamenu-list-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: #1184D2;
}
.gnav_megamenu .megamenu-list-sub {
  font-size: 14px;
  font-weight: 400;
  padding-left: 24px;
}
.gnav_megamenu.mega_language {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 40px;
}

.recruit-btn a {
  background: #fff;
  border: 1px solid #CFDADF;
  border-radius: 6px;
}

.inquiry-btn a {
  background: #003A91;
  border: 1px solid #003A91;
  border-radius: 6px;
  color: #fff;
}

/* ▼▼▼ language-list
====================================================== */
.language-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .language-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 120px;
    padding: 2px 0;
  }
}
.language-list-item {
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding-bottom: 16px;
  color: #333333;
  position: relative;
}
.language-list-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  border-bottom: 1px solid #9ACBF3;
}
@media screen and (min-width: 768px) {
  .language-list-item {
    padding-bottom: 0;
    line-height: 1.7em;
  }
  .language-list-item:not(:last-child)::before {
    content: "";
    position: absolute;
    right: -60px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0;
    height: 40px;
    border-left: 1px solid #CFDADF;
    border-bottom: none;
  }
  .language-list-item::after {
    display: none;
  }
}
.language-list-item a {
  color: #333333;
}

/* common
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow-x: hidden;
  overflow-y: visible;
}

.bg_lightblue {
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.85)), to(rgba(236, 240, 242, 0.85)));
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), rgba(236, 240, 242, 0.85));
  position: relative;
}
.bg_lightblue::before {
  content: "";
  position: absolute;
  background: url(../img/bg_noise.png) repeat center center/120px 120px;
  opacity: 0.1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.bg_lightblue::after {
  content: "";
  position: absolute;
  background: url(../img/bg_dots.webp) no-repeat center center/contain;
  opacity: 0.35;
  top: 0;
  left: 0;
  aspect-ratio: 868/753;
  width: 60%;
  z-index: 1;
}

.bg_blue {
  background: -webkit-gradient(linear, left top, right top, from(#22B2E2), color-stop(#0782C3), color-stop(#3B94D9), to(#79BCEF));
  background: linear-gradient(90deg, #22B2E2, #0782C3, #3B94D9, #79BCEF);
}
.bg_blue::after {
  content: "";
  position: absolute;
  background: url(../img/bg_noise.png) repeat center center/120px 120px;
  opacity: 0.35;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.more-btn {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff !important;
  border-bottom: 1px solid #fff;
  z-index: 10;
}
.more-btn:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .more-btn span {
    display: block;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
  }
}
@media screen and (min-width: 768px) {
  .more-btn:hover span {
    text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  }
}
.more-btn::before, .more-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.more-btn::before {
  width: 44px;
  height: 44px;
  background-color: #fff;
  opacity: 0.4;
  border-radius: 50%;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .more-btn::before {
    width: 62px;
    height: 62px;
    right: -56px;
  }
  .more-btn.mini::before {
    width: 44px;
    height: 44px;
    right: -38px;
  }
}
.more-btn::after {
  background: url(../img/arrow_right_wh.svg) no-repeat center center/contain;
  width: 14px;
  height: 5px;
  top: 50%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .more-btn::after {
    right: -31px;
  }
  .more-btn.mini::after {
    right: -24px;
  }
}
.more-btn.more-btn-bl {
  color: #003A91 !important;
  border-bottom: 1px solid #003A91;
}
.more-btn.more-btn-bl::before {
  background-color: #9ACBF3;
}
.more-btn.more-btn-bl::after {
  background: url(../img/arrow_right_bl.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .more-btn.more-btn-bl span {
    text-shadow: 0 -1.5em 0 #003A91, 0 0 0 #003A91;
  }
}
@media screen and (min-width: 768px) {
  .more-btn.more-btn-bl:hover span {
    text-shadow: 0 0 0 #003A91, 0 1.5em 0 #003A91;
  }
}
@media screen and (min-width: 768px) {
  .more-btn:hover::before {
    right: -66px;
  }
  .more-btn:hover::after {
    right: -41px;
  }
  .more-btn.mini:hover::before {
    right: -48px;
  }
  .more-btn.mini:hover::after {
    right: -33px;
  }
}

@media screen and (min-width: 768px) {
  .text_rotate {
    font-size: 20px;
    overflow: hidden; /* 1つ目の影を隠す */
    color: transparent; /* テキスト本体は透明にする */
    text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
  }
  .text_rotate:hover {
    text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
  }
}

/*--- フェードインアニメーション ---*/
.fade_up {
  opacity: 0;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.5s;
  transition: opacity 0.35s, -webkit-transform 0.5s;
  transition: opacity 0.35s, transform 0.5s;
  transition: opacity 0.35s, transform 0.5s, -webkit-transform 0.5s;
}
.fade_up.inview {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition-delay: 0.35s;
          transition-delay: 0.35s;
}

/* 同階層の要素をタイミングをずらしてフェードイン */
.fade_up_delay.inview {
  -webkit-transition-delay: 0.85s;
          transition-delay: 0.85s;
}

.lower-bg{
  padding: 70px 0 20px;
  background: rgba(235, 238, 240,.6);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .lower-bg{
    padding: 40px 0 20px;
  }
}
.lower-ttl-cont{
  color: #003A91;
  font-size: 16px;
  line-height: 1.33;
  font-weight: 400;
  background: url(../img/lower-ttl-pc.jpg) center / cover no-repeat;
  padding-top: 222px;
  height: 370px;
}
.lower-ttl-cont strong{
  font-size: 75px;
  line-height: 1.1;
  display: block;
}
.lower-ttl-cont strong.zen-mincho{
  font-size: 58px;
  font-weight: 500;
}
.lower-ttl-cont span{
  font-weight: 400;
}
.lower-ttl-cont span.garamond{
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .lower-ttl-cont{
    font-size: 14px;
    line-height: 1.66;
    background: url(../img/lower-ttl-sp.jpg) center / cover no-repeat;
    padding-top: 120px;
    height: 243px;
  }
  .lower-ttl-cont strong{
    font-size: 42px;
  }
  .lower-ttl-cont strong.zen-mincho{
    font-size: 34px;
  }
  .lower-ttl-cont span{
    font-weight: 500;
  }
  .lower-ttl-cont span.garamond{
    font-size: 20px;
  }
}

/* color */
.f-blue,a.f-blue{ color: #003A91;}
.f-white,a.f-white{ color: #fff;}
.bg-white{ background: #fff;}

/* t-ind */
.t-ind{ padding-left: 1em; text-indent: -1em;}
.t-ind12{ padding-left: 1.2em; text-indent: -1.2em;}

/* t-center */
.t-center{ text-align: center;}
.t-left{ text-align: left;}
.t-right{ text-align: right;}
@media screen and (max-width: 767px) {
	.t-center-sp{ text-align: center!important;}
	.t-left-sp{ text-align: left!important;}
	.t-right-sp{ text-align: right!important;}
}

.letter02{ letter-spacing: .2em;}

.underline{ text-decoration: underline!important;}
.underline:hover{ text-decoration: none!important;}

/* none */
@media screen and (min-width: 768px) { .sp{ display:none!important;}}
@media screen and (max-width: 767px) { .pc{ display:none!important;}}

/* inblock */
.inblock{ display:inline-block;}


.pager{
  display: flex;
  justify-content: center;
  align-items: center;
}
.pager .pager_item{
  display: inline-block;
  color: #003A91;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
}
.pager .pager_item:hover{
  opacity: .5;
}
.pager .pager_item.active{
  color: #fff;
  background: #003A91;
}
.pager .pager_item.prev{
  margin-right: .5em;
  background: #9ACBF3;
}
.pager .pager_item.prev img{
  width: 20px;
  margin-bottom: 3px;
  vertical-align: middle;
  transform: scale(-1, 1);
}
.pager .pager_item.next{
  margin-left: .5em;
  background: #9ACBF3;
}
.pager .pager_item.next img{
  width: 20px;
  margin-bottom: 3px;
  vertical-align: middle;
}

.pnav{
  text-align: right;
  font-size: 13px;
}
.pnav a:after{
  display: inline-block;
  vertical-align: top;
  content: "ー";
  color: #9ACBF3;
  margin: 0 1em;
}
.pnav span{
  display: inline-block;
  vertical-align: top;
}

/* btn */
.back-btn {
  position: relative;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #003A91 !important;
  border-bottom: 1px solid #003A91;
  z-index: 10;
}
.back-btn:hover {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .back-btn span {
    display: block;
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 #003A91, 0 0 0 #003A91;
    -webkit-transition: text-shadow 0.3s;
    transition: text-shadow 0.3s;
    position: relative;
    z-index: 11;
  }
}
@media screen and (min-width: 768px) {
  .back-btn:hover span {
    text-shadow: 0 0 0 #003A91, 0 1.5em 0 #003A91;
  }
}
.back-btn::before, .back-btn::after {
  content: "";
  position: absolute;
  z-index: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.back-btn::before {
  width: 44px;
  height: 44px;
  background-color: #9ACBF3;
  border-radius: 50%;
  top: 50%;
  left: -42px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .back-btn::before {
    width: 62px;
    height: 62px;
    left: -56px;
  }
}
.back-btn::after {
  background: url(../img/arrow_right_bl.svg) no-repeat center center/contain;
  width: 14px;
  height: 5px;
  top: 50%;
  left: -27px;
  -webkit-transform: translateY(-50%) scale(-1, 1);
          transform: translateY(-50%) scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .back-btn::after {
    left: -31px;
  }
}
@media screen and (min-width: 768px) {
  .back-btn:hover::before {
    left: -66px;
  }
  .back-btn:hover::after {
    left: -41px;
  }
}

.btn1{
  line-height: 1.5;
  display: inline-block;
  padding: 13px 65px 13px 32px;
  position: relative;
  background: #fff;
  border-radius: 6px;
}
.btn1:after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 32px;
  bottom: 0;
  margin: auto 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url(../img/arrow_right_bl.svg) center no-repeat #D4E6F1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.btn1:hover{
  opacity: 1;
}
.btn1:hover:after{
  right: 22px;
}
@media screen and (max-width: 767px) {
  .btn1{
    padding: 10px 55px 10px 20px;
  }
  .btn1:after,.btn1:hover:after{
    right: 20px;
  }
}

.bd-top{
  border-top: 4px solid #9ACBF3;
  position: relative;
  padding-top: 25px;
}
.bd-top:before{
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 12.833%;
  height: 4px;
  background: #003A91;
}
@media screen and (max-width: 767px) {
  .bd-top{
    border-top: 3px solid #9ACBF3;
    padding-top: 15px;
  }
  .bd-top:before{
    top: -3px;
    height: 3px;
  }
}

.pdf{
  color: #003A91;
  display: inline-block;
  min-height: 25px;
  background: url(../img/icon_pdf.svg) left top .2em / 20px auto no-repeat;
  padding-left: 28px;
  text-decoration: underline;
}









/* ▼▼▼ other
======================================================*/
.other {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.other .other_inner {
  width: 100%;
  height: 250px;
  padding: 10% 20px 0px;
}
@media screen and (min-width: 768px) {
  .other .other_inner {
    width: 50%;
    height: 455px;
    padding: 10% 53px 0px;
  }
}
.other .other_inner.recruit_area {
  background: url(../img/top/bg_recruit.webp) no-repeat center center/cover;
}
.other .other_inner.company_area {
  background: url(../img/top/bg_company.webp) no-repeat center center/cover;
}
.other .other_inner_txt {
  color: #fff;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .other .other_inner_txt {
    margin-bottom: 48px;
  }
}
.other .other_inner_txt .other_title {
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
  z-index: 10;
  display: block;
}
.other .other_inner_txt .other_title .ttl_en {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px;
  overflow: hidden;
  display: block;
}
@media screen and (min-width: 768px) {
  .other .other_inner_txt .other_title .ttl_en {
    font-size: 65px;
  }
}
.other .other_inner_txt .other_title .ttl_ja {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  padding-left: 8px;
}
.other .other_inner_btn {
  text-align: right;
  padding-right: 42px;
}
@media screen and (min-width: 768px) {
  .other .other_inner_btn {
    padding-right: 62px;
  }
}

.ttl1{
  color: #003A91;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.5;
}
.ttl2{
  color: #003A91;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .ttl1{
    font-size: 26px;
  }
  .ttl2{
    font-size: 21px;
  }
}

table.tb1{
  width: 100%;
}
table.tb1 th,table.tb1 td{
  line-height: 1.75;
  padding: 15px 0 15px 20px;
  border-bottom: 1px solid #9ACBF3;
}
table.tb1 th{
  font-weight: 400;
  width: 180px;
  position: relative;
}
table.tb1.th240 th{
  width: 240px;
}
table.tb1 th:before,table.tb1 tr:last-child th:after{
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 180px;
  height: 1px;
  background: #003A91;
}
table.tb1.th240 th:before,table.tb1.th240 tr:last-child th:after{
  width: 240px;
}
table.tb1 th:before{
  top: -1px;
}
table.tb1 tr:last-child th:after{
  bottom: -1px;
}
table.tb1 tr:first-child th,table.tb1 tr:first-child td{
  border-top: 1px solid #9ACBF3;
}
@media screen and (max-width: 767px) {
  table.sp-block th,table.sp-block td{
    display: block;
  }
  table.tb1.sp-block tr:first-child td{
    border-top: none;
  }
  table.tb1 th,table.tb1 td{
    padding: 15px 0;
  }
  table.tb1 th,table.tb1.th240 th{
    width: auto;
  }
  table.tb1.sp-block th{
    border-bottom: none;
    padding-bottom: 0;
  }
  table.tb1 th:before,table.tb1.th240 th:before{
    width: 60px;
  }
  table.tb1 tr:last-child th:after{
    content: none;
  }
  table.tb1.sp-block td{
    padding-top: 5px;
  }
  table.tb1.sp-block tr:last-child td{
    position: relative;
  }
  table.tb1.sp-block tr:last-child td:after{
    content: "";
    display: block;
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 60px;
    height: 1px;
    background: #003A91;
  }
}

.btn-outside{
  display: inline-block;
  padding-left: 18px;
  background: url(../img/icon_external_bl.svg) left center no-repeat;
}



/* ▼ システム
--------------------------------------- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 40px 20px 80px;
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 60px 25px;
  }
}

.footer_inner {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  background-color: #fff;
  border-radius: 10px;
  z-index: 10;
  padding: 24px 20px;
}
@media screen and (min-width: 768px) {
  .footer_inner {
    padding: 65px 32px;
  }
}
.footer_inner_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  margin-right: auto;
  margin-left: auto;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer_inner_block {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 70px;
  }
}
.footer_inner_logo {
  width: 100%;
  max-width: 214px;
}
@media screen and (min-width: 768px) {
  .footer_inner_logo {
    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;
  }
}
.footer_inner .copyright {
  font-size: 10px;
  color: #333333;
}
.footer_inner_links_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_block {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 80px;
    border-bottom: 1px solid #D4E6F1;
    padding-bottom: 38px;
  }
}
.footer_inner_links_list {
  width: 100%;
  border-bottom: 1px solid #D4E6F1;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_list {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.footer_inner_links_ttl {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_ttl {
    font-size: 18px;
  }
}
.footer_inner_links_item {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_item {
    font-size: 15px;
  }
}
.footer_inner_links_item.mb54 {
    margin-bottom: 27px;
}
@media screen and (min-width: 768px) {
    .footer_inner_links_item.mb54 {
        margin-bottom: 54px;
    }
}
.footer_inner_links_sub {
  padding-left: 18px;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_sub {
    padding-left: 0;
  }
}
.footer_inner_links_sub_item {
  font-size: 13px;
  font-weight: 400;
  margin-bottom: 3px;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_sub_item {
    font-size: 14px;
    padding-left: 15px;
  }
}
.footer_inner_links_sub_item.line_icon {
  position: relative;
}
.footer_inner_links_sub_item.line_icon::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: #D4E6F1;
}
@media screen and (min-width: 768px) {
  .footer_inner_links_sub_item.line_icon::before {
    left: 0;
  }
}
.footer_inner_links_sub_item.external_link a {
  position: relative;
}
.footer_inner_links_sub_item.external_link a::after {
  content: "";
  position: absolute;
  background: url(../img/icon_external.svg) no-repeat center center/contain;
  width: 10px;
  height: 10px;
  right: -15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer_inner_sub_list {
  border-bottom: 1px solid #D4E6F1;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .footer_inner_sub_list {
    border-bottom: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 60px;
    padding: 30px 0 0;
  }
}
.footer_inner_sp_only {
  padding-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer_inner_sp_only {
    display: none;
  }
}
.footer_inner_sp_only .footer_inner_logo {
  width: 100%;
  max-width: 167px;
  display: block;
  margin: 0 auto 24px;
}
.footer_inner_sp_only .copyright {
  text-align: center;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  text-align: center;
  line-height: 32px;
  white-space: nowrap;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #003A91;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 10px;
  bottom: 20px;
  right: 30px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .pagetop {
    line-height: 72px;
    font-size: 14px;
    width: 56px;
    height: 56px;
    padding: 0;
    right: 100px;
  }
}
.pagetop::after {
  content: "";
  position: absolute;
  background: url(../img/arrow_right_wh.svg) no-repeat center center/contain;
  width: 12px;
  height: 6px;
  top: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-90deg);
          transform: translateX(-50%) rotate(-90deg);
}
@media screen and (min-width: 768px) {
  .pagetop::after {
    width: 16px;
    height: 8px;
    top: 12px;
  }
}

/* ▼▼▼ 404
====================================================== */
#not_found {
  padding: 100px 20px 60px;
}
@media screen and (min-width: 768px) {
  #not_found {
    padding: 8vw 20px;
  }
}
#not_found p {
  font-size: 14px;
  text-align: center;
}
#not_found p.arial {
  margin-bottom: 10px;
  font-size: 39px;
  font-family: "Arial", "メイリオ";
}
@media screen and (min-width: 768px) {
  #not_found p.arial {
    margin-bottom: 10px;
    font-size: 42px;
  }
}
#not_found p.arial + p {
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #not_found p.arial + p {
    font-size: 18px;
  }
}
#not_found p.txt {
  margin-bottom: 30px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #not_found p.txt {
    line-height: 1.9;
  }
}
#not_found .top_btn a {
  display: inline-block;
  padding: 15px 40px;
  border: 1px solid #ccc;
}
