@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* ＝＝＝＝＝＝ フェードインアニメーション ＝＝＝＝＝＝ */
.load-fade, .scroll-up {
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}

.load-fade.is-show, .scroll-up.is-show {
  opacity: 1;
  visibility: visible;
}

.scroll-up {
  transform: translateY(50px);
}

.scroll-up.is-show {
  transform: translateY(0px);
}

/*＝＝＝＝＝＝共通＝＝＝＝＝＝*/
.container {
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  padding-left: 20px;
  padding-right: 20px;
}

.sp_600 {
  display: none !important;
}

.pc {
  display: none !important;
}

@media (max-width: 600px) {
  .pc_600 {
    display: none !important;
  }
  .sp_600 {
    display: inline-block !important;
  }
}
.lined-title {
  display: flex;
  align-items: center;
  text-align: center;
}
.lined-title::before, .lined-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #000;
  display: block;
  min-width: 20px;
}
.lined-title span {
  padding: 0 15px;
  font-weight: bold;
  font-size: 30px;
  font-weight: 400;
}

.anchor {
  position: absolute;
  top: 0;
}

/* ＝＝＝＝＝＝ ヘッダー ＝＝＝＝＝＝ */
body:not(#Top) .header_second {
  display: none;
}

#Top .header_second {
  padding: 10px 20px;
}

.header_main {
  z-index: 100;
  width: 100%;
  display: grid;
  grid-template-columns: 249px 1fr;
  padding: 10px 20px 10px;
  box-sizing: border-box;
}

.logo {
  width: 249px;
  font-size: 1.8rem;
  font-weight: bold;
  margin: auto;
}

.menu_toggle {
  width: 40px;
  height: 37px;
  position: absolute;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 1001;
  right: 15px;
  top: 18px;
  background-color: #00409c;
  padding: 5px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.menu_toggle span {
  width: calc(100% - 16px);
  height: 2px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 2px;
  position: absolute;
  border-radius: 5px;
  right: 8px;
}

/* 中央寄せ（キュッと） */
.menu_toggle span:nth-child(1) {
  top: 10px;
}

.menu_toggle span:nth-child(2) {
  top: 17px;
}

.menu_toggle span:nth-child(3) {
  top: 24px;
}

/* バツに変形 */
.menu_toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 17px;
}

.menu_toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu_toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 17px;
}

/* メニュー本体 */
.nav_menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  transition: right 0.3s ease;
  z-index: 1000;
  box-sizing: border-box;
}

.nav_menu ul {
  padding-top: 80px;
}
.nav_menu ul > li {
  border-bottom: 1px solid #999999;
}
.nav_menu ul > li a {
  padding: 15px 15px;
  display: block;
}

.nav_menu.active {
  right: 0;
}

.tit_h1 {
  color: #00409c;
  font-size: 20px;
  text-align: center;
  padding-bottom: 40px;
  padding-top: 10px;
}

.tit_h2 {
  font-size: 20px;
  color: #00409c;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
}
.tit_h2::after {
  content: "";
  display: block;
  width: 43px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  border-radius: 2px;
  position: absolute;
}

/* ＝＝＝＝＝＝ サブヘッダー ＝＝＝＝＝＝ */
.sub_header {
  height: 238px;
  background: url(/images/top/bg_pink.jpg) repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.sub_header h1 {
  font-size: 30px;
  text-align: center;
  font-weight: 300;
}
.sub_header h1 > span {
  font-size: 16px;
  display: block;
}

.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 5rem;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #333;
}

.breadcrumb li a {
  color: #333;
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("/images/common/breadcrumb_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 10px;
}

.tit_style01 {
  color: #00409c;
  font-size: 35px;
  text-align: left;
}
.tit_style01 .tit_sub {
  font-size: 20px;
  display: block;
  color: #000000;
}

.text_indent {
  margin-left: 1rem !important;
  text-indent: -1rem !important;
}

.info_text {
  padding-top: 6rem;
  text-align: center;
}
.info_text > span {
  font-size: 1.8rem;
  text-align: center;
  display: block;
  margin: auto;
  padding-bottom: 2rem;
}
.info_text .text_indent {
  text-align: left;
}

/*＝＝＝＝＝＝footer＝＝＝＝＝＝*/
.logo_sec_footer {
  margin: 50px 0 50px;
  position: relative;
}
.logo_sec_footer > a > img {
  max-width: 180px;
  margin: auto;
  display: flex;
}

.footer_cont01 {
  position: relative;
  padding-top: 25px;
}
.footer_cont01 .container h2.text_en {
  color: #00409c;
  font-size: 35px;
  text-align: left;
}
.footer_cont01 .container h2.text_en > span {
  color: #333;
  font-size: 20px;
  display: block;
}
.footer_cont01 .container .contact_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area {
    flex-direction: column;
    display: block;
    padding-top: 35px;
    margin-bottom: 46px;
  }
}
.footer_cont01 .container .contact_area .box_l {
  border-right: 1px solid #666666;
  padding-top: 54px;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_l {
    border-right: none;
  }
}
.footer_cont01 .container .contact_area .box_l img {
  width: 51px;
  margin: auto;
  display: block;
  margin-top: -21px;
}
.footer_cont01 .container .contact_area .box_l > a {
  font-size: 37px;
  color: #004394;
  margin: auto;
  display: block;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
  letter-spacing: -0.3rem;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_l > a {
    font-size: 40px;
    display: block;
    position: relative;
    width: 250px;
    margin: auto auto 5px auto;
  }
  .footer_cont01 .container .contact_area .box_l > a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: #004394;
    position: absolute;
    bottom: 2px;
  }
}
.footer_cont01 .container .contact_area .box_l p {
  text-align: center;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_l p {
    font-size: 20px;
  }
}
.footer_cont01 .container .contact_area .box_l p .text_s {
  display: block;
  font-size: 12px;
}
.footer_cont01 .container .contact_area .box_r {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_r {
    padding-top: 35px;
  }
}
.footer_cont01 .container .contact_area .box_r a {
  font-size: 34px;
  color: #004394;
  margin: auto;
  text-align: center;
  display: block;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_r a {
    font-size: 25px;
    color: #4d4d4d;
    margin-top: 11px;
  }
}
.footer_cont01 .container .contact_area .box_r img {
  width: 46px;
  display: block;
  margin: auto;
}
.footer_cont01 .container .contact_area .box_r .btn {
  display: flex;
  justify-content: center;
}
@media (max-width: 468px) {
  .footer_cont01 .container .contact_area .box_r .btn {
    flex-direction: column;
  }
}
.footer_cont01 .container .contact_area .box_r .btn a {
  color: white;
  width: 300px;
  height: 52px;
  background-color: #00409c;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .footer_cont01 .container .contact_area .box_r .btn a {
    margin-top: 20px;
  }
}

.footer_cont02 {
  background-color: #efefef;
  padding-top: 16px;
}
.footer_cont02 .grid_box {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}
.footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  justify-content: center;
}
.footer_cont02 .grid_box .box_company img {
  width: 55px;
}
.footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
  padding-left: 0 !important;
}
.footer_cont02 .grid_box .box_company .text_box h3 {
  font-size: 20px;
}
.footer_cont02 .grid_box .box_company .text_box address {
  font-style: normal;
}
.footer_cont02 .grid_box address {
  font-style: normal;
  font-size: 12px;
  text-align: center;
}
.footer_cont02 .grid_box nav {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.footer_cont02 .grid_box nav > ul {
  display: flex;
}
.footer_cont02 .grid_box nav > ul > li > a {
  padding: 0 10px;
  color: #606060;
}
.footer_cont02 .list {
  padding-top: 20px;
  padding-bottom: 20px;
}
.footer_cont02 .list ul > li {
  line-height: 1.7;
  font-size: 10px;
  text-indent: -14px;
  padding-left: 14px;
}
.footer_cont02 .policy {
  display: grid;
  grid-template-columns: 50% 50%;
  text-align: center;
}
@media (max-width: 480px) {
  .footer_cont02 .policy {
    grid-template-columns: 60% 40%;
  }
}
.footer_cont02 .policy span {
  padding: 10px 10px 10px;
  border-top: 1px solid #999999;
}
.footer_cont02 .policy span:nth-of-type(2) {
  position: relative;
}
.footer_cont02 .policy span:nth-of-type(2)::after {
  display: block;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #d1d1d1;
  position: absolute;
  left: 0;
  top: 10px;
}
.footer_cont02 .policy span > a {
  color: #606060;
  font-size: 11px;
}

.copy {
  height: 50px;
  background-color: #004394;
  display: flex;
  align-items: center;
  justify-content: center;
}

.copy p {
  color: #fff;
  font-size: 14px;
}

/*＝＝＝＝＝＝second page＝＝＝＝＝＝*/
.link_box {
  padding-bottom: 3rem;
}
.link_box .container img {
  max-width: 550px;
  margin: auto;
}
.link_box .link01 {
  padding-bottom: 2rem;
}

/*.sub-header {
  height: 140px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
  border-top: 1px solid #d9d9d9;
  margin-top: 70px;
  background: #d3edcc;
  h1 {
    font-size:30px;
    position: relative;
    color: #7f7f7f;
    z-index: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    padding-left: 20px;
    line-height: 1.3;
    .ttl_en {
      font-size: 14px;
      display: block;
      line-height: 1.5;
      text-align: center;
    }
  }
}*/
/*ヘッダー下余白*/
.wrapper {
  padding-top: 50px;
}

#pageTop {
  opacity: 0;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 888;
  transition: 0.3s;
}
#pageTop.active {
  opacity: 1;
}
#pageTop a {
  display: block;
  width: 50px;
}

/* loader
==================================*/
#loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 1001;
}

/* Animation
==================================*/
.c-anim-up {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.3s ease;
}

/* ＝＝＝＝＝＝ Component Styles ＝＝＝＝＝＝ */
html {
  font-size: 62.5%; /* 1rem = 10px */
  scroll-behavior: smooth;
}
html.no_move {
  overflow: hidden;
}
html * {
  margin: 0;
}

body {
  color: #606060;
  background-color: #fff;
  font-weight: 400;
  /*font-family: "Noto Serif JP", serif;*/
  font-family: "Nico Moji", sans-serif;
  line-height: 1.4;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  margin: 0;
}

.text_en, .text_mplus {
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.bg_gray {
  background-color: #f0f2f5;
}

/* 画像のスタイル */
img {
  max-width: 100%;
  height: auto;
  display: block; /* 画像の下の余白をなくす */
}

/* 入力フォームのスタイル */
input,
textarea,
select {
  font-style: normal;
  font-family: "Noto Sans JP", "小塚ゴシック Pro", "Kozuka Gothic Pro", sans-serif;
  font-weight: 400;
}

/* 見出しタグ */
h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

/* 太字・強調 */
b, strong {
  font-weight: bold;
}

/* クリア */
.clear {
  clear: both;
}

/* 小さい文字 */
small {
  font-size: 1.4rem; /* 14px */
}

/* リンクスタイル */
a {
  color: #606060; /* 変数未定義の場合エラーを防ぐ */
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #606060;
}
a:hover {
  color: #606060;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #606060;
}
a.tel, a.link {
  pointer-events: none;
  cursor: default;
}

/* フォーカス時のスタイル */
*:focus {
  outline: none;
}

/*==========================================
  Base
==========================================*/
/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top main {
  position: relative;
  overflow: hidden;
  /*アニメーション*/
  /* 上下方向ぷかぷかアニメーション */
}
#Top main .fv_swiper {
  position: relative;
  background-color: #19b7fd;
  position: relative;
}
#Top main .fv_swiper .offset-box {
  position: absolute;
  left: 5vw;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  #Top main .fv_swiper .offset-box {
    left: 0vw;
  }
}
@media (max-width: 600px) {
  #Top main .fv_swiper .offset-box {
    left: -4vw;
  }
}
#Top main .fv_swiper .text-area {
  position: absolute;
  right: 0;
  top: 28px;
  width: 45%;
  padding-right: 10px;
}
#Top main .fv_swiper .text-area > h2 {
  font-size: 27px;
  color: white;
}
#Top main .fv_swiper .text-area > p {
  font-size: 18px;
  padding-top: 2px;
  color: white;
}
#Top main .img_wrap {
  position: relative;
  height: 275px;
  width: 60%;
  overflow: hidden;
}
#Top main .floating {
  will-change: transform;
}
#Top main .airplane {
  left: 10vw;
  top: 10vh;
  width: 54px;
  animation: floatUpDown 4.5s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}
#Top main .balloon {
  animation: balloonUpDown 9s cubic-bezier(0.45, 0, 0.55, 1) infinite;
  position: absolute;
  width: 30px;
  right: 18vw;
  top: 0vw;
}
@media (max-width: 768px) {
  #Top main .balloon {
    top: 5vw;
  }
}
@media (max-width: 700px) {
  #Top main .balloon {
    right: 13vw;
  }
}
@media (max-width: 468px) {
  #Top main .balloon {
    width: 25px;
    right: 12vw;
  }
}
@keyframes balloonUpDown {
  0% {
    transform: translateY(-7px);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(-7px);
  }
}
#Top main .boat.boat01 {
  position: absolute;
  top: 2vh;
  left: 0vw;
  width: 50px;
  z-index: 2;
  animation: floatUpDown 5.5s ease-in-out infinite;
}
#Top main .boat.boat02 {
  position: absolute;
  left: 0vw;
  z-index: 1;
  animation: floatUpDown 8s ease-in-out infinite;
  animation-delay: 0s;
  width: 35px;
  top: 96px;
}
#Top main .boat.boat03 {
  position: absolute;
  bottom: 0vh;
  left: 0vw;
  z-index: 1;
  animation: floatUpDown 7s ease-in-out infinite;
  animation-delay: 3.5s;
  width: 35px;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
#Top main .sec_news {
  padding-top: 15px;
  padding-bottom: 40px;
}
#Top main .sec_news h2 {
  font-size: 35px;
  padding-bottom: 10px;
}
#Top main .sec_news h2 .tit_sub {
  font-size: 20px;
  font-weight: 400;
}
#Top main .sec_news .news_list {
  max-width: 690px;
  box-sizing: border-box;
  margin: auto;
}
#Top main .sec_news .news_list > li {
  display: block;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: center;
  margin: auto;
  line-height: 1.8;
  margin-bottom: 10px;
}
#Top main .sec_news .news_list > li .date {
  font-size: 16px;
  width: 200px;
  padding-bottom: 0 !important;
}
#Top main .sec_news .news_list > li > p {
  font-size: 16px;
}
#Top main .sec_news .news_list > li > p a {
  font-size: 16px;
}
#Top main .sec_company {
  position: relative;
  padding-top: 13px;
  padding-bottom: 50px;
}
#Top main .sec_company::after {
  content: "";
  display: block;
  width: 300px;
  height: 124px;
  background: url(/images/top/bg_company.svg) no-repeat center left;
  position: absolute;
  top: -48px;
  max-width: 1060px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#Top main .sec_company .grid_box {
  display: grid;
  grid-template-columns: 1fr 273px;
  gap: 20px;
  position: relative;
  z-index: 10;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  #Top main .sec_company .grid_box {
    display: block;
  }
  #Top main .sec_company .grid_box .img_box.sp_600 {
    max-width: 250px;
    margin: auto;
    display: flex !important;
    flex-direction: column;
  }
  #Top main .sec_company .grid_box .img_box.sp_600 p {
    padding-bottom: 15px;
  }
}
#Top main .sec_company .grid_box .descri_box {
  padding-bottom: 20px;
}
#Top main .sec_company .grid_box h2 {
  color: #00409c;
  font-size: 35px;
  padding-bottom: 57px;
}
#Top main .sec_company .grid_box h2 .sub_tit {
  font-size: 20px;
  display: block;
  color: #231815;
  font-weight: 400;
}
#Top main .sec_company .grid_box .heading {
  font-size: 22px;
  padding-bottom: 10px;
  margin-left: -1rem;
  letter-spacing: -1px;
}
#Top main .sec_company .grid_box .text {
  line-height: 1.5;
}
#Top main .sec_company .grid_box .img_box > p {
  text-align: center;
  margin-top: -10px;
}
#Top main .sec_company .btn_link {
  padding: 17px 28px;
  background-color: #004394;
  color: white;
  font-size: 20px;
  width: 290px;
  margin: auto;
  border-radius: 35px;
  display: block;
  text-align: center;
}
#Top main .sec_company .commitment_area {
  padding-top: 60px;
}
@media (max-width: 768px) {
  #Top main .sec_company .commitment_area {
    padding-top: 0px;
  }
}
#Top main .sec_company .commitment_area h3 {
  color: #00409c;
  font-size: 35px;
  text-align: center;
  padding-bottom: 25px;
}
#Top main .sec_company .commitment_area h3 .sub_tit {
  font-size: 20px;
  display: block;
  color: #231815;
  font-weight: 400;
}
#Top main .sec_company .commitment_area .flex_box {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #Top main .sec_company .commitment_area .flex_box {
    display: block;
  }
}
#Top main .sec_company .commitment_area .flex_box > .box {
  width: 30%;
}
@media (max-width: 768px) {
  #Top main .sec_company .commitment_area .flex_box > .box {
    width: 100%;
  }
  #Top main .sec_company .commitment_area .flex_box > .box dl {
    max-width: 275px;
    margin: auto;
  }
  #Top main .sec_company .commitment_area .flex_box > .box .text {
    max-width: 374px;
    margin: auto;
    margin-bottom: 23px;
  }
}
#Top main .sec_company .commitment_area .flex_box > .box > .text {
  padding-top: 20px;
  font-size: 14px;
}
#Top main .sec_company .commitment_area .flex_box dl {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
#Top main .sec_company .commitment_area .flex_box dl:nth-of-type(2) > dd > img {
  width: 190px;
}
#Top main .sec_company .commitment_area .flex_box dl:nth-of-type(3) > dd > img {
  width: 250px;
}
#Top main .sec_company .commitment_area .flex_box dl > dt {
  border-radius: 15px 15px 0 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  padding: 22px 25px;
  background-color: #00409c;
  color: white;
  height: 88px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-sizing: border-box;
  line-height: 1.3;
}
#Top main .sec_company .commitment_area .flex_box dl > dt > div {
  display: inline-block;
}
#Top main .sec_company .commitment_area .flex_box dl > dt > div > strong {
  font-size: 20px;
}
#Top main .sec_company .commitment_area .flex_box dl > dd {
  background-color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  border-radius: 0 0 15px 15px;
  height: 212px;
  display: flex;
}
#Top main .sec_company .commitment_area .flex_box dl > dd > img {
  width: 170px;
  margin: auto;
}
#Top main .sec_business {
  position: relative;
  padding-top: 35px;
  padding-bottom: 60px;
}
#Top main .sec_business h3 {
  color: #00409c;
  font-size: 35px;
  text-align: center;
  padding-bottom: 25px;
}
#Top main .sec_business .caption {
  font-size: 20px;
  text-align: center;
  width: 100%;
}
#Top main .sec_business h2 {
  padding-top: 35px;
  font-size: 35px;
  padding-bottom: 35px;
}
@media (max-width: 600px) {
  #Top main .sec_business h2 {
    padding-bottom: 10px;
  }
}
#Top main .sec_business .text_sp {
  text-align: center;
  padding-bottom: 20px;
}
#Top main .sec_business .lined-title.w-tit span {
  font-size: 30px;
}
#Top main .sec_business .lined-title span {
  padding: 0 10px;
  font-size: 19px;
}
#Top main .sec_business .box_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #Top main .sec_business .box_wrap {
    display: block;
    max-width: 400px;
    margin: auto;
    padding-bottom: 20px;
  }
  #Top main .sec_business .box_wrap .Partner_box.box01 {
    margin-bottom: 25px;
  }
}
#Top main .sec_business .box_wrap .Partner_box {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
  min-height: 318px;
  box-sizing: border-box;
  padding: 25px;
  border-radius: 15px;
  font-size: 18px;
}
#Top main .sec_business .box_wrap .Partner_box h3 {
  text-align: center;
}
#Top main .sec_business .box_wrap .Partner_box > ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
  margin: 0 auto;
  max-width: 285px;
}
#Top main .sec_business .box_wrap .Partner_box.box01 {
  background-color: #004394;
  border: 2px solid #004394;
  color: white;
}
#Top main .sec_business .box_wrap .Partner_box.box01 a {
  color: white;
}
#Top main .sec_business .box_wrap .Partner_box.box01 h3 {
  color: white;
}
#Top main .sec_business .box_wrap .Partner_box.box02 {
  color: #004394;
  background: white;
  border: 2px solid #004394;
}
#Top main .sec_business .box_wrap .Partner_box.box02 a {
  color: #004394;
}
#Top main .sec_business .box_wrap .Partner_box h3 {
  font-size: 28px;
  padding-bottom: 30px;
}
@media (max-width: 600px) {
  #Top main .sec_business .box_wrap .Partner_box h3 {
    font-size: 21px;
    padding-bottom: 11px;
    font-weight: 400;
    margin-bottom: 10px;
  }
}
#Top main .sec_business .box_wrap .Partner_box ul > li {
  line-height: 1.7;
}
#Top main .sec_business .service_wrap table {
  width: 100%;
  border: 1px solid #999999;
}
#Top main .sec_business .service_wrap table th {
  background-color: #f6f6f6;
  width: 28%;
  vertical-align: top;
  margin-top: 20px;
  text-align: left;
  border-right: 1px solid #999999;
}
#Top main .sec_business .service_wrap table th h3 {
  color: #004394;
  font-size: 20px;
  padding-top: 30px;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  text-align: left;
}
#Top main .sec_business .service_wrap table th h3::after {
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background-color: #004394;
  position: absolute;
  left: 9px;
  top: 36px;
}
#Top main .sec_business .service_wrap table th > p {
  padding-left: 20px;
  padding-right: 10px;
}
#Top main .sec_business .service_wrap table td {
  border-bottom: 1px solid #4d4d4d;
  display: flex;
  justify-content: center;
  align-items: center;
}
#Top main .sec_business .service_wrap table td a {
  display: block;
  padding: 0 10px;
  width: 50%;
  padding: 30px 20px;
  max-width: 232px;
}
@media (max-width: 768px) {
  #Top main .sec_business .service_wrap table td a {
    width: 75%;
  }
}
@media (max-width: 600px) {
  #Top main .sec_business .service_wrap table td a {
    padding: 20px 0 3px;
    max-width: 253px;
  }
}
#Top main .sec_business .service_wrap table td a > img {
  width: 100%;
  padding: 0;
}
#Top main .sec_business .service_wrap table td img {
  width: 50%;
  padding: 30px 20px;
  max-width: 232px;
}
#Top main .sec_business .service_wrap table td .text_box {
  width: 50%;
  text-align: left;
  padding: 20px;
  line-height: 1.7;
}
#Top main .sec_business .service_wrap table td .text_box strong {
  font-size: 18px;
}
#Top main .sec_business .service_wrap table td .text_box p {
  font-size: 13px;
}
#Top main .sec_business .service_wrap table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  #Top main .sec_business .service_wrap table {
    border: none;
  }
  #Top main .sec_business .service_wrap tr {
    display: block;
    padding-bottom: 6px;
  }
  #Top main .sec_business .service_wrap tr th {
    background-color: white;
    border-right: none;
  }
  #Top main .sec_business .service_wrap tr th > p {
    padding-bottom: 10px;
  }
  #Top main .sec_business .service_wrap tr th h3 {
    text-align: left;
    margin-top: 20px;
    padding-bottom: 0;
    margin-bottom: 5px;
    padding-top: 0;
  }
  #Top main .sec_business .service_wrap tr th h3::after {
    top: 8px;
  }
  #Top main .sec_business .service_wrap tr td {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-bottom: none;
  }
  #Top main .sec_business .service_wrap tr td img {
    width: 100%;
    padding: 17px 0px 0;
    max-width: 253px;
  }
  #Top main .sec_business .service_wrap tr td .text_box {
    padding: 0 20px;
    text-align: center;
    width: 100%;
  }
}
#Top main .sec_outline {
  position: relative;
  padding-top: 80px;
  padding-bottom: 25px;
  background-color: #f0f2f5;
  z-index: 0;
}
@media (max-width: 600px) {
  #Top main .sec_outline {
    padding-top: 15px;
  }
}
#Top main .sec_outline::after {
  content: "";
  display: block;
  width: 100%;
  height: 155px;
  background: url(/images/top/bg_outline.svg) no-repeat center;
  position: absolute;
  max-width: 300px;
  top: -61px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#Top main .sec_outline h3.text_en {
  color: #00409c;
  font-size: 35px;
  text-align: center;
  padding-bottom: 25px;
  text-align: left;
  z-index: 100;
}
#Top main .sec_outline h3.text_en > span {
  display: block;
  font-size: 20px;
  color: #333;
  font-weight: 400;
}
#Top main .sec_outline table {
  margin-top: 0px;
  margin-bottom: 15px;
  width: 100%;
}
#Top main .sec_outline table tr {
  display: block;
}
#Top main .sec_outline table th {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
  padding: 20px 0px 10px 0px;
  position: relative;
  text-align: left;
  display: block;
}
#Top main .sec_outline table td {
  vertical-align: middle;
  padding: 0px 0px 20px;
  font-size: 21px;
}
#Top main .sec_outline .btn {
  height: 54px;
  width: 300px;
  margin: auto;
  background-color: #004394;
  color: white;
  line-height: 54px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}
#Top main .sec_outline .btn > a {
  color: white;
  text-align: center;
  font-size: 20px;
}
#Top main .footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Top main .footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
}

/*==================================
  Blog
==================================*/
.wp-block-image img {
  padding-bottom: 15px;
}

.wp-block-image .alignright::after,
.wp-block-image .alignleft::after {
  content: "";
  display: block;
  clear: both;
}

.wp-block-image {
  overflow: hidden;
  zoom: 1;
}

/*前頁カテゴリー*/
.cate a {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #00409c;
  color: white;
}

.date {
  font-size: 12px;
  padding-bottom: 5px;
}

.cate {
  margin-bottom: 5px;
  font-size: 13px;
  margin-top: 13px;
}
#Top .cate {
  margin-top: 0;
}

.news_tit {
  font-size: 18px;
  border-bottom: 1px solid rgb(205, 205, 205);
  padding-top: 10px;
  display: inline;
}

.excerpt {
  padding-top: 10px;
}
.excerpt a {
  color: rgb(121, 121, 121);
  font-size: 11px;
  padding: 5px 21px 5px 12px;
  border-radius: 3px;
  position: relative;
}
.excerpt a > img {
  width: 40px;
  position: absolute;
  right: -30px;
  top: 7px;
  height: 10px;
}

#blog .sub-header {
  font-size: 22px;
  line-height: 1.6;
  padding: 30px 0px;
}
#blog .sub-header .ttl_en {
  display: block;
  font-size: 14px;
}
#blog .single-page .sub-header h1 {
  font-size: 22px;
  line-height: 1.6;
}
#blog main {
  /*シングルページ*/
}
#blog main .wrapper {
  position: relative;
  padding-bottom: 80px;
  background-color: #edf7ff;
  padding-top: 0 !important;
  /*フォント　デザイン*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  padding: 20px;
}
#blog main .wrapper .fontBig01 {
  font-size: 20px;
}
#blog main .wrapper .fontBig02 {
  font-size: 18px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  line-height: 1.6;
  margin-bottom: 10px;
  padding-top: 10px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .minusMarT10 {
  margin-top: -10px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 18px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 16px;
  height: 16px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .container02 {
  padding-right: 20px;
  padding-left: 20px;
}
#blog main .wrapper .page_404 {
  text-align: center;
  padding-top: 20px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 auto;
  padding-left: 0;
  display: block;
}
#blog main .wrapper ul.blog_con > li {
  list-style: none;
  box-sizing: border-box;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding-bottom: 40px;
  max-width: 400px;
  width: 100%;
  margin: auto;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  position: relative;
  padding-bottom: 66px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 0 15px 12px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 13px;
  width: 50px;
  margin-top: 19px;
  position: relative;
  border: 2px solid #484848;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 0px;
  padding-bottom: 5px;
  font-size: 18px;
  line-height: 1.7;
  color: #7f7f7f;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a {
  background-color: #00409c;
  border-radius: 5px;
  color: white;
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  margin-bottom: 20px;
  width: 125px;
  height: 30px;
  display: inline-block;
  padding-right: 10px;
  position: absolute;
  bottom: 0;
  line-height: 30px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper .more > a > .arrow {
  width: 7px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper ul.blog_con > li .blog_thumb {
  display: block;
  position: relative;
  padding-top: 53.25%;
  overflow: hidden;
}
#blog main .wrapper ul.blog_con > li .blog_thumb > img {
  /*max-width: 306px;*/
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
#blog main .wrapper .page-numbers.current, #blog main .wrapper .page-numbers, #blog main .wrapper .pagination .prev, #blog main .wrapper .next.page-numbers {
  box-sizing: border-box;
  display: block;
  color: #A4A4A4;
  text-decoration: none;
  text-align: center;
  background: #FFF;
  border: 1px solid #A4A4A4;
  border-radius: 50%;
  min-width: 40px;
  transition: all 0.2s;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  line-height: 38px;
}
#blog main .wrapper .page-numbers {
  margin: 0 6px;
}
#blog main .wrapper .prev.page-numbers, #blog main .wrapper .next.page-numbers {
  margin: 0 13px;
}
#blog main .wrapper .page-numbers:hover, #blog main .wrapper .pagination .prev:hover, #blog main .wrapper .next.page-numbers:hover {
  color: #FFF;
  background: #6E6E6E;
  /*border: 1px solid #6E6E6E;*/
}
#blog main .wrapper .page-numbers.current {
  margin: 0 0.28em;
}
#blog main .wrapper .pnavi {
  display: flex;
  justify-content: center;
  color: #A4A4A4;
  line-height: 1;
  margin: 0;
  padding: 2em 0;
}
#blog main .wrapper .page-numbers.current {
  background: #6E6E6E;
  color: #fff;
  font-weight: bold;
  border: none;
  margin: 0 0.28em;
}
#blog main.single-page {
  background-color: white;
}
#blog main.single-page .wrapper {
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
  /* リンクが長い場合に重ならないように */
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 10px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 13px;
  display: inline-block;
  width: 50px;
  position: relative;
  border: 2px solid #7f7f7f;
  letter-spacing: 0.08em;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
  display: block;
  padding-bottom: 14px;
  padding-top: 7px;
}
#blog main.single-page .wrapper p {
  padding-bottom: 10px;
}
#blog main.single-page .wrapper .nav-links {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  width: 100%;
}
#blog main.single-page .wrapper .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#blog main.single-page .wrapper .nav-previous {
  float: left;
}
#blog main.single-page .wrapper .nav-next {
  float: right;
}
#blog main.single-page .wrapper .nav-previous, #blog main.single-page .wrapper .nav-next {
  max-width: 45%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: 0 20px;
}
#blog main.single-page .wrapper .nav-previous > a, #blog main.single-page .wrapper .nav-next > a {
  font-size: 14px;
  color: #303030;
  letter-spacing: 0.01em;
}
#blog main .cate_wrap .list_ttl {
  font-weight: 600;
  border-left: 2px solid #7f7f7f;
  padding-left: 20px;
  margin-bottom: 7px;
  margin-top: 30px;
  color: #7f7f7f;
}
#blog main .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .cate_wrap > ul > li > a {
  padding: 5px 10px;
  border: 1px solid #7f7f7f;
  border-radius: 7px;
  margin: 5px;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
  color: #7f7f7f;
}
#blog main .cate_wrap > ul > li > a:hover {
  background-color: #b0c4e0;
  color: white;
  border: 1px solid #b0c4e0;
}
#blog .sec_footer .text_h2 {
  display: none;
}

/*＝＝＝＝＝＝staff＝＝＝＝＝＝*/
#Company .tit_h1 {
  margin-bottom: 2px;
  text-align: left;
  padding-bottom: 0;
}
#Company .caption {
  font-size: 13px;
}
#Company .tit_h2 {
  font-size: 23px;
}
#Company .sec_heading {
  padding-top: 50px;
}
#Company .sec_heading .text_box {
  background: #f0f2f5;
  padding: 22px 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  #Company .sec_heading .text_box {
    margin-bottom: 50px;
    padding: 22px 20px;
  }
}
#Company .sec_heading h2 {
  margin-bottom: 10px;
}
#Company .sec_heading h3 {
  font-size: 31px;
  color: #00409c;
  text-align: center;
}
@media (max-width: 480px) {
  #Company .sec_heading h3 {
    font-size: 28px;
  }
}
#Company .text_h2 {
  font-size: 30px;
  color: #00409c;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #Company .text_h2 {
    font-size: 23px;
  }
}
#Company .text_h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Company .sec_message {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  #Company .sec_message {
    margin-bottom: 30px;
  }
}
#Company .sec_message h3 {
  font-size: 23px;
  color: #00409c;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
  padding-bottom: 15px;
}
#Company .sec_message h3::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Company .sec_message .grid_box {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  padding-top: 55px;
}
@media (max-width: 768px) {
  #Company .sec_message .grid_box {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 30px;
  }
}
#Company .sec_message .grid_box .text_box > p {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  #Company .sec_message .grid_box .text_box > p {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  #Company .sec_message .grid_box .img_box {
    max-width: 220px;
    margin: auto;
  }
}
#Company .sec_message .grid_box .img_box p {
  text-align: center;
}
#Company .sec_company-info {
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  #Company .sec_company-info {
    padding-bottom: 80px;
  }
}
#Company .sec_company-info h2 {
  font-size: 23px;
  color: #00409c;
  position: relative;
  padding-bottom: 7px;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #Company .sec_company-info h2 {
    margin-bottom: 30px;
  }
}
#Company .sec_company-info h2::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Company .sec_company-info dl {
  border-bottom: 1px solid #666666;
  display: flex;
  align-items: center;
}
#Company .sec_company-info dl > dt {
  padding-left: 10px;
  position: relative;
  width: 30%;
  padding: 16px 0 16px 10px;
  font-size: 13px;
}
#Company .sec_company-info dl > dt::after {
  content: "";
  display: block;
  width: 1px;
  height: 10px;
  background-color: #004983;
  position: absolute;
  left: 0;
  top: 22px;
}
#Company .sec_company-info dl > dd {
  font-size: 13px;
}
#Company .sec_partner-companies {
  background-color: #f0f2f5;
  padding-top: 73px;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #Company .sec_partner-companies {
    padding-top: 30px;
  }
}
#Company .sec_partner-companies h2 {
  font-size: 23px;
  color: #00409c;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 30px;
}
#Company .sec_partner-companies h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Company .sec_partner-companies .grid_box_wrap {
  background-color: white;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  padding-bottom: 20px;
}
#Company .sec_partner-companies .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 35px 80px 50px;
  margin: auto;
}
@media (max-width: 768px) {
  #Company .sec_partner-companies .grid_box {
    display: block;
    padding: 35px 20px 0px;
  }
}
#Company .sec_partner-companies .grid_box .box > h3 {
  color: #004394;
  font-size: 20px;
  padding-bottom: 30px;
  text-align: left;
}
@media (max-width: 768px) {
  #Company .sec_partner-companies .grid_box .box > h3 {
    font-size: 18px;
    text-align: center;
    padding-bottom: 10px;
  }
}
@media (max-width: 768px) {
  #Company .sec_partner-companies .grid_box .box ul {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
  }
}
#Company .sec_partner-companies .grid_box .box > ul > li {
  font-size: 16px;
  color: #004394;
  position: relative;
  padding-left: 10px;
  line-height: 1.6;
}
#Company .sec_partner-companies .grid_box .box > ul > li a {
  font-size: 16px;
  color: #004394;
}
@media (max-width: 768px) {
  #Company .sec_partner-companies .grid_box .box > ul > li {
    font-size: 15px;
    text-align: center;
    display: inline-block;
  }
}
#Company .sec_partner-companies .grid_box .box > ul > li::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #004394;
  margin-right: 10px;
  vertical-align: middle;
}
#Company .sec_partner-companies .notice {
  text-align: center;
  font-size: 13px;
  padding: 0px;
  margin-top: 30px;
  line-height: 1.6;
}
#Company .text_f {
  padding-top: 100px;
  line-height: 1.2;
  color: #00409c;
  font-size: 38px;
  text-align: center;
  text-shadow: -2px -2px 0 white, -2px -1px 0 white, -2px 0px 0 white, -2px 1px 0 white, -2px 2px 0 white, 2px -2px 0 white, 2px -1px 0 white, 2px 0px 0 white, 2px 1px 0 white, 2px 2px 0 white, -1px -2px 0 white, 0px -2px 0 white, 1px -2px 0 white, -1px 2px 0 white, 0px 2px 0 white, 1px 2px 0 white, -3px 0px 0 white, 3px 0px 0 white, 0px -3px 0 white, 0px 3px 0 white, 3px 3px 5px rgba(0, 0, 0, 0.9);
  font-weight: 700;
}
#Company .text_h2 {
  font-size: 30px;
  color: #00409c;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #Company .text_h2 {
    font-size: 23px;
  }
}
#Company .text_h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Company h2.text_en.sp.footer_tit01 {
  display: none;
}
#Company .contact_area {
  padding-top: 30px;
}
@media (max-width: 768px) {
  #Company .contact_area {
    padding-top: 0;
  }
}
#Company .footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Company .footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
}

/*＝＝＝＝＝＝staff＝＝＝＝＝＝*/
#Staff .tit_h1 {
  text-align: left;
}
#Staff .sec_staff .container .grid_box {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 768px) {
  #Staff .sec_staff .container .grid_box {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
#Staff .sec_staff .container .grid_box img {
  max-width: 470px;
  width: 100%;
  margin: auto;
  display: flex;
}
#Staff .text_f {
  padding-top: 100px;
  line-height: 1.2;
  text-align: center;
  color: #00409c;
  font-size: 30px;
  text-align: center;
  text-shadow: -2px -2px 0 white, -2px -1px 0 white, -2px 0px 0 white, -2px 1px 0 white, -2px 2px 0 white, 2px -2px 0 white, 2px -1px 0 white, 2px 0px 0 white, 2px 1px 0 white, 2px 2px 0 white, -1px -2px 0 white, 0px -2px 0 white, 1px -2px 0 white, -1px 2px 0 white, 0px 2px 0 white, 1px 2px 0 white, -3px 0px 0 white, 3px 0px 0 white, 0px -3px 0 white, 0px 3px 0 white, 3px 3px 5px rgba(0, 0, 0, 0.9);
  font-weight: 700;
}
@media (max-width: 768px) {
  #Staff .text_f {
    font-size: 25px;
    padding-top: 55px;
  }
}
#Staff h2.text_en.sp.footer_tit01 {
  display: none;
}
#Staff .text_h2 {
  font-size: 30px;
  color: #00409c;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #Staff .text_h2 {
    font-size: 23px;
  }
}
#Staff .text_h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Staff .contact_area {
  padding-top: 30px;
}
@media (max-width: 768px) {
  #Staff .contact_area {
    padding-top: 0;
  }
}
#Staff .footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Staff .footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Policy .header_sub {
  box-shadow: none;
  margin: 10px auto 10px;
}
#Policy .breadcrumb {
  padding-top: 15px;
}
#Policy main p {
  font-size: 13px;
}
#Policy main .sec_title {
  padding-bottom: 28px;
}
#Policy main .sec_title .tit_h1 {
  text-align: center;
  font-size: 23px;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#Policy main .sec_title .tit_h1::after {
  display: none;
}
#Policy main .sec_title p {
  text-align: center;
  line-height: 1.6;
  text-decoration: underline;
  font-size: 17px;
}
#Policy main h2 {
  font-size: 23px;
  color: #00409c;
  padding: 20px 0 10px;
  text-align: center;
}
#Policy main .pd_bottom {
  padding-bottom: 30px;
}
#Policy main .text_wrap {
  padding-bottom: 22px;
}
#Policy main .text_wrap h3 {
  color: #00409c;
  padding-bottom: 5px;
}
#Policy main .text_wrap ul > li {
  font-size: 13px;
}
#Policy main .text_wrap dl > dt, #Policy main .text_wrap dl > dd {
  font-size: 13px;
}
#Policy main .text_wrap .list li {
  padding-left: 1em;
  position: relative;
  text-indent: 0rem;
  padding-left: 1rem;
  line-height: 1.6;
  font-size: 13px;
}
#Policy main .text_wrap .list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 9px;
  color: #000000;
  font-size: 0.3em;
  line-height: 1.6;
}
#Policy main .text_wrap .list-num > li {
  font-size: 13px;
}
#Policy .text_h2 {
  font-size: 30px;
  color: #00409c;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #Policy .text_h2 {
    font-size: 23px;
  }
}
#Policy .text_h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Policy .text_en.sp.footer_tit01 {
  display: none;
}
#Policy .footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Policy .footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
}

/*＝＝＝＝＝＝Customer-first＝＝＝＝＝＝*/
#Customer-first .header_sub {
  box-shadow: none;
  margin: 10px auto 10px;
}
#Customer-first main p {
  font-size: 13px;
  line-height: 1.6;
}
#Customer-first main .sec_title {
  padding-bottom: px;
}
#Customer-first main .sec_title .tit_h1 {
  text-align: center;
  font-size: 23px;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
#Customer-first main .sec_title .tit_h1::after {
  display: none;
}
#Customer-first main .sec_title p {
  text-align: center;
  line-height: 1.6;
  text-decoration: underline;
  font-size: 16px;
}
#Customer-first main h2 {
  font-size: 16px;
  color: #00409c;
  padding: 20px 0 10px;
  text-align: center;
}
#Customer-first main h3 {
  font-size: 16px;
  color: #00409c;
  text-align: left;
}
#Customer-first main .tit_principle {
  font-size: 13px;
  color: #00409c;
  text-align: left;
  font-weight: 600;
}
#Customer-first main .core_values h2 {
  font-size: 16px;
  color: #00409c;
  text-align: left;
}
#Customer-first main .list li {
  padding-left: 1em;
  position: relative;
  text-indent: 0rem;
  padding-left: 1rem;
  line-height: 1.6;
  font-size: 13px;
}
#Customer-first main .list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 9px;
  color: #000000;
  font-size: 0.3em;
  line-height: 1.6;
}
#Customer-first main .cont_wrap {
  background-color: #eff3f6;
  padding: 20px 25px 30px;
}
#Customer-first main .pd_bottom {
  padding-bottom: 70px;
}
#Customer-first main .pd_bottom02 {
  padding-bottom: 30px !important;
}
#Customer-first main .pd_bottom03 {
  padding-bottom: 20px !important;
}
#Customer-first main .pd_bottom04 {
  padding-bottom: 10px !important;
}
#Customer-first main .pd_bottom05 {
  padding-bottom: 20px !important;
}
#Customer-first main .text_large {
  font-size: 13px;
}
#Customer-first main .text_blue {
  color: #00409c;
}
#Customer-first main .bold {
  font-weight: 600;
}
#Customer-first main dl > dt, #Customer-first main dl > dd {
  font-size: 13px;
}
#Customer-first main .dl_style01 > dt {
  float: left;
  font-weight: 600;
  width: auto;
}
#Customer-first main .dl_style02 {
  display: flex;
}
#Customer-first main .dl_style02 > dt {
  width: 60px;
  font-weight: 600;
}
#Customer-first main .dl_style02 > dd {
  width: calc(100% - 60px);
}
#Customer-first main .dl_style03 > dt {
  float: left;
  font-weight: 600;
}
#Customer-first main .text_wrap {
  padding-bottom: 22px;
}
#Customer-first main .text_wrap h2 {
  text-align: left;
}
#Customer-first main .text_wrap h3 {
  color: #00409c;
  font-size: 16px;
  padding-bottom: 10px;
  text-align: left;
}
#Customer-first main .text_wrap .list li {
  padding-left: 1em;
  position: relative;
  text-indent: 0rem;
  padding-left: 1rem;
  line-height: 1.6;
  font-size: 14px;
}
#Customer-first main .text_wrap .list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 9px;
  color: #000000;
  font-size: 0.3em;
  line-height: 1.6;
}
#Customer-first main .text_wrap .cont_wrap {
  margin-top: 15px;
  margin-right: -20px;
  margin-left: -20px;
  padding: 20px;
}
#Customer-first .text_h2 {
  font-size: 30px;
  color: #00409c;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 10px;
  padding-top: 40px;
}
@media (max-width: 768px) {
  #Customer-first .text_h2 {
    font-size: 23px;
  }
}
#Customer-first .text_h2::after {
  content: "";
  display: block;
  width: 35px;
  height: 2px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}
#Customer-first .text_en.sp.footer_tit01 {
  display: none;
}
#Customer-first .footer_cont02 .grid_box .box_company {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#Customer-first .footer_cont02 .grid_box .box_company .text_box {
  padding-top: 5px;
}