html {
  overflow-x: hidden;
}

body {
  margin: 0;
  /* bodyのマージンをリセット */
  overflow-x: hidden;
  /* 余計な水平スクロールを隠す */
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.4;
  scroll-margin-top: 150px;
}

div,
section {
  scroll-margin-top: 150px;
}
@media only screen and (max-width: 680px) {
  div,
section {
  scroll-margin-top: 80px;
}
}
div,
p {
  font-family: "Noto Sans JP", sans-serif;
}

a {
  scroll-margin-top: 150px;

}

img {
  width: 100%;
}

#company_about {
  scroll-margin-top: 150px;
}

.section_inner {
  max-width: 1140px;
  width: 100%;
  margin: auto;
  position: relative;
}


.section_title {
  font-size: 96px;
  font-weight: bold;
  letter-spacing: 0.05em;
  font-family: "Work Sans", sans-serif;
}

.section_sub_title {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.section_text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}

.txt_midium {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.txt_midium span {
  font-weight: 700;
}

.fw_bold {
  font-weight: bold;
}

.fc_red {
  color: #FF0000;
}

.section_message {
  color: #14336A;
  text-align: center;
  font-family: "Cedarville Cursive";
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
}

@media only screen and (max-width: 1250px) {
  .section_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .section_title {
    font-size: 80px;

  }

  .section_sub_title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 980px) {
  .section_title {
    font-size: 60px;
  }

  .section_sub_title {
    font-size: 32px;
  }

  .section_text {
    font-size: 22px;
  }

  .txt_midium {
    font-size: 18px;
  }
}

@media only screen and (max-width: 680px) {
  .section_title {
    font-size: 75px;
  }

  .section_sub_title {
    font-size: 28px;
  }

  .section_text {
    font-size: 20px;
  }

  .txt_midium {
    font-size: 16px;
  }
}

/* アニメーションここから */
/* フェードインここから */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* fadeUp */

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeUpTrigger {
  opacity: 0;
}

#parallax_bg {
  background-position: center;
  background-size: cover;
}

@keyframes draw {
  from {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dasharray: 1000;
    stroke-dashoffset: 0;
  }
}

#svganimation {
  stroke: #14336a;
  stroke-width: 1px;
  fill: none;
  animation: draw 10s forwards;
  /* アニメーションの時間を10秒に設定 */
}

/* スライドテキストここから */
.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;

}

/*左右のアニメーション*/
.leftAnime_load,
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  display: block;
  animation-name: slideTextX100;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

.slideAnimeRightLeft {
  display: block;
  animation-name: slideTextX-100;
  animation-duration: 1.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}


@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }

  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}

/* スライドテキストここまで */
/* スクロールここから */
.scrolldown {
  position: absolute;
  right: 5%;
  bottom: 5%;
  height: 80px;
}

.scrolldown span {
  position: absolute;
  left: -25px;
  top: -25px;
  color: #fff;
  font-size: 18px;
}

.scrolldown::after {
  content: "";
  position: absolute;
  top: 0;
  width: 2px;
  height: 70px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }

  30% {
    height: 30px;
    opacity: 1;
  }

  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

@media only screen and (max-width: 680px) {
  .scrolldown {
    right: 10%;
  }
}

/* スクロールここまで */
/* アニメーションここまで */
.pc {
  display: block !important;
}

.pc_tab {
  display: block;
}

.sp {
  display: none !important;
}

.tab_only {
  display: none !important;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 980px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .tab_only {
    display: block !important;
  }
}

@media only screen and (max-width: 680px) {
  .pc_tab {
    display: none !important;
  }

  .sp_only {
    display: block !important;
  }

  .tab_only {
    display: none !important;
  }
}

.pc_br {
  display: inline;
}

.pc_tab_br {
  display: inline;
}

.tab_only_br {
  display: none;
}

.sp_br {
  display: none;
}

.sp_only_br {
  display: none;
}

@media only screen and (max-width: 980px) {
  .sp_br {
    display: inline;
  }

  .tab_only_br {
    display: inline;
  }

  .pc_br {
    display: none;
  }
}

@media only screen and (max-width: 680px) {
  .sp_only_br {
    display: inline;
  }

  .pc_tab_br {
    display: none;
  }

  .tab_only_br {
    display: none;
  }
}

.more_btn {
  text-align: center;
}

.more_btn_link {
  display: block;
  border-radius: 50px;
  border: 2px solid #0A3F9A;
  background-color: #0A3F9A;
  max-width: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.more_btn_link:before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 1s;
  z-index: 0;
  border-radius: 48px;
}

.more_btn_link:hover:before {
  transform: scale(1);
  transform-origin: left top;
}

.more_btn_link::after {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  right: 18px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.more_btn_link:hover:after {
  background-color: #0A3F9A;
}

.more_btn_link p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}

.more_btn_link:hover p {
  color: #0A3F9A;
}

.bg_white_btn .more_btn_link {
  background-color: #fff;
  border: 2px solid #0e2c61;
  margin: auto;
}

.bg_white_btn .more_btn_link:hover {
  border: 2px solid #fff;
}

.bg_white_btn .more_btn_link::after {
  background-color: #0A3F9A;
}

.bg_white_btn .more_btn_link:hover:after {
  background-color: #fff;
}

.bg_white_btn .more_btn_link:before {
  background-color: #0A3F9A;
}

.bg_white_btn .more_btn_link:hover:before {
  background-color: #0e2c61;
}

.bg_white_btn .more_btn_link p {
  color: #0A3F9A;
}

.bg_white_btn .more_btn_link:hover p {
  color: #fff;
}

@media only screen and (max-width: 980px) {
  .more_btn_link {
    max-width: 250px;
  }

  .more_btn_link::after {
    width: 10px;
    height: 10px;
  }

  .more_btn_link p {
    font-size: 20px;
    padding: 18px 0;
  }
}

@media only screen and (max-width: 680px) {
  .more_btn_link {
    max-width: 200px;
  }

  .more_btn_link::after {
    width: 8px;
    height: 8px;
  }

  .more_btn_link p {
    font-size: 16px;
    padding: 15px 0;
  }
}

/* ヘッダーここから */
#header {
  background: transparent;
  color: #fff;
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
  transition: background-color 0.3s;
}
.archive,
.single,
.page {
  padding-top: 82px;
}
@media only screen and (max-width: 980px) {
  .archive,
  .single,
  .page {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 980px) {
  .archive,
  .single,
  .page {
    padding-top: 80px;
  }
}
.archive #header,
.single #header,
.page #header {
  position: fixed;
  color: #333;
  background-color: #fff;
}

.home #header {
  position: fixed;
  color: #fff;
}

#header.scrolled {
  background-color: #fff;
  /* 黒色 */
  color: #333;
  /* 文字色を白色に */
}

.archive #header.scrolled,
.single #header.scrolled,
.page #header.scrolled {
  position: fixed;
}

.scrolled {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.10);
}

.header_inner {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  /* padding: 30px 25px 23px 55px; */
  padding: 0 25px 0px 55px;
}

.header_logo {
  width: 30%;
  max-width: 270px;
  margin-right: auto;
}

.header_logo_img {
  display: block;
  height: 50px;
  background-image: url("/wp-content/uploads/2024/07/BYD_logo.png");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.scrolled .header_logo_img {
  background-image: url("/wp-content/uploads/2024/07/BYD_logo.png");
}

.header_nav {
  max-width: 800px;
  width: 70%;
}

.header_nav_menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_nav_menu_item {
  position: relative;
}

.header_nav_menu_item_link {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: bold;
  padding: 30px 10px 30px;
}

.header_nav_menu_item_link::after {
  content: '';
  position: absolute;
  bottom: 25%;
  left: 0%;
  right: 0;
  margin: auto;
  width: 65%;
  height: 2px;
  background: #fff;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.header_nav_menu_item_link:hover::after {
  transform: scale(1, 1);
}

.page .header_nav_menu_item_link::after,
.single .header_nav_menu_item_link::after,
.archive .header_nav_menu_item_link::after,
.scrolled .header_nav_menu_item_link::after {
  background: #0A3F9A;
}

.navi_current {
  width: 16%;
  text-align: center;
}

.header_contact {
  margin: auto;
}

.navi_current:nth-child(4) {
  width: 20%;
}

.navi_current:last-child {
  width: 22%;
}

.navi_current_head {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  display: block;
}

.header_contact_link {
  width: 175px;
  display: block;
  background-color: #0A3F9A;
  border: 1px solid #0A3F9A;
  border-radius: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.header_contact_link p {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0;
  color: #fff;
  position: relative;
  z-index: 1;
}

.header_contact_link:hover p {
  color: #0A3F9A;
}

.header_contact p {
  padding: 12px 0;
}

.header_contact_link:before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 1s;
  z-index: 0;
  border-radius: 48px;
}

.header_contact_link:hover:before {
  transform: scale(1);
  transform-origin: left top;
}

.sub-set {
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, .2);
  display: flex;
  height: auto;
  justify-content: flex-start;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 77px;
  transform: translateX(-50%);
  transition: opacity .2s;
  width: 240px;
  z-index: 999;
}

.header_nav_menu_item:hover .sub-set {
  opacity: 1;
  pointer-events: auto;
}

.sub-set>.sub-list {
  margin: 0;
  position: relative;
  width: 240px;
}

.sub-set>.sub-list>.header_nav_menu_item_link {
  height: auto;
  margin: 0;
  width: auto;
}

.sub-set>.sub-list>.header_nav_menu_item_link {
  align-items: flex-start;
  color: #222;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.1;
  padding: 0;
  position: relative;
  text-align: left;
  text-decoration: none;
}

.sub-set>.sub-list>.header_nav_menu_item_link a {
  padding: 15px 25px;
  display: block;
}

.sub-set>.sub-list>.header_nav_menu_item_link::after {
  display: none;
}

.sub-set>.sub-list>.header_nav_menu_item_link:hover {
  background-color: #eee;
}

@media only screen and (max-width: 1400px) {
  .navi_current_head {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1200px) {
  .header_inner {
    padding: 0 20px;
  }

  .header_logo {
    width: 20%;
  }

  .header_right {
    width: 80%;
  }

  .header_nav {
    width: 75%;
  }
}

@media only screen and (max-width: 980px) {
  .header_inner {
    padding: 20px;
  }

  .header_right_bottom {
    padding-top: 7px;
    padding-bottom: 15px;
  }

  .header_nav,
  .header_nav_menu_item_link::after {
    display: none;
  }

  .header_logo {
    width: 200px;
  }

  .header_logo_img {
    height: 60px;
  }

  .header_right_top img {
    width: 100px;
  }

  .header_contact {
    width: 230px;
    margin: auto;
    color: #fff;
  }

  .header_contact_link {
    margin: auto;
  }

  .header_contact:hover {
    color: #005CB9;
  }
}

@media only screen and (max-width: 680px) {
  .header_right_bottom {
    margin-right: 0;
  }

  .header_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .header_inner_top {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header_logo {
    width: 180px;
  }

  .header_logo_img {
    height: 40px;
  }

  .header_right_top {
    width: unset;
    gap: 20px;
    padding-right: 10%;
    justify-content: flex-end;
  }

  .header_right_top img {
    width: 90px;
  }
}

/* ヘッダーここまで */
/* フッターここから */
.footer {
  background-color: #fff;
  padding: 80px 0 25px;
}

.footer_inner {
  max-width: 1070px;
  width: 100%;
  margin: auto;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}

.footer_logo_container {
  max-width: 340px;
  width: 35%;
}

.footer_logo {
  width: 100%;
  margin-bottom: 40px;
}

.footer_company_item {
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.footer_company_item:last-child {
  margin-bottom: 0;
}

.footer_company_item span {
  font-weight: bold;
}

.footer_link_menu {
  max-width: 465px;
  width: 50%;
  display: flex;
  justify-content: space-between;
}

.footer_link_menu_nav:last-child .footer_link_menu_list {
  position: relative;
}

.policy_img {
  position: absolute;
  left: 0;
  bottom: -90px;
  width: 72px;
  height: 72px;
}

.policy_img a:hover {
  opacity: 0.6;
}

.footer_link_menu_item a,
.footer_link_sub_menu_item a {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}

.footer_link_sub_menu_item a {
  margin-bottom: 10px;
}

.footer_link_menu_item a:hover,
.footer_link_sub_menu_item a:hover {
  opacity: 0.6;
}

.footer_link_sub_menu {
  padding-left: 15px;
}

.footer_copyright {
  text-align: center;
  color: #231815;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1100px) {
  .footer_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 980px) {
  .footer {
    padding: 50px 0 20px;
  }

  .footer_container {
    margin-bottom: 50px;
  }

  .policy_img {
    bottom: -50px;
    width: 40px;
    height: 40px;
  }
}

@media only screen and (max-width: 680px) {
  .footer {
    padding: 30px 0 15px;
  }

  .footer_inner {
    max-width: 400px;
  }

  .footer_container {
    position: relative;
    flex-direction: column;
    margin-bottom: 45px;
  }

  .footer_logo_container {
    max-width: unset;
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
  }

  .footer_logo {
    max-width: 320px;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }

  .footer_link_menu_nav:last-child {
    position: static;
  }

  .footer_link_menu {
    position: relative;
    margin: auto;
    width: 100%;
    flex-direction: column;
    text-align: center;
    margin-bottom: 15px;
  }

  .footer_link_menu_nav:last-child .footer_link_menu_item:last-child a {
    margin-bottom: 0;
  }

  .policy_img {
    position: static;
    margin: auto;
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
  }

  .footer_company_item {
    text-align: left;
    font-size: 14px;
    padding: 0 15px;
  }

  .footer_company {
    padding-top: 30px;
    border-top: 1px solid #D9D9D9;
  }

  .footer_copyright {
    font-size: 12px;
  }
}

/* フッターここまで */
/* メインビジュアルここから */
.mv {
  background-image: url("/wp-content/uploads/2024/10/top_mv.png");
  background-size: cover;
  background-position: center;
  position: relative;
}

.mv_overlay {
  background: rgba(29, 25, 25, 0.25);
  padding: 285px 0 115px;
}

.mv_container {
  max-width: 1240px;
  width: 100%;
  margin: auto;
  color: #fff;
}

.mv_container_title {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.mv_container_text {
  max-width: 475px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 35px;
}

.mv_contact {
  text-align: center;
}

@media only screen and (max-width: 1280px) {
  .mv_container {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .mv_overlay {
    padding-top: 19.8vw;
    padding-bottom: 8vw;
  }

  .mv_container_title {
    font-size: 40px;
  }

  .mv_container_text {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 980px) {
  .mv_container_title {
    font-size: 34px;
  }

  .mv_container_text {
    font-size: 18px;
    margin-bottom: 20px;
  }

}

@media only screen and (max-width: 680px) {
  .mv {
    background-image: url("/wp-content/uploads/2024/10/top_mv_sp.png");
  }
  .mv_overlay {
    padding-top: 250px;
    padding-bottom: 40px;
  }
  .mv_container {
    padding: 0 30px;
  }
  .mv_container_title {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .mv_container_text {
    font-size: 18px;
    max-width: unset;
    margin-bottom: 40px;
  }

  .mv_contact .more_btn_link {
    
  }


}

/* トップニュースここから */
.top_news {
  padding: 45px 0 40px;
}

.top_news .top_news_inner {
  max-width: 1140px;
  width: 100%;
  margin: auto;
}

.top_news_container {
  display: flex;
  justify-content: left;
  gap: 7.56vw;
}

.top_news_title_container {
  width: 28%;
}

.top_news_title_box {
  margin-bottom: 45px;
}

.top_news_title {
  font-size: 72px;
  font-weight: bold;
  color: #0A3F9A;
  line-height: 1.25;
}

.top_news_sub_title {
  font-size: 28px;
  font-weight: bold;
  color: #001B8F;
}

.top_news .more_btn_link {}

.top_news .blog_list_no_img_container {
  padding: 10px 0;
  width: 72%;
}

.top_news .blog_item_link {
  display: flex;
  flex-direction: row;
  padding: 15px 0;
}

.top_news .blog_item_ni .blog_item_meta {
  margin-bottom: 0;
}

.top_news .blog_item_ni,
.top_news .blog_item_ni:last-child {
  border: none;
}

.top_news .bg_white_btn .more_btn_link {
  border: 2px solid #0A3F9A;
}

@media only screen and (max-width: 1200px) {
  .top_news .top_news_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 980px) {
  .top_news {}

  .top_news_container {
    flex-direction: column;
    gap: 0;
  }

  .top_news_title_container,
  .top_news .blog_list_no_img_container {
    width: 100%;
  }

  .top_news .top_news_title {
    font-size: 60px;
    margin-bottom: 0;
  }

  .top_news_sub_title {
    font-size: 24px;
  }

  .top_news .blog_list_no_img_container {
    margin-bottom: 30px;
    padding: 0;
  }

  .top_news .blog_item_link {
    flex-direction: column;
    padding: 10px;
  }
}

@media only screen and (max-width: 680px) {
  .top_news .top_news_title {
    font-size: 40px;
  }

  .top_news_sub_title {
    font-size: 20px;
  }
}

/* トップアバウトここから */
.top_about {
  padding-top: 75px;
  padding-bottom: 65px;
  background-image: url("/wp-content/uploads/2024/10/top_about_bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.top_about_container {
  background-color: rgba(255, 255, 255, .8);
  max-width: 1180px;
  width: 100%;
  margin: auto;
}

.top_about_inner {
  padding: 70px 0 110px;
  max-width: 1040px;
  width: 100%;
  margin: auto;
}

.top_about_main_title {
  display: block;
  font-size: 80px;
  letter-spacing: 0.05em;
  font-weight: bold;
  color: #0A3F9A;
  text-align: center;
  margin-bottom: 20px;
}

.top_about_sub_title {
  font-size: 36px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  color: #14336A;
  margin-bottom: 40px;
}

.top_about_text {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 1250px) {
  .top_about {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 1200px) {
  .top_about_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top_about_main_title {
    font-size: 65px;
  }
}

@media only screen and (max-width: 980px) {
  .top_about {
    padding: 60px 20px;
  }

  .top_about_inner {
    padding: 50px 20px;
  }

  .top_about_main_title {
    font-size: 45px;
  }

  .top_about_sub_title {
    font-size: 25px;
    margin-bottom: 30px;
  }

  .top_about_text {
    font-size: 18px;
  }

}

@media only screen and (max-width: 680px) {
  .top_about {
    background-size: contain;
  }

  .top_about_inner,
  .top_about {
    padding: 30px 20px;
  }

  .top_about_main_title {
    font-size: 30px;
    margin-bottom: 15px;
  }

  .top_about_sub_title {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
  }

  .top_about_text {
    font-size: 16px;
    text-align: left;
  }
}

/* トップアバウトここまで */
/* トップワークスここから */
.top_works {
  position: relative;
  overflow: hidden;
}

.top_works::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 28vw;
  left: -201vw;
  right: 0;
  background-color: #0A3F9A;
  transform: skewY(10deg);
  z-index: -1;
}

.top_works_inner {
  padding: 4.17vw 0 17.02vw;
}

.top_works_list {
  display: flex;
  justify-content: space-between;
  max-width: 1220px;
  width: 100%;
  margin: auto;
  position: relative;
  gap: 10px;
}

.top_works_title {
  position: absolute;
  left: -25px;
  bottom: -50px;
  font-size: 8.9vw;
  color: rgba(255, 255, 255, 0.14);
  font-weight: bold;
  letter-spacing: 0.05em;
}

.top_works_item {
  width: calc(100% / 4);
  max-width: 280px;
  background-color: #fff;
  padding: 32px 20px 25px;
  height: 350px;
  box-shadow: 0px 4px 20px 0px rgba(20, 85, 199, 0.20);
}

.top_works_item:nth-child(2) {
  margin-top: 70px;
}

.top_works_item:nth-child(3) {
  margin-top: 140px;
}

.top_works_item:nth-child(4) {
  margin-top: 210px;
}

.top_works_item_inner {
  max-width: 240px;
  width: 100%;
  height: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.top_works_tag {
  margin-bottom: 20px;
}

.top_works_tag p {
  padding: 3px 20px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  display: inline-block;
}

.control .top_works_tag p {
  background-color: #23BBEE;
}

.business .top_works_tag p {
  background-color: #14336A;
}

.built-in .top_works_tag p {
  background-color: #BE9B3C;
}

.infrastructure .top_works_tag p {
  background-color: #00F;
}

.top_works_text_item {
  position: relative;
  color: #000;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.top_works_text_item::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.top_works_text_item p {
  padding-left: 1.5em;
  text-indent: 0em;
}

.top_works_text_item_bottom {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.top_works .bg_white_btn .more_btn_link {
  border: 2px solid #fff;
}
@media only screen and (min-width: 1440px) {
  .top_works_inner {
    padding: 60px 0 245px;
  }

}

@media only screen and (max-width: 1250px) {
  .top_works_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

}

@media only screen and (max-width: 1200px) {
  .top_works_title {
    left: 20px;
  }

  .top_works_item {
    height: unset;
    min-height: 350px;
  }

  .top_works_item:first-child {
    margin-bottom: 210px;
  }

  .top_works_item:nth-child(2) {
    margin-bottom: 140px;
  }

  .top_works_item:nth-child(3) {
    margin-bottom: 70px;
  }
}

@media only screen and (max-width: 980px) {
  .top_works_list {
    justify-content: center;
    gap: 35px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .top_works_item {
    width: calc(100% / 2);
    max-width: 290px;
    height: 350px;
    min-height: unset;
  }

  .top_works_item:first-child {
    margin-bottom: 0;
  }

  .top_works_item:nth-child(2) {
    margin-bottom: 0;
  }

  .top_works_item:nth-child(3) {
    margin-top: 0px;
    margin-bottom: 0;
  }

  .top_works_item:nth-child(4) {
    margin-top: 70px;
    margin-bottom: 0;
  }

  .top_works_title {
    bottom: -35px;
  }

}

@media only screen and (max-width: 680px) {
  .top_works_list {
    padding-bottom: 80px;
    margin-bottom: 0;
    gap: 0 35px;
  }

  .top_works_item {
    max-width: unset;
    width: 80%;
    height: unset;
    margin: auto;
  }

  .top_works_item:first-child,
  .top_works_item:nth-child(2),
  .top_works_item:nth-child(3),
  .top_works_item:nth-child(4) {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .top_works_item:nth-child(4) {
    margin-bottom: 0;
  }

  .top_works_title {
    bottom: -5px;
    font-size: 12.9vw;
  }

  .top_works_item_inner {
    max-width: unset;
    width: 100%;
  }
}

@media only screen and (max-width: 680px) {
  .top_works_item_inner {
    width: 100%;
  }
}

/* トップグループここまで */
/* トップブログここから */
.top_blog {
  padding-bottom: 115px;
}

.top_news_inner {
  max-width: calc(100vw - 11.2vw);
  width: 100%;
  margin-left: auto;
}

.news_tab_container {
  scroll-margin-top: 250px;
}

.news_tab_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 290px;
  width: 100%;
  margin-bottom: 65px;
}

.news_tab_list a {
  display: block;
  padding-bottom: 13px;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  position: relative;
}

.news_tab_list a::after {
  background: #0A3F9A;
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  transform: scaleX(0);
  transform-origin: center top;
  transition: all .5s;
  width: 80%;
}

.news_tab_list a:hover::after {
  transform: scale(1);
}

.news_tab_list li.active a {
  color: #0A3F9A;
  font-weight: 900;
}

.news_tab_list li.active a::after {
  transform: scale(1);
}

/*エリアの表示非表示と形状*/
.area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
}

/*areaにis-activeというクラスがついた時の形状*/
.area.is-active {
  display: block;
  /*表示*/
  animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.news_item_list {
  width: calc(100vw - 160px);
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 85px;
  gap: 30px;
  padding-bottom: 50px;
  padding-right: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  cursor: grab;
}

.news_item_list::-webkit-scrollbar {
  background-color: #fff;
  height: 5px
}

.news_item_list::-webkit-scrollbar-thumb {
  background: #0A3F9A;
}

.news_item_list:active {
  cursor: grabbing;
}

.news_item {
  width: 350px;
  min-width: 350px;
  box-shadow: 0px 4px 20px 0px rgba(60, 113, 179, 0.25);
}

.news_item_container_link {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, .1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.news_item_img {
  width: 100%;
}

.mask {
  display: block;
  line-height: 0;
  overflow: hidden;
}

.news_item_img img {
  object-fit: cover;
  width: 100%;
  object-position: center;
}

.mask img {
  transform: scale(1);
  transition: .3s ease-in-out;
}

.news_item:hover .mask img {
  transform: scale(1.1);
}

.news_item_info {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px 22px;
}

.news_item_title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: #000;
  display: -webkit-box;
  font-size: 16px;
  font-weight: 700;
  height: 45px;
  margin-bottom: 13px;
  overflow: hidden;
}

.news_item_day {
  color: grey;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
}

.news_item_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.news_item_tag a {
  display: block;
  padding: 2px 25px;
  border: 1px solid #123572;
  color: #123572;
  font-size: 12px;
  font-weight: 500;
}

@media only screen and (max-width: 1200px) {
  .news_item_list {
    width: 100vw;
  }
}

@media only screen and (max-width: 980px) {
  .top_news_title {
    font-size: 60px;
    margin-bottom: 0;
  }

  .news_tab_list {
    justify-content: left;
    gap: 10px 20px;
    margin-bottom: 50px;
  }

  .news_tab_list li {}

  .news_item_list {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 680px) {
  .top_blog {
    padding-top: 30px;
    padding-bottom: 80px;
  }

  .top_news_inner {
    max-width: calc(100vw - 5vw);
  }

  .area {
    padding: 0;
  }

  .top_news_title {
    font-size: 40px;
  }

  .news_tab_list {
    margin-bottom: 30px;
  }

  .news_item_list {
    margin-bottom: 30px;
  }

  .news_item {
    width: 100%;
    min-width: 250px;
    margin: auto;
  }

  .news_tab_container .more_btn {
    width: 90%;
  }

  .news_tab_container .more_btn_link {
    margin: auto;
  }
}

/* トップニュースここまで */
/* トップメッセージここから */
.top_message {
  padding-bottom: 90px;
}

.top_message_bg {
  width: 100%;
}

.top_message_bg img {
  object-fit: cover;
}

.top_message_inner {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  margin-top: -10.77vw;
}

.top_message_container {
  background: rgba(255, 255, 255, 0.83);
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.07);
  padding: 85px 20px 95px;
  text-align: center;
  position: relative;
}

.top_message_title {
  color: #0A3F9A;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 35px;
}

.top_message_sub_title {
display: block;
 color: #0A3F9A;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.top_message_text {
  max-width: 780px;
  width: 100%;
  margin: auto;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 75px;
}

.top_message .more_btn_link {
  margin: auto;
}

@media only screen and (max-width: 1250px) {
  .top_message_inner {
    width: calc(100% - 40px);
  }
}

@media only screen and (max-width: 980px) {
  .top_message_title {
    font-size: 60px;
    margin-bottom: 25px;
  }

  .top_message_sub_title {
    font-size: 28px;
  }

  .top_message_text {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .top_message_container {
    padding: 50px 20px 70px;
  }

}

@media only screen and (max-width: 680px) {
  .top_message_container {
    padding: 30px 20px 50px;
  }

  .top_message_title {
    font-size: 50px;
    margin-bottom: 20px;
  }

  .top_message_sub_title {
    font-size: 20px;
  }

  .top_message_text {
    font-size: 16px;
    margin-bottom: 30px;
  }

}

/* トップスライダーここから */
.jp_slide_img_wrapper {
  position: relative;
  width: 100%;
  height: 39.03vw;
  background-image: url("/wp-content/uploads/2024/10/top_slider.png");
  background-repeat: repeat-x;
  background-size: cover;
  background-position: 0 0;
  animation-name: slide_img;
  animation-duration: 100s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  margin-bottom: 16.67vw;
}

@keyframes slide_img {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.top_feature_slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

.top_feature_slider .slick-slide {
  margin: 0 35px;
}

@media (max-width: 680px) {
  .jp_slide_img_wrapper {
    animation-duration: 30s;
    /* スマホ向けにアニメーションを速くする */
  }
}

/* トップスライダーここまで */
/* トップミッションここから */
.top_mission {
  padding-top: 80px;
  padding-bottom: 120px;
  background: rgba(60, 113, 179, 0.30);
}

.top_mission_container {
  background-color: #fff;
  padding: 50px 20px;
  text-align: center;
  margin-bottom: 50px;
}

.top_mission_container .section_title {
  margin-bottom: 15px;
}

.top_mission_container .section_sub_title {
  margin-bottom: 55px;
}

.top_mission_br {
  display: none;
}

.top_mission_img_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8.3vw;
}

.top_mission_img {
  width: 27.5%;
}

.top_mission_center {
  width: 36.4%;
  padding-top: 9vw;
}

.top_mission .more_btn_link {
  margin: auto;
}

@media only screen and (max-width: 1200px) {}

/* トップメンバーここから */
.top_member {
  position: relative;
  padding-top: 65px;
  margin-bottom: 125px;
}

.top_member_pc {
  display: block;
}

.top_member_sp {
  display: none;
}

.top_member_img_pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 51.97vw;
}

.top_member_container {
  margin-right: 7.985vw;
  background-color: #0A3F9A;
  color: #fff;
}

.top_member_text_container {
  padding-top: 5.21vw;
  padding-right: 4.865vw;
  width: 43.5%;
  margin-left: auto;
}

.top_member_container_title_container {
  padding-left: 6.25vw;
}

.top_member_container_title {
  font-size: 5.1vw;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.05em;
  margin-bottom: 1.39vw;
}

.top_member_container_sub_title {
  font-size: 2.78vw;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}

.top_member_container_text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 4.15vw;
}

.top_member .more_btn {
  padding-bottom: 125px;
}

.top_member .more_btn_link {
  margin: auto;
}

.top_member_img_container_1,
.top_member_img_container_2 {
  display: none;
}

.top_member_img_tab {
  display: none;
}

@media only screen and (min-width: 1440px) {}

@media only screen and (max-width: 1200px) {
  .top_member_container {
    margin-right: 20px;
  }

  .top_member_text_container {
    width: 45.5%;
  }

  .top_member_container_title_container {
    padding-left: 4.865vw;
  }

  .top_member .more_btn {
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 980px) {
  .top_member {
    padding-top: 0;
    margin-bottom: 80px;
  }

  .top_member_container {
    margin-right: 0;
    display: flex;
    justify-content: space-between;
  }

  .top_member_bg {
    position: relative;
  }

  .top_member_img_pc {
    display: none;
  }

  .top_member_img_tab {
    display: block;
    width: 50%;
    display: flex;
    align-items: center;
  }

  .top_member_container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top_member_container_title_container {
    padding-left: 0;
  }

  .top_member_container_title {
    margin-bottom: 10px;
  }

  .top_member_text_container {
    padding-right: 0;
    margin-left: unset;
  }

  .top_member .more_btn {
    padding-bottom: 5.21vw;
  }

}

@media only screen and (max-width: 680px) {
  .top_member {
    margin-bottom: 60px;
  }

  .top_member_text_container {
    padding: 72px 0 65px;
  }

  .top_member_text_container {
    max-width: unset;
    width: 100%;
    padding-right: 0;
  }

  .top_member .more_btn {
    padding-bottom: 0;
  }

  .top_member_container {
    padding: 0;
  }

  .top_member_container_title_container {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 25px;
    padding-bottom: 50px;
  }

  .top_member_img_pc {
    display: none;
  }

  .top_member_img_tab {
    display: none;
  }

  .top_member_img_container_1,
  .top_member_img_container_2 {
    display: block;
    position: relative;
  }

  .top_member_img_container_1 {
    height: 64.04vw;
  }

  .top_member_img_container_2 {
    height: 64.04vw;
  }

  .top_member_img_1 {
    position: absolute;
    width: 40.88vw;
    top: 0;
    left: 10px;
  }

  .top_member_img_2 {
    position: absolute;
    width: 51.09vw;
    bottom: 0;
    right: 10px;
  }

  .top_member_img_3 {
    position: absolute;
    width: 51.09vw;
    bottom: 0;
    left: 10px;
  }

  .top_member_img_4 {
    position: absolute;
    width: 40.88vw;
    top: 0;
    right: 10px;
  }

  .top_member_container_title {
    font-size: 54px;
    line-height: 1.45;
    margin-bottom: 10px;
  }

  .top_member_container_sub_title {
    font-size: 32px;
    margin-bottom: 25px;
  }

  .top_member_container_text {
    margin-bottom: 50px;
  }
}

/* トップメンバーここまで */

/* トップリクルートここから */
.top_recruit {
  background-image: url("/wp-content/uploads/2024/10/top_recruit_img.png");
  background-size: cover;
  background-position: right;
  position: relative;
}

.top_recruit_overlap {
  padding: 90px 0 100px;
  background-color: rgba(0, 0, 0, .4);
}

.top_recruit_container {
  max-width: 500px;
  margin-right: auto;
}

.top_recruit .section_title {
  text-align: left;
  color: #fff;
}

.top_recruit .section_sub_title {
  color: #fff;
  margin-bottom: 30px;
}

.top_recruit .txt_midium {
  margin-bottom: 60px;
  color: #fff;
  letter-spacing: 0;
}

.top_recruit .more_btn_link {
  margin-left: 0;
  margin-right: auto;
}

@media only screen and (max-width: 980px) {
  .top_recruit_overlap {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 680px) {
  .top_recruit {
    background-position: right;
  }

  .top_recruit_overlap {
    padding: 55px 0;
  }

  .top_recruit .section_title {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .top_recruit .section_sub_title {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .top_recruit .txt_midium {
    margin-bottom: 65px;
  }

  .top_recruit .more_btn_link {
    margin-left: unset;
    margin-right: unset;
    margin: auto;
  }
}

/* トップコンタクトここから */
.top_contact {
  padding: 100px 0;
  background: #0A3F9A;
}

.top_contact .section_inner {
  max-width: 1150px;
}

.top_contact_container {
  display: flex;
}

.top_contact_text_container {
  max-width: 435px;
  width: 40%;
  background-color: #fff;
  padding: 75px 0 70px;
}

.top_contact_text_inner {
  max-width: 340px;
  margin: auto;
}

.top_contact_title {
  font-size: 64px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #0A3F9A;
  margin-bottom: 30px;
}

.top_contact .txt_midium {
  margin-bottom: 45px;
}

.top_contact_solution_container {
  background-image: url("/wp-content/uploads/2024/10/top_contact_bg.png");
  background-size: cover;
  background-position: center;
  padding: 45px 0 40px;
  max-width: 715px;
  width: 63%;
}

.top_contact_solution_inner {
  padding: 45px 0 60px;
  background-color: rgba(255, 255, 255, .9);
  max-width: 630px;
  width: 100%;
  margin: auto;
}

.top_contact_solution_title {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 35px;
  text-align: center;
  color: #123572;
}

.top_contact_solution_list {
  max-width: 580px;
  width: 100%;
  margin: auto;
}

.top_contact_solution_item {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 15px;
  position: relative;
  padding-left: 65px;
}

.top_contact_solution_item .check {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  display: block;
  background: #0A3F9A;
  width: 34px;
  height: 34px;
}

.top_contact_solution_item .check::before {
  position: absolute;
  content: "\e92f";
  font-family: 'Material Icons';
  font-size: 18px;
  width: 18px;
  height: 34px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  color: #fff;
  line-height: 34px;
}

.top_contact_solution_item_title {
  font-size: 18px;
  font-weight: bold;
}

@media only screen and (max-width: 1200px) {}

@media only screen and (max-width: 1200px) {

  .top_contact_text_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top_contact_solution_container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top_contact_solution_inner {
    padding: 45px 0;
  }

  .top_contact_solution_list {
    width: 95%;
  }

  .top_contact_solution_item {
    padding-left: 50px;
  }
}

@media only screen and (max-width: 980px) {
  .top_contact_container {
    flex-direction: column-reverse;
  }

  .top_contact_text_container,
  .top_contact_solution_container {
    max-width: unset;
    width: 90%;
    margin: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .top_contact_text_inner {
    max-width: 475px;
    padding-left: 0;
    padding-right: 0;
  }

  .top_contact_title {
    font-size: 60px;
  }

  .top_contact_sub_title {
    font-size: 24px;
  }

  .top_contact .txt_midium {
    margin-bottom: 40px;
  }

  .top_contact .more_btn_link {
    margin: auto;
  }

  .top_contact_solution_title {
    font-size: 22px;
    margin-bottom: 30px;
  }

  .top_contact_solution_item {
    padding-left: 45px;
  }

  .top_contact_solution_item .check {
    width: 30px;
    height: 30px;
  }
}

@media only screen and (max-width: 680px) {
  .top_contact {
    padding: 40px 0 60px;
  }

  .top_contact_text_container,
  .top_contact_solution_container {
    width: 100%;
  }

  .top_contact_text_container {
    padding: 40px 0 30px;
  }

  .top_contact_solution_container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .top_contact_text_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .top_contact_title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 10px;
  }

  .top_contact_sub_title {
    font-size: 20px;
  }

  .top_contact .txt_midium {
    margin-bottom: 30px;
  }

  .top_contact_solution_inner {
    padding: 35px 0 45px;
  }

  .top_contact_solution_title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .top_contact_solution_list {
    width: 100%;
    margin: 0 15px;
  }

  .top_contact_solution_item {
    width: 90%;
    font-size: 14px;
    text-align: justify;
    padding-left: 35px;
    margin-bottom: 20px;
  }

  .top_contact_solution_item .check {
    width: 20px;
    height: 20px;
  }

  .top_contact_solution_item span::before {
    font-size: 16px;
    width: 16px;
    height: 30px;
    line-height: 30px;
  }
}

/* ページタイトルここから */
.page_title_area {
  padding: 50px 0 60px;
  background: #0A3F9A;
  color: #fff;
  text-align: center;
  margin-bottom: 0;
}

.page_title_inner {
  text-align: center;
  color: #fff;
}

.page_sub_title {
  display: block;
  margin: unset!important;
  font-size: 20px!important;
  font-weight: bold;
  line-height: 1.4;
}

.page_main_title {
  display: block;
  font-size: 40px!important;
  font-weight: bold;
  line-height: 1.45;
}

@media only screen and (max-width: 980px) {
  .page_title_area {
    padding: 40px 0 50px;
  }

  .page_title_inner {
    padding: 0 20px;
  }

  .page_sub_title {
    font-size: 18px!important;
  }

  .page_main_title {
    font-size: 35px!important;
  }
}

@media only screen and (max-width: 680px) {
  .page_title_area {
    padding: 30px 0;
  }

  .page_sub_title {
    font-size: 16px!important;
  }

  .page_main_title {
    font-size: 30px!important;
  }
}

/* プライバシーポリシーここから */
.privacy_policy {
  padding: 130px 0 180px;
}

.privacy_policy_inner {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.privacy_policy_container {}

.privacy_policy_item {
  margin-bottom: 45px;
  color: #000;
  line-height: 1.4;
}

.privacy_policy_item h6 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 30px;
}

.privacy_policy_text p {
  font-size: 16px;
}

.list_circle,
.list_parentheses {
  list-style: none;
}

.list_circle li,
.list_parentheses li {
  position: relative;
}

.privacy_policy .list_circle li {
  padding-left: 30px;
}

.privacy_policy .list_parentheses li {
  padding-left: 30px;
}

.list_circle li::before,
.list_parentheses li:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
}

.list_circle li:first-child::before {
  content: "\02460";
}

.list_circle li:nth-child(2)::before {
  content: "\02461";
}

.list_circle li:nth-child(3)::before {
  content: "\02462";
}

.list_circle li:nth-child(4)::before {
  content: "\02463";
}

.list_circle li:nth-child(5)::before {
  content: "\02464";
}

.list_circle li:nth-child(6)::before {
  content: "\02465";
}

.list_circle li:nth-child(7)::before {
  content: "\02466";
}

.list_parentheses li:first-child::before {
  content: "(1)";
}

.list_parentheses li:nth-child(2)::before {
  content: "(2)";
}

.list_parentheses li:nth-child(3)::before {
  content: "(3)";
}

.list_parentheses li:nth-child(4)::before {
  content: "(4)";
}

.list_parentheses li:nth-child(5)::before {
  content: "(5)";
}

.list_parentheses li:nth-child(6)::before {
  content: "(6)";
}

.list_parentheses li:nth-child(7)::before {
  content: "(7)";
}

.list_parentheses li:nth-child(8)::before {
  content: "(8)";
}

.list_parentheses li:nth-child(9)::before {
  content: "(9)";
}

.list_parentheses li:nth-child(10)::before {
  content: "(10)";
}

.list_parentheses li:nth-child(11)::before {
  content: "(11)";
}

.list_parentheses li:nth-child(12)::before {
  content: "(12)";
}

.list_parentheses li:nth-child(13)::before {
  content: "(13)";
}

@media only screen and (max-width: 850px) {
  .privacy_policy_inner {
    padding: 0 20px;
  }

  .policy_text_list {
    padding-left: 20px;
  }
}

/* プライバシーポリシーここまで */
/* ガイドラインここから */
.guideline {
  padding-top: 150px;
  padding-bottom: 180px;
  color: #000;
}

.guideline_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.guideline_title_container h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}

.guideline_sub_title {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.guideline h4 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 45px;
  text-align: center;
}

.guideline_text_list {
  margin-bottom: 40px;
}

.guideline_text_list.list_parentheses {
  padding-left: 0;
}

/* .guideline_text_list li {
    padding-left: 16px;
  } */
.guideline_text_item {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.guideline_text_item p {
  /* text-indent: -1.5em;
    padding-left: 1.5em; */
}

.guideline_text_item_title {
  font-weight: bold;
  margin-bottom: 30px;
}

/* .guideline_text_option_list {
    padding-left: 16px;
  } */
@media only screen and (max-width: 980px) {
  .guideline_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 680px) {}

/* 会社概要ここから */
.page_mv_sec {
  margin-bottom: 75px;
}

.page_mv {
  background-image: url("/wp-content/uploads/2024/10/coompany_mv.png");
  background-size: cover;
  height: 500px;
}

.page_mv_title_container {
  max-width: 980px;
  width: 100%;
  margin: auto;
  margin-top: -125px;
  background-color: #fff;
  color: #0A3F9A;
  text-align: center;
  letter-spacing: 0.05em;
}

.page_mv_title_inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
}

.page_mv_main_title {
  font-family: "Rozha One", serif;
  font-size: 80px;
  line-height: 1;
  margin-bottom: 20px;
}

.page_mv_sub_title {
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 1100px) {
  .page_mv_title_container {
    width: calc(100% - 60px);
  }

}

@media only screen and (max-width: 980px) {
  .page_mv {
    height: 400px;
  }

  .page_mv_title_container {
    margin-top: -100px;
  }

  .page_mv_title_inner {
    padding: 50px 0;
  }

  .page_mv_main_title {
    font-size: 60px;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 680px) {
  .page_mv {
    height: 300px;
    background-position: center;
  }

  .page_mv_title_container {
    margin-top: -75px;
  }

  .page_mv_title_inner {
    padding: 40px 0;
  }

  .page_mv_main_title {
    font-size: 40px;
  }
}


.about_company {
  background: rgba(18, 53, 114, 0.10);
}

.about_company_list {
  padding: 95px 0 235px;
}

.about_company_item {
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(60, 113, 179, 0.25);
  margin-bottom: 100px;
}

.about_company_item_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
  padding: 60px 0 75px;
}

.company_item_title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 35px;
  margin-bottom: 30px;
}

.company_item_title img {
  width: 95px;
}

.company_item_title p {
  font-size: 32px;
  font-weight: bold;
}

.company_table {
  font-size: 20px;
  line-height: 1.4;
  width: 100%;
}

.company_table a {
  text-decoration: underline;
}

.company_table a:hover {
  opacity: 0.6;
}

.company_table th {
  width: 180px;
  border-bottom: 2px solid #123572;
}

.company_table th p {
  padding: 20px 0;
  padding-left: 7px;
  font-weight: bold;
}

.company_table td {
  border-bottom: 1.5px solid #BEBEBE;
  vertical-align: middle;
}

.company_table td p {
  padding-left: 3.47vw;
}

.company_table .business_details {
  padding: 20px 0;
  padding-left: 3.47vw;
}

.company_table .business_details li {
  position: relative;
  padding-left: 20px;
}

.company_table .business_details li::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 980px) {
  .about_company_item {
    margin-bottom: 50px;
  }

  .about_company_item_inner {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .company_item_title {
    margin-bottom: 20px;
  }

  .company_item_title p {
    font-size: 28px;
  }

  .company_table {
    font-size: 18px;
  }

  .company_table th {
    width: 150px;
  }

}

@media only screen and (max-width: 680px) {
  .about_company_item {
    margin-bottom: 30px;
  }

  .company_item_title {
    flex-direction: column;
    gap: 10px;
  }

  .company_item_title p {
    font-size: 20px;
  }

  .company_table tr {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
  }

  .company_table tr:last-child {
    margin-bottom: 0;
  }

  .company_table th,
  .company_table td {
    width: 100%;
    padding: 10px 0;
    border-bottom: unset;
  }

  .company_table th {
    padding-bottom: 0;
  }

  .company_table th p {
    padding: 0;
    padding-left: 10px;
  }

  .company_table td {
    border-bottom: 2px solid #123572;
  }

  .company_table td p {
    padding: 0;
    padding-left: 10px;
  }

}

/* 注意喚起ここから */
.attention {
  padding: 220px 0 300px;
}

.attention_inner {
  max-width: 1040px;
  width: 100%;
  margin: auto;
}

.attention_container {
  border: 1px solid #000;
  font-size: 20px;
  line-height: 1.7;
  padding: 200px 0;
}

.attention_container_inner {
  max-width: 880px;
  width: 100%;
  margin: auto;
}

.attention_title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}

.attention_date {
  margin-bottom: 30px;
  margin-left: auto;
  text-align: right;
}

.attention_text p:last-child {
  text-align: right;
}

.attention_text a {
  text-decoration: underline;
  color: #0A3F9A;
}

.attention_text a:hover {
  opacity: 0.6;
}

@media only screen and (max-width: 980px) {

  .attention,
  .attention_container {
    padding: 100px 0;
  }

  .attention_title {
    font-size: 20px;
  }

  .attention_inner {
    padding: 0 20px;
  }

  .attention_container_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 680px) {

  .attention,
  .attention_container {
    padding: 50px 0;
  }

  .attention_container {
    font-size: 16px;
  }

  .attention_title {
    font-size: 20px;
  }
}

/* メンバーここから */
.archive_member_inner {
  max-width: 1080px;
  width: 100%;
  margin: auto;
}

.archive_member_list {}

.archive_member_item {
  margin-bottom: 65px;
}

.archive_member_item_link {
  display: flex;
  justify-content: space-evenly;
}

.archive_member_item_img {
  max-width: 545px;
  width: 50%;
}

.archive_member_item_img img {
  height: 100%;
  object-fit: cover;
}

.archive_member_item_text_container {
  max-width: 545px;
  width: 50%;
  /* padding: 2.43vw 3.13vw 2.78vw; */
  padding: 30px 40px;
  background-color: #FAFAFA;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.archive_member_item_date {
  font-size: 13px;
  font-weight: bold;
  color: #666;
  line-height: 1;
  margin-bottom: 25px;
}

.archive_member_item_title {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.5;
  color: #333;
}

.archive_member_item_name_container {
  margin-top: 30px;
  padding-top: 30px;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  border-top: 2px solid #58A8F2;
}

.archive_member_item_name_container li {
  margin-top: auto;
  padding-top: 10px;
}

.archive_member_item_name_container span {
  font-size: 16px;
  line-height: 1.5;
}

@media only screen and (max-width: 1200px) {
  .archive_member_inner {
    padding: 0 40px;
  }
}

@media only screen and (max-width: 980px) {
  .archive_member_item {
    margin-bottom: 50px;
  }

  .archive_member_item_title {
    font-size: 26px;
  }
}

@media only screen and (max-width: 680px) {
  .archive_member_inner {
    padding: 0 20px;
  }

  .archive_member_item {
    margin-bottom: 30px;
  }

  .archive_member_item_link {
    flex-direction: column;
  }

  .archive_member_item_img,
  .archive_member_item_text_container {
    max-width: unset;
    width: 100%;
  }

  .archive_member_item_text_container {
    padding: 20px 25px;
  }

  .archive_member_item_title {
    font-size: 20px;
  }

  .archive_member_item_date {
    font-size: 11px;
    margin-bottom: 20px;
  }

  .archive_member_item_name_container {
    margin-top: 20px;
    padding-top: 6px;
  }

  .archive_member_item_name_container {
    font-size: 12px;
  }

  .archive_member_item_name_container span {
    font-size: 14px;
  }
}

/* 会社情報ここから */
.company_link_sec {
  padding-top: 120px;
  padding-bottom: 130px;
  background-color: #EAF2F9;
}

.company_link_sec .section_inner {
  max-width: 1080px;
}

.company_img_link_container {
  display: flex;
  justify-content: space-between;
  margin-bottom: 45px;
}

.company_img_link_item {
  max-width: 460px;
  width: 45%;
}

.company_img_link:hover {
  opacity: 0.6;
}

.company_img_link_item .company_img_link {
  background-image: url("/wp-content/uploads/2024/10/company_link_1.png");
  background-size: cover;
  display: block;

}

.company_img_link_item:last-child .company_img_link {
  background-image: url("/wp-content/uploads/2024/10/company_link_2.png");
}

.company_img_link_overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 215px;
  background: rgba(29, 25, 25, 0.25);
}

.company_img_link_text {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
}

.company_link_container .swell-block-columns__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: auto;
}
.company_link_container .swell-block-column {
  width: 45%;
  margin: 0;
}
.company_link_item {
  max-width: 460px;
  width: 45%;
}

.company_link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  background: linear-gradient(180deg, #0A3F9A 0%, #3C71B3 100%);
  /* 青エフェクト */
  box-shadow: 0px 4px 20px 0px rgba(60, 113, 179, 0.20);
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 15px 0;
}

.company_link:hover {
  opacity: 0.6;
}

.company_link_text {
}

@media only screen and (max-width: 980px) {
  .company_link_sec {
    padding: 80px 0;
  }

}

@media only screen and (max-width: 680px) {
  .company_link_sec {
    padding: 50px 0;
  }

  .company_img_link_container {
    flex-direction: column;
    gap: 20px;
  }

  .company_img_link_item {
    width: 100%;
    margin: auto;
  }

  .company_img_link_text {
    font-size: 20px;
  }

  .company_link_container {
    flex-direction: column;
    gap: 20px;
  }

  .company_link_item {
    width: 80%;
    margin: auto;
  }

  .company_link {
    font-size: 20px;
    padding: 10px 0;
  }
}


/* ごあいさつここから */
#greeting {
  padding-bottom: 170px;
  background-color: #EAF2F9;
}

.company_message_container {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 105px 0 70px;
  background-color: #fff;
}

.company_message_inner {
  max-width: 1040px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.company_message_text_container {
  max-width: 585px;
  width: 56%;
}

.company_message_title {
  display: block;
  font-size: 32px!important;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 30px!important;
}

.company_message_sub_title {
  font-size: 28px!important;
  font-weight: bold;
  line-height: 1.55;
  letter-spacing: 0.1em;
  margin-bottom: 35px!important;
  color: #0A3F9A;
}

.company_message_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 2.35;
  letter-spacing: 0.1em;
  padding-bottom: 35px;
}

.company_message_name {
  width: 120px;
  margin-left: auto;
}

.company_message_img {
  max-width: 405px;
  width: 40%;
}

@media only screen and (max-width: 1100px) {
  .company_message_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 980px) {
  #greeting {
    padding-bottom: 90px;
  }

  .company_message_container {
    padding: 50px 0;
  }

  .company_message_text_container {
    width: 55%;
  }

  .company_message_title {
    font-size: 28px!important;
    margin-bottom: 20px!important;
  }

  .company_message_sub_title {
    font-size: 26px!important;
    margin-bottom: 25px!important;
  }


}

@media only screen and (max-width: 680px) {
  #greeting {
    padding-bottom: 50px;
  }

  .company_message_container {
    padding: 30px 0;
  }

  .company_message_text_container {
    width: 100%;
    max-width: unset;
  }

  .company_message_title {
    font-size: 24px!important;
    margin-bottom: 10px!important;
  }

  .company_message_sub_title {
    font-size: 20px!important;
    margin-bottom: 15px!important;
  }

  .company_message_text {
    margin-bottom: 10px;
  }

  .company_message_img {
    width: 80%;
    margin: auto;
  }

}

/* 会社概要ここから */
#company_about {
  padding-bottom: 225px;
  background-color: #EAF2F9;
}

.company_about_container {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 80px 0 90px;
  background-color: #fff;
}

.company_about_container_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.company_about_title {
  position: relative;
  display: block;
  text-align: center;
  font-size: 32px!important;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 100px!important;
}

.company_about_title::before {
  content: "";
  display: block!important;
  position: absolute;
  background-color: #005CB9;
  bottom: -26px;
  height: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
}
.organization_container {
  max-width: 800px;
  width: 100%;
  margin: auto;
}
.company_about_table table {
  width: 100%;
  table-layout: fixed;
}

.company_about_table th {
  width: 185px;
  padding: 20px 0;
  padding-left: 8px;
}

.company_about_table th p {
  font-size: 20px;
  font-weight: bold;
}

.company_about_table td {
  padding: 20px 0;
  padding-left: 50px;
}

.company_about_table td p {
  font-size: 20px;
  line-height: 1.45;
}

.post_content .company_about_table td {
  border-bottom: 1px solid #BEBEBE;
}

.post_content .company_about_table th {
  border-bottom: 2px solid #0A3F9A;
}

.company_adress p {
  margin-bottom: 35px;
}

.company_adress {
  margin-bottom: 85px;
}

.company_adress iframe {
  width: 100%;
}

@media only screen and (max-width: 980px) {}

@media only screen and (max-width: 980px) {
  #company_about {
    padding-bottom: 150px;
  }

  .company_about_container {
    padding: 60px 0 70px;
  }

  .company_about_container_inner {
    padding: 0 20px;
  }

  .company_about_title {
    font-size: 28px!important;
    margin-bottom: 80px!important;
  }

  .company_about_table th,
  .company_about_table td {
    width: 100%;
    display: block;
  }

  .company_about_table th {
    border-bottom: unset;
    padding-left: 10px;
  }

  .company_about_table td {
    border-bottom: 2px solid #0A3F9A;
    padding-left: 10px;
  }

  .company_adress {
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 680px) {
  #company_about {
    padding-bottom: 100px;
  }

  .company_about_container {
    padding: 50px 0;
  }

  .company_about_title {
    font-size: 24px!important;
    margin-bottom: 50px!important;
  }

  .company_about_table td {
    padding: 10px 0 25px;
    padding-left: 50px;
  }

  .post_content .company_about_table td {
    border-bottom: unset;
  }

  .company_about_table th {
    width: 185px;
    padding: 10px 0;
    padding-left: 8px;
  }

  .company_adress {
    margin-bottom: 30px;
  }

}

/* 組織図ここから */
.organization {
  padding-bottom: 190px;
  background-color: #EAF2F9;
}

.organization .company_about_title {
  margin-bottom: 110px!important;
}

@media only screen and (max-width: 980px) {
  .organization {
    padding-bottom: 150px;
  }

  .organization .company_about_title {
    margin-bottom: 80px!important;
  }
}

@media only screen and (max-width: 680px) {
  .organization {
    padding-bottom: 100px;
  }

  .organization .company_about_title {
    margin-bottom: 50px!important;
  }
}

/* 会社沿革ここから */
.company_history {
  background: #fff;

}

.company_history_container {
  padding: 70px 0 160px;
}

.company_history .company_about_title {
  margin-bottom: 100px!important;
}

@media only screen and (max-width: 980px) {
  .company_history .company_about_title {
    margin-bottom: 80px!important;
  }

  .company_history_container {
    padding: 80px 0;
  }
}

@media only screen and (max-width: 680px) {
  .company_history .company_about_title {
    margin-bottom: 50px!important;
  }

  .company_history_container {
    padding: 50px 0;
  }
}

/* 資格者一覧 */
.qualification {
  padding: 150px 0;
  background-color: #EAF2F9;
}

.qualification_container {
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 60px 0 115px;
  background-color: #fff;
}

.qualification_title_container {
  border-bottom: 3px solid #0A3F9A;
}

.qualification_title_container .company_about_title {
  margin-bottom: 17px!important;
}

.qualification_title_container .company_about_title::before {
  display: none;
}

.qualification_date {
  text-align: right;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 10px;
}

.qualification_table th,
.qualification_table td {
  border-bottom: 1px solid #000;
  padding: 17px 0;

}

.qualification_table table {
  width: 100%;
}

.qualification_table tr {
  border-bottom: 1px solid #000;

}

.qualification_table th {
  width: 510px;
  padding-left: 15px;
}

.qualification_table td {
  text-align: right;
  padding-right: 20px;
}

.qualification_table th p,
.qualification_table td p {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.65;
}

.t_head {
  width: 100%;
  font-size: 20px;
  font-weight: bold;
}

@media only screen and (max-width: 980px) {
  .qualification {
    padding: 100px 0;
  }

  .qualification_container {
    padding: 50px 0 80px;
  }
}

@media only screen and (max-width: 680px) {
  .qualification {
    padding: 50px 0;
  }

  .qualification_container {
    padding: 50px 0;
  }

  .qualification_table th {
    width: unset;
    border-bottom: unset;
    padding-left: 10px;
  }

  .qualification_table td {
    border-bottom: 1px solid #000;
    padding-right: 10px;
    width: 100px;
  }

  .t_head {
    font-size: 18px;
  }
}

/* リクルートここから */
/* リクルートボタンここから */
.recruit_btn {
  padding: 115px 0 145px;
  background-color: #EAF2F9;
}

.recruit_btn_container {
  display: flex;
  justify-content: space-between;
}

.recruit_btn_item {
  max-width: 340px;
  width: 30%;
  background-image: url("/wp-content/uploads/2024/10/recruit_btn_1.png");
  background-size: cover;
}

.recruit_btn_item:hover {
  opacity: 0.6;
}

.recruit_btn_item:nth-child(2) {
  background-image: url("/wp-content/uploads/2024/10/recruit_btn_2.png");
}

.recruit_btn_item:nth-child(3) {
  background-image: url("/wp-content/uploads/2024/10/recruit_btn_3.png");
}

.recruit_btn_item_bg {
  background-color: rgba(10, 63, 154, 0.7);
}

.recruit_btn_item:nth-child(2) .recruit_btn_item_bg {
  background-color: rgba(255, 255, 255, 0.7);
}

.recruit_btn_item:nth-child(2) .recruit_btn_item_link {
  color: #0A3F9A;
}

.recruit_btn_item:nth-child(2) .recruit_btn_item_link::before {
  background-image: url("/wp-content/uploads/2024/06/recruit_btn_icon_blue.png");
}

.recruit_btn_item_link {
  display: block;
  padding: 105px 0;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  position: relative;
  line-height: 1.15;
}

.recruit_btn_item_link::before {
  content: "";
  position: absolute;
  background-image: url("/wp-content/uploads/2024/06/recruit_btn_icon_white.png");
  background-size: cover;
  width: 50px;
  height: 22px;
  bottom: 15px;
  left: 0;
  right: 0;
  margin: auto;
}

.recruit_btn_item:nth-child(2)::before {
  background-image: url("/wp-content/uploads/2024/06/recruit_btn_icon_blue.png");
}

@media only screen and (max-width: 980px) {
  .recruit_btn {
    padding: 80px 0 120px;
  }

  .recruit_btn_item_link {
    font-size: 28px;
  }
}

@media only screen and (max-width: 680px) {
  .recruit_btn {
    padding: 50px 0 100px;
  }

  .recruit_btn_container {
    flex-direction: column;
    gap: 20px;
  }

  .recruit_btn_item {
    width: 100%;
    margin: auto;
  }

  .recruit_btn_item_link {
    font-size: 24px;
  }
}

/* リクルートボタンここまで */
/* リクルートメッセージここから */
.recruit_message {
  padding-bottom: 130px;
  background-color: #EAF2F9;
}

.recruit_message_container {
  background-color: #fff;
  padding: 75px 20px 65px;
}

.recruit_message_img {
  max-width: 740px;
  width: 80%;
  margin: auto;
  margin-bottom: 65px;
}

.recruit_message_text,
.recruit_message_name {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 35px;
}

.recruit_message_name {
  line-height: 2.75;
}

@media only screen and (max-width: 980px) {
  .recruit_message {
    padding-bottom: 100px;
  }

  .recruit_message_img {
    margin-bottom: 40px;
  }

  .recruit_message_container {
    padding: 60px 20px 40px;
  }
}

@media only screen and (max-width: 680px) {
  .recruit_message {
    padding-bottom: 50px;
  }

  .recruit_message_container {
    padding: 50px 20px 20px;
  }

  .recruit_message_img {
    margin-bottom: 20px;
  }

  .recruit_message_text {
    font-size: 16px;
    text-align: left;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}

/* リクルートメッセージここまで */
/* リクルート画像 */
.recruit_img {
  background-color: #EAF2F9;
  padding-bottom: 240px;

}

.recruit_img_container {
  height: 56.6vw;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  position: relative;
}

.recruit_img_container_inner {}

.recruit_img_item {
  position: absolute;
  content: "";
}

.recruit_img_item:first-child {
  max-width: 520px;
  width: 36.112vw;
  left: 0;
  top: 0;
}

.recruit_img_item:nth-child(2) {
  max-width: 585px;
  width: 40.63vw;
  right: 0;
  top: 17.71vw;
}

.recruit_img_item:nth-child(3) {
  max-width: 475px;
  width: 32.99vw;
  left: 5vw;
  bottom: 0;
}

@media only screen and (max-width: 1250px) {
  .recruit_img {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 980px) {
  .recruit_img {
    padding-bottom: 150px;
  }
}

@media only screen and (max-width: 680px) {
  .recruit_img {
    padding-bottom: 100px;
  }
}

/* 募集要項ここから */
.job_description {
  padding-bottom: 215px;
  background-color: #EAF2F9;
}

.job_description_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.job_description_container {
  background-color: #fff;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  padding: 80px 60px 85px;
}

.job_description_title {
  display: block;
  font-size: 32px!important;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 55px!important;
}

.job_description_table {
  width: 100%;
  font-size: 16px;
}

.post_content .job_description_table {
  max-width: 800px;
  margin: auto;
}

.job_description_table tr {
  border-top: 1px solid #000;
}

.job_description_table th {
  width: 175px;
  font-weight: bold;
  padding: 20px 0;
  padding-left: 15px;
}

.job_description_table td {
  padding: 20px 0;
}

.post_content .job_description_list,
.post_content .job_description_sub_list {
  padding-left: 0;
  list-style: none;
}

.job_description_list li {
  padding-left: 1em;
  position: relative;
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
}

.job_description_list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.double_circle.job_description_list li::before {
  content: "◎";
}

.job_description_sub_list li {
  padding-left: 0;
  font-weight: 400;
}

.job_description_sub_list li::before {
  display: none;
}

.job_description_btn {
  display: block;
  max-width: 300px;
  width: 100%;
  padding: 19px 0;
  background: linear-gradient(180deg, #0A3F9A 0%, #3C71B3 100%);
  border: 1px solid #0A3F9A;
  border-radius: 50px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-top: 30px;
}

.job_description_btn:hover {
  background: #fff;
  color: #0A3F9A;
}

@media only screen and (max-width: 980px) {
  .job_description {
    padding-bottom: 150px;
  }

  .job_description_inner {
    padding-left: 20px;
    padding-right: 20px;
  }

  .job_description_container {
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .job_description_title {
    font-size: 28px!important;
    margin-bottom: 30px!important;
  }
}

@media only screen and (max-width: 680px) {
  .job_description {
    padding-bottom: 100px;
  }

  .job_description_container {
    padding-top: 30px;
    padding-bottom: 40px;
  }

  .job_description_title {
    font-size: 24px!important;
    margin-bottom: 20px!important;
  }

  .job_description_table th,
  .job_description_table td {
    display: block;
  }

  .job_description_table th {
    width: 100%;
    padding-bottom: 0;
  }

  .job_description_table td {
    padding: 20px;
  }

  .job_description_btn {
    margin: auto;
    margin-top: 30px;
  }
}

/* 募集要項ここまで */
/* 流れここから */
.flow {
  background-color: #EAF2F9;
  padding-bottom: 215px;
}

.flow_area {
  padding: 0 20px;
  margin-bottom: 145px;
}

.flow_main_title {
  display: block;
  font-weight: bold;
  font-size: 40px!important;
  letter-spacing: 0.1em;
  position: relative;
  text-align: center;
}
.flow_main_title::before {
  display: block!important;
  content: "";
  position: absolute;
  background-color: #005CB9;
  bottom: -26px;
  height: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
}

.flow_box {
  max-width: 870px;
  width: 100%;
  margin: auto;
  margin-bottom: 23px;
  background-color: #fff;
  border-radius: 30px;
}

.flow_box_flex {
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 70px;
}

.flow_img {
  width: 30%;
}

.flow_img img {
  width: 190px;
  border-radius: 50%;
}

.flow_text_box {
  width: 65%;
  padding-top: 25px;
}

.flow_title {
  width: 170px;
  background: linear-gradient(180deg, #0A3F9A 0%, #3C71B3 100%);
  margin-bottom: 16px;
  text-align: left;
  border-radius: 30px;
  margin-right: auto;
}

.flow_title p {
  padding: 7px 0;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
}

.flow_sub_title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 7px;
  margin-right: auto;
}

.flow_text {
  font-size: 16px;
  margin-right: auto;
}

.flow_triangle {
  width: 100px;
  margin: auto;
  margin-bottom: 23px;
}

@media only screen and (min-width: 981px) {
  .flow_title p {
    padding: 2px 0;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-align: center;
  }
}

@media only screen and (max-width: 980px) {
  .flow {
    padding-bottom: 150px;
  }

  .flow_title {
    font-size: 36px;
  }

  .flow_box_flex {
    gap: 10px;
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .flow_title {
    font-size: 32px;
  }

  .flow_sub_title {
    font-size: 20px;
  }

  .flow_text {
    font-size: 14px;
  }

  .flow .section_text {
    text-align: center;
  }
}

@media only screen and (max-width: 680px) {
  .flow {
    padding-bottom: 100px;
  }

  .flow_box_flex {}

  .flow_title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .flow_title p {
    padding: 2px 0;
  }

  .flow_text_box {
    padding-top: 0;
  }

  .flow_img img {
    width: 100%;
  }

  .flow .section_text {
    text-align: left;
  }
}

/* 社員の声ここから */
.real_voice {
  padding: 140px 0 120px;
  background-color: #EAF2F9;
}

.real_voice_item {
  padding-bottom: 65px;
  border-bottom: 2px solid #BDE0FF;
}

.real_voice_item:nth-child(n + 2) {
  padding-top: 55px;

}

.real_voice_item:last-child {
  border-bottom: none;
}

.real_voice_item_inner {
  padding: 28px 0 24px;
  max-width: 970px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.real_voice_item_img {
  max-width: 280px;
  width: 30%;
}

.real_voice_item_text_container {
  max-width: 615px;
  width: 70%;
}

.real_voice_item_title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #0A3F9A;
  margin-bottom: 32px;
  padding-top: 15px;
}

.real_voice_item_text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

@media only screen and (max-width: 1040px) {
  .real_voice_item_inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media only screen and (max-width: 980px) {
  .real_voice {
    padding: 80px 0;
  }

  .real_voice_item_inner {
    padding-top: 0;
    padding-bottom: 0;
  }

  .real_voice_item {
    padding-bottom: 30px;
  }

  .real_voice_item:nth-child(n + 2) {
    padding-top: 30px;
  }

  .real_voice_item_title {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 680px) {
  .real_voice {
    padding: 50px 0;
  }

  .real_voice_item_inner {
    flex-direction: column;
  }

  .real_voice_item_img {
    width: 100%;
    margin: auto;
  }

  .real_voice_item_text_container {
    max-width: unset;
    width: 100%;
  }
}

/* 事業内容ここから */
.achievements_link {
  padding: 5.56vw 0 14.24vw;
  background-color: #EAF2F9;
}

.achievements_link .section_inner {
  max-width: 1080px;
}

.service_info_text {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 75px;
}

.achievements_link_title {
  display: block;
  margin: auto;
  text-align: center;
  font-size: 40px!important;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  margin-top: 0!important;
  padding-bottom: 30px!important;
  margin-bottom: 75px!important;
  position: relative;
}

.achievements_link_title::before {
  position: absolute;
  content: "";
  width: 75px;
  height: 7px;
  background-color: #0A3F9A;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.achievements_link_container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.achievements_link_item {
  max-width: 250px;
  width: 100%;
}

.achievements_link_btn {
  padding: 19px 0;
  border-radius: 30px;
  background: linear-gradient(180deg, #0A3F9A 0%, #3C71B3 100%);
  box-shadow: 0px 4px 20px 0px rgba(60, 113, 179, 0.20);
  color: #fff;
  display: block;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
}

.achievements_info {
  background-color: #EAF2F9;
  padding-bottom: 23.27vw;
}

.achievements_info .section_inner {
  max-width: 1440px;
}

.achievements_info_item {
  position: relative;
  padding-top: 4.45vw;
  margin-bottom: 9.03vw;
}

.achievements_info_item:last-child {
  margin-bottom: 0;
}

.achievements_info_item_img_pc {
  position: absolute;
  top: 0;
  left: 0;
  width: 51.97vw;
}

.achievements_info_item_img_tab {
  display: none;
}

/* .achievements_info_item {
    margin-right: 7.985vw;
  } */
.achievements_info_item_container {
  margin-right: 7.985vw;
  background-color: #0A3F9A;
  color: #fff;
}

.achievements_info_item_text_container {
  padding-top: 8.69vw;
  padding-right: 4.865vw;
  padding-bottom: 10.77vw;
  width: 43.47%;
  margin-left: auto;
  position: relative;
}

.achievements_info_item_container_title_container {
  padding-left: 6.53vw;
}

.achievements_info_list_title {
  color: #fff;
  font-size: 2.78vw!important;
  font-size: 40px;
  font-weight: bold;
  line-height: 1.45;
  letter-spacing: 0.1em;
  margin-bottom: 1.81vw!important;
}

.post_content .achievements_info_list {
  padding-left: 0;
}

.achievements_info_list li {
  position: relative;
  padding-left: 1em;
  font-size: 1.39vw;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0;
}

.achievements_info_list li::before {
  position: absolute;
  content: "・";
  left: 0;
}

.achievements_info_sub_title {
  position: absolute;
  bottom: 1.53vw;
  left: 3.06vw;
  font-family: "Work Sans", sans-serif;
  font-size: 6.67vw;
  font-weight: bold;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.05em;
  line-height: 1.18;
}

.reverse .achievements_info_item_img_pc {
  left: unset;
  right: 0;
}

.reverse .achievements_info_item_container {
  margin-right: 0;
  margin-left: 7.985vw;
  background-color: #3C71B3;
}

.reverse .achievements_info_item_text_container {
  padding-right: 0;
  padding-left: 4.865vw;
  margin-left: unset;
  margin-right: auto;
}

.reverse .achievements_info_item_container_title_container {
  padding-left: unset;
  padding-right: 6.25vw;
}

.reverse .achievements_info_sub_title {
  left: unset;
  right: 3.06vw;
}

@media only screen and (max-width: 980px) {
  .service_info_text {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .achievements_link_title {
    font-size: 36px!important;
    margin: auto!important;
    margin-bottom: 50px!important;
  }

  .achievements_link_container {
    flex-wrap: wrap;
    justify-content: center;
  }

  .achievements_link_item {
    max-width: 300px;
    width: 45%;
  }

  .achievements_info_item {
    padding-top: 0;
  }

  .achievements_info_item_container {
    padding: 20px 20px 80px;
    margin-right: 0;
    display: flex;
    justify-content: space-between;
  }

  .achievements_info_item_img_pc {
    display: none;
  }

  .achievements_info_item_img_tab {
    padding-top: 5.21vw;
    display: block;
    width: 50%;
  }

  .achievements_info_item_text_container {
    padding-right: 0;
    margin-left: unset;
    width: 45.5%;
  }

  .achievements_info_item_container_title_container {
    padding-left: 0;
  }

  .achievements_info_sub_title {
    font-size: 12.67vw;
    line-height: 1;
  }

  .reverse .achievements_info_item_container {
    margin-left: unset;
    flex-direction: row-reverse;
  }

  .reverse .achievements_info_item_text_container {
    padding-left: 0;
    margin-right: unset;
  }

  .reverse .achievements_info_item_container_title_container {
    padding-right: 0;
  }
}

@media only screen and (max-width: 680px) {
  .service_info_text {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .achievements_link_title {
    font-size: 32px!important;
    margin: auto!important;
    margin-bottom: 30px!important;
  }

  .achievements_link_container {
    flex-direction: column;
  }

  .achievements_link_item {
    max-width: 250px;
    width: 100%;
    margin: auto;
  }

  .reverse .achievements_info_item_container,
  .achievements_info_item_container {
    flex-direction: column;
  }

  .reverse .achievements_info_item_img_tab,
  .achievements_info_item_img_tab {
    width: 100%;
    margin: auto;
  }

  .reverse .achievements_info_item_text_container,
  .achievements_info_item_text_container {
    max-width: unset;
    width: 100%;
  }

  .reverse .achievements_info_sub_title,
  .achievements_info_sub_title {
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
  }

  .achievements_info_list_title {
    font-size: 32px!important;
    text-align: center;
    margin-bottom: 4.81vw!important;
  }

  .achievements_info_list_title {}
}

/* お知らせ画像無しここから */
.blog_list_no_img {
  padding: 140px 0 190px;
  background-color: #EAF2F9;
}

.blog_list_no_img_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.blog_list_no_img_container {
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  position: relative;
}

.blog_item_ni {
  border-top: 1px solid #A1A1A1;
}

.blog_item_ni:last-child {
  border-bottom: 1px solid #A1A1A1;
}

.blog_item_link:hover {
  opacity: 0.6;
}

.blog_item_link {
  display: flex;
  flex-direction: column;
  gap: 0 30px;
  padding: 20px;
  margin: auto;
}

.blog_item_ni .blog_item_meta {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  align-items: center;
}

.blog_item_ni .blog_item_day {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.55px;
  display: flex;
  align-items: center;
  width: 115px;
  color: #7A7A7A;
  margin-bottom: 0;
}

.blog_item_ni .blog_item_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: calc(100% - 135px);
}

.blog_item_ni .blog_item_tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 2px 30px;
  background: linear-gradient(180deg, #0A3F9A 0%, #3C71B3 100%);
  border-radius: 20px;
  display: block;
}

.blog_item_ni .blog_item_tag p {
  white-space: nowrap;
}

.blog_item_ni .blog_item_title {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.55px;
  line-height: 1.7;
  display: flex;
  align-items: center;
}

ul.page-numbers {
  position: absolute;
  background-color: #EAF2F9;
  right: 0;
  left: 0;
  bottom: 50px;
  margin: auto;
  display: flex;
  justify-content: center;
  box-shadow: none;
}

ul.page-numbers:hover {
  background-color: transparent;
}

li .page-numbers {
  width: 40px;
  background-color: #EAF2F9;
  border-bottom: 2px solid #EEEEEE;
  color: #9F9F9F;
  margin: 0;
  box-shadow: none;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

li .page-numbers:hover {
  background-color: #fff;
  color: #9F9F9F;
  opacity: 0.6;
}

.current.page-numbers {
  border-bottom: 2px solid #0A3F9A;
  background-color: #EAF2F9;
  color: #000;
}

.page-numbers.next,
.page-numbers.prev {
  border-bottom: 2px solid #fff;
}

@media only screen and (max-width: 980px) {
  .blog_list_no_img_inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 680px) {}

/* お知らせ画像無しここまで */
/* お知らせ画像ありここから */
.news_list {
  background-color: #EAF2F9;
  padding-top: 115px;
  padding-bottom: 150px;
}

.news_list_inner {
  max-width: 1190px;
  width: 100%;
  margin: auto;
}

.news_list_container {
  display: flex;
  flex-wrap: wrap;
  gap: 60px 0;
  justify-content: space-between;
  padding-bottom: 220px;
  position: relative;
}

.news_list_container:after,
.news_list_container:before {
  content: "";
  max-width: 380px;
  width: calc(33% - 10px)
}

.news_list_container:before {
  order: 1
}

.news_list_item {
  background: #f7f7f7;
  max-width: 380px;
  width: calc(33% - 10px)
}

.news_list_item_link {
  box-shadow: 0px 4px 20px 0px rgba(60, 113, 179, 0.20);
  display: flex;
  flex-direction: column;
  height: 100%
}

.news_list_item:hover {
  opacity: .8
}

.news_list_item_img {
  width: 100%
}

.news_list_item_img img {
  object-fit: cover;
  width: 100%;
  max-height: 260px;
}

.news_list_item_info {
  display: flex;
  flex-direction: column;
  padding: 15px 22px 40px;
}

.news_list_item_title {
  color: #000;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 13px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 45px;
  line-height: 1.4;
  overflow: hidden
}

.news_list_item_day {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px
}

.news_list_item_tag_list {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-start
}

.news_list_item_tag {
  text-align: center
}

.news_list_item_tag a {
  align-items: center;
  background-color: #fff;
  border: 1px solid #0A3F9A;
  color: #0A3F9A;
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: 22px;
  padding: 2px 23px
}

.news_list_item_tag a:hover {
  background-color: #0A3F9A;
  border: 1px solid #fff;
  color: #fff
}

.news_list_container .page-numbers {
  background-color: transparent;
}

.news_list_container .page-numbers.next,
.news_list_container .page-numbers.prev {
  border-bottom: 2px solid transparent;
}

@media only screen and (max-width: 1250px) {
  .news_list_inner {
    padding: 0 20px
  }
}

@media only screen and (max-width: 980px) {

  .news_list_container {
    justify-content: space-around
  }

  .news_list_container:after,
  .news_list_container:before,
  .news_list_item {
    width: calc(50% - 23px)
  }

  .news_list_item_info {
    padding: 15px 20px;
  }
}

@media only screen and (max-width: 680px) {
  .news_list_container {
    gap: 40px
  }

  .news_list_item {
    width: 90%
  }
}

/* お知らせ画像ありここまで */
/* お知らせ詳細ここから */
/* ぱんくずここから */
.breadcrumb {
  display: flex;
  gap: 16px;
  margin-bottom: 30px;
  color: #747474;
}

.breadcrumb_list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 0 14px;
  margin: auto;
  max-width: 1180px;
  width: 100%;
}

.breadcrumb_item {
  align-items: center;
  color: #9f9f9f;
  display: inline-flex;
  font-size: 14px;
  letter-spacing: .1em;
  margin: 0;
  position: relative;
}

.breadcrumb_item:after {
  background-image: url("/wp-content/uploads/2024/06/breadcrumb_arrow.svg");
  background-size: cover;
  content: "";
  display: block;
  height: 10px;
  margin-left: 9px;
  width: 5px;
}

.breadcrumb_item:last-child:after {
  display: none
}

.breadcrumb_text {
  align-items: center;
  color: inherit;
  display: block;
  display: inline-flex;
  text-decoration: none;
  white-space: nowrap;
}

/* ぱんくずここまで */
.news_details {
  padding: 30px 0 80px;
  background-color: #EAF2F9;
}

.news_details_inner {
  max-width: 880px;
  width: 100%;
  margin: auto;
}

.news_details_title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}

.news_item_tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 35px
}

.news_item_tag {
  text-align: center
}

.news_item_tag a:hover {
  background-color: #123572;
  border: 1px solid #fff;
  color: #fff
}

.news_item_tag a {
  align-items: center;
  border: 1px solid #123572;
  background-color: #fff;
  color: #123572;
  display: flex;
  height: 26px;
  padding: 3px 23px
}

.news_item_tag a,
.news_item_tag a p {
  font-size: 12px;
  font-weight: 500
}

.news_item_tag a:hover {
  text-decoration: none
}

.blog_date {
  color: #7a7a7a;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 20px;
}

.news_details_heading_img {
  margin-bottom: 80px;
}

.news_details_sub_title {
  border-left: 5px solid #3C71B3;
  line-height: 1.4;
  margin-bottom: 15px;
  padding-left: 12px;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 45px;
}

.news_details_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}

.sub_section {
  background-color: #fff;
  margin-bottom: 100px;
}

.sub_section_inner {
  max-width: 800px;
  width: 100%;
  margin: auto;
  padding: 25px 0 15px;
}

.sub_section_title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
}

.sub_section_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.back_btn {
  text-align: center;
}

.back_btn_link {
  display: block;
  border-radius: 50px;
  border: 2px solid #3C71B3;
  background-color: #3C71B3;
  max-width: 300px;
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: auto;
}

.back_btn_link:before {
  background: #fff;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: right top;
  transition: transform 1s;
  z-index: 0;
  border-radius: 48px;
}

.back_btn_link:hover:before {
  transform: scale(1);
  transform-origin: left top;
}

.back_btn_link::after {
  position: absolute;
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  left: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.back_btn_link:hover:after {
  background-color: #3C71B3;
}

.back_btn_link p {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.4;
  color: #fff;
  letter-spacing: 0.1em;
  padding: 22px 0;
  position: relative;
  z-index: 1;
}

.back_btn_link p:hover {
  color: #3C71B3;
}

@media only screen and (max-width: 980px) {
  .news_details_inner {
    padding: 0 20px;
  }

  .breadcrumb {
    margin-bottom: 20px;
  }

  .news_details_title {
    margin-bottom: 20px;
  }

  .news_details_heading_img {
    margin-bottom: 50px;
  }

  .news_details_sub_title {
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 850px) {
  .sub_section_inner {}
}

/* 個人情報に関する公表事項ここから */
.privacy_announce {
  padding: 120px 0;
}

.privacy_announce_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
}

.privacy_announce_text {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.privacy_announce_text span {
  font-weight: 18px;
  font-weight: bold;
}

.privacy_link {
  color: #0F82D3;
  ;
  text-decoration: underline;
}

@media only screen and (max-width: 980px) {
  .privacy_announce_inner {
    padding: 0 20px;
  }

  .privacy_announce {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 680px) {
  .privacy_announce {
    padding: 50px 0;
  }

  .privacy_announce_text {
    font-size: 16px;
  }
}

/* 個人情報保護方針ここから */
.privacy_policy {
  padding: 120px 0 150px;
}

.privacy_policy_inner {
  max-width: 900px;
  width: 100%;
  margin: auto;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
}

.policy_text {
  margin-bottom: 65px;
}

.policy_date {
  text-align: right;
  margin-bottom: 90px;
}

.policy_title {
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.post_content .policy_text_list {
  list-style: decimal;
}

.policy_text_list li {}

.policy_counter {
  text-align: center;
}

.policy_counter a {
  color: #0F82D3;
  text-decoration: underline;
}

.policy_counter a:hover {
  color: #0A3F9A;
}

@media only screen and (max-width: 980px) {
  .privacy_policy {
    padding: 80px 0 100px;
  }

  .policy_date {
    margin-bottom: 60px;
  }

  .policy_title {
    margin-bottom: 30px;
  }

  .policy_text {
    margin-bottom: 45px
  }
}

@media only screen and (max-width: 680px) {
  .privacy_policy {
    padding: 50px 0 80px;
  }

  .policy_date {
    margin-bottom: 30px;
  }

  .policy_title {
    margin-bottom: 20px;
  }

  .policy_text {
    margin-bottom: 30px
  }
}

/* お問い合わせここから */
.contact_sec {
  padding: 120px 0 220px;
  background-color: #EAF2F9;
}

.contact_sec_inner {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.contact_title {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

.contact_text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.2em;
  margin-bottom: 60px;
}

.contact_box {
  margin-bottom: 26px;
}

.contact_box_title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  line-height: 1.45;
}

.contact_box_title label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.label-req {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  background-color: #FF4D00;
  padding: 1px 6px;
  display: inline-block;
  height: 19px;
}

.policy_agree {}

.agree {
  margin-bottom: 18px;
}

.agree a {
  text-decoration: underline;
}

.agree a:hover {
  color: #888888;
}

@media only screen and (max-width: 980px) {
  .contact_sec {
    padding: 70px 0 170px;
  }
}

@media only screen and (max-width: 680px) {
  .contact_sec {
    padding: 50px 0 100px;
  }
}

/* お問い合わせ内容 */
.inquiry {
  margin-bottom: 55px;
}

.wpcf7-form-control {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wpcf7-list-item {
  margin-left: 0;
}

.contact_input input,
.contact_input textarea {
  background-color: #fff;
  border: 1px solid #000;
}

.wpcf7-list-item input {
  display: none;
}

.form-control {}

.btn-submit {
  height: 60px;
  max-width: 300px;
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background-color: #005CB9;
  border: 1px solid #005CB9;
  text-decoration: none;
  display: block;
  text-align: center;
  border-radius: 0px !important;
  text-align: center;
  margin: auto;
}

@media only screen and (max-width: 850px) {
  .contact_sec_inner {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 680px) {
  .inquiry {
    margin-bottom: 30px;
  }
}
/* ラベル文字の左側の余白：チェックボックの枠が入るスペース＋ラベル文字との余白 */
.policy_agree input+span,
.contact_koumoku input+span {
  padding-left: 28px;
  display: inline-block;
  position: relative;
}

/* チェックボックスの枠とチェックマークの共通書式 */
.policy_agree input+span::after,
.policy_agree input+span::before,
.contact_koumoku input+span::after,
.contact_koumoku input+span::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
}

/* チェックボックスの枠 */
.policy_agree input+span::before,
.contact_koumoku input+span::before {
  border: 1px solid #aaaaaa;
  background-color: #ffffff;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* チェックマークにチェックが付いていない時 */
.policy_agree input+span::after,
.contact_koumoku input+span::after {
  border: none;
  background-color: #0F82D3;
  border-radius: 50%;
  height: 12px;
  width: 12px;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}

/* チェックマークにチェックが付いた時 */
.policy_agree input:checked+span::after,
.contact_koumoku input:checked+span::after {
  display: block;
}
