@charset "UTF-8";
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
.pc {
  display: block;
}

.sp {
  display: none !important;
}

a:hover {
  opacity: 0.7;
}

p {
  line-height: 1.8em;
  letter-spacing: 2px;
}

.tel {
  pointer-events: none;
}

.lato {
  font-family: "Lato", sans-serif;
}

.roboto {
  font-family: "Roboto", sans-serif;
}

html {
  font-size: 0.5208333333vw;
}
@media screen and (max-width: 1480px) {
  html {
    font-size: 8px;
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}

body {
  letter-spacing: 2px;
}

.hd_bg {
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 999;
}
.hd_bg .hd {
  width: 100%;
  max-width: 1920px;
  padding: 0 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.hd_bg .hd .hd_logo {
  display: block;
  width: 27%;
}
.hd_bg .hd .hamburger_btn {
  display: none;
}
.hd_bg .hd .hd_nav_block {
  padding-right: 42rem;
}
@media screen and (max-width: 980px) {
  .hd_bg .hd .hd_nav_block {
    padding-right: 32%;
  }
}
.hd_bg .hd .hd_nav_list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.hd_bg .hd .hd_nav_list li a {
  font-size: 1.6rem;
  display: block;
  padding: 1rem 2rem;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  .hd_bg .hd .hd_nav_list li a {
    padding: 1rem;
  }
}
.hd_bg .hd .hd_nav_list li a:hover {
  opacity: 0.7;
}
.hd_bg .hd .hd_link_btn {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  position: absolute;
  top: 0;
  right: 2%;
}
.hd_bg .hd .hd_link_btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #076eaa;
  color: #fff;
  font-size: 1.6rem;
  padding: 0.5rem 1rem;
  line-height: 1.6;
  font-weight: bold;
  width: 20rem;
  text-align: center;
  word-break: keep-all;
}
@media screen and (max-width: 980px) {
  .hd_bg .hd .hd_link_btn a {
    width: unset;
  }
}
.hd_bg .hd .hd_link_btn a .window {
  position: relative;
  padding-right: 1.8rem;
}
.hd_bg .hd .hd_link_btn a .window::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.header_bottom {
  margin-top: 100px;
}

.mv_bg {
  width: 100%;
  padding: 30em 0;
  background: url(../img/top/mv.webp) center no-repeat;
  background-size: cover;
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (max-width: 1480px) {
  .mv_bg {
    padding: 16vw 0;
    font-size: 0.5208333333vw;
  }
}
.mv_bg .catchphrase {
  font-size: 6.4em;
  color: #076eaa;
  font-weight: bold;
  text-align: center;
}
.mv_bg .catchphrase span {
  background: #fff;
  padding: 0.25rem 1rem;
}

.container {
  width: 100%;
  max-width: 1230px;
  padding: 0 15px;
  box-sizing: border-box;
  margin: 0 auto;
}

.common_btn01 a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: #076eaa;
  padding: 1.5rem 1rem;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  font-size: 1.6rem;
  position: relative;
  font-weight: 500;
}
.common_btn01 a .arrow {
  position: relative;
  padding-right: 3rem;
}
.common_btn01 a .arrow::after {
  position: absolute;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(-45deg) translateY(-50%);
  content: "";
  top: 50%;
  right: 1rem;
  width: 6px;
  height: 6px;
}

.top_news {
  padding: 10rem 0 7.5rem;
}
.top_news .top_news_btn {
  margin-top: 5rem;
}
.top_news .top_news_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.top_news .top_news_block .top_news_ttl {
  width: 14.5%;
  font-size: 4.2rem;
  font-weight: bold;
}
.top_news .top_news_block .top_news_box {
  width: 85.5%;
  padding-left: 6.25%;
  border-left: 1px solid #ddd;
}
.top_news .top_news_block .top_news_box .cate_tab {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  gap: 2rem;
}
.top_news .top_news_block .top_news_box .cate_tab .cate_tab_btn {
  width: calc((100% - 4rem) / 3);
  color: #222;
  background: #dde2e5;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 1rem 0;
  cursor: pointer;
}
.top_news .top_news_block .top_news_box .cate_tab .cate_tab_btn:hover {
  opacity: 0.7;
  background: #076eaa;
  color: #fff;
}
.top_news .top_news_block .top_news_box .cate_tab .cate_tab_btn.current {
  color: #fff;
  background: #076eaa;
  pointer-events: none;
}
.top_news .top_news_block .top_news_box .top_news_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.top_news .top_news_block .top_news_box .top_news_list li {
  width: 100%;
}
.top_news .top_news_block .top_news_box .top_news_list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  gap: 2rem 3rem;
  flex-wrap: nowrap;
}
.top_news .top_news_block .top_news_box .top_news_list li a .date {
  font-size: 1.6rem;
  font-weight: 500;
  color: #7e8386;
}
.top_news .top_news_block .top_news_box .top_news_list li a .cate {
  font-size: 1.6rem;
  color: #076eaa;
  font-weight: 500;
  padding: 0.5rem;
  border: 1px solid #076eaa;
  width: 20rem;
  text-align: center;
}
.top_news .top_news_block .top_news_box .top_news_list li a .cate.txt-s {
  font-size: 1.3rem;
}
.top_news .top_news_block .top_news_box .top_news_list li a .txt {
  font-size: 1.6rem;
  color: #222;
  font-weight: 500;
}
.top_news .top_news_block .top_news_box .top_news_list li a:hover {
  opacity: 0.7;
}

.top_message {
  padding: 7.5rem 0 10rem;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.top_message .top_message_block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top_message .top_message_block .top_message_img {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 43%;
}
.top_message .top_message_block .top_message_txt_box {
  width: 50%;
}
.top_message .top_message_block .top_message_txt_box .top_message_ttl {
  margin-bottom: 5rem;
  line-height: 1.2;
}
.top_message .top_message_block .top_message_txt_box .top_message_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.top_message .top_message_block .top_message_txt_box .top_message_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}
.top_message .top_message_block .top_message_txt_box .txt {
  font-size: 2rem;
  color: #222;
  font-weight: 500;
  line-height: 2;
}
.top_message .top_message_block .top_message_txt_box .company {
  margin-top: 3rem;
  font-size: 1.8rem;
  font-weight: 500;
  text-align: right;
  color: #222;
}
.top_message .top_message_block .top_message_txt_box .name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.top_message .top_message_block .top_message_txt_box .name .position {
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
  margin-right: 1rem;
}

.top_company {
  padding: 10rem 0 10rem;
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.top_company .top_company_block {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.top_company .top_company_block .top_company_img {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 43%;
}
.top_company .top_company_block .top_company_txt_box {
  width: 50%;
}
.top_company .top_company_block .top_company_txt_box .top_company_ttl {
  margin-bottom: 5rem;
  line-height: 1.2;
}
.top_company .top_company_block .top_company_txt_box .top_company_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.top_company .top_company_block .top_company_txt_box .top_company_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}
.top_company .top_company_block .top_company_txt_box .top_company_info {
  display: flex;
  justify-content: space-between;
}
.top_company .top_company_block .top_company_txt_box .top_company_info dt {
  width: 18rem;
  font-size: 1.6rem;
  font-weight: bold;
  color: #076eaa;
  padding: 2rem 0.5rem 2rem 2rem;
  border-bottom: 1px solid #076eaa;
  line-height: 1.6;
}
.top_company .top_company_block .top_company_txt_box .top_company_info dd {
  width: calc(100% - 18rem);
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  padding: 2rem 0.5rem 2rem 2rem;
  border-bottom: 1px solid #ddd;
  line-height: 1.6;
}
.top_company .top_company_block .top_company_txt_box .top_company_info dd b {
  font-weight: bold;
}

.top_philosophy {
  padding: 10rem 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 10rem;
  background: #fff;
}
.top_philosophy .top_philosophy_ttl {
  margin-bottom: 5rem;
  line-height: 1.2;
  text-align: center;
}
.top_philosophy .top_philosophy_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.top_philosophy .top_philosophy_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}
.top_philosophy .top_philosophy_block {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.top_philosophy .top_philosophy_block .top_philosophy_box {
  width: 100%;
}
.top_philosophy .top_philosophy_block .top_philosophy_box .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  border-bottom: 1px solid #076eaa;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
}
.top_philosophy .top_philosophy_block .top_philosophy_box .txt {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.top_philosophy .top_philosophy_block .top_philosophy_box .ol_list {
  counter-reset: num;
  list-style: none;
  padding-left: 0;
  margin-bottom: 1rem;
}
.top_philosophy .top_philosophy_block .top_philosophy_box .ol_list li {
  counter-increment: num;
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 500;
}
.top_philosophy .top_philosophy_block .top_philosophy_box .ol_list li::before {
  content: counter(num) ".";
  position: absolute;
  left: 0;
  color: #076eaa;
  font-weight: bold;
}

.top_products {
  padding: 12rem 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #edf4f9;
}
.top_products .container {
  max-width: 1480px;
}
.top_products .top_products_ttl {
  margin-bottom: 5rem;
  line-height: 1.2;
  text-align: center;
}
.top_products .top_products_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.top_products .top_products_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}
.top_products .top_products_block {
  width: 100%;
}
.top_products .top_products_list01 {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto 9rem;
  gap: 3rem;
}
.top_products .top_products_list01 .top_products_box {
  width: calc((100% - 6rem) / 3);
}
.top_products .top_products_list01 .top_products_box .img {
  text-align: center;
}
.top_products .top_products_list01 .top_products_box .img img {
  margin: 0 auto;
}
.top_products .top_products_list01 .top_products_box .txt {
  margin: 1rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  color: #222;
}
.top_products .top_products_list01 .top_products_box .btn_flex {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.top_products .top_products_list01 .top_products_box .btn_flex a {
  width: calc(50% - 0.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background: #076eaa;
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 0.5rem;
  line-height: 1.8;
  font-weight: bold;
}
.top_products .top_products_list01 .top_products_box .btn_flex a .window {
  position: relative;
  padding-right: 1.8rem;
}
.top_products .top_products_list01 .top_products_box .btn_flex a .window::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_products .top_products_list02 {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.top_products .top_products_list02 .top_products_box {
  width: calc((100% - 8rem) / 5);
  min-width: 180px;
}
.top_products .top_products_list02 .top_products_box .img {
  display: block;
}
.top_products .top_products_list02 .top_products_box .txt_box {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #076eaa;
  padding: 1.5rem 0.5rem;
}
.top_products .top_products_list02 .top_products_box .txt_box .txt {
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  display: inline-block;
}
.top_products .top_products_list02 .top_products_box .txt_box .txt.window {
  position: relative;
  padding-right: 1.8rem;
}
.top_products .top_products_list02 .top_products_box .txt_box .txt.window::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.top_recruit {
  padding: 10rem 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.top_recruit .top_recruit_ttl {
  margin-bottom: 5rem;
  line-height: 1.2;
  text-align: center;
}
.top_recruit .top_recruit_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.top_recruit .top_recruit_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}
.top_recruit .top_recruit_block {
  width: 100%;
  position: relative;
  font-size: 9px;
}
@media screen and (max-width: 1200px) {
  .top_recruit .top_recruit_block {
    font-size: 0.7vw;
  }
}
.top_recruit .top_recruit_block .top_recruit_map {
  width: 100%;
}
.top_recruit .top_recruit_block .top_recruit_map img {
  margin: 0 auto;
}
.top_recruit .top_recruit_block .offece_point {
  width: 2.2em;
  height: 2.2em;
  border: 1px solid #076eaa;
  background: #fff;
  border-radius: 50%;
  position: absolute;
}
.top_recruit .top_recruit_block .offece_point::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: #076eaa;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.top_recruit .top_recruit_block .offece_point::before {
  content: "";
  position: absolute;
}
.top_recruit .top_recruit_block .offece_point.point01 {
  top: 75%;
  left: 19.2%;
}
.top_recruit .top_recruit_block .offece_point.point01::before {
  width: 1px;
  height: 12em;
  background: #076eaa;
  left: 1em;
  bottom: 2.2em;
}
.top_recruit .top_recruit_block .offece_point.point02 {
  top: 20%;
  right: 45%;
}
.top_recruit .top_recruit_block .offece_point.point02::before {
  width: 25em;
  height: 1px;
  background: #076eaa;
  left: 2.2em;
  top: 1em;
}
@media screen and (max-width: 1200px) {
  .top_recruit .top_recruit_block .offece_point.point01 {
    top: 65.5em;
    left: 27em;
  }
  .top_recruit .top_recruit_block .offece_point.point01::before {
    width: 1px;
    height: 14em;
    background: #076eaa;
    left: 1em;
    bottom: 2.2em;
  }
  .top_recruit .top_recruit_block .offece_point.point02 {
    top: 17em;
    right: 62.5em;
  }
  .top_recruit .top_recruit_block .offece_point.point02::before {
    width: 30em;
    height: 1px;
    background: #076eaa;
    left: 2.2em;
    top: 1em;
  }
}
.top_recruit .top_recruit_block .offece_box {
  position: absolute;
  background: #fff;
  border: 1px solid #076eaa;
  padding: 2em 3em;
}
.top_recruit .top_recruit_block .offece_box .ttl {
  color: #076eaa;
  font-size: 1.6em;
  font-weight: bold;
  margin-bottom: 1em;
}
.top_recruit .top_recruit_block .offece_box .txt {
  font-size: 1.6em;
  color: #222;
  font-weight: 500;
  margin-bottom: 1em;
}
.top_recruit .top_recruit_block .offece_box .btn {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #076eaa;
  color: #fff;
  font-size: 1.6em;
  padding: 0.8em 0.5em;
  line-height: 1.8;
  font-weight: bold;
}
.top_recruit .top_recruit_block .offece_box .btn .window {
  position: relative;
  padding-right: 1.8em;
}
.top_recruit .top_recruit_block .offece_box .btn .window::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.top_recruit .top_recruit_block .offece_box.office01 {
  top: 35%;
  left: 4%;
}
.top_recruit .top_recruit_block .offece_box.office02 {
  top: 12%;
  right: 3%;
}
@media screen and (max-width: 1200px) {
  .top_recruit .top_recruit_block .offece_box.office01 {
    top: 30em;
    left: 8em;
  }
  .top_recruit .top_recruit_block .offece_box.office02 {
    top: 10em;
    right: 3em;
  }
}

.bnr_blcok {
  padding: 10rem 0;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #edf4f9;
}
.bnr_blcok .bnr_blcok_bg {
  width: 80%;
  max-width: 660px;
  aspect-ratio: 11/3;
  margin: 0 auto;
  background: url(../img/common/bnr_bg01.webp) center no-repeat;
  padding: 4rem 1rem;
  background-size: contain;
  align-content: center;
}
.bnr_blcok .bnr_blcok_bg .bnr_block_ttl {
  font-size: 2rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
.bnr_blcok .bnr_blcok_bg .bnr_block_link {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.bnr_blcok .bnr_blcok_bg .bnr_block_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #076eaa;
  color: #fff;
  font-size: 1.6rem;
  padding: 1rem 0.5rem;
  line-height: 1.8;
  font-weight: bold;
  width: 30rem;
}
.bnr_blcok .bnr_blcok_bg .bnr_block_link a .window {
  position: relative;
  padding-right: 1.8rem;
}
.bnr_blcok .bnr_blcok_bg .bnr_block_link a .window::after {
  content: "";
  width: 1.4rem;
  height: 1.4rem;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.old_site_link {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto 6rem;
  display: flex;
  justify-content: center;
}
.old_site_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  aspect-ratio: 24/13;
  position: relative;
  overflow: hidden;
}
.old_site_link a .txt {
  font-size: 4.2rem;
  font-weight: bold;
  color: #fff;
  background: #076eaa;
  padding: 1.5rem 2rem;
  position: relative;
  z-index: 5;
}
.old_site_link a .txt .window {
  position: relative;
  padding-right: 2.2rem;
}
.old_site_link a .txt .window::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background: url(../img/common/window.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.old_site_link a.old_site01::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  background: url(../img/common/link_bg01.webp) center no-repeat;
  background-size: cover;
}
.old_site_link a.old_site02::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-out;
  background: url(../img/common/link_bg02.webp) center no-repeat;
  background-size: cover;
}
.old_site_link a:hover {
  opacity: 1;
}
.old_site_link a:hover .txt {
  opacity: 0.7;
}
.old_site_link a:hover::after {
  transform: scale(1.02) translate(-50%, -50%);
}

.ft_copy {
  width: 100%;
  background: #076eaa;
  padding: 1rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  font-weight: 500;
  letter-spacing: normal;
}

.sub_main {
  width: 100%;
  background: #e8f1f6;
  padding: 8rem 0 7rem;
}
.sub_main .sub_main_ttl {
  line-height: 1.2;
  text-align: center;
}
.sub_main .sub_main_ttl .en {
  font-size: 8.4rem;
  color: #076eaa;
  font-weight: bold;
  display: block;
}
.sub_main .sub_main_ttl .ja {
  font-size: 2rem;
  font-weight: bold;
  color: #222;
  display: block;
}

.common_breadcrumb {
  width: 100%;
  padding: 2rem 0;
}
.common_breadcrumb .breadcrumb_list {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.common_breadcrumb .breadcrumb_list a {
  font-size: 1.6rem;
  display: block;
  color: #076eaa;
  font-weight: 500;
  position: relative;
  border-bottom: 1px solid #076eaa;
  margin-right: 3rem;
}
.common_breadcrumb .breadcrumb_list a::after {
  position: absolute;
  border-bottom: 1px solid #076eaa;
  border-right: 1px solid #076eaa;
  transform: rotate(-45deg) translateY(-50%);
  content: "";
  top: 50%;
  right: -2rem;
  width: 6px;
  height: 6px;
}
.common_breadcrumb .breadcrumb_list span {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
}

.news_list_sec {
  width: 100%;
  padding: 6rem 0 12rem;
  max-width: 1920px;
  margin: 0 auto;
}
.news_list_sec .news_list_ttl {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #222;
  position: relative;
  margin-bottom: 5rem;
  padding-bottom: 1rem;
}
.news_list_sec .news_list_ttl::after {
  content: "";
  width: 5rem;
  height: 1px;
  background: #076eaa;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.news_list_sec .news_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 2rem;
  margin-bottom: 6rem;
}
.news_list_sec .news_list li {
  width: 100%;
}
.news_list_sec .news_list li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  gap: 2rem 3rem;
  flex-wrap: nowrap;
  padding: 2rem 0;
  border-bottom: 1px solid #ddd;
}
.news_list_sec .news_list li a .date {
  font-size: 1.6rem;
  font-weight: 500;
  color: #7e8386;
}
.news_list_sec .news_list li a .cate {
  font-size: 1.6rem;
  color: #076eaa;
  font-weight: 500;
  padding: 0.5rem;
  border: 1px solid #076eaa;
  width: 20rem;
  text-align: center;
}
.news_list_sec .news_list li a .cate.txt-s {
  font-size: 1.3rem;
}
.news_list_sec .news_list li a .txt {
  font-size: 1.6rem;
  color: #222;
  font-weight: 500;
}
.news_list_sec .news_list li a:hover {
  opacity: 0.7;
}
.news_list_sec .page_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.news_list_sec .page_nav a {
  display: block;
  letter-spacing: 1px;
  pointer-events: none;
}
.news_list_sec .page_nav a.active {
  pointer-events: all;
}
.news_list_sec .page_nav a.first, .news_list_sec .page_nav a.last {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  opacity: 0.7;
}
.news_list_sec .page_nav a.first .arrow, .news_list_sec .page_nav a.last .arrow {
  color: #222;
}
.news_list_sec .page_nav a.first.active, .news_list_sec .page_nav a.last.active {
  opacity: 1;
}
.news_list_sec .page_nav a.first.active .arrow, .news_list_sec .page_nav a.last.active .arrow {
  color: #076eaa;
}
.news_list_sec .page_nav a.first.active:hover, .news_list_sec .page_nav a.last.active:hover {
  opacity: 0.7;
}
.news_list_sec .page_nav a.first .arrow {
  margin-right: 1rem;
}
.news_list_sec .page_nav a.last .arrow {
  margin-left: 1rem;
}
.news_list_sec .page_nav a.prev, .news_list_sec .page_nav a.next {
  font-size: 1.6rem;
  color: #222;
  font-weight: 500;
  padding: 1rem 3rem;
  background: #dde2e5;
  opacity: 0.7;
}
.news_list_sec .page_nav a.prev.active, .news_list_sec .page_nav a.next.active {
  color: #fff;
  background: #076eaa;
  opacity: 1;
}
.news_list_sec .page_nav a.prev.active:hover, .news_list_sec .page_nav a.next.active:hover {
  opacity: 0.7;
}
.news_list_sec .page_nav .current_num {
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
}

.news_detail_sec {
  width: 100%;
  padding: 10rem 0;
}
.news_detail_sec .news_detail_inner {
  width: 100%;
  max-width: 1030px;
  padding: 0 15px;
  margin: 0 auto;
}
.news_detail_sec .news_cate_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
.news_detail_sec .news_cate_list .cate {
  color: #076eaa;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.2rem 3rem;
  border: 1px solid #076eaa;
}
.news_detail_sec .news_detail_ttl {
  font-size: 2.8rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 2rem;
}
.news_detail_sec .date {
  font-size: 1.6rem;
  font-weight: 500;
  color: #7e8386;
}
.news_detail_sec .news_detail_block {
  margin-top: 5rem;
}

.common_detail_link {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 5rem;
  gap: 2rem 3rem;
}
.common_detail_link .prev, .common_detail_link .next {
  display: block;
  letter-spacing: 1px;
}
.common_detail_link .active {
  pointer-events: all;
}
.common_detail_link .prev, .common_detail_link .next {
  font-size: 1.6rem;
  font-weight: 500;
  color: #222;
  opacity: 0.7;
}
.common_detail_link .prev .arrow, .common_detail_link .next .arrow {
  color: #222;
}
.common_detail_link .prev.active, .common_detail_link .next.active {
  opacity: 1;
}
.common_detail_link .prev.active .arrow, .common_detail_link .next.active .arrow {
  color: #076eaa;
}
.common_detail_link .prev.active:hover, .common_detail_link .next.active:hover {
  opacity: 0.7;
}
.common_detail_link .prev .arrow {
  margin-right: 1rem;
}
.common_detail_link .next .arrow {
  margin-left: 1rem;
}
.common_detail_link .list {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  padding: 1.2rem 3.5rem;
  background: #076eaa;
}

.common_detail_contents {
  color: #222;
  font-weight: 500;
}
.common_detail_contents p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  line-height: 2;
  margin: 2rem 0;
}
.common_detail_contents a {
  font-size: 1.6rem;
}
.common_detail_contents a:not(.wp-element-button) {
  font-size: 1.6rem;
  color: #076eaa;
  text-decoration: underline;
  padding: 0 0.2rem;
}
.common_detail_contents strong {
  font-size: 1.1em;
}
.common_detail_contents .aligncenter {
  margin: 0 auto;
}
.common_detail_contents figure {
  text-align: center;
}
.common_detail_contents img {
  border-radius: 6px;
  margin: 1rem 0;
}
.common_detail_contents h2 {
  font-size: 2.4rem;
  font-weight: bold;
  padding-bottom: 0.5rem;
  margin: 5rem 0 3rem;
  position: relative;
  padding-left: 4rem;
}
.common_detail_contents h2::before {
  content: "";
  width: 3rem;
  height: 2px;
  background: #076eaa;
  position: absolute;
  top: 1.8rem;
  left: 0;
}
.common_detail_contents h3 {
  font-size: 2rem;
  color: #222;
  position: relative;
  padding-left: 2rem;
  margin: 5rem 0 3rem;
}
.common_detail_contents h3::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #076eaa;
  position: absolute;
  top: 1.2rem;
  left: 0;
}
.common_detail_contents h4 {
  font-size: 2rem;
  color: #222;
  position: relative;
  margin: 5rem 0 3rem;
  border-bottom: 1px solid #076eaa;
}
.common_detail_contents ul li {
  font-size: 1.6rem;
  padding-left: 1em;
  position: relative;
  margin: 1rem 0;
}
.common_detail_contents ul li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: #076eaa;
  border-radius: 50px;
  position: absolute;
  top: 0.75rem;
  left: 0;
}
.common_detail_contents .btn01 {
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(73, 57, 42, 0.2);
}

.not_found {
  width: 100%;
  padding: 10rem 0;
  max-width: 1920px;
  margin: 0 auto;
}
.not_found .not_found_txt01 {
  font-size: 2rem;
  font-weight: 500;
}
.not_found .not_found_btn {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.not_found .not_found_btn a {
  display: block;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background: #076eaa;
  padding: 1.5rem 3rem;
  width: 80%;
  max-width: 320px;
  text-align: center;
}

.ank {
  padding-top: 100px;
  margin-top: -100px;
}/*# sourceMappingURL=style.css.map */