@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* 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:  "游ゴシック体", "Yu Gothic", YuGothic, 'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.666;
  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: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, serif;
}
.opensans{
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.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:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow-x: hidden;
}
.container{
  width: 1170px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.container.large{
  width: 1550px;
}
.container.full{
  width: 100%;
  padding: 0 90px;
}

.section{
  width: 100%;
  /*margin-bottom: 50px;*/
  /*padding: 30px 0;*/ 
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.pg_header{
  /*padding: 15px 0;*/
  background-color: #ccc;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  margin-bottom: 100px;
}
.pg_header > .container:first-child{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 400px;
  position: relative;
}

.pg_header .tt1{
  font-size: 60px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
}
.pg_header .breadcrumb_wrap{
  position: absolute;
  right: 10px;
  bottom: 30px;
  color: #FFF;
}

/* 共通の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: 10px 0;
  background: #FFF;
}

@media (min-width:768px){
  header.fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    border-bottom: 1px solid #EEE;
  }
}
  

header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  padding-left: 40px;
  padding-right: 350px;
}
header .hdr1 .hdr_logo{
  line-height: 1;
}
header .hdr1 .hdr_contact{
  font-size: 30px;
  /*letter-spacing: 0.05em;*/
  position: absolute;
  right: 40px;
  
}
header .hdr1 .hdr_contact i{
  font-size: 22px;
}
header .hdr1 .gnav{
  
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.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%;*/
  position: relative;
}
.gnav > ul > li+li{
  margin-left: 45px;
}
.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: 5px;
}
.gnav li a:hover{
  /*background: #333;*/
  /*color: #FFF;*/
}

.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{
  position: relative;
  height: 500px;
  
  background: #CCC;
  /*background-image: url('/img/mv.jpg');*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}

.mv_slider{
  position: relative;
}
.mv_slider .mv_icon{
  position: absolute;
  top: 66px;
  right: 178px;
  z-index: 1;
}

.mv_slider .sp-slide {
  
}
.mv_slider .sp-slide .mv_txt{
  white-space: nowrap;
  text-align: center;
  position: absolute;
  z-index: 1;
}
.mv_slider .sp-slide .mv_txt .txt1{
  font-size: 63px;
  font-weight: 500;
  letter-spacing: -0.06em
}
.mv_slider .sp-slide .mv_txt .txt2{
  font-size: 30px;
}
.mv_slider .sp-slide .mv_txt .blue{
  color: #0F4C90;
}
.mv_slider .sp-slide .mv_txt .wh{
  color: #FFF;
}

@media (min-width:768px){
  .mv_slider .sp-slide .mv_txt .wh_pc{
    color: #FFF;
  }
}
  
.mv_slider .sp-slide .mv_txt.top{
  top: 70px;
  left: 120px;
  text-align: left;
}
.mv_slider .sp-slide .mv_txt.center{
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.side_contact{
  position: fixed;
  z-index: 5;
  top: 350px;
  right: 0;
  background: #0F4C90;
  color: #FFF;
  width: 54px;
  padding: 20px 10px;
  text-align: center;
  font-size: 14px;
}
.side_contact a{
  text-decoration: none;
}
.side_contact span{
  display: block;
  margin: auto;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* **********************************
 *  フッター
 * ********************************* */
footer{
}

footer .ftr1{
  padding-top: 50px;
  padding-bottom: 75px;
  background: #FFF;
}

footer .ftr2{
  background-image: url('/img/footer_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #FFF;
  padding-top: 150px;
  padding-bottom: 200px;
}
footer .ftr2 > .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftr2 .box1{
  width: 400px;
}
footer .ftr2 .box2{
  width: 320px;
}

/* お問い合わせ */
.ftr_contact_wrap{
  background: linear-gradient(to right, #084589 0%, #071a2e 100%);
  color: #FFF;
  text-align: center;
  padding: 90px 0;
  position: relative;
  z-index: 1;
}
.ftr_contact_wrap .title{
  font-size: 37px;
  line-height: 1;
}
.ftr_contact_wrap .tel{
  font-size: 57px;
  line-height: 1;
  margin-top: 30px;
  letter-spacing: 0.05em;
}
.ftr_contact_wrap .tel i{
  font-size: 42px;
}
.ftr_contact_wrap .read_more{
  margin-top: 30px;
}

.ftr_contact_wrap .bg_txt{
  font-size: 315px;
  color: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 50%;
  right: -40px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  /*letter-spacing: -0.05em;*/
}

/* ふるさと納税 */
.ftr_furusato_tt{
  font-size: 20px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-bottom: 30px;
}
.ftr_furusato_tt .icon{
  margin-bottom: 10px;
}
.ftr_bn_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -13px;
}
.ftr_bn_items li{
  width: 25%;
  padding: 0 13px;
}
.ftr_bn_items li:nth-child(n+5){
  margin-top: 15px;
}
.ftr_bn_items li a{
  display: block;
}


/**/
.ftr_logo{
  font-size: 24px;
  margin-bottom: 10px;
}
.ftr_addr{
  line-height: 1.875;
}

.ftr_sns_items{
  display: flex;
}
.ftr_sns_items li{
  font-size: 24px;
}
.ftr_sns_items li + li{
  margin-left: 35px;
}

.ftr_links_wrap{
  display: flex;
  justify-content: space-between;
}
.ftr_links{
  
}
.ftr_links li{
}
.ftr_links li+li{
  margin-top: 10px;
}


footer .copy{
  text-align: right;
  font-size: 14px;
  padding: 10px 0;
  margin-top: 60px;
}
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;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.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: 10px;
  border-top: 1px solid #CCC;
  display: flex;
  align-items: center;
  position: relative;
}
.post_items .item:last-child{
  border-bottom: 1px solid #CCC;
}
.post_items .item .img{
  
}
.post_items .item .date{
  width: 130px;
  font-size: 15px;
  color: #5a5a5a;
}
.post_items .item .category{
  width: 150px;
  padding: 0 10px;
  
}
.post_items .item .category span{
  display: block;
  background: #e5e5e5;
  color: #6c6969;
  padding: 3px;
  margin: 2px;
  text-align: center;
}
.post_items .item .title{
  font-weight: 500;
  width: calc(100% - 130px - 150px);
  /*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-bottom: 1px 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 *{
  margin-bottom: 1em;
}
.post_items .item.single_item .content h1,
.post_items .item.single_item .content h2,
.post_items .item.single_item .content h3,
.post_items .item.single_item .content h4,
.post_items .item.single_item .content h5,
.post_items .item.single_item .content h6{
  margin-bottom: 0.5em;
}
.post_items .item.single_item .content a{
  color: #2196F3;
}

.post_items .post_content{
  margin-top: 30px;
}

/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.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:center;
  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;
  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;
  color: #0C2E53;
  width: 100%;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 15;
  color: #FFF;
  filter: drop-shadow(0px 0px 2px #AAA);
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #acd598;
  text-align: center;
  padding: 28px 30px 25px;
  margin-bottom: 100px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #acd598;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
}
.contact_info .box2 .tel a{
  display: block;
  font-family: "impact";
  letter-spacing: 0.04em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact_form{
  width: 100%;
}
.contact_form tr{
}
.contact_form th,
.contact_form td{
  padding: 10px 0;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  border: 0;
}
.contact_form th{
  width: 200px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.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 + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.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_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 90px;
}
.contact_form_addr dd{
  width: calc(100% - 90px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}

.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{
  
}

.addr_auto_box button{
  margin-left: 20px;
}



.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 input[type="text"],
.contact_form td input[type="email"],
.contact_form td textarea ,
.contact_form td select ,
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 17px 10px;
  width: 100%;
  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: 500px;
  max-width: 100%;
}
.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="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before,
.contact_form td .wpcf7-form-control-wrap[class$="_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: 5px 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: 10px;
}

/* 確認画面用 */
.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{
  /*text-align: center;*/
  margin-top: 20px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  /*justify-content: center;*/
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  width: 500px;
  width: 250px;
  max-width: 100%;
  /*height: 115px;*/
  height: 80px;
  background: #0F4C90;
  color: #FFF;
  border: 0;
  border-radius: 5px;
  padding: 10px;
  margin: 0 10px;
  font-size: 24px;
  position: relative;
}
.contact_form_btns button:after{
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.contact_form_btns button.back{
  background: #CCC;
}
.contact_form_btns button.back:after{
  content: "";
  display: none;
}


.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* サイトマップ */
.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{
  text-align: center;
  margin-bottom: 30px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.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{
  padding-top: 50px;
  margin-top: 50px;
  border-top: 2px solid #CCCCCC;
}
.privacy_items .item h4{
  font-size: 30px;
  margin-bottom: 10px;
}
.privacy_items .item .txt{
  line-height: 2;
}
.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;
}


.breadcrumb{
  display: flex;
  list-style: none;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  
}
.tt2 span{
  
}
.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  padding: 0 15px;
}
.read_more a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  max-width: 100%;
  height: 115px;
  margin: 0 auto;
  background: #0F4C90;
  border-radius: 5px;
  font-size: 24px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
  position: relative;
}
.read_more a:before,
.read_more a span:before{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.read_more a.arrow:before{
  content: "\f061";
  right: 35px;
}

.read_more a span{
  position: relative;
}
.read_more a.email span:before{
  content: "\f0e0";
  /*font-weight: 400;*/
  left: -40px;
}
.read_more a.pdf span:before{
  content: "";
  width: 36px;
  height: 36px;
  background-image: url('/img/icon_pdf.png');
  background-size: contain;
  right: calc(100% + 30px);
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  background-image: url('/img/home/bg1.jpg');
  background-position: center bottom;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 100px;
  
}
.pg_home .section#sec2{
  padding-top: 70px;
}
.pg_home .section#sec3{
  background: #0C2E53;
  color: #FFF;
  padding-top: 70px;
  padding-bottom: 120px;
  margin-top: 240px;
}

.pg_home .section#sec4{
  background-image: url('/img/home/bg2.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 115px;
  padding-bottom: 135px;
}

.pg_home .section#sec5{
  background: #0C2E53;
  padding-top: 140px;
  padding-bottom: 50px;
}

.pg_home .section#sec6{
  background-image: url('/img/home/bg4.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 100px;
  padding-bottom: 125px;
}

.pg_home .section#sec7{
  background: #0C2E53;
  padding-top: 200px;
  padding-bottom: 150px;
  position: relative;
  z-index: 1;
}
.pg_home .section#sec7 .bg_txt{
  font-size: 315px;
  color: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 135px;
  right: -40px;
}

.pg_home .section#sec8{
  padding-top: 115px;
  padding-bottom: 125px;
  position: relative;
  z-index: 1;
}
.pg_home .section#sec8 .bg_txt{
  font-size: 315px;
  color: #0C2E53;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  bottom: 120px;
  right: -40px;
}
.pg_home .section#sec9{
  background: #0C2E53;
  
}

.home_msg1{
  text-align: center;
}
.home_msg1 .txt1{
  font-size: 30px;
  line-height: 2;
}
.home_msg1 .txt2{
  font-size: 18px;
  line-height: 4.6111;
  margin-top: 30px;
  
  background-image: url('/img/home/msg_lines.png');
  background-repeat: no-repeat;
  background-position: center top 75px;
}


/* NEWS・BLOG */
.home_news_tt{
  display: flex;
  align-items: center;
  font-size: 36px;
  margin-bottom: 20px;
}
.home_news_tt a{
  font-size: 14px;
  color: #0F4C90;
  margin-left: 40px;
  /*letter-spacing: 0.05em;*/
}
.home_news_items_wrap{
  padding-left: 25px;
}
.home_news_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.home_news_items .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.home_news_items .item:nth-child(n+4){
  margin-top: 30px;
}
.home_news_items .item .inner{
  height: 100%;
}
.home_news_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.home_news_items .item .img:before{
  content: "";
  display: block;
  padding-top: 61.67%;
}
.home_news_items .item .img .new{
  background: #0F4C90;
  color: #FFF;
  font-size: 14px;
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
/*  font-weight: 700;*/
  position: absolute;
  top: 35px;
  left: -25px;
  width: 55px;
  padding: 5px 0;
}

.home_news_items .item .meta{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.home_news_items .item .category{
  width: 64px;
  color: #0A98D8;
  border: 1px solid; 
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.home_news_items .item .date{
/*  font-weight: 700;*/
  margin-left: 15px;
}
.home_news_items .item .title{
  margin-top: 10px;
/*  font-weight: 700;*/
}

/* 日本一の対応力 */
.home_taiou_wrap{
  display: flex;
  position: relative;
}
.home_taiou_wrap .box1{
  width: 540px;
}
.home_taiou_wrap .box2{
  width: calc(100% - 540px);
  margin-top: -130px;
}
.home_taiou_wrap .box1 h2{
  display: flex;
  align-items: center;
  height: 225px;
  background: rgba(255,255,255,0.16);
  font-size: 50px;
/*  font-weight: 700;*/
  padding-left: 40px;
}
.home_taiou_wrap .box1 h2 span{
  position: relative;
}
.home_taiou_wrap .box1 h2 span em{
  position: absolute;
  bottom: 100%;
  font-size: 20px;
  color: #FFEB00;
}

.home_taiou_list{
  width: 385px;
  max-width: 100%;
  margin-left: 30px;
  margin-top: -35px;
}
.home_taiou_list li{
  background: #0F4C90;
  color: #FFF;
  font-size: 20px;
/*  font-weight: 700;*/
  padding: 20px 10px 20px 80px;
  position: relative;
}
.home_taiou_list li:before{
  /*content: "\f054";*/
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #0A98D8;
}
.home_taiou_list li+li{
  margin-top: 20px;
}

.home_taiou_items{
  display: flex;
  justify-content: space-between;
  margin: 0 -20px;
}
.home_taiou_items .item{
  width: 50%;
  padding: 0 20px;
}
.home_taiou_items .item .inner{
  position: relative;
  
}
.home_taiou_items .item .label{
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(85, 56, 26, 0.85);
  color: #FFF;
  font-size: 18px;
/*  font-weight: 700;*/
  line-height: 1.3333;
  width: 280px;
  padding: 40px 0;
  padding-left: 50px;
  
}
.home_taiou_items .item .label span{
  display: block;
  font-size: 30px;
}

/**/
.home_taiou_service_tt{
  width: 768px;
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 50px;
  background: #0F4C90;
  color: #FFEB00;
  text-align: center;
  font-size: 24px;
/*  font-weight: 700;*/
  /*letter-spacing: 0.05em;*/
}

.home_taiou_service{
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.home_taiou_service .item{
  width: 25%;
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.home_taiou_service .item:nth-child(n+5){
  margin-top: 30px;
}
.home_taiou_service .item .inner{
  /*height: 100%;*/
}
.home_taiou_service .item .img{
  text-align: center;
  position: relative;
  z-index: 2;
}
.home_taiou_service .item .img .title{
  color: #FFF;
  font-size: 24px;
/*  font-weight: 700;*/
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  
}

.home_taiou_service .item .img .title:after{
  content: "";
  display: block;
  width: 85px;
  height: 2px;
  background: #FFF;
  margin: 25px auto 0;
}

.home_taiou_service .item .txt{
  background: #FFF;
  min-height: 300px;
  padding: 70px 20px 20px;
  margin-top: -40px;
/*  font-weight: 700;*/
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* お取り扱い製品 */
.home_product_tt{
  color: #FFF;
  font-size: 50px;
/*  font-weight: 700;*/
  text-align: center;
  margin-bottom: 50px;
}


.home_product_items{
  display: flex;
  flex-wrap: wrap;
}
.home_product_items .item{
  width: 50%;
  padding: 120px 20px 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.home_product_items .item.bg1{
  background-image: url('/img/home/bg3_1.jpg');
}
.home_product_items .item.bg2{
  background-image: url('/img/home/bg3_2.jpg');
}
.home_product_items .item.bg3{
  background-image: url('/img/home/bg3_3.jpg');
}
.home_product_items .item.bg4{
  background-image: url('/img/home/bg3_4.jpg');
}


.home_product_items .item .inner{
  width: 578px;
  max-width: 100%;
  margin: 0 auto;
  height: 100%;
}

.home_product_items .item .box1{
  background: #E6E8E9;
  padding: 60px 55px 135px 70px;
  position: relative;
  z-index: 1;
}
.home_product_items .item .box2{
  position: relative;
  z-index: 2;
}
.home_product_items .item .title{
  font-size: 30px;
/*  font-weight: 700;*/
  /*letter-spacing: 0.05em;*/
  color: #0F4C90;
  margin-bottom: 10px;
}
.home_product_items .item .txt{
/*  font-weight: 700;*/
  /*letter-spacing: 0.05em;*/
  line-height: 1.75;
  margin-bottom: 20px;
}
.home_product_items .item .link{
  position: absolute;
  bottom: 70px;
  right: 55px;
}
.home_product_items .item .link a{
  display: block;
  width: 275px;
  padding: 20px 0;
  margin-left: auto;
  border-radius: 5px;
  background: #0F4C90;
  color: #FFF;
  text-align: center;
  position: relative;
}
.home_product_items .item .link a:after{
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.home_product_items .item .imgs{
  display: flex;
  justify-content: center;
  margin: -40px -55px 0;
}
.home_product_items .item .imgs li{
  width: 33.333%;
  padding: 0 5px;
}
.home_product_items .item .imgs li.w{
  width: 56%;
}


.home_product_btn{
  margin: 125px 0 75px;
}
.home_product_btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 870px;
  max-width: 90%;
  height: 196px;
  background: #0F4C90;
  color: #FFF;
  margin: 0 auto;
  font-size: 28px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
}
.home_product_btn a span{
  position: relative;
}
.home_product_btn a span:before{
  content: "";
  width: 36px;
  height: 36px;
  background-image: url('/img/icon_pdf.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  left: -70px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


/* 相談 */
.home_soudan_wrap{
  display: flex;
  justify-content: space-between;
}
.home_soudan_wrap .box1{
  width: 52.4%;
  padding-top: 150px;
}
.home_soudan_wrap .box2{
  width: 44.0%;
}

.home_soudan_tt1{
  padding: 10px;
  margin-bottom: 30px;
  background: #0F4C90;
  color: #FFEB00;
  text-align: center;
  font-size: 24px;
/*  font-weight: 700;*/
}

.home_soudan_tt2{
  display: inline-block;
  color: #FFEB00;
  font-size: 38px;
/*  font-weight: 700;*/
  line-height: 1.38;
  /*letter-spacing: 0.05em;*/
  letter-spacing: -0.1em;
  border-bottom: 2px solid ;
  margin: 50px 40px 0;
  padding-bottom: 15px;
}

.home_soudan_list_wrap{
  background: rgba(12,46,83, 0.9);
  padding: 55px 10px;
}
.home_soudan_list{
  width: 685px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 24px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
}
.home_soudan_list li{
  position: relative;
  padding-left: 1.5em;
}
.home_soudan_list li+li{
  margin-top: 15px;
}
.home_soudan_list li:before{
  content: "□";
  position: absolute;
  left: 0;
  /*margin-right: 10px;*/
}

.home_soudan_msg1{
  font-size: 24px;
  line-height: 2;
  color: #FFF;
  margin-top: 30px;
  text-align: center;
}

.home_soudan_btn{
  margin-top: 55px;
}
.home_soudan_btn a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 500px;
  max-width: 100%;
  height: 115px;
  margin: 0 auto;
  background: #0F4C90;
  border-radius: 5px;
  font-size: 24px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
  
}
.home_soudan_btn a span{
  position: relative;
}
.home_soudan_btn a span:before{
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* 相談：スライド */
.home_soudan_sliders{
  position: relative;
  padding-left: 110px;
}
.home_soudan_sliders .slider1{
  position: relative;
}
.home_soudan_sliders .slider2{
  margin-left: -110px;
  margin-top: -240px;
  z-index: 2;
}
.home_soudan_sliders .slider2 .slider-pro{
  margin-left: 0;
}

.home_soudan_sliders .sp-buttons{
  text-align: right;
  padding-right: 30px;
}
.home_soudan_sliders .sp-buttons .sp-button{
  width: 25px;
  height: 3px;
  border: 0;
  border-radius: 0;
  background: #AAAAAA;
}
.home_soudan_sliders .sp-buttons .sp-button.sp-selected-button{
  background: #FFFFFF;
}


/* メリット */
.home_merit_tt{
  color: #FFF;
  font-size: 50px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-bottom: 30px;
}
.home_merit_msg{
  width: 580px;
  max-width: 100%;
  padding: 10px;
  margin: 0 auto;
  margin-bottom: 40px;
  background: #0F4C90;
  color: #FFEB00;
  text-align: center;
  font-size: 24px;
/*  font-weight: 700;*/
}

.home_merit_items{
  
}
.home_merit_items .item{
  height: 450px;
  position: relative;
}
.home_merit_items .item+.item{
  margin-top: 70px;
}
.home_merit_items .item:after{
  content: "";
  background-repeat: no-repeat;
  /*background-size: auto 100%;*/
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
}
.home_merit_items .item.bg1:after{
  background-image: url('/img/home/bg5_1.jpg');
}
.home_merit_items .item.bg2:after{
  background-image: url('/img/home/bg5_2.jpg');
}
.home_merit_items .item:nth-child(odd):after{
  right: 0;
  left: -1000px;
  background-position: right center;
}
.home_merit_items .item:nth-child(even):after{
  left: 0;
  right: -1000px;
  background-position: left center;
}
.home_merit_items .item .inner{
  padding: 50px 35px 50px 35px;
  position: relative;
  z-index: 1;
}

.home_merit_items .item .title{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  
}
.home_merit_items .item .title .num{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 85px;
  height: 110px;
  margin-right: 35px;
  background: #0C2E53;
  color: #0A98D8;
  font-size: 18px;
/*  font-weight: 700;*/
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
  text-align: center;
    
}
.home_merit_items .item .title .num em{
  width: 100%;
  font-size: 40px;
  line-height: 1.2;
}
.home_merit_items .item .title h3{
  color: #0F4C90;
  font-size: 30px;
  /*letter-spacing: 0.05em;*/
}

/**/
.home_merit_items .item .wrap1{
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
.home_merit_items .item .wrap1 .box1{
  
}
.home_merit_items .item .wrap1 .box2{
  margin-left: 30px;
  margin-top: -35px;
}
.home_merit_items .item .wrap1 .costdown{
  
}
.home_merit_items .item .wrap1 .costdown li{
  position: relative;
  /*letter-spacing: 0.05em;*/
  padding-left: 25px;
}
.home_merit_items .item .wrap1 .costdown li+li{
  margin-top: 20px;
}

.home_merit_items .item .wrap1 .costdown li:before{
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #0A98D8;
}
.home_merit_items .item .wrap1 .costdown li i{
  font-size: 24px;
}
.home_merit_items .item .wrap1 .costdown li span{
  font-size: 24px;
  color: #0F4C90;
  border-bottom: 2px solid;
}

/**/
.home_merit_items .item .wrap2{
  display: flex;
  justify-content: space-between;
}
.home_merit_items .item .wrap2 .box{
  
}
.home_merit_items .item .wrap2 .box .info{
  width: 383px;
  max-width: 100%;
  margin-top: -25px;
  margin-left: 120px;
}

.home_merit_items .item .wrap2 .txt1{
  font-size: 18px;
  /*letter-spacing: 0.05em;*/
  margin-top: 10px;
}
.home_merit_items .item .wrap2 .txt2{
  font-size: 12px;
  margin-top: 10px;
  text-indent: -1em;
  padding-left: 1em;
}


/* 導入事例 */
.home_case_tt{
  font-size: 50px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-bottom: 30px;
}
.home_case_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -45px;
  margin-right: -45px;
  padding-top: 60px;
  margin-bottom: 50px;
}
.home_case_items .item{
  width: 33.333%;
  padding-left: 45px;
  padding-right: 45px;
}
.home_case_items .item:nth-child(3n+2){
  margin-top: -60px;
}
.home_case_items .item .inner{
  height: 100%;
  padding-top: 42px;
  position: relative;
  
}
.home_case_items .item .img{
  width: 320px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
  position: relative;
}
.home_case_items .item .img:before{
  content: "";
  display: block;
  padding-top:100%; 
}
.home_case_items .item .img img{
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.home_case_items .item .num{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 85px;
  height: 110px;
  margin-right: 35px;
  background: #0C2E53;
  color: #0A98D8;
  font-size: 18px;
/*  font-weight: 700;*/
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
  text-align: center;
  
  position: absolute;
  top: 0;
  left: -25px;
  z-index: 2;
}
.home_case_items .item .num em{
  width: 100%;
  font-size: 40px;
  line-height: 1.2;
}
.home_case_items .item .txt{
  font-size: 18px;
  letter-spacing: 0.09em;
  text-align: center;
  margin-top: 15px;
}

.home_case_link{
  color: #0C2E53;
  font-size: 20px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-top: 45px;
}


/* 企業案内 */
.home_company_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 50%;
  height: 680px;
  color: #FFF;
  position: relative;
}

.home_company_tt{
  font-size: 50px;
  /*letter-spacing: 0.05em;*/
  margin-bottom: 10px;
}
.home_company_msg{
  line-height: 2;
  /*letter-spacing: 0.05em;*/
  margin-bottom: 30px;
}
.home_company_links{
  display: flex;
  flex-wrap: wrap;
  background: #214062;
  padding: 40px;
  margin: 0 -10px;
}
.home_company_links li{
  width: 50%;
  padding: 0 10px;
  /*letter-spacing: 0.05em;*/
}
.home_company_links li:nth-child(n+3){
  margin-top: 12px;
}
.home_company_links li a{
  display: block;
  background: #0F4C90;
  padding: 17px 20px;
  position: relative;
}
.home_company_links li a:after{
  content: "\f061";
  right: 25px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);  
}

.home_company_bg{
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(100% + 150px);
  width: 1000px;
  background-image: url('/img/home/bg6.jpg');
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
}

  


/* **********************************
 *  製品一覧
 * ********************************* */
.post-type-archive-product .pg_header{
  margin-bottom: 0;
}
.pg_product1{
  
}
.pg_product1 .section#sec1{
  background-image: url('/img/product/bg1.jpg');
  
  padding-top: 75px;
  padding-bottom: 110px;
  position: relative;
  z-index: 1;
}
.pg_product1 .section#sec1 .bg_txt{
  font-size: 315px;
  color: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 220px;
  right: -40px;
}
.pg_product1 .section#sec2{
  
}
.pg_product1 .section#sec3{
  
}

.product_nav_wrap{
  /*background: rgba(255,255,255,0.6);*/
  background: linear-gradient(to right, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.1) 100%);
  margin-bottom: 115px;
}
.product_nav_wrap + .read_more a{
  width: 595px;
}
.product_nav_wrap + .read_more a span{
  
}
.product_nav{
  display: flex;
  flex-wrap: wrap;
  
  margin: 0 -25px;
  padding: 60px 100px;
}
.product_nav li{
  width: 33.333%;
  padding: 0 25px;
}
.product_nav li:nth-child(n+4){
  margin-top: 35px;
}
.product_nav li a{
  display: block;
  background: #0F4C90;
  color: #FFF;
  font-size: 20px;
  padding: 30px 15px 30px 35px;
  position: relative;
}
.product_nav li a:after{
  /*content: "\f054";*/
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 35px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.product_list_wrap{
  padding-bottom: 100px;
}

.product_list_header{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 374px;
  margin-bottom: 115px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.product_list_header h2{
  font-size: 50px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
}
.product_list_header h2 span{
  font-size: 24px;
  margin-left: 35px;
}

/* 一覧 */
.product_items{
  
}
.product_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -35px;
  margin-right: -35px;
}
.product_items .item{
  width: 33.333%;
  padding-left: 35px;
  padding-right: 35px;
}
.product_items .item:nth-child(n+4){
  margin-top: 60px;
}
.product_items .item .inner{
  height: 100%;
}
.product_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #CCC;
}
.product_items .item .img:before{
  content: "";
  display: block;
  padding-top: 54.31%;
}
.product_items .item .img img{
  
}
.product_items .item .title_box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background-image: url('/img/product/bg2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #FFF;
}
.product_items .item .title{
  font-size: 20px;
  /*letter-spacing: 0.05em;*/
  line-height: 1.3;
}
.product_items .item .link{
  width: 70px;
  font-size: 12px;
  /*letter-spacing: 0.05em;*/
  border: 1px solid;
  padding: 8px 10px;
}
.product_items .item .txt{
  line-height: 1.75;
  margin-top: 10px;
}


/* 大きさから選ぶ */
.product_sizes_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 80px;
}
.product_sizes_wrap .box1{
  width: 28.69%;
}
.product_sizes_wrap .box2{
  width: 63.47%;
}
.product_sizes_wrap .title{
  font-size: 36px;
}
.product_sizes_wrap .txt1{
  font-size: 24px;
  margin-bottom: 30px;
}
.product_sizes_wrap .txt1:after{
  content: "";
  display: block;
  width: 100%;
  height: 8px;
  background: #FFEB00;
}
.product_sizes_wrap .txt2{
  
}
.product_sizes_wrap .txt2_1{
  font-size: 20px;
  margin-bottom: 10px;
}
.product_sizes_wrap .txt2_2{
  display: flex;
}
.product_sizes_wrap .txt2_2 span{
  width: 50px;
}

.product_sizes_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.product_sizes_items .item{
  width: 33.333%;
  padding: 0 10px;
}
.product_sizes_items .item:nth-child(n+4){
  margin-top: 20px;
}
.product_sizes_items .item a{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  padding: 0 20px;
  background-image: url('/img/product/bg2.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  color: #FFF;
  font-size: 24px;
  position: relative;
}
.product_sizes_items .item a:after{
  content: "\f061";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 18px;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


/* 相談 */
.product_soudan_wrap{
  background-image: url('/img/product/bg_soudan.jpg');
  background-size: cover;
  background-position: center;
  padding-top: 130px;
  padding-bottom: 100px;
}



/* **********************************
 *  製品詳細
 * ********************************* */
body.tax-product_cat{
  background-image: url('/img/bg_product.jpg');
  background-position: center top;
  background-attachment: fixed;
  background-size: 100vw auto;
}
body.tax-product_cat .pg_header{
  margin-bottom: 0;
}

.pg_product2{
  
}
.pg_product2 .section#sec1{
  
}
.pg_product2 .section#sec2{
  padding-top: 150px;
  padding-bottom: 150px;
  
}
.pg_product2 .section#sec2 > .container{
  background: #FFF;
  padding-top: 80px;
  padding-bottom: 80px;
}
.pg_product2 .section#sec3{
  
}


.product_tt1{
  font-size: 50px;
  /*letter-spacing: 0.05em;*/
  text-align: center;
  margin-bottom: 40px;
}
.product_tt1.wh{
  color: #FFF;
}
.product_tt1_sub{
  font-size: 15px;
  text-align: center;
  margin-top: -20px;
  margin-bottom: 40px;
}

/* 製品案内：詳細 */
.product_main_wrap{
  background: #FFF;
  padding: 100px 0 160px;
}
.product_main_wrap > .container{
  display: flex;
  justify-content: space-between;
}
.product_main_wrap .main_img{
  width: 50%;
  text-align: center;
}
.product_main_wrap .description{
  width: 45%;
  padding-top: 100px;
}
.product_main_wrap .description h2{
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
}
.product_main_wrap .description .txt{
  font-size: 18px;
  line-height: 2;
}

/* 製品案内：詳細（主要な規格袋） */
.product_pickup_wrap{
  color: #FFF;
  padding: 125px 0;
  position: relative;
}
.product_pickup_wrap:after{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-image: url('/img/product/bg3.jpg');
  background-size: 100% auto;
  background-repeat: repeat-y;
  background-position: center center;
  opacity: 0.9;
  z-index: -1;
}
.product_pickup_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
.product_pickup_items .item{
  width: 25%;
  padding-left: 25px;
  padding-right: 25px;
}
.product_pickup_items .item:nth-child(n+5){
  margin-top: 30px;
}
.product_pickup_items .item .inner{
  height: 100%;
}
.product_pickup_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.product_pickup_items .item .img:before{
  content: "";
  display: block;
  padding-top: 66.666%;
}
.product_pickup_items .item .meta{
  margin-top: 5px;
  position: relative;
}
.product_pickup_items .item .meta dl{
  display: flex;
  align-items: center;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
}
.product_pickup_items .item .meta dl dt{
  font-size: 12px;
  white-space: nowrap;
  color: #AAAAAA;
  margin-right: 15px;
}
.product_pickup_items .item .meta dl dd{
  
}
.product_pickup_items .item .meta dl dd.large{
  font-size: 18px;
}
.product_pickup_items .item .category{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.product_pickup_items .item .category li{
  padding: 3px 5px;
}
.product_pickup_items .item .category li span{
  font-size: 14px;
  color: #80D7FF;
  border: 1px solid;
  padding: 1px 10px;
}
.product_pickup_items .item .stock{
  background: #FFF;
  color: #0F4C90;
  padding: 1px 10px;
  position: absolute;
  right: 0;
  bottom: 0;
}

/* 製品案内：詳細（動画） */
.product_movie_wrap{
  background: rgba(17, 17, 17, 0.85);
  padding: 115px 0;
}
.product_movie_wrap .product_movie{
  width: 665px;
  max-width: 100%;
  margin: 0 auto;
}
.product_movie .movie{
  
}
.product_movie .comment{
  margin-top: 40px;
  font-size: 14px;
  letter-spacing: 0.09em;
  color: #FFF;
}

/**/

.product_cat_items{
  
}
.product_cat_items .item{
  
}
.product_cat_items .item + .item{
  border-top: 1px solid #AAAAAA; 
  margin-top: 25px;
  padding-top: 25px;
}
.product_cat_items .item .meta{
  display: flex;
  width: 100%;
  text-align: center;
}

.product_cat_items .item .meta > * + *{
  border-left: 1px solid #AAAAAA; 
}

.product_cat_items .item .meta dl{
  padding: 0 10px;
}
.product_cat_items .item .meta dl dt{
  font-size: 12px;
  color: #566779;
}
.product_cat_items .item .meta dl dd{
  
}
.product_cat_items .item .meta .code{
  width: 85px;
  text-align: left;
  padding-left: 0;
}
.product_cat_items .item .meta .mate{
  /*width: 450px;*/
  width: calc(100% - 85px - 245px - 115px - 135px - 125px);
  padding-left: 30px;
  padding-right: 30px;
  text-align: left;
}
.product_cat_items .item .meta .size{
  width: 245px;
}
.product_cat_items .item .meta .pack1{
  width: 115px;
}
.product_cat_items .item .meta .pack2{
  width: 135px;
}
.product_cat_items .item .meta .stock{
  width: 125px;
}

.product_cat_items .item .category{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  margin-top: 10px;
}
.product_cat_items .item .category li{
  padding: 3px 5px;
}
.product_cat_items .item .category li span{
  font-size: 14px;
  color: #0C2E53;
  border: 1px solid;
  padding: 1px 10px;
}

/* **********************************
 *  導入事例
 * ********************************* */

body.pg_slug_cases{
  background-image: url('/img/bg_case.jpg');
  background-position: center top;
  background-attachment: fixed;
  background-size: 100vw 100vh;
}

.pg_case{
  
}
.pg_case .section#sec1{
  margin-bottom: 120px;
}
.pg_case .section#sec2{
  
}
.pg_case .section#sec3{
  
}

.case_wrap{
  
}
.case_wrap + .case_wrap{
  margin-top: 130px;
}
.case_wrap > .container{
  background: #FFF;
  position: relative;
  
}

.case_inner{
  padding-top: 75px;
  padding-bottom: 75px;
}
.case_inner .num{
  
}
.case_inner .case_tt{
  font-size: 30px;
  /*letter-spacing: 0.05em;*/
  border-bottom: 4px solid #06203E;
  padding-bottom: 10px;
  margin-bottom: 45px;
}

.case_inner .case_block{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  
}
.case_inner .case_block + .case_block{
  margin-top: 75px;
}
.case_inner .case_block .img{
  width: 40%;
}
.case_inner .case_block .txt{
  width: 49%;
  padding-top: 40px;
  line-height: 2;
}

.case_inner .num{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 85px;
  height: 110px;
  margin-right: 35px;
  background: #0C2E53;
  color: #0A98D8;
  font-size: 18px;
/*  font-weight: 700;*/
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
  text-align: center;
  
  position: absolute;
  top: -35px;
  left: 50px;
}
.case_inner .num em{
  width: 100%;
  font-size: 40px;
  line-height: 1.2;
}


/* **********************************
 *  NEW/BLOG
 * ********************************* */
.pg_news{
  margin-bottom: 150px;
}
.pg_news .section#sec1{
  
}
.pg_news .section#sec2{
  
}
.pg_news .section#sec3{
  
}


.news_detail_wrap{
  width: 960px;
  max-width: 100%;
  margin: 0 auto;
  border-bottom: 2px solid #CCC;
}
.news_detail_wrap .meta{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.news_detail_wrap .meta .category{
  color: #0A98D8;
  border: 1px solid;
  padding: 0 10px;
  margin-right: 20px;
  font-size: 18px;
  font-weight: 500;
}
.news_detail_wrap .meta .date{
  font-size: 20px;
}

.news_detail_wrap .title{
  font-size: 30px;
  /*letter-spacing: 0.05em;*/
  line-height: 1.3;
  margin-bottom: 15px;
}
.news_detail_wrap .post_content{
  
}

/* **********************************
 *  企業案内
 * ********************************* */
body.pg_slug_company .pg_header{
  margin-bottom: 0;
  height: 940px;
}

.pg_company{
  
}
.pg_company .section#sec1{
  background-image: url('/img/company/bg1.jpg?2');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding-top: 500px;
  padding-bottom: 230px;
}
.pg_company .section#sec2{
  background-color: #0c2e53;
  background-image: url('/img/company/bg2.jpg'), url('/img/company/bg3.jpg');
  background-repeat: no-repeat;
  background-size: 100% auto, cover;
  background-position: center top, center top;
  padding-top: 150px;
  padding-bottom: 150px;
}
.pg_company .section#sec3{
  
}

.company_tt1{
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  color: #FFEB00;
}
.company_tt2{
  display: flex;
  align-items: center;
  font-size: 30px;
  white-space: nowrap;
}
.company_tt2:before{
  content: "";
  width: 120px;
  height: 1px;
  margin-right: 20px;
  background: #FFF;
}
.company_tt2 span{
  display: flex;
  align-items: center;
  width: calc(100% - 140px);
}
.company_tt2 span:after{
  content: "";
  width: 100%;
  height: 1px;
  margin-left: 20px;
  background: #FFF;
}

.company_tt3{
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  margin-bottom: 20px;
}
.company_tt3.wh{
  color: #FFF;
}


/* メニュー */
.company_menu_wrap{
  width: calc(100% - 20px);
  color: #FFF;
  position: absolute;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 115px;
}
.company_menu_wrap:after{
  content: "";
  background: linear-gradient(to left, #06203e 0%, #214c7c 100%);
  opacity: 0.9;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.company_menu_items{
  display: flex;
  padding: 30px 30px;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.company_menu_items:after{
  content: "";
  background: #0c2e53;
  opacity: 0.8;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

.company_menu_items li{
  width: 230px;
  padding: 0 10px;
}
.company_menu_items li a{
  display: block;
  background: #0F4C90;
  padding: 22px 22px;
  position: relative;
}
.company_menu_items li a:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


/* 企業理念 */
.company_concept_wrap{
  margin-bottom: 50px;
}
.company_concept{
  list-style: auto;
  list-style-position: inside;
}
.company_concept li{
  font-size: 24px;
  letter-spacing: -0.06em;
  padding: 20px 150px;
  position: relative;
  z-index: 1;
}
.company_concept li:after{
  content: "";
  background: linear-gradient(to left, #0f4c90 0%, #3f8be0 100%);
  opacity: 0.7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.company_concept li+li{
  margin-top: 20px;
}

.company_quality{
  font-size: 24px;
  letter-spacing: -0.06em;
  line-height: 2;
  padding: 30px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.company_quality:after{
  content: "";
  background: linear-gradient(to left, #0f4c90 0%, #3f8be0 100%);
  opacity: 0.7;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}

/* 代表あいさつ */
.company_message_wrap{
  display: flex;
  justify-content: space-between;
}
.company_message_wrap .box1{
  width: 50%;
}
.company_message_wrap .box2{
  width: 40.86%;
}

.company_message_wrap .title{
  
}
.company_message_wrap .txt{
  line-height: 2;
}
.company_message_wrap .txt strong{
  display: block;
  font-size: 24px;
  margin-top: 10px;
}
.company_message_wrap .name{
  text-align: right;
  font-weight: 400;
  margin-top: 15px;
}
.company_message_wrap .name span{
  font-size: 30px;
  margin-left: 20px;
}


/**/
.company_about_wrap{
  color: #FFF;
}


.company_history_wrap{
  color: #FFF;
}

.company_about_items{
  margin-bottom: 100px;
}
.company_about_items .item{
  display: flex;
  padding: 30px 10px; 
  border-bottom: 1px solid #CCC;
  line-height: 2;
}
.company_about_items .item dt{
  width: 200px;
}
.company_about_items .item dd{
  
}

/* 事業所 */
.company_address_items{
  display: flex;
  margin: 0 -25px;
}
.company_address_items .item{
  width: 33.333%;
  padding: 0 25px;
}
.company_address_items .item .inner{
  
}
.company_address_items .item .title{
  font-size: 20px;
  margin-bottom: 5px;
  /*letter-spacing: 0.05em;*/
}
.company_address_items .item iframe{
  width: 100%;
  height: 235px;
}
.company_address_items .item .addr{
  margin-top: 15px;
}

/* 沿革 */
.company_history_wrap{
  margin-top: 170px;
}
.company_history_wrap{
  
}

.company_history_items{
  position: relative;
}
.company_history_items .item{
  display: flex;
  align-items: flex-start;
  padding: 25px 0 25px 35px;
  position: relative;
  overflow: hidden;
}
.company_history_items .item dt{
  width: 130px;
  position: relative;
  color: #80D7FF;
}
.company_history_items .item dd{
  width: calc(100% - 130px);
}

.company_history_items:before{
  content: "";
  width: 2px;
  background: #80D7FF;
  position: absolute;
  /*top: 0;*/
  top: 35px;
  bottom: 0;
  left: 6px;
  z-index: 0;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.company_history_items .item dt:before{
  content: "";
  width: 12px;
  height: 12px;
  background: #80D7FF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -35px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.company_history_items .item:first-child dt:after,
.company_history_items .item:last-child dt:after{
  content: "";
  width: 2px;
  background: #80D7FF;
  position: absolute;
  left: -29px;
  z-index: 1;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.company_history_items .item:first-child dt:after{
  /*top: -100px;*/
  top: 10px;
  bottom: calc(50% + 6px);
}
.company_history_items .item:last-child dt:after{
  top: calc(50% + 6px);
  bottom: -100px;
}


/* リンク */
.company_link_items{
  display: flex;
  justify-content: center;
}
.company_link_items .item{
  width: 50%;
}
.company_link_items .item .inner{
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 56.04%;
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  color: #FFF;
  position: relative;
  
}
.company_link_items .item .inner span{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.company_link_items .item.bg1 .inner{
  background-image: url('/img/company/bg4_1.jpg');
}
.company_link_items .item.bg2 .inner{
  background-image: url('/img/company/bg4_2.jpg?3');
}


/* **********************************
 *  事業案内
 * ********************************* */
body.pg_slug_service .pg_header{
  margin-bottom: 0;
}

.pg_service{
  
}
.pg_service .section#sec1{
  background-image: url('/img/service/bg1.jpg');
  padding-top: 250px;
  position: relative;
  z-index: 1;
}
.pg_service .section#sec1 .bg_txt{
  font-size: 315px;
  color: #0C2E53;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 190px;
  right: -40px;
}
.pg_service .section#sec2{
  background: #0C2E53;
  color: #FFF;
  padding-top: 170px;
  padding-bottom: 150px;
}
.pg_service .section#sec3{
  background-image: url('/img/service/bg2.jpg');
  padding-top: 130px;
  padding-bottom: 125px;
}
.pg_service .section#sec4{
  padding-top: 125px;
  padding-bottom: 125px;
}

.service_about_wrap{
  color: #FFF;
  position: relative;
  z-index: 2;
  height: 685px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.service_about_wrap:after{
  content: "";
  background: linear-gradient(to left, #06203e 0%, #214c7c 100%);
  opacity: 0.9;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.service_about_wrap .title{
  font-size: 40px;
  margin-bottom: 10px;
}
.service_about_wrap .txt1{
  font-size: 30px;
  line-height: 1.333;
  color: #FFEB00;
  margin-bottom: 45px;
}
.service_about_wrap .txt2{
  font-size: 18px;
  line-height: 2;
  margin-bottom: 40px;
}
.service_about_wrap .imgs{
  display: flex;
}
.service_about_wrap .imgs.item{
  width: 50%;
}

/**/
.service_strong_wrap{
  position: relative;
    bottom: -50px;
}
.service_strong_tt{
  font-size: 38px;
  margin-bottom: 35px;
}
.service_strong_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.service_strong_box .box1{
  width: 512px;
}
.service_strong_box .box2{
  width: calc(100% - 512px);
}

.service_strong_list{
  list-style: decimal;
  list-style-position: inside;
}
.service_strong_list li{
  background: linear-gradient(to right, #0f4c90 0%, #3f8be0 100%);
  color: #FFF;
  font-size: 24px;
  padding: 20px 10px 20px 35px;
}
.service_strong_list li+li{
  margin-top: 20px;
}
.service_strong_msg{
  font-size: 24px;
  line-height: 2;
  color: #FFEB00;
  text-align: center;
  margin-bottom: 250px;
}

/* 動画 */
.service_movie_tt{
  font-size: 40px;
  color: #FFF;
  text-align: center;
  margin-bottom: 50px;
}
.service_movie_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -30px;
  margin-right: -30px;
}
.service_movie_items .item{
  width: 33.333%;
  padding-left: 30px;
  padding-right: 30px;
}
.service_movie_items .item:nth-child(n+4){
  margin-top: 30px;
}
.service_movie_items .item .inner{
  height: 100%;
}
.service_movie_items .item .img{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.service_movie_items .item .img:before{
  content: "";
  display: block;
  padding-top: 56.25%;
}
.service_movie_items .item .txt{
  background: rgba(12,46,83, 0.8);
  color: #FFF;
  padding: 15px;
  font-size: 14px;
}

.service_nav_wrap{
  
}
.service_nav_wrap .pagination .page-numbers{
  color: #FFF;
}
.pagination .page-numbers.current, 
.pagination .page-numbers:hover{
  color: #0C2E53;
}

/* **********************************
 *  採用情報
 * ********************************* */
body.pg_slug_recruit .pg_header{
  margin-bottom: 0;
  padding-bottom: 115px;
}
body.pg_slug_recruit .pg_header > .container{
  height: 940px;
}
.pg_recruit{
  
}
.pg_recruit .section#sec1{
  
}

.recruit_header_msg{
  background-image: url('/img/recruit/bg4.png');
  padding: 80px 100px;
  color: #FFF;
  line-height: 2;
  margin-top: -100px;
  margin-bottom: 50px;
}

.recruit_job_nav_wrap{
  background: #0C2E53;
  color: #FFF;
  padding: 50px 0;
  position: relative;
}
.recruit_job_nav_wrap .title{
  color: #FFEB00;
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  /*position: absolute;
  top: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);*/
}

.recruit_job_nav{
  display: flex;
  flex-wrap: wrap;
  margin-left: -17.5px;
  margin-right: -17.5px;
}
.recruit_job_nav li{
  width: 25%;
  padding-left: 17.5px;
  padding-right: 17.5px;
}
.recruit_job_nav li:nth-child(n+5){
  margin-top: 30px;
}
.recruit_job_nav li a{
  display: block;
  background: #0F4C90;
  padding: 20px 30px;
  position: relative;
}
.recruit_job_nav li a:after{
  /*content: "\f054";*/
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}


/**/

.recruit_tt1{
  display: flex;
  align-items: center;
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  white-space: nowrap;
  margin-bottom: 20px;
}
.recruit_tt1:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  margin-left: 20px;
}

.recruit_job_about_wrap{
  padding: 175px 0 100px;
  position: relative;
  background-image: url('/img/recruit/bg1.jpg');
  background-position: center;
  background-size: cover;
}
.recruit_job_about{
  display: flex;
  position: relative;
}

.recruit_job_about .imgs{
  width: 42%;
  position: relative;
  z-index: 2;
  padding-bottom: 150px;
}
.recruit_job_about .imgs .img1{
  width: 88.46%;
}
.recruit_job_about .imgs .img2{
  width: 59.53%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.recruit_job_about .imgs + .desc{
  position: absolute;
  top: 90px;
  left: 0;
  z-index: 1;
}
.recruit_job_about .imgs + .desc .inner{
  width: 50%;
  margin-left: auto;
}
.recruit_job_about .desc{
  width: 100%;
  background: rgba(255,255,255,0.78);
  padding: 70px 0;
}
.recruit_job_about .desc > .container{
  
}
.recruit_job_about .desc .inner{
  
}


/**/
.recruit_job_detail_wrap{
  padding-top: 140px;
  padding-bottom: 150px;
  background-image: url('/img/recruit/bg2.jpg');
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.recruit_tbl{
  
}
.recruit_tbl tr{
  border-bottom: 2px solid #CCCCCC;
}
.recruit_tbl th,
.recruit_tbl td{
  text-align: left;
  padding: 30px 10px;
}
.recruit_tbl th{
  width: 200px;
}
.recruit_tbl td{
  
}

.recruit_message_wrap{
  margin-top: 220px;
}

.recruit_entry_wrap{
  padding-top: 115px;
  padding-bottom: 115px;
  background-image: url('/img/recruit/bg3.jpg');
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: repeat-y;
  position: relative;
  z-index: 1;
}
.recruit_entry_wrap .bg_txt{
  font-size: 315px;
  color: #FFFFFF;
  opacity: 0.05;
  position: absolute;
  z-index: -1;
  line-height: 1;
  top: 0;
  right: -40px;
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
body.pg_slug_order .pg_header{
  margin-bottom: 0;
  padding-bottom: 115px;
}

.pg_order{
  margin-bottom: 150px;
}
.pg_order .section#sec1{
  padding-top: 120px;
}
.pg_order .section#sec2{
  
}

.order_tt1{
  display: flex;
  align-items: center;
  font-size: 40px;
  /*letter-spacing: 0.05em;*/
  white-space: nowrap;
  margin-bottom: 20px;
}
.order_tt1:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #111;
  margin-left: 30px;
}
.order_tt1.wh{
  color: #FFF;
}
.order_tt1.wh:after{
  background: #FFF;
}



.order_flow_items{
  display: flex;
  justify-content: space-between;
}
.order_flow_items .item{
  width: 26%;
  color: #FFF;
}
.order_flow_items .item .inner{
  background: rgba(12, 46, 83, 0.87);
  background-repeat: no-repeat;
  background-position: right 40px top 30px;
  height: 100%;
  padding: 40px 50px;
}
.order_flow_items .item .inner.icon1{
  background-image: url('/img/order/flow_icon1.png');
}
.order_flow_items .item .inner.icon2{
  background-image: url('/img/order/flow_icon2.png');
}
.order_flow_items .item .inner.icon3{
  background-image: url('/img/order/flow_icon3.png');
}
.order_flow_items .arrow{
  width: 11%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}

.order_flow_items .item .num{
  font-size: 43px;
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
  line-height: 1;
  /*letter-spacing: 0.05em;*/
  color: #0A98D8;
}
.order_flow_items .item .title{
  font-size: 24px;
  /*letter-spacing: 0.05em;*/
  margin-top: 15px;
}
.order_flow_items .item .title:after{
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: #FFF;
  margin-top: 10px;
}
.order_flow_items .item .txt{
  /*letter-spacing: 0.05em;*/
  line-height: 2;
  margin-top: 20px;
}

/* よくある質問 */
.order_faq_items{
  margin-top: 50px;
}
.order_faq_items .item{
  /*letter-spacing: 0.05em;*/
}
.order_faq_items .item + .item{
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid #CCCCCC;
}
.order_faq_items .item dt,
.order_faq_items .item dd{
  position: relative;
  padding-left: 50px;
}
.order_faq_items .item dt{
  font-size: 24px;
}
.order_faq_items .item dd{
  margin-top: 10px;
  line-height: 2;
}
.order_faq_items .item dt:before,
.order_faq_items .item dd:before{
  font-size: 30px;
  font-family: 'Open Sans', 'Noto Sans JP',  "メイリオ", sans-serif;
  line-height: 1;
  color: #0F4C90;
  position: absolute;
  top: 0;
  left: 0;
  
}
.order_faq_items .item dt:before{
  content: "Q.";
}
.order_faq_items .item dd:before{
  content: "A.";
}

.order_faq_tbl{
  margin-top: 30px;
}
.order_faq_tbl thead{
  background: #F2F6FA;
}
.order_faq_tbl th,
.order_faq_tbl td{
  border: 1px solid #CCC;
  text-align: left;
}
.order_faq_tbl th{
  width: 270px;
}
.order_faq_tbl td{
  
}

/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
body.pg_slug_contact .pg_header{
  margin-bottom: 0;
}
body.pg_slug_entry .pg_header{
  margin-bottom: 0;
}

.contact_header{
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #084589 0%, #071a2e 100%);
  color: #FFF;
  height: 370px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.contact_header.black{
  background: linear-gradient(to right, #111 0%, #333 100%);
}
.contact_header .box{
  
}
.contact_header .box .txt1{
  font-size: 57px;
}
.contact_header .box .txt1 i{
  font-size: 42px;
  margin-right: 10px;
}
.contact_header .box .txt2{
  
}
.contact_header .box .txt2 .s1{
  font-size: 24px;
}
.contact_header .box .txt2 .s2{
  font-size: 30px;
  margin-left: 25px;
}
.contact_header .bg_txt{
  
  font-size: 315px;
  color: #FFF;
  opacity: 0.03;
  position: absolute;
  z-index: -1;
  top:50%;
  right: -70px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  line-height: 1;
}


.pg_contact{
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  background: #F2F6FA;
  padding-top: 130px;
  padding-bottom: 130px;
}
.pg_contact .section.gray#sec2{
  background: #F5F5F5;
}
.pg_contact .section#sec3{
  
}

.contact_form_wrap{
  background: #FFF;
  box-shadow: 0 0 6px 1px #ccc;
  padding: 70px 100px 100px;
}
.contact_form_msg{
  color: #BE0000;
}

.pg_contact .privacy{
  margin-top: 80px;
}

.pg_privacy{
  margin-bottom: 150px;
}
