@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);
}

/* ＝＝＝＝＝＝ スマホ専用非表示 ＝＝＝＝＝＝ */
.sp {
  display: none !important;
}

.sp_600 {
  display: none !important;
}

/* ＝＝＝＝＝＝ ページネーション ＝＝＝＝＝＝ */
.wp-pagenavi {
  clear: both;
  text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  border-radius: 3px;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}

.wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}

.wp-pagenavi span.current {
  color: #FFF;
  background-color: #9e67a9;
  border-color: #9e67a9;
  font-weight: bold;
}

/* ＝＝＝＝＝＝ フレックスレイアウト ＝＝＝＝＝＝ */
.row {
  display: flex;
  flex-wrap: wrap;
}

/* ＝＝＝＝＝＝ メインエリア ＝＝＝＝＝＝ */
.header_sub {
  max-width: 1200px;
  box-shadow: 0 0 8px gray;
  height: 70px;
  border-radius: 35px;
  grid-template-columns: 224px 1fr;
  margin: 37px auto 50px;
  display: grid;
  padding-left: 40px;
  padding-right: 40px;
}
.header_sub .logo {
  width: 224px;
}
.header_sub .logo > img {
  width: 100%;
}
.header_sub nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header_sub nav a.current {
  color: #00409c;
  font-weight: bold;
}
.header_sub nav ul {
  display: flex;
}
.header_sub nav ul > li > a {
  padding: 0 10px;
}

.breadcrumb {
  display: flex;
  justify-content: flex-end;
}

.tit_h1 {
  color: #00409c;
  font-size: 34px;
  position: relative;
  margin-top: 30px;
  margin-bottom: 100px;
}
.tit_h1::after {
  content: "";
  display: block;
  width: 3px;
  height: 36px;
  background-color: #00409c;
  left: -17px;
  top: 10px;
  border-radius: 2px;
  position: absolute;
}

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

main {
  display: block;
  overflow: hidden;
}

.link_box {
  padding-bottom: 6rem;
  max-width: 800px;
  margin: auto;
}
.link_box .link01 {
  padding-bottom: 6rem;
}

.lined-title {
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 20px;
}
.lined-title::before, .lined-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #000;
}
.lined-title span {
  padding: 0 47px;
  font-weight: bold;
  font-size: 35px;
}

/* ＝＝＝＝＝＝ コンテナ ＝＝＝＝＝＝ */
.container {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 50px;
  padding-right: 50px;
}
@media (max-width: 900px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.tit_style01 {
  color: #00409c;
  font-size: 42px;
  text-align: center;
}
.tit_style01 .tit_sub {
  font-size: 14px;
  display: block;
}

/* ＝＝＝＝＝＝ ヘッダー ＝＝＝＝＝＝ */
header {
  padding-inline: 35px 26px;
  background-color: #fff;
  column-gap: 35px;
  z-index: 99;
  /* ロゴとアイコンを横並びに */
  /* メール・インスタ */
}
header .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 15px;
}
header .hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 1px;
  background-color: #717071;
  transition: 0.2s;
}
header .hamburger span:nth-of-type(1) {
  transform-origin: right top;
}
header .hamburger span:nth-of-type(3) {
  transform-origin: right bottom;
}
header .hamburger.active span:nth-of-type(1) {
  transform: rotate(-26deg);
  width: 30px;
}
header .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active span:nth-of-type(3) {
  transform: rotate(26deg);
  width: 30px;
}
header .header_main {
  position: relative;
  padding: 30px 0;
}
header .logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin: auto;
  width: 136px;
}
header .icon_area {
  margin-left: 16px;
  text-decoration: none;
  color: #60003d;
  font-weight: 500;
  font-size: 1rem;
  position: absolute;
  right: 0;
  top: 32%;
  display: flex;
  gap: 10px;
}
header .icon_area a img {
  width: 45px;
  height: 45px;
}
header .header_menu {
  background-color: #fff;
  width: 200px;
  position: fixed;
  right: 0;
  top: 150px;
  padding: 50px 35px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: 0.2s ease-out;
  box-shadow: 5px 0 10px rgba(112, 112, 112, 0.5);
  z-index: 98;
}
header .header_menu li + li {
  margin-top: 20px;
}
header .header_menu a {
  font-size: 18px;
  transition: 0.3s;
}
header .header_menu a:hover {
  color: #606060;
  opacity: 0.7;
}
header .header_menu a:active {
  color: #606060;
}
header .header_menu.active {
  transform: translateX(0);
}

@media (max-width: 1114px) {
  #header {
    padding: 0 30px;
  }
}
/* ＝＝＝＝＝＝ アンカーリンクの調整 ＝＝＝＝＝＝ */
.anc {
  display: block;
  margin-top: -102px;
  padding-top: 102px;
}

.anchor {
  position: absolute;
  top: -130px;
}
@media (max-width: 1100px) {
  .anchor {
    top: -100px;
  }
}

/* ＝＝＝＝＝＝ 電話リンクの無効化 ＝＝＝＝＝＝ */
a[href^="tel:"] {
  pointer-events: none;
}

/* ＝＝＝＝＝＝ サブヘッダー ＝＝＝＝＝＝ */
.sub_header {
  height: 238px;
  background: url(/images/top/bg_pink.jpg) repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
}
.sub_header h1 {
  color: #606060;
  font-size: 48px;
  text-align: center;
  font-weight: 300;
  font-family: "Noto Serif JP", serif;
}
.sub_header h1 > span {
  font-size: clamp(24px, 2.5vw, 30px);
  display: block;
  font-family: "Noto Sans JP", sans-serif;
}

.subtitle {
  color: #333;
  text-align: center;
  font-size: 2.5rem;
}
.subtitle > small {
  font-size: 18px;
  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;
  font-family: "Noto Serif JP", serif;
}

.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;
}

.header_tit02 {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  background-color: #eaaea0;
}
.header_tit02 h2 {
  font-size: 3.2rem;
  /*height: 70px;
  line-height: 70px;*/
  text-align: center;
  margin: 0;
  z-index: 1;
  position: relative;
  padding: 0 4rem;
  background-color: white;
}
.header_tit02 h2 > span {
  font-size: 19px;
  display: block;
  height: 20px;
  line-height: 1.7;
}

.bg_leaf {
  position: absolute;
  left: -24rem;
  bottom: -160px;
  width: 130%;
  z-index: -1;
}

.tit_en {
  font-family: "Times New Roman", Times, "Times-Roman", serif;
}

.tit03 {
  background: #eaaea0;
  padding: 20px;
  font-size: 2.5rem;
  text-align: center;
  font-weight: 400;
}

.color_lpink {
  color: #eaaea0;
}

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

/* ＝＝＝＝＝＝ フッター ＝＝＝＝＝＝ */
.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;
  margin-top: 0px !important;
}
.footer_cont01 .container .text_h2 {
  font-size: 34px;
  color: #00409c;
  position: relative;
  padding-top: 60px;
  text-align: center;
  padding-bottom: 15px;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
}
.footer_cont01 .container .text_h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  position: absolute;
  bottom: 0;
  background-color: #00409c;
}
.footer_cont01 .container .contact_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 78px;
}
.footer_cont01 .container .contact_area .box_l {
  border-right: 1px solid #666666;
}
.footer_cont01 .container .contact_area .box_l img {
  width: 56px;
  margin: auto;
  display: block;
  margin-top: -21px;
}
.footer_cont01 .container .contact_area .box_l > a {
  font-size: 44px;
  color: #004394;
  margin: auto;
  display: block;
  text-align: center;
}
.footer_cont01 .container .contact_area .box_l p {
  text-align: center;
}
.footer_cont01 .container .contact_area .box_l p .text_s {
  display: block;
  font-size: 12px;
}
.footer_cont01 .container .contact_area .box_r a {
  font-size: 34px;
  color: #004394;
  margin: auto;
  text-align: center;
  display: block;
  margin-bottom: 6px;
}
.footer_cont01 .container .contact_area .box_r img {
  width: 56px;
  display: block;
  margin: auto;
}
.footer_cont01 .container .contact_area .box_r .btn {
  display: flex;
  justify-content: center;
}
.footer_cont01 .container .contact_area .box_r .btn a {
  color: white;
  width: 365px;
  height: 52px;
  background-color: #00409c;
  font-size: 16px;
  border-radius: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#Top .footer_cont01 {
  position: relative;
  margin-top: 160px !important;
}
#Top .footer_cont01::after {
  content: "";
  display: block;
  width: 100%;
  height: 138px;
  background: url(/images/top/bg_contact.svg) no-repeat center;
  position: absolute;
  top: -196px;
  max-width: 1060px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

.footer_cont02 {
  background-color: #efefef;
  padding-top: 50px;
}
.footer_cont02 .grid_box {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 25px;
}
@media (max-width: 980px) {
  .footer_cont02 .grid_box {
    grid-template-columns: 50% 1fr;
  }
}
.footer_cont02 .grid_box .box_company {
  display: grid;
  grid-template-columns: 85px 1fr;
}
.footer_cont02 .grid_box .box_company .text_box {
  padding-left: 30px;
}
.footer_cont02 .grid_box .box_company .text_box h3 {
  font-size: 20px;
  padding-bottom: 20px;
}
.footer_cont02 .grid_box .box_company .text_box address {
  font-style: normal;
}
.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-left: 115px;
  padding-top: 30px;
}
.footer_cont02 .list ul > li {
  line-height: 1.7;
  font-size: 14px;
  text-indent: -14px;
  padding-left: 14px;
}
.footer_cont02 .policy {
  display: grid;
  grid-template-columns: 50% 50%;
  text-align: center;
  padding-left: 115px;
  margin-top: 40px;
  padding-bottom: 15px;
}
.footer_cont02 .policy span {
  padding: 10px 10px 10px;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}
.footer_cont02 .policy span:nth-of-type(2) {
  position: relative;
  /* &::before {
     display: block;
     content: "";
     width: 1px;
     height: 30px;
     background-color: #cccccc;
     position: absolute;
     right: 0;
     top: 6px;
   }*/
}
.footer_cont02 .policy span:nth-of-type(2)::after {
  display: block;
  content: "";
  width: 1px;
  height: 30px;
  background-color: #cccccc;
  position: absolute;
  left: 0;
  top: 6px;
}
.footer_cont02 .policy span > a {
  color: #606060;
}

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

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

/* 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;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Top header {
  position: relative;
  padding-inline: 35px 26px;
}
#Top header .header_sub {
  position: absolute;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  box-sizing: border-box;
  width: calc(100% - 75px);
}

#Top main {
  position: relative;
  overflow: hidden;
  /*アニメーション*/
  /* 上下方向ぷかぷかアニメーション */
}
#Top main .fv_swiper {
  position: relative;
  background-color: #19b7fd;
  padding-top: 87px;
}
#Top main .fv_swiper .offset-box {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
}
#Top main .fv_swiper .text-area {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  padding-right: 30px;
  width: 38%;
  margin-left: auto;
}
#Top main .fv_swiper .text-area > h2 {
  font-size: 54px;
  color: white;
}
#Top main .fv_swiper .text-area > p {
  font-size: 20px;
  padding-top: 30px;
  color: white;
}
#Top main .img_wrap {
  position: relative;
  height: 90vh;
  width: 60%;
  overflow: hidden;
}
@media (max-width: 1450px) {
  #Top main .img_wrap {
    height: 70vh;
  }
}
#Top main .floating {
  will-change: transform;
}
#Top main .airplane {
  left: 10vw;
  top: 10vh;
  width: 9vw;
  animation: floatUpDown 3.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: 5vw;
  right: 10vw;
  top: 3vw;
}
@keyframes balloonUpDown {
  0% {
    transform: translateY(-15px);
  } /* 少し上 */
  50% {
    transform: translateY(25px);
  } /* 少し下 */
  100% {
    transform: translateY(-15px);
  } /* また上 */
}
#Top main .boat.boat01 {
  position: absolute;
  top: 2vh;
  left: 0vw;
  width: 14vw;
  z-index: 2;
  animation: floatUpDown 4.5s ease-in-out infinite;
  width: 102px;
}
#Top main .boat.boat02 {
  position: absolute;
  bottom: 35vh;
  left: 4vw;
  width: 8vw;
  z-index: 1;
  animation: floatUpDown 7s ease-in-out infinite;
  animation-delay: 0s;
  width: 80px;
}
#Top main .boat.boat03 {
  position: absolute;
  bottom: 2vh;
  left: 0vw;
  width: 8vw;
  z-index: 1;
  animation: floatUpDown 7s ease-in-out infinite;
  animation-delay: 3.5s;
  width: 80px;
}
@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}
#Top main .sec_news {
  padding-top: 42px;
  padding-bottom: 60px;
}
#Top main .sec_news h2 {
  font-size: 42px;
  padding-bottom: 45px;
}
#Top main .sec_news .news_list {
  padding: 33px 70px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border-radius: 35px;
  max-width: 690px;
  box-sizing: border-box;
  margin: auto;
}
#Top main .sec_news .news_list > li {
  display: grid;
  grid-template-columns: 200px 1fr;
  align-items: center;
  justify-content: center;
  margin: auto;
  line-height: 1.8;
}
#Top main .sec_news .news_list > li .date {
  font-size: 18px;
  width: 200px;
  padding-bottom: 0 !important;
}
#Top main .sec_news .news_list > li > p {
  font-size: 18px;
}
#Top main .sec_news .news_list > li > p a {
  font-size: 18px;
}
#Top main .sec_company {
  position: relative;
  padding-top: 44px;
  padding-bottom: 50px;
}
#Top main .sec_company::after {
  content: "";
  display: block;
  width: 100%;
  height: 124px;
  background: url(/images/top/bg_company.svg) no-repeat center;
  position: absolute;
  top: -38px;
  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;
}
#Top main .sec_company .grid_box h2 {
  color: #00409c;
  font-size: 42px;
  padding-bottom: 57px;
}
#Top main .sec_company .grid_box h2 .sub_tit {
  font-size: 14px;
  display: block;
  color: #231815;
}
#Top main .sec_company .grid_box .heading {
  font-size: 40px;
  padding-bottom: 40px;
  margin-left: -1rem;
}
#Top main .sec_company .grid_box .text {
  line-height: 1.7;
}
#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;
}
#Top main .sec_company .commitment_area h3 {
  color: #00409c;
  font-size: 42px;
  text-align: center;
  padding-bottom: 25px;
}
#Top main .sec_company .commitment_area h3 .sub_tit {
  font-size: 14px;
  display: block;
  color: #231815;
}
#Top main .sec_company .commitment_area .flex_box {
  display: flex;
  justify-content: space-between;
}
#Top main .sec_company .commitment_area .flex_box > .box {
  width: 30%;
}
#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: 130px;
  padding-bottom: 50px;
}
#Top main .sec_business::after {
  content: "";
  display: block;
  width: 100%;
  height: 138px;
  background: url(/images/top/bg_business.svg) no-repeat center;
  position: absolute;
  top: -38px;
  max-width: 1060px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#Top main .sec_business .caption {
  font-size: 20px;
}
#Top main .sec_business h2 {
  padding-top: 47px;
  font-size: 35px;
  padding-bottom: 40px;
}
#Top main .sec_business .text_sp {
  text-align: center;
  padding-bottom: 20px;
}
#Top main .sec_business .box_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  padding-bottom: 80px;
}
#Top main .sec_business .box_wrap .Partner_box {
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.34);
  padding: 25px;
  border-radius: 30px;
  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.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;
}
#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;
}
#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: 38px;
}
#Top main .sec_business .service_wrap table th > p {
  padding-left: 20px;
}
#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;
}
#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: 17px;
}
#Top main .sec_business .service_wrap table td .text_box p {
  font-size: 14px;
}
#Top main .sec_business .service_wrap table tr:last-child td {
  border-bottom: none;
}
#Top main .sec_outline {
  position: relative;
  padding-top: 130px;
  padding-bottom: 50px;
  background-color: #f0f2f5;
}
#Top main .sec_outline::after {
  content: "";
  display: block;
  width: 100%;
  height: 155px;
  background: url(/images/top/bg_outline.svg) no-repeat center;
  position: absolute;
  top: -38px;
  max-width: 1060px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#Top main .sec_outline table {
  margin-top: 85px;
  margin-bottom: 50px;
  width: 100%;
}
#Top main .sec_outline table tr {
  border-bottom: 1px solid #666666;
}
#Top main .sec_outline table th {
  width: 25%;
  font-size: 17px;
  font-weight: 400;
  vertical-align: middle;
  padding: 20px 20px 20px 26px;
  position: relative;
  text-align: left;
}
#Top main .sec_outline table th span {
  position: relative;
}
#Top main .sec_outline table th span::after {
  content: "";
  display: block;
  width: 2px;
  height: 15px;
  background-color: #004394;
  position: absolute;
  left: -10px;
  top: 6px;
}
#Top main .sec_outline table td {
  vertical-align: middle;
  padding: 20px;
  font-size: 17px;
}
#Top main .sec_outline .btn {
  height: 60px;
  width: 300px;
  margin: auto;
  background-color: #004394;
  color: white;
  line-height: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}
#Top main .sec_outline .btn > a {
  color: white;
  text-align: center;
}

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

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

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

/*前頁カテゴリー*/
#news1 {
  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;
}

.cate a {
  border: 2px solid rgb(195, 195, 195);
  border: white;
  border-radius: 13px;
  padding: 3px 8px;
  width: 70px;
  background: #00409c;
  color: white;
}

.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 main {
  /*シングルページ*/
}
#blog main .sub-header .container {
  max-width: 1024px;
  padding-right: 30px;
  padding-left: 30px;
}
#blog main .sub-header h1 {
  font-size: 35px;
  padding-bottom: 30px;
}
#blog main .wrapper {
  position: relative;
  background-color: #f3f3f3;
  padding-bottom: 50px;
  /*フォント　デザイン*/
  /*margin: 0 0 130px;*/
  /*pager*/
}
#blog main .wrapper .breadcrumbs {
  width: 100%;
  margin: auto;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  padding-top: 20px;
  font-size: 12px;
  color: #949494;
}
@media (max-width: 1080px) {
  #blog main .wrapper .breadcrumbs {
    box-sizing: border-box;
  }
}
#blog main .wrapper .breadcrumbs span {
  font-size: 12px;
  line-height: 1.3;
}
#blog main .wrapper .fontBig01 {
  font-size: 25px;
}
#blog main .wrapper .fontBig02 {
  font-size: 20px;
}
#blog main .wrapper .fontBold {
  font-weight: 600;
}
#blog main .wrapper .underL {
  border-bottom: 2px solid #7f7f7f;
  padding-top: 20px;
}
#blog main .wrapper .padBottom {
  padding-bottom: 15px;
}
#blog main .wrapper .padtop10 {
  padding-top: 10px;
}
#blog main .wrapper .padtop20 {
  padding-top: 20px;
}
#blog main .wrapper .squareLine {
  border: 1px solid #7f7f7f;
  padding: 20px;
}
#blog main .wrapper .list01 {
  padding-bottom: 10px;
}
#blog main .wrapper .list01 > li {
  position: relative;
  padding-left: 20px;
}
#blog main .wrapper .list01 > li::after {
  content: "■";
  color: #7f7f7f;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 0px;
  border-radius: 50%;
}
#blog main .wrapper .marB20 {
  margin-bottom: 20px;
}
#blog main .wrapper .test {
  font-size: large;
}
#blog main .wrapper .container02 {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
}
#blog main .wrapper .container {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  padding-right: 30px;
  padding-left: 30px;
}
#blog main .wrapper ul.blog_con {
  margin: 0 -20px auto;
  padding-left: 0;
  justify-content: flex-start;
  display: flex;
  flex-wrap: wrap;
}
#blog main .wrapper ul.blog_con > li {
  width: 33.333%;
  list-style: none;
  box-sizing: border-box;
  margin-bottom: 40px;
  border-bottom: 1px solid rgb(223, 223, 223);
  padding: 0 22px 65px;
}
#blog main .wrapper ul.blog_con > li .card_wrapper {
  background-color: white;
  height: 100%;
  transition: 0.3s;
  padding-bottom: 25px;
  position: relative;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .blog_thumb:hover {
  opacity: 0.7;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper {
  padding: 20px 20px;
  color: #5e5e5e;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > .category > .post-categories > li > a {
  color: #5e5e5e;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  margin-top: 15px;
  position: relative;
  border: 2px solid #484848;
}
#blog main .wrapper ul.blog_con > li .card_wrapper .text_wrapper > a > h4.title_blog {
  padding-top: 13px;
  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: 25px;
  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 .wrapper .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 .wrapper .cate_wrap > ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 20px;
}
#blog main .wrapper .cate_wrap > ul > li:first-child {
  padding-left: 20px;
}
#blog main .wrapper .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 .wrapper .cate_wrap > ul > li > a:hover {
  background-color: #b0c4e0;
  color: white;
  border: 1px solid #b0c4e0;
}
#blog main.single-page .wrapper {
  min-height: 300px;
  padding-bottom: 100px;
  /* スクリーンリーダー限定テキスト： the_post_navigation() 用 */
}
#blog main.single-page .wrapper .cont .entryinfo {
  padding-bottom: 33px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
}
#blog main.single-page .wrapper .cont .entryinfo .categories {
  width: 100px;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .cate {
  padding-bottom: 0px;
  line-height: 1.5;
}
#blog main.single-page .wrapper .cont .entryinfo .categories .post-categories > li > a {
  color: #7f7f7f;
  font-size: 12px;
  text-align: center;
  display: inline-block;
  width: 100%;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 13px;
  display: inline-block;
  width: 70px;
  position: relative;
  border: 2px solid #7f7f7f;
}
#blog main.single-page .wrapper .cont .entryinfo time {
  font-weight: bold;
}
#blog main.single-page .wrapper p {
  line-height: 1.7;
  padding-bottom: 15px;
}
#blog main.single-page .wrapper .nav-links {
  clear: both;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
}
#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;
}

/*＝＝＝＝＝＝staff＝＝＝＝＝＝*/
#Company header {
  padding-inline: 35px;
}

#Company .tit_h1 {
  margin-bottom: 10px;
}
#Company .sec_heading .text_box {
  background: #f0f2f5;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 90px;
}
#Company .sec_heading h2 {
  margin-bottom: 40px;
}
#Company .sec_heading h3 {
  font-size: 46px;
  color: #00409c;
  text-align: center;
}
#Company .sec_message {
  margin-bottom: 60px;
}
#Company .sec_message h3 {
  font-size: 34px;
  color: #00409c;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
  padding-bottom: 20px;
}
#Company .sec_message h3::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  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;
}
#Company .sec_message .grid_box .text_box > p {
  padding-bottom: 20px;
}
#Company .sec_message .grid_box .img_box p {
  text-align: center;
}
#Company .sec_company-info {
  padding-bottom: 120px;
}
#Company .sec_company-info h2 {
  font-size: 34px;
  color: #00409c;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
#Company .sec_company-info h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  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: 20px 0 20px 10px;
}
#Company .sec_company-info dl > dt::after {
  content: "";
  display: block;
  width: 2px;
  height: 16px;
  background-color: #004983;
  position: absolute;
  left: 0;
  top: 24px;
}
#Company .sec_partner-companies {
  background-color: #f0f2f5;
  padding-top: 73px;
  padding-bottom: 80px;
}
#Company .sec_partner-companies h2 {
  font-size: 34px;
  color: #00409c;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
  margin-bottom: 50px;
}
#Company .sec_partner-companies h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  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;
}
#Company .sec_partner-companies .grid_box .box > h3 {
  color: #004394;
  font-size: 27px;
  padding-bottom: 30px;
  text-align: left;
}
#Company .sec_partner-companies .grid_box .box > ul > li {
  font-size: 18px;
  color: #004394;
  position: relative;
  padding-left: 10px;
  line-height: 1.6;
}
#Company .sec_partner-companies .grid_box .box > ul > li a {
  font-size: 18px;
  color: #004394;
}
#Company .sec_partner-companies .grid_box .box > ul > li::after {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #004394;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#Company .sec_partner-companies .notice {
  text-align: center;
}
#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: 35px;
  color: #00409c;
  position: relative;
  padding-bottom: 10px;
}
#Company .text_h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}

/*＝＝＝＝＝＝staff＝＝＝＝＝＝*/
#Staff header {
  padding-inline: 35px;
}

#Staff .sec_staff .container .grid_box {
  padding-top: 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
#Staff .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;
}
#Staff .text_h2 {
  font-size: 35px;
  color: #00409c;
  position: relative;
  padding-bottom: 10px;
}
#Staff .text_h2::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #00409c;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  border-radius: 2px;
  position: absolute;
}

/*＝＝＝＝＝＝top＝＝＝＝＝＝*/
#Policy #header {
  border-bottom: 2px solid #00409c;
}
#Policy .header_sub {
  box-shadow: none;
  margin: 10px auto 10px;
}
#Policy .breadcrumb {
  padding-top: 15px;
}
#Policy main .sec_title {
  padding-bottom: 56px;
}
#Policy main .sec_title .tit_h1 {
  text-align: center;
  font-size: 27px;
  margin-bottom: 10px;
}
#Policy main .sec_title .tit_h1::after {
  display: none;
}
#Policy main .sec_title p {
  text-align: center;
  line-height: 1.6;
  text-decoration: underline;
}
#Policy main h2 {
  font-size: 27px;
  color: #00409c;
  padding: 80px 0 30px;
  text-align: center;
}
#Policy main .pd_bottom {
  padding-bottom: 70px;
}
#Policy main .pd_bottom02 {
  padding-bottom: 50px !important;
}
#Policy main .text_wrap {
  padding-bottom: 22px;
}
#Policy main .text_wrap h3 {
  color: #00409c;
  font-size: 17px;
  padding-bottom: 10px;
}
#Policy main .text_wrap .list li {
  padding-left: 1em;
  position: relative;
  text-indent: 0rem;
  padding-left: 1rem;
  line-height: 1.6;
}
#Policy 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＝＝＝＝＝＝*/
#Customer-first #header {
  border-bottom: 2px solid #00409c;
}
#Customer-first .header_sub {
  box-shadow: none;
  margin: 10px auto 10px;
}
#Customer-first .breadcrumb {
  padding-top: 15px;
}
#Customer-first main p {
  font-size: 14px;
}
#Customer-first main .sec_title {
  padding-bottom: 56px;
}
#Customer-first main .sec_title .tit_h1 {
  text-align: center;
  font-size: 27px;
  margin-bottom: 10px;
}
#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: 14px;
}
#Customer-first main h2 {
  font-size: 17px;
  color: #00409c;
  padding: 0px 0 20px;
  text-align: center;
}
#Customer-first main h3 {
  font-size: 17px;
  color: #00409c;
  text-align: left;
}
#Customer-first main .tit_principle {
  font-size: 17px;
  color: #00409c;
  text-align: left;
  font-weight: 600;
}
#Customer-first main .core_values h2 {
  font-size: 20px;
  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: 14px;
}
#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: 50px !important;
}
#Customer-first main .pd_bottom03 {
  padding-bottom: 30px !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: 17px;
}
#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: 14px;
}
#Customer-first main .dl_style01 {
  display: flex;
  justify-content: flex-start;
}
#Customer-first main .dl_style01 > dt {
  width: auto;
  font-weight: 600;
}
#Customer-first main .dl_style01 > dd {
  width: auto;
}
#Customer-first main .dl_style02 {
  display: flex;
  justify-content: flex-start;
}
#Customer-first main .dl_style02 > dt {
  width: 80px;
  font-weight: 600;
}
#Customer-first main .dl_style02 > dd {
  width: calc(100% - 80px);
}
#Customer-first main .dl_style03 {
  display: flex;
  justify-content: flex-start;
}
#Customer-first main .dl_style03 dt.w {
  width: 80px;
  font-weight: 600;
}
#Customer-first main .dl_style03 dd.w {
  width: calc(100% - 80px);
}
#Customer-first main .width_adjust > dt {
  width: 115px;
  font-size: 14px;
}
#Customer-first main .width_adjust > dd {
  width: calc(100% - 115px);
}
#Customer-first main .width_adjust02 > dt {
  width: 115px;
  font-size: 14px;
}
#Customer-first main .width_adjust02 > dd {
  width: calc(100% - 115px);
}
#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: 17px;
  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: 30px;
}