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

/* 大枠 */
html,
body {
  height: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -webkit-overflow-scrolling: touch !important;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

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

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

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

.archivo {
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.container {
  width: 100%;
  max-width: 1060px;
  padding: 0 20px;
  margin: 0 auto;
  position: relative;
}

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

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

/* ホバーで下線が動くボタン */
.link_underline {
  position: relative;
  padding-right: 1.5em;
  overflow: hidden;
  padding-bottom: 4px;
  /* ページ戻る */
}
.link_underline::before {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #106AB9;
  transform-origin: right top;
}
.link_underline::after {
  content: "";
  width: 4px;
  height: 4px;
  border: 0;
  border-top: solid 1px #106AB9;
  border-right: solid 1px #106AB9;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 1px;
  bottom: 0;
  margin: auto;
}
.link_underline:hover::before {
  -webkit-animation: underline 0.6s ease-in-out forwards;
          animation: underline 0.6s ease-in-out forwards;
}
.link_underline.back:hover::before {
  -webkit-animation: underline-reverse 0.6s ease-in-out forwards;
          animation: underline-reverse 0.6s ease-in-out forwards;
}

@-webkit-keyframes underline {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  50.01% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes underline {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100%);
  }
  50.01% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}
@-webkit-keyframes underline-reverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes underline-reverse {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100%);
  }
  50.01% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ホバーで縁がまわる丸ボタン */
.btn_circle {
  display: inline-flex;
  text-decoration: none;
  font-weight: 700;
  color: #111;
  width: 52px;
  height: 52px;
  font-size: 14px;
  position: relative;
  opacity: 1 !important;
  transition: all 0.3s;
  background-color: #E2E2E2;
  border-radius: 100%;
  transition: color 0.4s;
  overflow: hidden;
}
.btn_circle::before, .btn_circle::after {
  content: "";
  display: block;
  position: absolute;
  width: 50%;
  height: 0;
  background-color: #106AB9;
  pointer-events: none;
}
.btn_circle::before {
  bottom: 0;
  left: 0;
}
.btn_circle::after {
  top: 0;
  right: 0;
}
.btn_circle:hover {
  color: #106AB9;
}
.btn_circle:hover::before, .btn_circle:hover::after {
  height: 100%;
}
.btn_circle:hover::before {
  transition: height 0.15s 0.15s linear;
}
.btn_circle:hover::after {
  transition: height 0.15s linear;
}

/* ▼ タイトル
--------------------------------------- */
#site_title {
  background: #fff;
  padding: 14px 12px 0;
}
@media screen and (min-width: 768px) {
  #site_title {
    padding: 25px 0 0;
  }
}
#site_title a {
  width: 208px;
}
@media screen and (min-width: 768px) {
  #site_title a {
    width: 326px;
  }
}
#site_title a:hover {
  opacity: 0.7;
}

/* ▼▼▼ ヘッダー
====================================================== */
header {
  width: 100%;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  overflow: visible;
  background: #fff;
  height: 60px;
}
header .header_inner {
  width: 100%;
  height: 60px;
  position: fixed;
  border-top: 4px solid #106AB9;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 99999;
}
@media screen and (min-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    padding-left: 50px;
    height: 100px;
    border-top: 4px solid #106AB9;
  }
  header .header_inner {
    width: 326px;
    height: auto;
    background: none;
    position: relative;
    top: auto;
    left: auto;
    z-index: 0;
    border-top: none;
  }
}
@media screen and (min-width: 768px) {
  header .header_wrap {
    display: flex;
    justify-content: flex-end;
  }
}
header .header_wrap .recruit_link {
  display: none;
}
@media screen and (min-width: 768px) {
  header .header_wrap .recruit_link {
    display: block;
    width: 150px;
    height: 150px;
    text-align: center;
    margin-top: -4px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9999;
  }
  header .header_wrap .recruit_link a {
    width: 100%;
    height: 100%;
    padding-top: 85px;
    background: #106AB9;
    color: #fff;
    position: relative;
    border: 4px solid #106AB9;
    border-bottom-left-radius: 4px;
  }
  header .header_wrap .recruit_link a::before {
    position: absolute;
    content: "";
    display: block;
    background: url(../img/icon_recruit_w.png) no-repeat center/contain;
    width: 32px;
    height: 30px;
    top: 45px;
    left: 50%;
    translate: -50%;
  }
  header .header_wrap .recruit_link a:hover {
    background: #fff;
    color: #106AB9;
  }
  header .header_wrap .recruit_link a:hover::before {
    background: url(../img/icon_recruit_b.png) no-repeat center/contain;
  }
}

.menu {
  --menu-width: 80px;
  --menu-height: 80px;
  --menu-bg-color: #106AB9;
  --menu-bar-color: #FFF;
  --menu-bar-width: 26px;
  --menu-bar-height: 1px;
  --menu-bar-gap: 7px;
  border-bottom-left-radius: 4px;
  display: block;
  width: var(--menu-width);
  height: var(--menu-height);
  background: var(--menu-bg-color);
  position: absolute;
  top: 0;
  right: 0;
  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: 40%;
  right: calc((var(--menu-width) - var(--menu-bar-width)) / 2);
  box-sizing: border-box;
  transition: all 0.3s;
}
.menu .icon::before, .menu .icon::after {
  content: "";
  width: var(--menu-bar-width);
  height: var(--menu-bar-height);
  background: var(--menu-bar-color);
  position: absolute;
  transition: all 0.3s;
  right: 0;
}
.menu .icon::before {
  top: calc(-1 * var(--menu-bar-gap));
}
.menu .icon::after {
  bottom: calc(-1 * var(--menu-bar-gap));
}
.menu .icon span:before {
  content: "Menu";
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
  color: var(--menu-bar-color);
  font-size: 12px;
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translate(-50%, 0%);
  -webkit-transform: translate(-50%, 0%);
}
.menu .icon.active {
  background: transparent;
}
.menu .icon.active::before {
  transform: rotate(-135deg);
  top: 0;
  background: #106AB9;
}
.menu .icon.active::after {
  transform: rotate(135deg);
  bottom: 0;
  background: #106AB9;
}
.menu .icon.active span:before {
  content: "";
}
@media screen and (min-width: 768px) {
  .menu {
    display: none;
  }
}

.menu_fixed .menu {
  background: none;
}

/* グローバルナビゲーション */
#gnav {
  transition: 0.5s ease-in-out;
  float: none;
  width: 100%;
  height: 100vh;
  padding: 80px 20px;
  margin: 0;
  background: #FFF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  overflow: auto;
  transform: translateY(-100%);
}
#gnav.open {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  #gnav {
    background: none;
    padding: 0;
    transition: 0s;
    position: relative;
    top: auto;
    left: auto;
    transform: translateY(0);
    overflow: visible;
    width: auto;
    height: auto;
  }
}
#gnav ul {
  display: block;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #gnav ul {
    display: flex;
    padding-top: 35px;
    padding: 35px 200px 0 0;
    margin-bottom: 0px;
  }
}
#gnav ul > li {
  width: 100%;
  max-width: 100%;
  height: auto;
  text-indent: 0;
}
@media screen and (min-width: 768px) {
  #gnav ul > li {
    width: auto;
  }
}
#gnav ul > li a {
  position: relative;
  display: block;
  text-decoration: none;
  border-bottom: 1px solid #E2E2E2;
  font-size: 15px;
  color: #106AB9;
  padding: 20px 0 17px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  #gnav ul > li a {
    border-bottom: none;
    padding: 0;
    position: relative;
    color: #293540;
    line-height: inherit;
  }
}
#gnav ul > li a::after {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #106AB9;
  border-right: solid 1px #106AB9;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #gnav ul > li a::after {
    content: none;
  }
}
#gnav ul > li a .nav_icon {
  position: relative;
  padding-left: 15px;
}
#gnav ul > li a .nav_icon::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/main_line.png) no-repeat top/contain;
  width: 5px;
  height: 16px;
  top: 4px;
  left: 0;
}
#gnav ul > li a .nav_en {
  font-family: "Archivo Narrow", sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #BDD4E3;
  opacity: 0.84;
}
#gnav ul > li a:hover {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #gnav ul > li a:hover {
    text-decoration: none;
  }
  #gnav ul > li a:hover::before {
    position: absolute;
    content: "●";
    font-size: 10px;
    color: #106AB9;
    bottom: -18px;
    left: 50%;
    translate: -50%;
  }
}
@media screen and (min-width: 768px) {
  #gnav ul > li:not(:last-child) a {
    margin-right: 35px;
  }
}
#gnav .other_link_wrap a {
  display: block;
  margin-bottom: 12px;
  padding-left: 18px;
  position: relative;
}
#gnav .other_link_wrap a::before {
  content: "";
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #106AB9;
  border-right: solid 1px #106AB9;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: -1px;
  bottom: 0;
  margin: auto;
}

/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
  margin: 0 auto;
  clear: both;
  overflow: hidden;
}

.menu_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .menu_fixed {
    position: relative;
    width: auto;
    height: auto;
  }
}

/* ▼ パンくず
--------------------------------------- */
#path {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto 20px;
  font-size: 12px;
  overflow: hidden;
  font-weight: 400;
}
#path li {
  float: left;
}
#path li:not(:last-child):after {
  content: "−";
  margin: 0 8px;
  color: #A6D4FC;
}

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

/* ▼▼▼ .contact_area
===================================== */
#contact_area {
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  #contact_area {
    margin-right: 150px;
  }
}
#contact_area a {
  background: #106AB9;
  border: 2px solid #106AB9;
  color: #fff;
  padding: 45px 0 45px 17%;
  width: 100%;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  position: relative;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  #contact_area a {
    padding: 70px 55px;
  }
}
#contact_area a::before {
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.65);
  position: absolute;
  border-radius: 4px;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  #contact_area a::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    top: 20px;
    bottom: 20px;
    left: 20px;
    right: 20px;
    opacity: 0.3;
  }
}
#contact_area a::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 768px) {
  #contact_area a::after {
    width: 20px;
    height: 20px;
    right: 50px;
  }
}
@media screen and (min-width: 768px) {
  #contact_area a .con_flex {
    display: flex;
    justify-content: center;
    gap: 50px;
    align-items: center;
  }
}
#contact_area a .con_flex .con_title {
  padding-left: 65px;
  position: relative;
  margin-bottom: 15px;
  max-width: 12em;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #contact_area a .con_flex .con_title {
    padding-left: 110px;
    max-width: 100%;
    margin: 0;
  }
}
#contact_area a .con_flex .con_title::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/icon_mail.png) no-repeat center/contain;
  width: 50px;
  height: 50px;
  top: 50%;
  left: 0;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  #contact_area a .con_flex .con_title::before {
    width: 80px;
    height: 80px;
  }
}
#contact_area a .con_flex .con_title .archivo {
  font-size: 35px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  #contact_area a .con_flex .con_title .archivo {
    font-size: 59px;
  }
}
#contact_area a .con_flex .con_title .ja {
  font-size: 11px;
}
#contact_area a .con_flex .con_txt {
  font-size: 13px;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #contact_area a .con_flex .con_txt {
    font-size: 15px;
    font-weight: 500;
  }
}
#contact_area a:hover {
  background: #fff;
  color: #293540;
}
#contact_area a:hover::after {
  border-top: solid 2px #106AB9;
  border-right: solid 2px #106AB9;
}
@media screen and (min-width: 768px) {
  #contact_area a:hover::after {
    width: 20px;
    height: 20px;
    right: 50px;
  }
}
#contact_area a:hover::before {
  border: 1px solid rgba(16, 106, 185, 0.65);
}
#contact_area a:hover .con_flex .con_title {
  color: #106AB9;
}

/* ▼▼▼ フッター
===================================== */
footer {
  width: 100%;
  padding: 45px 0px;
  clear: both;
  overflow: hidden;
  background: #fff;
}
@media screen and (min-width: 768px) {
  footer {
    padding: 60px 0 20px;
  }
}
footer a:hover {
  opacity: 0.7;
}
footer .foot_link_wrap {
  border-bottom: 1px solid #E2E2E2;
  padding-bottom: 5px;
  margin-bottom: 18px;
}
@media screen and (min-width: 768px) {
  footer .foot_link_wrap {
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
  }
}
footer .foot_link_wrap .foot_logo {
  max-width: 230px;
  margin: 0 auto 30px;
  background: #fff;
}
@media screen and (min-width: 768px) {
  footer .foot_link_wrap .foot_logo {
    max-width: 326px;
    margin: 0;
  }
}
footer .foot_link_wrap ul {
  display: flex;
  flex-wrap: wrap;
  padding: 0 35px;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  footer .foot_link_wrap ul {
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    font-size: 15px;
    width: 100%;
    gap: 40px;
  }
}
footer .foot_link_wrap ul li {
  width: 33%;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  footer .foot_link_wrap ul li {
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  footer .foot_copy_wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
}
footer .foot_copy_wrap ul {
  display: flex;
  color: #8E8E8E;
  font-size: 11px;
  justify-content: center;
  margin-bottom: 30px;
}
footer .foot_copy_wrap ul li:not(:last-child) a::after {
  content: "/";
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  footer .foot_copy_wrap ul li:not(:last-child) a::after {
    padding: 0 15px;
  }
}
footer .foot_copy_wrap #copyright {
  font-size: 10px;
  color: #8E8E8E;
  text-align: center;
}

/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
  width: 44px;
  height: 44px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  bottom: 20px;
  right: 10px;
  z-index: 2000;
  position: fixed;
  cursor: pointer;
  text-align: center;
  font-size: 10px;
  padding-top: 16px;
}
@media screen and (min-width: 768px) {
  .pagetop {
    width: 80px;
    height: 80px;
    font-size: 12px;
    padding-top: 37px;
  }
}
.pagetop::after {
  content: "";
  width: 9px;
  height: 9px;
  border-left: #000 1px solid;
  border-top: #000 1px solid;
  position: absolute;
  top: 12px;
  right: calc(50% - 5px);
  transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  .pagetop::after {
    width: 18px;
    height: 18px;
    top: 27px;
    right: calc(50% - 9px);
  }
}

/* ▼▼▼ newsに新着アイコン
===================================== */
.topics_wrap .news.new_article a::after {
  content: "New";
  position: absolute;
  font-size: 12px;
  font-family: "Archivo Narrow", sans-serif;
  color: #fff;
  background: #106AB9;
  padding: 1px 3px;
  top: 0;
  left: 0;
}
.topics_wrap .news.new_article a .date {
  padding-left: 2.5em;
}

/* ▼▼▼ 下層 共通
===================================== */
.title_area {
  border-bottom: 1px solid #E2E2E2;
  padding: 140px 0 35px;
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .title_area {
    padding-bottom: 45px;
  }
}
.title_area .title_en {
  font-size: 64px;
  color: #EBF1F6;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .title_area .title_en {
    font-size: 89px;
  }
}
.title_area h2 {
  font-size: 28px;
  font-weight: 500;
  color: #106AB9;
  padding-left: 15px;
  position: relative;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .title_area h2 {
    font-size: 32px;
    padding-left: 20px;
  }
}
.title_area h2::before {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/main_line.png) no-repeat top/contain;
  width: 6px;
  height: 26px;
  top: 3px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .title_area h2::before {
    width: 8px;
    height: 29px;
    top: 4px;
  }
}

/* ▼▼▼ 404
===================================== */
.error_404 .wrap {
  margin: 120px 0 60px;
}
@media screen and (min-width: 768px) {
  .error_404 .wrap {
    margin: 200px 0;
  }
}
.error_404 .wrap .error_num {
  text-align: center;
  font-weight: 600;
  font-size: 52px;
  line-height: 1.2;
}
.error_404 .wrap h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.error_404 .wrap .error_txt {
  text-align: center;
}
/*# sourceMappingURL=base.css.map */