@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

/* ================================================
base
================================================ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  color: #000;
  font-family: "Lato", "Noto Sans JP", "Yu Gothic", YuGothic, "Helvetica Neue", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", Arial, Meiryo, sans-serif;
  font-size: 1.6rem;
  line-height: 1.9;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
}
body.is-noScroll { /* ハンバーガーメニュー開閉時 */
  width: 100%;
  height: 100%;
  position: fixed;
}

* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #000;
  display: inline-block;
  text-decoration: none;
}
a:hover {
  opacity: .7;
  transition: .2s;
}

/* PC / SP
----------------------- */
.pc {display: block;}
.sp {display: none;}
.br_pc {display: inline;}
.br_tb {display: inline;}
.br_sp {display: none;}
@media screen and (max-width: 768px) {
  .pc {display: none;}
  .sp {display: block;}
  .br_pc {display: none;}
  .br_sp {display: inline;}	
}
@media screen and (max-width: 1400px) {
  .br_tb {display: none;}
}

/* スマホ幅のときだけtelリンク有効 */
@media(min-width: 768px){
  a[href^="tel:"]{
    pointer-events: none;
  }
}

/* テキスト関係
----------------------- */
.t_left  {text-align: left;}
.t_center{text-align: center;}
.t_right {text-align: right;}

.fs8  {font-size: .8rem;}
.fs10 {font-size: 1.0rem;}
.fs11 {font-size: 1.1rem;}
.fs12 {font-size: 1.2rem;}
.fs13 {font-size: 1.3rem;}
.fs14 {font-size: 1.4rem;}
.fs15 {font-size: 1.5rem;}
.fs16 {font-size: 1.6rem;}
.fs18 {font-size: 1.8rem;}
.fs20 {font-size: 2.0rem;}
.fs24 {font-size: 2.4rem;}

.bold {font-weight: bold!important;}
.normal {font-weight: normal!important;}

/* 余白
----------------------- */
.mt00 {margin-top:  0px!important;}
.mt10 {margin-top: 10px!important;}
.mt20 {margin-top: 20px!important;}
.mt30 {margin-top: 30px!important;}
.mt40 {margin-top: 40px!important;}
.mt50 {margin-top: 50px!important;}
.mb00 {margin-bottom:  0px!important;}
.mb10 {margin-bottom: 10px!important;}
.mb15 {margin-bottom: 15px!important;}
.mb20 {margin-bottom: 20px!important;}
.mb30 {margin-bottom: 30px!important;}
.mb40 {margin-bottom: 40px!important;}
.mb50 {margin-bottom: 50px!important;}
.mb70 {margin-bottom: 70px!important;}
.mb100 {margin-bottom: 100px!important;}

/* ================================================
	header
================================================ */
.header-nav {
  background-color: #FFF;
  height: 72px;
  width: 100%;
}
.header-nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  background-color: rgba(255,255,255,0.9);
}
@media screen and (max-width: 1000px) {
  .header-nav {
    height: 60px;
  }
}
/* サイトタイトル */
.header-nav .site-id {
  display: flex;
  align-items: center;
  padding: 10px 0 10px 1.927%;
}
.header-nav .site-id-text {
  font-size: 1rem;
  padding-left: 20px;
}
@media screen and (max-width: 1000px) {
  .header-nav .site-id {
    padding-left: 4%;
  }
}
/* ヘッダ電話番号 */
.header_tel {
  border-left: 1px solid #D8D8D8;
  font-weight: 700;
  height: 40px;
  padding-left: 30px;
  display: flex;
  align-items: center;
}
.header_tel .tel_label {
  font-size: 1.5rem;
  padding-right: 6px;
}
.header_tel .tel_number {
  font-size: 2.6rem;
}
/* お問い合わせボタン */
.header_btn_contact a {
  background: #002263;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 181px;
  height: 72px;
  margin-left: 33px;
  position: relative;
}
.header_btn_contact a::before {
  content: "";
  background: url("../images/common/icon_mail.png") no-repeat 0 0;
  background-size: contain;
  width: 26px;
  height: 21px;
  margin-right: 13px;
}
@media screen and (max-width: 1000px) {
  .header-nav .site-id-img {
    width: 116px;
    height: auto;
  }
  .header-nav .site-id-text {
    line-height: 1.5;
    padding-left: 20px;
  }
  .header_tel {
    border-left: none;
    color: #fff;
    height: 44px;
    margin-bottom: 15px;
    padding: 0 13%;
  }
  .header_tel .tel_label {
    font-size: 1.9rem;
    padding-right: 6px;
  }
  .header_tel .tel_number {
    font-size: 3.3rem;
  }
  .header_btn_contact {
    margin: 0 13%;
  }
  .header_btn_contact a {
    background: #fff;
    color: #002263;
    height: 70px;
    width: 100%;
    margin: 0;
  }
  .header_btn_contact a::before {
    content: "";
    background: url("../images/common/icon_mail_sp.png") no-repeat 0 0;
    background-size: contain;
  }
}

/* ================================================
	グローバルナビ
================================================ */
.gnav {
  font-size: 1.4rem;
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
}
.gnav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.gnav-list li {
  margin-right: 30px;
}
.gnav-list a {
  display: block;
}
.gnav-list a:hover {
  color: #6D9DB5;
  opacity: 1;
}
.btn-nav {
  display: none;
}
.sp_link {
  display: none;
}
@media screen and (max-width: 1000px) {
  .gnav {
    width: 90%;
    height: 100vh;
    background-color: #6D9DB5;
    position: fixed;
    top: 0;
    right: -110%;
    z-index: 90;
    transition: all 0.6s;
    display: block;
  }
  .gnav.is-open {
    right: 0;
  }
  .gnav-list {
    display: block;
    margin: 90px 13%;
  }
  .gnav-list li {
    border-bottom: 1px solid #fff;
    font-weight: 500;
    font-size: 1.8rem;
    margin: 0;
  }
  .gnav-list li a {
    color: #fff;
    padding: 15px 0;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 600;
  }
  .gnav-list li a::after {
    content: "";
    display: inline-block;
    background: url("../images/common/arrow06.png") no-repeat 0 0;
    background-size: contain;
    width: 18px;
    height: 18px;
    margin-left: 10px;
  }
  .sp_link {
    display: block;
  }
  .gnav-list li a:hover {
    color: #D8D8D8;
  }
  /* ハンバーガーボタン */
  .btn-nav {
    background-color: #002263;
    display: inline-block;
    width: 66px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100;
  }
  .btn-nav.is-open {
    background-color: #6D9DB5;
  }
  .hamburger_line {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
  }
  .hamburger_line::before, .hamburger_line::after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 4px;
    background-color: inherit;
    transition: all 0.2s;
  }
  .hamburger_line::before {
    top: -8px;
    right: 0;
  }
  .hamburger_line::after {
    top: 8px;
    right: 0;
  }
  /* open時 */
  .btn-nav.is-open .hamburger_line {
    background-color: transparent;
    width: 26px;
  }
  .btn-nav.is-open .hamburger_line::before {
    background-color: #fff;
    top: 0;
    right: 0;
    transform: rotate(45deg);
  }
  .btn-nav.is-open .hamburger_line::after {
    background-color: #fff;
    top: 0;
    right: 0;
    transform: rotate(-45deg);
  }
  .screen_reader_text {
    display: none;
  }
  /* オーバーレイの指定 */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* 黒を半透明に */
    opacity: 0;
    visibility: hidden; /* 非表示 */
    transition: opacity 0.6s ease;
    z-index: 50; /* メニューより手前 */
  }
  /* メニューが開いたときに表示 */
  .overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* ================================================
	main コンテンツ
================================================ */
main {
  padding-top: 72px; /* ヘッダー分 */
}
.inner {
  max-width: calc(1000px + 8%);
  padding-left: 4%;
  padding-right: 4%;
  margin: 0 auto;
  position: relative;
}
.inner_s {
  max-width: calc(800px + 8%);
  padding-left: 4%;
  padding-right: 4%;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px; /* ヘッダー分 */
  }
}

/* リンクボタン */
.link_btn {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 282px;
  height: 60px;
  background: #6D9DB5;
  border-radius: 50px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
}
.link_btn::after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow02.png") no-repeat 0 0;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-left: 8px;
}
.link_btn:hover {
  background: #EBEBEB;
  color: #002263;
  opacity: 1;
}
.link_btn:hover::after {
  background: url("../images/common/arrow03.png") no-repeat 0 0;
  background-size: contain;
}

/* ================================================
	footer
================================================ */
/* 波の背景 */
.sub_footer {
  background-color: #7EA8BD;
  border-bottom: 22px solid #002263;
  position: relative;
  margin-top: 97px;
  padding: 85px 0 40px;
}
.sub_footer::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 18px;
  background: url("../images/common/bg_wave.png") repeat-x 0 0;
  background-size: contain;
  top: -17px;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .sub_footer {
    margin-top: 60px;
    padding: 60px 0 22px;
  }
  .sub_footer::before {
    height: 13px;
    top: -12px;
  }  
}

/* サービス体制 */
.service_system_wrap .sec_title {
  color: #fff;
  margin-bottom: 34px;
}
.service_system_list {
  /*display: grid;
  grid-template-columns: repeat(2,1fr);*/
  display: flex;
  /*column-gap: 100px;*/
  column-gap: 9%;
  flex-wrap: wrap;
}
.service_system_list li {
  display: flex;
  /*margin-bottom: 44px;*/
  margin-bottom: 35px;
  width: 45.5%;
}
.service_system_img {
  width: 108px;
  margin-right: 22px;
}
.service_system_text {
  margin-top: 10px;
  width: 323px;
}
.service_system_text h3 {
  background: #fff;
  color: #002263;
  display: inline-block;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 38px;
  margin-bottom: 10px;
  padding: 0px 13px;
}
.service_system_text p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}
@media screen and (max-width: 650px) {
  .service_system_list {
    display: block;
  }
  .service_system_list li {
    margin-bottom: 25px;
    width: 100%;
  }
  .service_system_img {
    width: 92px;
    margin-right: 18px;
  }
  .service_system_text {
    margin-top: 0;
    width: calc(100% - 110px);
  }
  .service_system_text h3 {
    font-size: 1.8rem;
    line-height: 34px;
    margin-bottom: 10px;
  }
  .service_system_text p {
    font-size: 1.3rem;
  }
}



/* フッターナビ */
.footer {
  background: #F9F9F9;
}
.footer_inner {
  padding: 52px 4% 43px;  
  display: flex;
  justify-content: space-between;
  align-items:flex-start;
}
.footer_company_info {
  max-width: 300px;
}
.footer_logo img {
  width: 188px;
  height: 65px;
}
.footer_company_name {
  font-weight: 600;
  margin: 43px 0 4px;
}
.footer_company_address {
  font-size: 1.3rem;
  line-height: 1.6;
}
.footer_nav {
  width: 572px;
  display: flex;
  flex-wrap: wrap;
}
.footer_nav li {
  width: 33.33333%;
  margin-bottom: 20px;
}
.footer_nav li a {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
  position: relative;
  display: flex;
  align-items: center;
}
.footer_nav li a:hover {
  color: #6D9DB5;
  opacity: 1;
}
.footer_nav li a::before {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow03.png") no-repeat 0 0;
  background-size: contain;
  width: 17.6px;
  height: 17.6px;
  margin-right: 7px;
}
.footer_nav li a:hover::before {
  background: url("../images/common/arrow04.png") no-repeat 0 0;
  background-size: contain;
}

.f_copyright {
  border-top: 1px solid #D8D8D8;
  font-size: 1.2rem;
  padding: 9px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    display: block;
    padding: 34px 4% 0;
  }
  .footer_company_info {
    max-width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }
  .footer_company_name {
    margin: 30px 0 4px;
  }
  .footer_nav {
    width: 100%;
    padding: 0 4%;
    margin-bottom: 30px;
  }
  .footer_nav li {
    margin-bottom: 10px;
  }
  .footer_nav .fn1 {order:1; width: 44%;}
  .footer_nav .fn2 {order:7; width: 44%;}
  .footer_nav .fn3 {order:4; width: 56%;}
  .footer_nav .fn4 {order:3; width: 44%;}
  .footer_nav .fn5 {order:2; width: 56%;}
  .footer_nav .fn6 {order:6; width: 56%;}
  .footer_nav .fn7 {order:5; width: 44%;}
}





/* ================================================
	お知らせ一覧
================================================ */
.news_link {
  display: flex;
  align-items: center;
}
.news_cate {
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 700;
  width: 115px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  margin-right: 30px;
}
.news_date {
  font-size: 1.3rem;
  font-weight: 700;
  width: 87px;
}
.news_title {
  font-size: 1.6rem;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .news_link {
    flex-wrap: wrap;
  }
  .top_news .news_cate {
    margin-right: 15px;
  }
  .top_news .news_date {
    font-weight: 600;
    width: calc(100% - 130px);
  }
  .top_news .news_title {
    font-size: 1.5rem;
    margin-top: 10px;
    width: 100%;
  }
}

/* TOPメインビジュアル下お知らせ */
.mv_news {
  background-color: rgba(109,157,181,0.75);
  height: 66px;
  margin-top: -66px;
  position: relative;
  z-index: 2;
}
.mv_news .news_list li {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 66px;
}
.mv_news .news_cate {
  background: #fff;
  color: #6D9DB5;
}
.mv_news .news_link {
  color: #fff;
}
.mv_news .news_title {
  font-weight: 500;
  line-height: 1.8125;
}
@media screen and (max-width: 768px) {
  .mv_news {
    height: 52px;
    margin-top: -52px;
  }
  .mv_news .news_list li {
    height: 52px;
    justify-content: flex-start;
    margin: 0 4%;
  }
  .mv_news .news_list .news_cate {
    display: none;
  }
  .mv_news .news_title {
    font-size: 1.5rem;
    
    width: calc(90vw - 70px); /* 省略せずに表示するサイズを指定 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .mv_news .news_date {
    width: 75px;
  }
}

/* TOPお知らせ一覧 */
.top_news .inner {
  margin: 80px auto;
}
.top_news .news_list {
  margin-top: -32px;
}
.top_news .news_list li {
  border-bottom: 1px solid #D8D8D8;
  padding: 32px 0;
  
  display: flex;
}
.top_news .news_list li:first-child {
  padding-top: 0;
}
.top_news .news_cate {
  background: #6D9DB5;
  color: #fff;
}
.top_news .news-detail {
  background: #002263;
}
.top_news .news_link:hover {
  color: #6D9DB5;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .top_news {
    margin: 50px auto;
  }
  .top_news .news_list {
    margin-top: 0;
  }
  .top_news .news_list li {
    padding: 15px 0;
  }
}

.link_more {
  /*margin-top: 25px;*/
  margin-top: 15px;
}
.link_more a {
  color: #6D9DB5;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.link_more a::after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow04.png") no-repeat 0 0;
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .link_more {
    margin-top: 22px;
  }
  .link_more a {
    font-size: 1.4rem;
  }
}

/* ================================================
	トップページ
================================================ */
/* メインビジュアル */
.mv_pc {}
.mv_sp {display: none;}
@media screen and (max-width: 650px) {
  .mv_pc {display: none;}
  .mv_sp {display: block;}
}
.mv {
  margin-bottom: 80px;
  position: relative;
}
.mv_slider {
  text-align: center;
}
.mv_slider img {
  width: 100%;
  height: auto;
}
.mv-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .mv {
    margin-bottom: 48px; 
  }
  .mv-text {
    width: 295px;
    height: 66px;
    top: 47%;
  } 
}

/* タイトル */
.sec_title {
  color: #002263;
  font-weight: 700;
  /*margin-bottom: 64px;*/
  margin-bottom: 56px;
}
.sec_title .en {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-top: -4px;
}
.sec_title .jp {
  font-size: 3.1rem;
  margin-top: -14px;
}
.sec_desc {
  /*margin-bottom: 37px;*/
  margin-bottom: 34px;
}
.sec_text {
  color: #002263;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .sec_title {
    margin-bottom: 40px;
  }
  .sec_title .en {
    font-size: 1.2rem;
  }
  .sec_title .jp {
    font-size: 2.5rem;
    margin-top: -10px;
  }
  .sec_desc {
    margin: 0 0 25px;
  }
  .sec_desc img {
    width: auto;
    height: 74px;
  }
  .sec_text {
    font-size: 1.5rem;
  }  
}

/* flex枠 */
.top_flex_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: calc(1200px + 8%);
  margin: 0 auto;
  position: relative;
  padding-left: 4%;
  padding-right: 4%;
  column-gap: 2%;
}
@media screen and (max-width: 650px) {
  .top_flex_wrap {
    display: block;
  }
}

/* 事業内容 */
.top_service .text_wrap {
  width: 48%;
  max-width: 600px;
}
.top_service .img_wrap {
  width: 36%;
  max-width: 428px;
}
.top_service .img_wrap img {
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .top_service .text_wrap {
    max-width: 100%;
    width: 100%;
  }
  .top_service .img_wrap {
    margin: 0 auto;
    width: 85%;
    max-width: 316px;
  }
  .top_service .text_wrap {
    margin-bottom: 30px;
  }
}

/* サービス内容 */
.service_detail_list {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 6px;
  /*margin: 80px 0;*/
  margin: 75px 0 80px;
}
.service_detail_list li {
  position: relative;
}
.service_detail_list li a:hover {
  opacity: 1;
}
.service_detail_list_text {
  position: absolute;
  /*top: 26px;*/
  /*left: 28px;*/
  top: 22px;
  left: 30px;
  width: 226px;
}
.service_detail_list_text h4 {
  color: #fff;
  font-size: 2.3rem;
  font-weight: 600;
  text-shadow: 0px 0px 6px #00000029;
  border-bottom: 2px solid #fff;
  margin-bottom: 6px;
  /*padding-bottom: 6px;*/
  position: relative;
  display: flex;
  align-items: center;
}
.service_detail_list_text h4::after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow01.png") no-repeat 0 0;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-left: 10px;
}
.service_detail_list_text p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  text-shadow: 0px 3px 6px #00000029;
}
@media screen and (max-width: 1000px) {
  .service_detail_list {
    display: grid;
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 650px) {
  .service_detail_list {
    display: block;
    margin: 45px 0 48px;
  }
  .service_detail_list li {
    margin-bottom: 2px;
  }
  .service_detail_list_text {
    top: 14px;
    left: 15px;
  }
}

/* 事業内容 */
.top_company {
  margin-bottom: 80px;
}
.top_company .top_flex_wrap {
  flex-direction: row-reverse;
}
.top_company .text_wrap {
  width: 46%;
  max-width: 541px;
  text-align: right;
}
.top_company .img_wrap {
  width: 50%;
  max-width: 589px;
}
/* 会社概要へのリンク */
.link_company .link_btn {
  /*margin: 38px 0 0 auto;*/
  margin: 33px 0 0 auto;
}
@media screen and (max-width: 768px) {
  .top_company {
    margin-bottom: 48px;
  }
  .top_company .text_wrap {
    width: 100%;
    max-width: 100%;
  }
  .top_company .img_wrap {
    width: 100%;
    text-align: center;
  }
  .top_company .text_wrap .sec_text {
    text-align: left;
  }
  .link_company .link_btn {
    margin: 30px auto;
  }  
}

/* 対応エリア */
.business_area_wrap {
  background: #002263;
  color: #fff;
  padding: 85px 0 78px;
}
.business_area {
  display: flex;
  align-items: center;
}
.business_area .sec_title {
  color: #fff;
  margin-bottom: 0;
}
.business_area_city {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.business_area_city::before {
  border-top: 2px solid;
  content: "";
  width: 92px;
  margin: 0 30px;
}
@media screen and (max-width: 768px) {
  .business_area_wrap {
    padding: 48px 0 40px;
  }
  .business_area {
    display: block;
  }
  .business_area .sec_title {
    margin-bottom: 4px;
  }
  .business_area_city {
    border-top: 2px solid #fff;
    display: block;
    font-size: 1.5rem;
    padding-top: 10px;
  }
  .business_area_city::before {
    border-top: none;
    margin: 0;
  }  
}





/* 下部ページタイトル */
.lower_title_wrap {
  margin: 70px 0 98px;
}
.lower_title_wrap h1 {
  color: #002263;
  font-size: 3.4rem;
  font-weight: bold;  
  display: flex;
  justify-content: center;
  align-items: center;
  height: 142px;
}
.company .lower_title_wrap {
  background: url("../images/title/bk_title_company.png") no-repeat 50% 50%;
  background-size: contain;
}
.service .lower_title_wrap {
  background: url("../images/title/bk_title_service.png") no-repeat 50% 50%;
  background-size: contain;
}
.news .lower_title_wrap {
  background: url("../images/title/bk_title_news.png") no-repeat 50% 50%;
  background-size: contain;
}
.faq .lower_title_wrap {
  background: url("../images/title/bk_title_faq.png") no-repeat 50% 50%;
  background-size: contain;
}
.policy .lower_title_wrap {
  background: url("../images/title/bk_title_policy.png") no-repeat 50% 50%;
  background-size: contain;
}
.contact .lower_title_wrap {
  background: url("../images/title/bk_title_contact.png") no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .lower_title_wrap {
    margin: 38px 4%;
  }
  .lower_title_wrap h1 {
    font-size: 2.2rem;
    height: 68px;
    line-height: 1.4;
    text-align: center;
  }  
}


/* 会社情報 */
.basic_info {
  background-color: rgba(109,157,181,0.07);
  border-radius: 39px;
  margin: 0 0 80px;
  padding: 54px 100px;
}
.lower_sec_title {
  color: #002263;
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.lower_sec_title.bdr {
  border-bottom: 1px solid #002263;
  padding: 4px 0 6px;
  /*margin-bottom: 30px;*/
  margin-bottom: 27px;
}
@media screen and (max-width: 768px) {
  .basic_info {
    border-radius: 25px;
    margin: 0 0 42px;
    padding: 28px 22px 42px 23px;
  }
  .lower_sec_title {
    font-size: 2.3rem;
  }
  .lower_sec_title.bdr {
    margin-bottom: 18px;
  }  
}

/* 会社概要table */
.basic_info .info_table {
  border-top: 1px solid #6D9DB5;
  margin-top: 34px;
  width: 100%;
}
.basic_info .info_table th,
.basic_info .info_table td {
  border-bottom: 1px solid #6D9DB5;
  padding: 20px 0;
}
.basic_info .info_table th {
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 8px;
  vertical-align: top;
  width: 106px;
}
.basic_info .info_table td {
  padding-left: 40px;
  width: calc(100% - 106px);
}
.basic_info .inner_table {
  border-top: none;
  margin-top: 0;
  width: auto;
}
.basic_info .inner_table th {
  border: none;
  font-weight: normal;
  padding: 0;
  width: auto;
}
.basic_info .inner_table td {
  border: none;
  padding: 0 0 0 20px;
  width: auto;
  text-align: right;
}
.basic_info .ex_link {
  color: #6D9DB5;
  text-decoration: underline;
  position: relative;
}
.basic_info .ex_link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url("../images/common/icon_exlink.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 3px;
}
@media screen and (max-width: 768px) {
  .basic_info .info_table {
    margin-top: 18px;
    line-height: 1.5;
  }
  .basic_info .info_table th {
    font-size: 1.5rem;
    padding-left: 4px;
    padding: 8px 4px 4px;
    width: 100%;
    border: none;
    display: block;
  }
  .basic_info .info_table td {
    font-size: 1.4rem;
    display: block;
    padding: 0 4px 10px;
    width: 100%;
  }
  .basic_info .inner_table th,
  .basic_info .inner_table td {
    display: table-cell;
    padding: 0;
    width: auto;
  }
}

.info_sec {
  margin-bottom: 80px;
}
.info_sec p {
  margin-bottom: 33px;
}
.info_sec h3 {
  color: #002263;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .info_sec {
    margin-bottom: 40px;
  }
  .info_sec p {
    margin-bottom: 16px;
  }
}

/* Googleマップ */
.gmap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  margin: 18px 0 120px;
}
.gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 事業内容 */
.service_sub_nav {
  max-width: 1000px;
  margin: 0 auto 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_sub_nav li {
  font-size: 1.7rem;
  font-weight: 600;
  text-align: center;
  width: 20%;
  position: relative;
}
.service_sub_nav li a {
  color: #002263;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 90px;
  
  transition: 0.5s all;
}
.service_sub_nav li a::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 90px;
  background-image: linear-gradient(to bottom, #6D9DB5 2px, transparent 0);
  background-size: 100% 8px;
  background-repeat: repeat-y;
  position: absolute;
  left: 0;
  top: 0;
}
.service_sub_nav li:last-child::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 90px;
  background-image: linear-gradient(to bottom, #6D9DB5 2px, transparent 0);
  background-size: 100% 8px;
  background-repeat: repeat-y;
  position: absolute;
  right: 0;
  top: 0;
}
.service_sub_nav li a::after {
  content: "";
  display: block;
  background: url("../images/common/arrow05.png") no-repeat 0 0;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin: 5px auto 0;
  transition: transform 0.3s ease;
}
.service_sub_nav li a:hover {
  background: #E4F1F8;
  opacity: 1;
}
.service_sub_nav li a:hover::after {
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .service_sub_nav {
    flex-wrap: wrap;
    border-top: 1px solid #D8D8D8;
  }
  .service_sub_nav li {
    border-bottom: 1px solid #D8D8D8;
    font-size: 1.5rem;
    text-align: left;
    width: 50%;
  }
  .service_sub_nav li:nth-child(odd) {
    border-right: 1px solid #D8D8D8;
  }
  .service_sub_nav li a::before,
  .service_sub_nav li:last-child::after {
    content: none;
  }
  .service_sub_nav li a:hover::after {
    transform: none;
  }
  .service_sub_nav li a {
    align-items: center;
    justify-content: flex-start;
    flex-direction: row;
    height: 58px;
    padding: 0 17px 0 20px;
  }
  .service_sub_nav li a::after {
    width: 18px;
    height: 18px;
    position: absolute;
    right: 16px;
    top: 16px;
  }
}

.service_sec_title {
  background-color: #6D9DB5;
  height: 90px;
  margin-bottom: 45px;
}
.service_sec_title h2 {
  color: #fff;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 90px;
}
@media screen and (max-width: 768px) {
  .service_sec_title {
    height: 65px;
    margin-bottom: 16px;
  }
  .service_sec_title h2 {
    font-size: 2.2rem;
    line-height: 65px;
  }  
}

/*.service_sec_inner {
  max-width: 800px;
  margin: 0 auto 100px;
}*/
.service_sec {
  margin-bottom: 100px;
}
.service_pic_list {
  display: flex;
  column-gap: 10px;
  margin: 0 0 25px;
}
.service_pic_list.list01 {
  margin-bottom: 8px;
}
.service_desc {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .service_sec {
    margin-bottom: 25px;
  }
  .service_desc {
    margin-bottom: 25px;
  }
  .service_pic_list {
    column-gap: 5px;
    margin: 0 0 16px;
  }
  .service_pic_list.list01 {
    margin-bottom: 5px;
  }
}

.service_box {
  margin-bottom: 35px;
}
.service_box h3 {
  color: #002263;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}
.service_box h3::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 6px;
  height: 22px;
  background-color: #D8D8D8;
}

.tokuten_sec {
  margin-bottom: 35px;
}
.tenken_table {
  width: 100%;
}
.tenken_table th {
  background: #F5F5F5;
  border: 1px solid #D8D8D8;
  font-weight: 500;
  /*padding: 14px 0 15px;*/
  padding: 12px 0 13px;
  text-align: center;
}
.tenken_table tbody th {
  width: 106px;
}
.tenken_table td {
  border: 1px solid #D8D8D8;
  font-size: 1.4rem;
  line-height: 1.7;
  padding: 12px 17px 13px;
  max-width: 232px;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .tenken_sec {
    margin-bottom: 25px;
    overflow-x: scroll;
  }
  .tenken_table {
    min-width: 700px;
  }
  .tenken_table tbody th {
    font-size: 1.5rem; 
    padding: 10px 0;
  }
  .tenken_table td {
    font-size: 1.3rem;
    padding: 10px 1em;
  }
}

/* 消防設備の保守契約 */
.mente_sec {
  background: #F5F8FA;
  border-radius: 22px;
  margin: 35px 0 70px;
  padding: 25px 0;
}
.mente_sec h3 {
  color: #002263;
  font-weight: 700;
  font-size: 2.9rem;
  line-height: 1.5;
  text-align: center;
}
.mente_item_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mente_item {
  background: #002263;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  height: 86px;
  width: 260px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mente_item_wrap .plus {
  color: #002263;
  font-size: 63px;
  font-weight: 700;
  margin: -6px 25px 0;
}
@media screen and (max-width: 768px) {
  .mente_sec {
    padding: 20px 27px 28px 27px; 
  }
  .mente_sec h3 {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  .mente_item_wrap {
    display: block;
  }
  .mente_item {
    font-size: 1.6rem;
    line-height: 1.3125;
    height: 68px;
    max-width: 290px;
    margin: 0 auto;
  }
  .mente_item_wrap .plus {
    font-size: 4.6rem;
    margin: 0 0 4px;
    line-height: 1;
    text-align: center;
  }
}

/* 点検の流れ */
.check_flow_sec {
  background: #F2F2F2;
  padding: 45px 0 70px;
  margin-top: 50px;
}
.check_flow {
  margin-top: 16px;
}
.check_flow li {
  background: #fff;
  border-radius: 50px;
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  height: 60px;
  padding-left: 32px;
  position: relative;
}
.check_flow li:not(:last-child):after {
  position: absolute;
  top: 100%;
  left: 70px;
  content: "";
  height: 20px;
  width: 42px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background-color: #fff;
}
.check_flow .num {
  background: #6D9DB526;
  color: #6D9DB5;
  font-size: 2.7rem;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  margin-right: 25px;
}
.check_flow .ttl {
  color: #6D9DB5;
  font-size: 2rem;
  font-weight: 700;
  width: 164px;
}
.check_flow .txt {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .check_flow_sec {
    padding: 40px 0;
    margin-top: 0;
  }
  .check_flow li {
    border-radius: 20px;
    margin-bottom: 20px;
    height: auto;
    padding: 15px 27px;
    flex-wrap: wrap;
  }
  .check_flow li::after {
    position: absolute;
    top: 100%;
    left: calc(50% - 15px);
    height: 15px;
    width: 30px;
  }
  .check_flow .txt {
    font-weight: normal;
    margin-top: 8px;
  }  
}


/* ページネーション */
.pagination {
  text-align: center;
}
.page-numbers {
	display: flex;
	justify-content: center;
  align-items: center;
  column-gap: 18px;
  height: 40px;
  margin: 50px 0 100px;
}
.page-numbers li {
  font-size: 2.5rem;
  font-weight: bold;
  width: 40px;
}
.page-numbers a {
  background: #6D9DB526;
  border-radius: 50%;
  color: #6D9DB5;
}
.page-numbers.current {
  background: #6D9DB5;
  border-radius: 50%;
  color: #fff;
}
.page-numbers a.next {
  font-size: 1.8rem;
  background: #fff;
}


/* ================================================
	お知らせ
================================================ */
.news_detail_wrap {
  margin: 70px auto 100px;
}
.news_title_wrap {
  border-bottom: 2px solid #6D9DB5;
  margin-bottom: 50px;
  padding-bottom: 16px;
}
.news_title_wrap .news_cate {
  background: #6D9DB5;
  color: #fff;
}
.news_title_wrap .news_detail_title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 2px;
}
.news_title_wrap .news_date {
  font-size: 1.4rem;
  font-weight: normal;
  margin-top: -5px;
  width: auto;
}
.news_text_wrap {
  margin-bottom: 70px;
}
.news_text_wrap p {
  margin-bottom: 1.9em; 
}
.link_center .link_btn {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .news_detail_wrap {
    margin: 40px 0 80px; 
  }
}

/* ================================================
	よくある質問
================================================ */
.faq_sec {margin-bottom: 95px
}
.faq_title {
  background: #002263;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 58px;
  margin-bottom: 25px;
  text-align: center;
}
.faq_list {
  border-bottom: 1px solid #D8D8D8;
  padding: 23px 28px 35px;
}
.faq_list.first {
  border-top: 1px solid #D8D8D8;
}
.faq_list dt {
  color: #002263;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
}
.faq_list dt::before {
  content: "Q.";
  padding-right: 16px;
}
.faq_list dd {
  padding-left: 40px;
}
.faq_list a {
  color: #6D9DB5;
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .faq_title {
    font-size: 2rem; 
  }
  .faq_list {
    padding: 15px 4%;
  }
  .faq_list dt {
    font-size: 2rem; 
  }
  .faq_list dd {
    padding-left: 0;
  }
}


/* ================================================
	プライバシーポリシー
================================================ */
.policy_box {
  margin-bottom: 43px;
}
.policy_head {
  font-size: 1.8rem;
  font-weight: 700;
}
.policy_text {
  letter-spacing: 0.005em;
}

/* ================================================
	お問い合わせ
================================================ */
/* 入力画面
----------------------- */
.input_title, .input_title_sub {
  letter-spacing: 0.02em;
  line-height: 1.5;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
}
.input_title {
  background: #D8D8D8;
}
.input_title_sub {
  background: #F5F5F5;
}
.require {
  color: #DC1F33;
}
.optional {
  color: #646464;
}
::placeholder {
  color: rgba(0,0,0,.4);
  letter-spacing: 0.02em;
}
.input_sub_label {
  margin: 4px 20px 0;
}
.input_name {
  margin-bottom: 20px;
}
.input_item {
  margin: 9px 20px 20px;
}
.input_name .input_item {
  margin: 2px 20px 8px;
}
.input_item input {
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  height: 42px;
  padding: 0 16px;
  width: 100%;
}
.input_area {
  border: 1px solid #D8D8D8;
  box-sizing: border-box;
  height: 250px;
  padding: 7px 1em;
  width: 100%;
}
.form_footer {
  margin: 30px 0 100px;
  text-align:center;
}
.link_policy {
  margin-bottom: 14px;
}
.link_policy a {
  text-decoration: underline;
}
.link_policy a:hover {
  text-decoration: none;
}
.no_sales_allowed {
  font-size: 1.4rem;
  margin-bottom: 35px;
  margin: 0 4% 35px;
}

/* 確認画面
----------------------- */

/* 完了画面
----------------------- */
.send_complete {
  margin-bottom: 78px;
}
@media screen and (max-width: 768px) {
  .form_wrap .inner_s {
    padding: 0;
  }
}

/* hoverで画像拡大 */
@media screen and (min-width: 768px) and (any-hover: hover) {
  .cHoverImage:hover .cHoverImage__image img {
    transform: scale(1.1);
  }
}

.service_detail_list li {
  cursor: pointer;
  overflow: hidden;
}
.service_detail_list li img {
  height: auto;
  transition: transform .25s ease;
}
.service_detail_list li:hover img {
  transform: scale(1.1);
}



/* よくある質問・お問い合わせ */
.f_btn {
  display: flex;
  justify-content: center;
  column-gap: 2.36%;
  max-width: calc(1700px + 8%);
  padding: 0 4%;
  margin: 30px auto;
  align-items: stretch; /* 高さ揃える */
}
.f_btn li {
  border-radius: 1.4583333333333333vw;
  padding: min(2.2916666666666665vw,44px) min(2.8125vw,54px);
  width: calc(50% - 1.18%);
  display: flex;
  flex-direction: column;
  position: relative;
}
.f_btn .sec_title .en {
  font-size: min(0.78125vw,1.5rem);
  font-size: clamp(0.8rem, 0.78125vw,1.5rem);
}
.f_btn .sec_title .jp {
  font-size: min(1.6145833333333335vw,3.1rem);
  font-size: clamp(1.8rem, 1.6145833333333335vw,3.1rem);
  margin-top: -.4em;
}
.faq_wrap {
  background: #fff;
}
.faq_wrap:hover {
  cursor: pointer;
  opacity: 1;
  background: #EBEBEB;
}
.faq_wrap a {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.link_faq {
  color: #002263;
  font-size: min(0.8333333333333334vw,1.6rem);
  font-size: clamp(1rem, 0.8333333333333334vw,1.6rem);
  font-weight: 500;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: auto;
}
.link_faq::after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow03.png") no-repeat 0 0;
  background-size: contain;
  width: 1.1458333333333333vw;
  height: 1.1458333333333333vw;
  max-width: 22px;
  max-height: 22px;
  margin-left: min(0.5208333333333333vw, 10px);
}
.contact_wrap {
  background: #002263;
  color: #fff;
}
.contact_wrap .sec_title {
  color: #fff;
  margin-bottom: 36px;
}
.contact_inner01 {
  display: flex;
  justify-content: space-between;
  column-gap: 5%;
}
.contact_inner01 .jp {
  white-space: nowrap;
}
.contact_inner01 p {
  font-size: min(0.8333333333333334vw,1.6rem);
  font-size: clamp(0.8rem, 0.8333333333333334vw,1.6rem);
  font-weight: 500;
}
.contact_inner02 {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: 10px;
}
.contact_inner02 p {
  font-size: min(0.7291666666666666vw,1.4rem);
  font-size: clamp(0.8rem, 0.7291666666666666vw,1.4rem);
  font-weight: 500;
}
.footer_tel {
  display: flex;
  font-weight: 700;
  align-items: baseline;
  height: 3.0208333333333335vw;
  max-height: 57px;
  line-height: 1.57;
}
.footer_tel .tel_label {
  font-size: min(1.3541666666666667vw,2.6rem);
  letter-spacing: 0.02em;
  padding-right: 3px;
}
.footer_tel .tel_number {
  font-size: min(2.2395833333333335vw,4.3rem);
}
/* お問い合わせへのリンク */
.link_btn_contact {
  color: #002263;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 282px;
  height: 60px;
  background: #fff;
  border-radius: 50px;
  position: relative;
  font-weight: 500;
  margin: 0 auto;
}
.link_btn_contact::after {
  content: "";
  display: inline-block;
  background: url("../images/common/arrow03.png") no-repeat 0 0;
  background-size: contain;
  width: 22px;
  height: 22px;
  margin-left: 8px;
}
.link_btn_contact:hover {
  background: #EBEBEB;
  opacity: 1;
}
.f_btn .link_btn_contact {
  width: 14.6875vw;
  height: 3.125vw;
  max-width: 282px;
  max-height: 60px;
  border-radius: 2.604166666666667vw;
  font-size: min(0.8333333333333334vw,1.6rem);
  font-size: clamp(0.8rem, 0.8333333333333334vw,1.6rem);
}
.f_btn .link_btn_contact::after {
  width: 1.1458333333333333vw;
  height: 1.1458333333333333vw;
  max-width: 22px;
  max-height: 22px;
  margin-left: min(0.4166666666666667vw, 8px);
}
@media screen and (max-width: 768px) {
  .f_btn {
    display: block;
    margin: 45px auto 25px;
  }
  .f_btn li {
    border-radius: 28px;
    padding: 28px 27px;
    margin-bottom: 15px;
    width: 100%;
  }
  .f_btn .sec_title .en {
    font-size: 1.2rem;
    margin-top: -4px;
  }
  .f_btn .sec_title .jp {
    font-size: 2.5rem;
    margin-top: -.5em;
  }
  .link_faq {
    font-size: 1.5rem;
  }
  .link_faq::after {
    width: 17.6px;
    height: 17.6px;
    margin-left: 10px;
  }
  .contact_wrap .sec_title {
    margin-bottom: 8px;
  }
  .contact_inner01 {
    display: block;
  }
  .contact_inner01 p {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  .contact_inner02 {
    display: block;
  }
  .contact_inner02 p {
    font-size: 1.3rem;
    line-height: 1.5;
    margin-bottom: 1em;
  }
  .footer_tel {
    height: auto;
    max-height: 57px;
    line-height: 1.57;
  }
  .footer_tel .tel_label {
    font-size: 2.1rem;
    padding-right: 4px;
  }
  .footer_tel .tel_number {
    font-size: 3.5rem;
  }
  .f_btn .link_btn_contact {
    width: 282px;
    height: 60px;
    border-radius: 50px;
    font-size: 1.5rem;
  }
  .f_btn .link_btn_contact::after {
    width: 20px;
    height: 20px;
    margin-left: 10px;
  }
   .footer_contact_time {
    padding-left: 5em;
    display: block;
  }
}