@charset "UTF-8";
/* Common
-------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  -webkit-text-size-adjust: 100%;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  body {
    min-width: 100%;
  }
}

p,
ul,
ol,
li,
dd,
dt,
table,
tbody,
th,
td,
section,
div,
h1,
h2,
h3,
h4,
h5,
h6 {
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
}
@media screen and (max-width: 767px) {
  p,
  ul,
  ol,
  li,
  dd,
  dt,
  table,
  tbody,
  th,
  td,
  section,
  div,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 14px;
  }
}

a {
  box-sizing: border-box;
  font-size: inherit;
  color: inherit;
  transition: 0.5s;
}

a:link,
a:visited {
  text-decoration: none;
}

a.link:hover {
  opacity: 0.7;
}

a.url {
  color: #1e4bb1;
  text-decoration: underline;
}

a.url:hover {
  opacity: 0.7;
}

span {
  box-sizing: border-box;
  color: inherit;
  font-size: inherit;
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
}

/* 画面サイズでの表示非表示 */
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .min_xs {
    display: none !important;
  }
}

@media screen and (min-width: 576px) {
  .max_xs {
    display: none !important;
  }
}

/* レイアウト設定 */
.pr {
  padding-right: 1em;
}

.row_rev {
  flex-direction: row-reverse;
}

/* テキスト設定 */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}

.font_bold {
  font-weight: bold;
}

.text_link {
  color: #4065e2;
  text-decoration: underline;
  transition: 0.5s;
}
.text_link:link, .text_link:visited {
  text-decoration: underline;
}
.text_link:hover {
  opacity: 0.7;
}

.sentence {
  line-height: 2;
  text-align: justify;
}

/* Scroll Animation
-------------------------------- */
.js_anime_fadein {
  opacity: 0;
  transition: 1s ease;
}
.js_anime_fadein.scrollin {
  opacity: 1;
}

.js_anime_fadeup {
  opacity: 0;
  transform: translateY(30px);
  transition: 1s ease;
}
.js_anime_fadeup.scrollin {
  transform: translateY(0);
  opacity: 1;
}

.js_anime_faderight {
  opacity: 0;
  transform: translateX(-30px);
  transition: 1s ease;
}
.js_anime_faderight.scrollin {
  transform: translateY(0);
  opacity: 1;
}

.js_anime_fadeleft {
  opacity: 0;
  transform: translateX(30px);
  transition: 1s ease;
}
.js_anime_fadeleft.scrollin {
  transform: translateY(0);
  opacity: 1;
}

.js_anime_slidetext {
  overflow: hidden;
  transform: translateX(-100%);
  opacity: 0;
  transition: 1s ease;
}
.js_anime_slidetext > span {
  transform: translateX(100%);
  transition: 1s ease;
}
.js_anime_slidetext.scrollin {
  transform: translateX(0%);
  opacity: 1;
}
.js_anime_slidetext.scrollin > span {
  transform: translateX(0%);
}

.js_anime_block {
  position: relative;
}
.js_anime_block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform-origin: right;
  transform: scaleX(100%);
  transition: 0.5s ease-in;
  z-index: 1;
}
.js_anime_block.scrollin::after {
  transform: scaleX(0);
}

/* Container
-------------------------------- */
.wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap {
    width: 100%;
    padding: 0 20px;
  }
}

/* Button
-------------------------------- */
.common_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #004bad;
  background-color: transparent;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .common_btn a {
    width: 210px;
    height: 46px;
    padding: 0 18px;
  }
}
.common_btn a:hover {
  background-color: #fff;
}
.common_btn a::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("/kantou/img/common/icon-arrow1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .common_btn a::after {
    width: 20px;
    height: 20px;
  }
}
.common_btn a .text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .common_btn a .text {
    font-size: 16px;
  }
}

.bottom_btn {
  padding: 40px 0 120px;
}
@media screen and (max-width: 767px) {
  .bottom_btn {
    padding: 20px 0 80px;
  }
}
.bottom_btn .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .bottom_btn .wrap {
    flex-direction: column;
    gap: 25px;
  }
}
.bottom_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 250px;
  height: 60px;
  padding: 0 20px;
  border: 1px solid #004bad;
  background-color: transparent;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .bottom_btn a {
    width: 210px;
    height: 46px;
    padding: 0 18px;
  }
}
.bottom_btn a:hover {
  background-color: #efefef;
}
.bottom_btn a::after {
  content: "";
  width: 28px;
  height: 28px;
  background-image: url("/kantou/img/common/icon-arrow1.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .bottom_btn a::after {
    width: 20px;
    height: 20px;
  }
}
.bottom_btn a .text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .bottom_btn a .text {
    font-size: 16px;
  }
}

/* Header
-------------------------------- */
#header.open .header_sp .navi_btn .mark span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#header.open .header_sp .navi_btn .mark span:nth-child(2) {
  opacity: 0;
}
#header.open .header_sp .navi_btn .mark span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 1000px) {
  #header.open .header_sp .navi_bar .navi_menu {
    top: 60px;
    opacity: 1;
  }
}
#header .header_pc {
  position: fixed;
  height: 80px;
  z-index: 100;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  #header .header_pc {
    display: none;
  }
}
#header .header_pc .navi_bar {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
}
#header .header_pc .navi_bar .logo {
  position: relative;
  width: 340px;
}
#header .header_pc .navi_bar .logo a {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: 1;
  width: 100%;
  height: 80px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#header .header_pc .navi_bar .logo a:hover {
  opacity: 0.7;
}
#header .header_pc .navi_bar .logo a img {
  width: 192px;
}
#header .header_pc .navi_bar .navi_menu {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 25px;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  background-color: #1F5184;
}
#header .header_pc .navi_bar .menu_list {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
@media screen and (max-width: 1199px) {
  #header .header_pc .navi_bar .menu_list {
    gap: 30px;
  }
}
#header .header_pc .navi_bar .menu_list a {
  color: #fff;
}
@media screen and (max-width: 1199px) {
  #header .header_pc .navi_bar .menu_list a {
    font-size: 14px;
    font-weight: bold;
  }
}
#header .header_pc .navi_bar .link_btn {
  display: flex;
  gap: 20px;
}
#header .header_pc .navi_bar .link_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 30px;
  color: #1F5184;
  font-weight: bold;
}
@media screen and (max-width: 1199px) {
  #header .header_pc .navi_bar .link_btn a {
    font-size: 14px;
  }
}
#header .header_pc .navi_bar .link_btn a:hover {
  background-color: #efefef;
}
#header .header_sp {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 1001px) {
  #header .header_sp {
    display: none;
  }
}
#header .header_sp .navi_bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  background-color: #fff;
}
@media screen and (min-width: 1001px) {
  #header .header_sp .navi_bar {
    display: none;
  }
}
#header .header_sp .navi_bar .logo {
  position: relative;
  width: 150px;
}
#header .header_sp .navi_bar .logo .scroll_top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #1F5184;
}
#header .header_sp .navi_bar .navi_menu {
  position: fixed;
  top: -100vh;
  left: 0;
  z-index: -1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
  height: calc(100vh - 60px);
  background-color: #fff;
  overflow-y: auto;
  opacity: 0;
  transition: 0.5s;
}
#header .header_sp .navi_bar .navi_menu .menu_list {
  display: flex;
  flex-direction: column;
  margin: 30px auto 0;
  width: 250px;
}
#header .header_sp .navi_bar .navi_menu .menu_list .item + .item {
  border-top: 1px solid #ddd;
}
#header .header_sp .navi_bar .navi_menu .menu_list .item a {
  display: block;
  padding: 20px 0;
  font-weight: bold;
  text-align: center;
}
#header .header_sp .navi_bar .navi_menu .link_btn {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#header .header_sp .navi_bar .navi_menu .link_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  height: 60px;
  background-color: #1F5184;
  border-radius: 30px;
  font-weight: bold;
  color: #fff;
}
#header .header_sp .navi_bar .navi_menu .link_btn a:hover {
  background-color: #1282FF;
}
#header .header_sp .navi_bar .navi_btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (min-width: 1001px) {
  #header .header_sp .navi_bar .navi_btn {
    display: none;
  }
}
#header .header_sp .navi_bar .navi_btn .mark {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}
#header .header_sp .navi_bar .navi_btn span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  transition: 0.3s;
  background-color: #1F5184;
}
#header .header_sp .navi_bar .navi_btn span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 8px));
}
#header .header_sp .navi_bar .navi_btn span:nth-child(2) {
  transform: translate(-50%, -50%);
}
#header .header_sp .navi_bar .navi_btn span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 8px));
}

/* Footer
-------------------------------- */
#footer {
  position: relative;
  padding: 40px 0 25px;
  background: #efefef;
}
@media screen and (max-width: 767px) {
  #footer {
    padding: 20px 0 25px;
  }
}
@media screen and (max-width: 767px) {
  #footer .wrap {
    padding: 0 10px;
  }
}
#footer .link_btn {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 90px;
}
@media screen and (max-width: 767px) {
  #footer .link_btn {
    gap: 20px;
    margin-bottom: 45px;
  }
}
#footer .link_btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 220px;
  padding: 0 80px;
}
@media screen and (max-width: 767px) {
  #footer .link_btn a {
    height: 100px;
    padding: 0 20px;
  }
}
#footer .link_btn a:hover {
  border-radius: 150px;
}
#footer .link_btn a .text {
  color: #fff;
}
#footer .link_btn a .icon {
  width: 44px;
}
@media screen and (max-width: 767px) {
  #footer .link_btn a .icon {
    width: 30px;
  }
}
#footer .link_btn a.contact {
  background-color: #f0761c;
}
#footer .link_btn a.contact .text {
  font-size: 28px;
}
@media screen and (max-width: 767px) {
  #footer .link_btn a.contact .text {
    font-size: 16px;
  }
}
#footer .link_btn a.recruit {
  background-color: #003f91;
}
#footer .link_btn a.recruit .text {
  font-size: 36px;
}
@media screen and (max-width: 767px) {
  #footer .link_btn a.recruit .text {
    font-size: 20px;
  }
}
#footer .logo {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #footer .logo {
    text-align: center;
  }
}
#footer .logo a {
  display: inline-block;
  width: 240px;
}
@media screen and (max-width: 767px) {
  #footer .logo a {
    width: 210px;
  }
}
#footer .navi_menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
#footer .menu_list {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #footer .menu_list {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  #footer .menu_list.box1 {
    display: none;
  }
}
#footer .menu_list.box2 a {
  display: flex;
  align-items: center;
  gap: 5px;
}
#footer .menu_list.box2 a:after {
  content: "";
  margin-top: 2px;
  width: 16px;
  height: 16px;
  background-image: url("/kantou/img/common/icon-external.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 767px) {
  #footer .menu_list.box2 a:after {
    width: 14px;
    height: 14px;
  }
}
#footer .menu_list .item a {
  color: #004bad;
}
#footer .copyright p {
  text-align: center;
  font-size: 12px;
}

/* Main Visual（Lower）
-------------------------------- */
#sec_mainv_lower {
  padding-top: 80px;
}
@media screen and (max-width: 1000px) {
  #sec_mainv_lower {
    padding-top: 60px;
  }
}
#sec_mainv_lower .mainvisual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  background-image: url("/kantou/img/common/mainvisual-lower.jpg");
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  #sec_mainv_lower .mainvisual {
    height: 120px;
  }
}
#sec_mainv_lower .page_title {
  display: flex;
  align-items: center;
  gap: 45px;
  min-width: 1000px;
}
@media screen and (max-width: 767px) {
  #sec_mainv_lower .page_title {
    gap: 20px;
    min-width: 100%;
  }
}
#sec_mainv_lower .page_title .main {
  font-size: 52px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sec_mainv_lower .page_title .main {
    font-size: 24px;
  }
}
#sec_mainv_lower .page_title .sub {
  font-size: 28px;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  #sec_mainv_lower .page_title .sub {
    font-size: 14px;
  }
}

/* Title（Lower）
-------------------------------- */
.common_title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  background: linear-gradient(to right, #1F5184, #0E1F4D);
  box-shadow: 0 12px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .common_title {
    height: 60px;
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 40px;
  }
}
.common_title .text {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .common_title .text {
    font-size: 18px;
  }
}

/* パンくずリスト
-------------------------------- */
#sec_breadcrumb {
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
#sec_breadcrumb span {
  margin-right: 10px;
}

/* Common Page
-------------------------------- */
#sec_thanks .content,
#sec_notfound .content {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  #sec_thanks .content,
  #sec_notfound .content {
    padding: 60px 0;
  }
}
#sec_thanks .notice,
#sec_notfound .notice {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #sec_thanks .notice,
  #sec_notfound .notice {
    font-size: 16px;
  }
}