@charset "UTF-8";
/*
Theme Name: MY-THEME
*/

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  color: #111111;
}

/* 基本フォント: 明朝 */
/**/
body{
  /* 游明朝体 */
  /*font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /* ヒラギノ明朝 */
  /*font-family: 'Hiragino Mincho Pro', 'ヒラギノ明朝 Pro', 'Yu Mincho', '游明朝', 'MS Mincho', 'MS明朝', serif;*/
}

/* admin-barの高さ分の padding 設定 */
body.admin-bar{
  padding-top: 32px;
}
@media (max-width:782px){
  body.admin-bar{
    padding-top: 46px;
  }
} 

.gothic{
  font-family: '游ゴシック体','Yu Gothic', 'YuGothic', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
.mincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a img:hover{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

/* 動画埋め込みのレスポンシブ対応 */
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{
  
}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{
  
}
.tbl td{
  
}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb{
    display: none;
  }
  .sp{
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc{
    display: none;
  }
  .sp{
    display: none;
  }
}
@media (max-width:767px){
  .pc{
    display: none;
  }
  .tb{
    display: none;
  }
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1140px;
  padding: 0 10px; 
  margin: 0 auto;
}
.section{
  width: 100%;
  margin-bottom: 50px;
  padding: 30px 0; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_section{
  width: 100%;
  margin-bottom: 50px;
  padding: 0 0; 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header {
  margin-bottom: 80px;
  background: url(/img/hdr_bg.jpg) no-repeat center / cover;
}
.pg_header .container{
  height: 150px;
  display: flex;
  align-items: center;
}
.pg_header .tt1{
  font-size: 30px;
  font-weight: 500;
  color: #052e4f;
  text-shadow: 0 0 2px white;
}


/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{
  
}
.listbox .item .date{
  
}
.listbox .item .txt{
  
}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  padding: 20px 0 0;
  border-top: 10px solid #358acc;
}
header .hdr1{
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hdr1 .hdr_logo h1{
  font-size: 34px;
  font-weight: 500;
}
header .hdr1 .hdr_logo img{
  width: 40px;
  margin-right: 20px;
  vertical-align: middle;
}
header .hdr1 a{
  display: flex;
  align-items: center;
}
header .hdr1 .hdr_contact a{
  font-size: 28px;
  letter-spacing: 0.5px;
  font-weight: bold;
}
header .hdr1 .hdr_contact a i{
  width: 35px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  font-size: 18px;
}
.gnav > ul > li{
  width: 100%;
  margin-bottom: 6px;
  position: relative;
  border-right: 1px dotted #052E4F;
}
#menu-item-35{
  display: none;
}
.gnav li#menu-item-19{
  margin-bottom: 0;
  border-right: 0;
}
.gnav li#menu-item-28{
  border-right: 0;
}
.gnav li#menu-item-19 a{
  padding: 6px 2px;
  background: #358ACC;
  color: #FFF;
}
.gnav > ul > li:first-child{
  border-left: 1px dotted #052E4F;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  color: #333;
  text-decoration: none;
  display: block;
  padding: 2px;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


.mv{
  
}
.mv .mv_box{
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}
.mv .sp-button{
  width: 15px;
  height: 15px;
  margin: 6px;
  background: #ffffff;
  border: 1px solid #707070;
}
.mv .sp-button.sp-selected-button{
  background: #3590CC;
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  padding: 50px 0 20px;
  margin-top: 80px;
  background: #358ACC;
  color: #ffffff;
}

footer .ftr1{
  margin-bottom: 80px;
}
footer .ftr1 .ftr_links{
  margin-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
footer .ftr1 .ftr_links li{
  font-size: 20px;
  /*width: 100%;*/
  /*border-right: 1px solid #c9c9c9;*/
  text-align: center;
}
footer .ftr1 .ftr_links li:first-child{
  /*border-left: 1px solid #c9c9c9;*/
}
footer .ftr1 .links{
  text-align: center;
}
footer .ftr1 .links a{
  margin: 0 20px;
  display: inline-block;
}

footer .ftr2{
  
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  
}
footer .ftr2 .box2{
  text-align: right;
}

footer .copy{
  text-align: center;
  font-size: 12px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 38%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 3px 5px;
  background: #3489cc;
  color: #FFF;
  text-decoration: none;
  border-top: 1px solid #59a9e8;
}
.footer_fix ul li.btn1{
  border-right: 1px solid #399cea;
}
.footer_fix ul li.btn2 a{
    background: #1a3685;
}
.footer_fix ul li a i{
  font-size: 22px;
  display: block;
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 12px 0;
  border-top: 1px dotted #052E4F;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px dotted #052E4F;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 100px;
}
.post_items .item .category{
  width: 120px;
  padding: 0 10px;  
  text-align: center;
}
.post_items .item .category span{
  display: inline-block;
  text-align: center;
}
.post_items .item .category a{
  color: #052e4f;
  font-weight: 500;
}
.post_items .item .title{
  font-size: 16px;
  font-weight: 400;
  width: calc(100% - 110px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.post_items .item .title a{
  display: block;
  position: relative;
  padding-right: 1em;
}
/*.post_items .item:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 5px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

.post_items .item.single_item{
  display: flex;
  flex-wrap: wrap;
  border-top: 15px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-right: 1px solid #d3d3d3;
}
.post_items .item.single_item:after{
  display: none;
}
.post_items .item.single_item .meta{
  display: flex;
  align-items: center;
  width: 100%;
}
.post_items .item.single_item .title{
  width: 100%;
  font-size: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.post_items .item.single_item .content{
  width: 100%;
  margin-top: 20px;
  padding-bottom: 20px;
}
.post_items .item.single_item .content p + p{
  margin-top: 1em;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 80px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 100px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #092e4f;
  color: #ffffff;
  padding: 10px 100px;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
}
.contact_info .box1{
  font-size: 20px;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #474545;
}
.contact_form tr{
  border-bottom: 1px solid #474545;
}
.contact_form th,
.contact_form td{
  padding: 15px 30px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  padding: 22px 30px;
  background: #358acc;
  color: #ffffff;
  width: 280px;
  vertical-align: top;
}
.contact_form th .require{
/*  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;*/
  color: #fc0505;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{
  
}


.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 10px;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 600px;
  max-width: 100%;
  height: 40px;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 150px;
}
.contact_form td [name="addr1"]{
  width: 180px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 0 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 30px;
}

.your-email + p{
  margin: 10px 0;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}
.contact_form_acceptance .acceptance{
  margin-bottom: 20px;
  display: block;
}
.contact_form_acceptance i{
  width: 25px;  
  margin-right: 10px;
  display: inline-block;
}


/* コンタクトフォーム - ボタン */
.contact_form_btns{
  text-align: center;
  padding: 50px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"]{
  background: #b80000;
  color: #FFF;
  border: 0;
  padding: 10px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  width: auto;
  padding: 10px 20px;
  background: #E73B26;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  font-size: 24px;
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  
}
.privacy_items .item{
  line-height: 1.6;
}
.privacy_items .item + .item{
  margin-top: 50px;
}
.privacy_items > .item:last-child{
  margin-top: 30px;
}
.privacy_items .item h4{
  font-size: 22px;  
  /*border-left: 6px solid #bbbbbb;*/
  /*padding-left: 15px;*/
  margin-bottom: 10px;
}
.privacy_items .item h5{
  font-size: 18px;  
  margin-bottom: 10px;
}
.privacy_items .item .txt{
  
}
.privacy_items .item ul{
  list-style: disc;
  margin-left: 2em;
  margin-top: 10px;
}
.privacy_items .item ul.latin{
  list-style: lower-latin;
}

.privacy_items .item ul li{
  
}
.privacy_items .item ol{
  margin-left: 2em;
  margin-top: 10px;
}


/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 100px;
}
.home .main{
  padding: 60px 0 100px;
}


/* **********************************
 *  トップページ
 * ********************************* */
.top_ttl{
  margin-bottom: 50px;
  line-height: 1.3;
  padding-top: 3px;
  border-top: 1px solid #358acc;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}
.top_ttl:before{
  margin-bottom: 10px;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  border-top: 4px solid #358acc;
}
.top_ttl h2{
  font-size: 30px;
  padding-right: 30px;
  margin-right: 30px;
  border-right: 1px solid #707070;
  font-weight: 500;
}
.top_ttl h3{
  font-size: 30px;
  font-weight: 500;
}
.flex{
  display: flex;
  flex-wrap: wrap;
}
.top_business,
.top_case{
  margin-bottom: 100px;
}
.top_business .flex,
.top_case .flex{
  margin: 0 -8px;
}
.top_business .box{
  width: calc(100% / 6);
  padding: 0 8px;
}
.top_business .box h3,
.top_case .box h3{
  font-size: 16px;
  font-weight: 400;
}
/*
.top_business .box h3:after,
.top_case .box h3:after{
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url(/img/top/arrow_1.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}
*/
.top_business .box .img,
.top_case .box .img{
  margin-bottom: 10px;
}
.golink{
  font-size: 20px;
  padding: 12px;
  width: 262px;
  margin: 50px auto 0;
  display: block;
  color: #358ACC;
  border: 1px solid;
  text-align: center;
}
.golink:hover{
  color: #ffffff;
  background: #358ACC;
}

.top_case .box{
  width: 25%;
  padding: 0 8px;
  margin-bottom: 30px;
}
.top_case .box .img{
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  border: 1px solid #707070;
}
.top_case .box .img:before{
  padding-top: 85%;
  content: "";
  display: block;
}
.top_case .box .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.top_about{
  padding: 80px 0;
  background: url(/img/top/bg_1.jpg) center / cover;
}
.top_about .top_ttl{
  margin-bottom: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.top_about .txt{
  width: 48%;
}
.top_about .top_ttl h2{
  margin-bottom: 30px;
  color: #052E4F;
  border-right: 0;
}
.top_about .top_ttl:before{
  border-color: #052E4F;
}
.top_about .top_ttl p{
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top_about .map{
  width: 30%;
}
.top_about .map iframe{
  margin-bottom: 10px;
}
.top_about .txt ul{
  margin-top: 30px;
}
.top_about .txt li,
.top_careers ul li{
  margin-right: 40px;
}
.top_about .txt li a,
.top_careers ul li a{
  color: #052E4F;
}
.top_about .txt li a:after,
.top_careers ul li a:after{
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url(/img/top/arrow_1.png) no-repeat center / cover;
  display: inline-block;
  vertical-align: middle;
}

.top_about .news_ttl{
  margin-bottom: 10px;
  font-weight: 500;
  color: #052E4F;
}

.top_careers{
  padding: 80px 0;
  background: url(/img/top/bg_2.jpg) no-repeat center / cover;
}
.top_careers .white_box{
  max-width: 520px;
  min-height: 350px;
  padding: 30px;
  background: rgba(255,255,255,0.8);
  border-top: 2px solid #052E4F;
}
.top_careers .white_box h2{
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 500;
  color: #052E4F;
}
.top_careers .white_box .txt{
  margin-bottom: 30px;
}

/*フッター：お問い合わせ */
.info_box .flex{
  padding: 30px 0;
  border-top: 2px solid #052E4F;
  border-bottom: 2px solid #052E4F;
}
.info_box .flex > div{
  width: 50%;
  padding: 30px 0;
  text-align: center;
}
.info_box .flex > div .inner{
  text-align: left;
  display: inline-block;
}
.info_box .flex > div .large{
  font-size: 20px;
  margin-bottom: 15px;
}
.info_box .tel a{
  font-size: 24px;
  margin-left: -10px;
  font-weight: bold;
  color: #1A3685;
  display: block;
}
.info_box .flex > div i{
  margin-right: 10px;
  display: inline-block;
}
.info_box .tel a i{
  width: 40px;
  height: 40px;
}
.info_box .form{
  border-left: 2px solid #052E4F;
}
.info_box .form a i{
  width: 30px;
  height: 30px;
}
.info_box .form a{
  font-size: 24px;
  padding: 5px 15px;
  background: #052E4F;
  color: #ffffff;
  display: inline-block;
  border-radius: 8px;
}

/* **********************************
 *  実績紹介
 * ********************************* */
/* パンくずリスト */
.pg_breadcrumb{
  padding: 10px 0;
  border-top: 1px solid #358ACC;
}
.pg_breadcrumb #breadcrumbs > span{
  margin-left: -5px;
  display: inline-block;
}
.pg_breadcrumb a{
  margin: 0 5px;
  display: inline-block;
}
.breadcrumb_last{
  margin-left: 5px;
  display: inline-block;
}

.pagelinks{
  margin: 40px 0;
}
.pagelinks li{
  padding-right: 30px;
}
.pagelinks a{
  color: #052e4f;
}
.pagelinks a:after{
  content: "";
  width: 25px;
  height: 25px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background: url(/img/business/arrow_1.png?1) no-repeat center / contain;
}

.pg_business .content{
  padding: 30px 0;
}
.pg_business .content .img{
  width: 25%;
}
.pg_business .content .txt{
  width: 75%;
  padding-left: 20px;
}
.pg_business .content .txt h3{
  font-size: 24px;
  margin-bottom: 10px;
}

/* **********************************
 *  実績紹介
 * ********************************* */
.case_items{
  margin: 0 -12px;
  display: flex;
  flex-wrap: wrap;
}
.case_items .item{
  width: 25%;
  padding: 0 12px;
  margin-bottom: 40px;
}
.case_items .item .img{
  width: 100%;
  margin-bottom: 10px;
  display: block;
  overflow: hidden;
  position: relative;
  border: 1px solid #707070;
}
.case_items .item .img:before{
  padding-top: 95%;
  content: "";
  display: block;
}
.case_items .item .img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.case_items .item .title{
  font-size: 16px;
  font-weight: 500;
}
/*
.case_items .item .title:after{
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url(/img/top/arrow_1.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}*/

.linkBtn a{
display:inline-block;
background-color:#052E4F;
padding:5px 2em;
color:#fff;
}
.linkBtn{margin-top:10px;}
.caseListsWrap{
margin-top:2em;
text-align:center;
border:solid 1px #052E4F;
padding:2em;
}
.caseListsWrap table{
  margin-top: 30px;
  border: 1px solid;
}
.caseListsWrap table th,
.caseListsWrap table td{
  padding: 5px 8px;
  border: 1px solid;  
}
.caseListsWrap table th{
  background: #eeeeee;
}
.caseListsWrap table th:nth-of-type(1){
  width: 20%;
}
.caseListsWrap table th:nth-of-type(2){
  width: 41%;
}
.caseListsWrap table th:nth-of-type(3){
  width: 8%;
}
.caseListsWrap table th:nth-of-type(4){
  width: 12%;
}
.caseListsWrap table th:nth-of-type(5){
  width: 12%;
}
.caseListsWrap table td{
  line-height: 1.5;
}
.caseListsWrap table td:nth-of-type(2){
  text-align: left;
}

/* 詳細 */
.case_items_detail .title{
  font-size: 30px;
  margin-bottom: 50px;
  line-height: 1.3;
  padding-top: 3px;
  border-top: 1px solid #358acc;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-weight: 500;
}
.case_items_detail .title:before{
  margin-bottom: 10px;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  border-top: 4px solid #358acc;
}
.case_items_detail .img{
  width: 50%;
}
.case_items_detail .img .main_p{
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  border: 1px solid #707070;
}
.case_items_detail .img .main_p:after,
.case_items_detail .thumb_p p:after{
  content: "";
  padding-top: 100%; 
  display: block;
}
.case_items_detail .img .main_p img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.case_items_detail .content{
  width: 50%;
  padding-left: 30px;
}
.case_items_detail .thumb_p{
  margin: 0 -8px;
}
.case_items_detail .thumb_p li{
  width: 20%;
  padding: 0 8px;
}
.case_items_detail .thumb_p p{
  overflow: hidden;
  position: relative;  
  border: 1px solid #707070;
}
.case_items_detail .thumb_p p img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* 建築概要 */
.pg_case .ov_list{
  padding: 20px 30px 40px;
  margin-top: 30px;
  border: 1px solid #707070;
}
.pg_case .ov_list .ttl{
  font-size: 18px;
  margin-bottom: 10px;
}
.pg_case .ov_list ul{
  margin-left: 20px;
}
.pg_case .ov_list li{
  padding-left: 8px;
  list-style-type: decimal;
}
.pg_case .ov_list li + li{
  margin-top: 10px;
}

/* **********************************
 *  会社案内
 * ********************************* */
.pg_aboutus .content{
  padding: 50px 0;
}
.pg_aboutus .content#c_1{
  padding-top: 0;
}
.pg_aboutus .top_ttl{
  margin-bottom: 30px;
}
.pg_aboutus .top_ttl h2{  
  padding-right: 0;
  margin-right: 0;
  border-right: 0;
}
.about_tbl table{
  max-width: 980px;
  width: 100%;
  border: 1px solid #474545;
}
.about_tbl tr{
  border-bottom: 1px solid #474545;
}
.about_tbl th,
.about_tbl td{
  padding: 15px 15px 15px 50px;
  font-weight: normal;
  text-align: left;
}
.about_tbl th,
.pg_careers .about_tbl tr > td:first-of-type{
  width: 250px;
  background: #052e4f;
  color: #ffffff;
}
.pg_aboutus .content#c_4 .map,
.pg_aboutus .content#c_4 .txt{
  width: 50%;
}
.pg_aboutus .content#c_4 .txt{
  padding-left: 20px;
}

/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contactus .red{
  margin: 10px 0 30px;
  color: #ee2022;
}

/* **********************************
 *  お知らせ
 * ********************************* */
.pg_news .sidebar{
  width: 300px;
}
.pg_news .sidebar li{
  font-size: 18px;
  margin-bottom: 10px;
}
.pg_news .main_content{
  width: calc(100% - 300px);
  min-height: 300px;
  padding-left: 20px;
}
.pg_news .post_items .item .title{
  font-size: 16px;
  font-weight: 400;
  width: calc(100% - 110px - 120px);
  /*width: -moz-available;
  width: -webkit-fill-available;
  width: available;*/
}
.pg_news .post_items .item{
  border-top: 0;
}
.pg_news .post_items .item:last-child{
  border-bottom: 0;
}

/* 詳細 */
.pg_news .post_items .item.single_item{
  padding-top: 3px;
  border-top: 1px solid #358acc;
  border-left: 0;
  border-right: 0;
}
.pg_news .post_items .item.single_item:before{
  margin-bottom: 10px;
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  border-top: 4px solid #358acc;
}
.pg_news .post_items .item.single_item .title{
  font-size: 30px;
  line-height: 1.5;
  padding-bottom: 10px;
  font-weight: 500;
  border-bottom: 0;
}
.pg_news .post_items .item.single_item .meta{
  margin-bottom: 50px;
}

/* **********************************
 *  採用情報
 * ********************************* */
.pg_careers .top_ttl{
  margin-bottom: 30px;
}
.careers_menu{
  margin: 0 -10px;
}
.careers_menu li{
  width: 50%;
  padding: 0 10px;
  text-align: center;
}
.careers_menu li a{
  font-size: 18px;
  padding: 15px 0 0;
  display: block;
  border: 1px solid #052E4F;
  border-radius: 10px;
  font-weight: 700;
}
.careers_menu li a:hover{
  text-decoration: none;
  background: #ddd;
}
.careers_menu li a:after{
  font-size: 14px;
  margin-top: 8px;
  content: "▼";
  display: block;
}
.pg_careers .content{
  padding: 30px 0;
}
.pg_careers .content#c_1 .txt p{
  margin-bottom: 20px;
}
.pg_careers .content#c_2 ul{
  margin: 30px 0;
  line-height: 1.5;
}
.pg_careers .content#c_2 .link{
  color: #052e4f;
}
.pg_careers .content#c_2 .link:after{
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 10px;
  background: url(/img/top/arrow_1.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
}
.careers_list .box{
  margin-top: 30px;
  border-bottom: 2px solid #707070;
}
.careers_list .box .open{  
  padding-bottom: 50px;
}
.careers_list .box .meta{
  font-size: 24px;
  margin-bottom: 15px;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}
.careers_list .box .meta:after{ 
  content: "";
  width: 25px;
  height: 25px;
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  background: url(/img/business/arrow_1.png?1) no-repeat center / contain; 
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
.careers_list .box .meta.active:after{
  background: url(/img/business/arrow_2.png?1) no-repeat center / contain; 
}
.careers_list .box .bold{
  font-size: 18px;
}
.careers_list .box .about_tbl{
  margin: 20px 0;
}
.careers_list .box .telbox{
  max-width: 980px;
  margin: 20px 0 0;
  padding: 20px;
  border: 2px solid #052E4F;
}
.careers_list .box .telbox .num{
  font-size: 30px;
}
.pg_careers .content#c_3 .center{
  margin-top: 30px;
  text-align: center;
}

.pg_careers .content#c_4 .flex,
.pg_careers .content#c_5 .flex{
  margin-bottom: 50px;
}
.pg_careers .content#c_4 .msg,
.pg_careers .content#c_5 .msg{
  width: 35%;
}
.pg_careers .content#c_4 .gallery,
.pg_careers .content#c_5 .gallery{
  width: 65%;
  padding-left: 20px;
}
.pg_careers .content#c_4 .gallery ul,
.pg_careers .content#c_5 .gallery ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0 -15px;
}
.pg_careers .content#c_4 .gallery li,
.pg_careers .content#c_5 .gallery li{
  width: 50%;
  padding: 0 15px;
}
.pg_careers .content#c_4 .gallery li p,
.pg_careers .content#c_5 .gallery li p{
  overflow: hidden;
  position: relative;
  border: 1px solid #707070;
}
.pg_careers .content#c_4 .gallery li p:before,
.pg_careers .content#c_5 .gallery li p:before{
  content: "";
  padding-top: 80%;
  display: block;
}
.pg_careers .content#c_4 .gallery li p img,
.pg_careers .content#c_5 .gallery li p img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}