@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:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #181818;
}

/* 基本フォント: 明朝 */
/**/
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_header{
  /*padding: 15px 0;*/
}
.pg_header .container{
  
}

/* 共通の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{
  background: #1a5691;
  margin-bottom: 100px;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
}
header .hdr1 .hdr_logo{
  width: 165px;
  padding: 5px 0;
}
header .hdr1 .hdr_logo img{
  display: block;
}
header .hdr1 .hdr_contact{
  width: 200px;
  /*margin-left: 50px;*/
}
header .hdr1 .hdr_contact a{
  display: block;
  border-radius: 5px;
  background: #FFF;
  color: #181818;
  text-align: center;
  text-decoration: none;
  padding: 6px 0;
}
header .hdr1 .hdr_contact a:hover{
  background: #ff9800;
  color: #FFF;
}
header .hdr1 .hdr_contact a i{
  margin-right: 15px;
}
header .hdr1 .gnav{
  white-space: nowrap;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.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%;*/
  position: relative;
}
.gnav > ul > li + li{
  padding-left: 10px;
  margin-left: 4px;
}
.gnav > ul > li + li:before{
  content: "/";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #FFF;
}

.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: #fff;
  text-decoration: none;
  display: block;
  padding: 5px;
}
.gnav li a:hover{
  color: #ff9800;
}

.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: 550px;
  
  background: #CCC;
  background-image: url('/img/home/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{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{

}

footer .ftr1{
  background: #b8d8f8;
  margin-bottom: 30px;
}

footer .ftr1 .ftr_contact{
  display: flex;
  justify-content: space-between;
  padding: 25px 3.57%;
}
footer .ftr1 .ftr_contact a{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 44.44%;
  height: 70px;
  background: #FFF;
  border-radius: 5px;
  text-align: center;
}
footer .ftr1 .ftr_contact a .txt1{
  width: 100%;
  font-size: 18px;
}
footer .ftr1 .ftr_contact a .txt2{
  width: 100%;
  font-weight: 500;
  font-size: 32px;
  line-height: 1;
}
footer .ftr1 .ftr_contact a .txt2 i{
  font-size: 22px;
  font-style: normal;
}
footer .ftr1 .ftr_contact a .txt3{
  width: 100%;
  font-weight: 500;
  font-size: 22px;
  line-height: 1;
}



footer .ftr2{
  background: #1a5691;
  color: #FFF;
  padding: 20px 0 30px;
}
footer .ftr2 .container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  width: 35.71%;
}
footer .ftr2 .box2{
  width: 64.28%;
}

footer .ftr2 .ftr_addr{
  margin-top: 20px;
}

footer .ftr2 .ftr_links{
  display: flex;
  justify-content: center;
}
footer .ftr2 .ftr_links li{
  position: relative;
}
footer .ftr2 .ftr_links li + li{
  padding-left: 14px;
  margin-left: 10px;
}
footer .ftr2 .ftr_links li + li:before{
  content: "/";
  position: absolute;
  left: 0;
}

footer .copy{
  text-align: center;
  font-size: 12px;
  padding: 10px 0;
}
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: #1a5691;
  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;
}

/* ページ送り(一覧) */
.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: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.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: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページ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: #e0effd;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: bold;
  color: #1a5691;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
  display: flex;
  justify-content: space-around;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #1a5691;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
  color: #1a5691;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  
}
.contact_info .box3{
  color: #1a5691;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}

.contact_form{
  width: 100%;
}
.contact_form tr{
  border-top: 1px solid #b8d8f8;
  border-bottom: 1px solid #b8d8f8;
}
.contact_form th,
.contact_form td{
  padding: 15px;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
  /*background: #f0f0f0;*/
  width: 300px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 5px;
  color: #FFF;
  /*background: #b80000;*/
  /*font-size: 14px;*/
  font-size: 0;
  font-weight: normal;
  float: right;
  
  width: 20px;
  height: 20px;
  background-image: url('/img/recruit/require.png');
  background-repeat: no-repeat;
}

.contact_txt{
  display: flex;
  align-items: center;
}
.contact_txt .require{
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('/img/recruit/require.png');
  background-repeat: no-repeat;
}

.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: 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="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 .wpcf7-radio .wpcf7-list-item{
  width: 100%;
}

.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{
  text-align: center;
  padding: 30px 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{
  background: #398f14;
}


/* サイトマップ */
.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: 30px;
}
.privacy_items .item h4{
  font-size: 18px;
  
  border-left: 6px solid #bbbbbb;
  padding-left: 15px;
  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 230px;
}


.tt1{
  /*font-size: 20px;
  font-weight: bold;
  line-height: 1.4;*/
  background: #e0effd;
  font-size: 26px;
  font-weight: 500;
  text-align: center;
  position: relative;
  height: 100px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 72px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 100;
  color: #1a5691;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
}

.tt2{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  font-weight: 300;
  white-space: nowrap;
  margin-bottom: 40px;
}
.tt2:before,
.tt2:after{
  content: "";
  width: 100%;
  height: 2px;
  background: #b8d8f8;
}
.tt2:before{
  margin-right: 48px;
}
.tt2:after{
  margin-left: 48px;
}
.tt2 span{
  
}
.tt3{
  
}
.tt3 span{
  
}
.tt4{
  
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}

.read_more{
  
}
.read_more a{
  background: #b8d8f8;
  color: #1a5691;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  display: block;
  border-radius: 5px;
  padding: 12px 0;
  position: relative;
}
.read_more a:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 10px;
}

.lead_txt1{
  font-size: 28px;
  font-weight: 400;
  color: #1a5691;
  text-align: center;
  margin-bottom: 15px;
}
.lead_txt2{
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
.lead_mv{
  margin-top: 15px;
  text-align: center;
}

/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  margin-top: 100px;
}
.pg_home .section#sec3{
  margin-top: 120px;
}
.pg_home .section#sec4{
  margin-top: 100px;
}


/* 斑鳩について */
.home_about{
  margin-top: 25px;
}
.home_about h3{
  font-size: 22px;
  font-weight: 500;
  color: #1a5691;
  text-align: center;
  margin-bottom: 35px;
}
.home_about_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
.home_about_items .item{
  width: 33.333%;
  padding-left: 25px;
  padding-right: 25px;
}
.home_about_items .item + .item{
  
}
.home_about_items .item .inner{
  background: #f4f4f4;
  height: 100%;
}
.home_about_items .item .title{
  font-size: 22px;
  font-weight: normal;
  color: #1a5691;
  text-align: center;
  padding: 12px 0;
}
.home_about_items .item .img{
  text-align: center;
}
.home_about_items .item .txt{
  padding: 10px 15px;
  line-height: 2;
}

/* 製品紹介 */
.home_product_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -8.5px;
  margin-right: -8.5px;
}
.home_product_items .item{
  width: 20%;
  padding-left: 8.5px;
  padding-right: 8.5px;
}
.home_product_items .item + .item{
  
}
.home_product_items .item .inner{
  height: 100%;
  border: 1px solid #1a5691;
  /*padding-bottom: 65px;*/
  padding-bottom: 20px;
  position: relative;
}
.home_product_items .item .title{
  font-size: 15px;
  font-weight: normal;
  color: #1a5691;
  text-align: center;
  background: #f4f4f4;
  border-bottom: 1px solid #1a5691;
  height: 56px;
  line-height: 1.56;
  display: flex;
  justify-content: center;
  align-items: center;
  letter-spacing: -0.05em;
}
.home_product_items .item .img{
  padding: 10px;
  text-align: center;
}
.home_product_items .item .txt{
  padding: 0 10px;
  margin: 5px 0;
}
.home_product_items .item .read_more{
  padding: 0 5px;
  /*position: absolute;
  bottom: 20px;
  left: 10px;
  right: 10px;*/
}

/* オーダーメイド */
.home_ordermade{
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
.home_ordermade .title{
  width: 100%;
  font-size: 22px;
  font-weight: bold;
  background: #1a5691;
  color: #FFF;
  text-align: center;
  padding: 12px 0;
}
.home_ordermade .title span{
  font-size: 16px;
}
.home_ordermade .box1{
  width: 50%;
  padding: 5px 20px 10px;
  line-height: 2;
  background: #f4f4f4;
}
.home_ordermade .box2{
  width: 50%;
  background-image: url('/img/home/ordermade.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 285px;
}
.home_ordermade .box2 img{
  display: none;
}

/* 制作の流れ */
.home_flow_txt{
  text-align: center;
}
.home_flow_img{
  text-align: center;
  margin-top: 40px; 
}

/* 採用情報 */
.home_recruit{
  padding: 60px 75px;
  background-image: url('/img/home/recruit_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border: 1px solid #1a5691;
}
.home_recruit .inner{
  background: rgba(255,255,255,0.8);
  padding: 25px 25px 50px;
}
.home_recruit .title{
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  color: #1a5691;
  margin-top: 10px;
  text-shadow: 
    #FFF 2px 0px 1px, #FFF -2px 0px 1px,
    #FFF 0px -2px 1px, #FFF -2px 0px 1px,
    #FFF 2px 2px 1px, #FFF -2px 2px 1px,
    #FFF 2px -2px 1px, #FFF -2px -2px 1px,
    #FFF 1px 2px 1px, #FFF -1px 2px 1px,
    #FFF 1px -2px 1px, #FFF -1px -2px 1px,
    #FFF 2px 1px 1px, #FFF -2px 1px 1px,
    #FFF 2px -1px 1px, #FFF -2px -1px 1px,
    #FFF 1px 1px 1px, #FFF -1px 1px 1px,
    #FFF 1px -1px 1px, #FFF -1px -1px 1px;
}
.home_recruit .title span{
  font-size: 30px;
  display: block;
}
.home_recruit .txt1{
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;
  margin-top: 10px;
}
.home_recruit .txt2{
  font-size: 18px;
  font-weight: bold;
  line-height: 1.666;
  color: #dc4635;
  text-align: center;
  margin-top: 20px;
  text-shadow: 
    #FFF 2px 0px 1px, #FFF -2px 0px 1px,
    #FFF 0px -2px 1px, #FFF -2px 0px 1px,
    #FFF 2px 2px 1px, #FFF -2px 2px 1px,
    #FFF 2px -2px 1px, #FFF -2px -2px 1px,
    #FFF 1px 2px 1px, #FFF -1px 2px 1px,
    #FFF 1px -2px 1px, #FFF -1px -2px 1px,
    #FFF 2px 1px 1px, #FFF -2px 1px 1px,
    #FFF 2px -1px 1px, #FFF -2px -1px 1px,
    #FFF 1px 1px 1px, #FFF -1px 1px 1px,
    #FFF 1px -1px 1px, #FFF -1px -1px 1px;
}
.home_recruit .read_more{
  margin-top: 45px;
}
.home_recruit .read_more a{
  width: 250px;
  max-width: 100%;
  margin: 0 auto;
}


/* **********************************
 *  商品紹介
 * ********************************* */
.pg_product{
  
}
.pg_product .section#sec1{
  
}
.pg_product .section#sec2{
  margin-top: 100px;
}
.pg_product .section#sec3{
  
}

.product_om{
  display: flex;
  flex-wrap: wrap;
  margin-top: 45px;
}
.product_om .box1{
  width: 57.14%;
  background: #e0effd;
  padding: 0 35px;
}
.product_om .box2{
  width: 42.85%;
  background-image: url('/img/product/ordermade.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  min-height: 357px;
}
.product_om .box2 img{
  display: none;
}
.product_om .tt1{
  height: auto;
  margin-top: 70px;
  margin-bottom: 0px;
}
.product_om .tt1 span{
  position: static;
  transform: none;
  line-height: 1;
  width: 100%;
}
.product_om .txt{
  
}

/* 取扱い商品 */
.product_items{
  
}
.product_items .item{
  
}
.product_items .item + .item{
  margin-top: 70px;
}
.product_items .item .title{
  margin-bottom: 25px;
  background: #e0effd;
  border-left: 5px solid #b8d8f8;
  padding: 7px 10px;
  font-size: 18px;
  font-weight: normal;
}
.product_items .item .thumbs{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
}
.product_items .item .thumbs .img{
  width: 33.333%;
  padding-left: 25px;
  padding-right: 25px;
}
.product_items .item .thumbs .link{
  
}
.product_items .item .thumbs .read_more{
  background: #f0f0f0;
  height: 100%;
  padding: 0 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product_items .item .thumbs .read_more a{
  width: 100%;
  background: #005982;
  color: #FFF;
}


/* **********************************
 *  オーダーメイド製品
 * ********************************* */
.pg_ordermade{
  
}
.pg_ordermade .section#sec1{
  
}
.pg_ordermade .section#sec2{
  
}
.pg_ordermade .section#sec3{
  
}

.ordermade_about_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -25px;
  margin-right: -25px;
  margin-bottom: 75px;
  margin-top: 70px;
}
.ordermade_about_items .item{
  width: 33.333%;
  padding-left: 25px;
  padding-right: 25px;
}
.ordermade_about_items .item + .item{
  
}
.ordermade_about_items .item .inner{
  position: relative;
}
.ordermade_about_items .item .no{
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.ordermade_about_items .item .img{
  position: relative;
}
.ordermade_about_items .item .img img{
  width: 100%;
}
.ordermade_about_items .item .img .title{
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  color: #fff;
  background: #1a5691;
  height: 40px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
}
.ordermade_about_items .item .img .title:before{
  content: "";
  width: 12px;
  background: #1a5691;
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
}
.ordermade_about_items .item .img .title:after{
  content: "";
  
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 0 12px;
  border-color: transparent transparent transparent #0c355d;
  
  position: absolute;
  left: 100%;
  bottom: 100%;
}
.ordermade_about_items .item .img{
}
.ordermade_about_items .item .txt{
  line-height: 2; 
}



.ordermade_tech_tt{
  background: #1a5691;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 10px;
  margin-top: 30px;
}

.ordermade_tech_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 25px;
}
.ordermade_tech_items .item{
  width: 25%;
}
.ordermade_tech_items .item + .item{
  
}
.ordermade_tech_items .item .inner{
  position: relative;
}
.ordermade_tech_items .item .img{
}
.ordermade_tech_items .item .title{
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  background: rgba(255,255,255,0.8);
  height: 50px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.ordermade_tech_items .item .img{
}
.ordermade_tech_items .item .txt{
  line-height: 2; 
}

.ordermade_down{
  text-align: center;
  margin: 0 0 15px;
}

.ordermade_soudan{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  color: #1a5691;
}
.ordermade_soudan .box1{
  width: 67.85%;
}
.ordermade_soudan .box2{
  width: 32.14%;
  text-align: right;
}
.ordermade_soudan .box1 .title{
  font-size: 28px;
  font-weight: 300;
  margin-bottom: 20px;
}
.ordermade_soudan .box1 .title span{
  display: inline-block;
  position: relative;
}
.ordermade_soudan .box1 .title span:after{
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  background: #ffd800;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.ordermade_soudan .box1 ul{
  background: #e0effd;
  padding: 0 20px;
  height: 190px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
}
.ordermade_soudan .box1 ul li{
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  padding-left: 30px;
}
.ordermade_soudan .box1 ul li:before{
  content: "\f14a";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
}

/* **********************************
 *  
 * ********************************* */
.pg_case{
  
}
.pg_case .section#sec1{
  
}
.pg_case .section#sec2{
  
}
.pg_case .section#sec3{
  
}

.case_items{
  
}
.case_items .item{
  display: flex;
  flex-wrap: wrap;
  font-size: 18px;
  
  
}
.case_items .item + .item{
  
}
.case_items .item.head{
  color: #1a5691;
  font-weight: bold;
}
.case_items .item:not(.head){
  border-bottom: 1px dotted #bbbbbb;
  padding-top: 10px;
}

.case_items .item .title{
  /*width: 52.23%;*/
  width: 100%;
  color: #1a5691;
  font-weight: bold;
}
.case_items .item .planner{
  width: 25.89%;
}
.case_items .item .builder{
  width: 21.87%;
}

.case_items .item .title,
.case_items .item .planner,
.case_items .item .builder{
  padding: 10px 15px 10px;
  position: relative;
}
.case_items .item.head .title:after,
.case_items .item.head .planner:after,
.case_items .item.head .builder:after{
  content: "";
  display: block;
  /*width: calc(100% - 40px);*/
  width: 100%;
  height: 2px;
  background: #b8d8f8;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  margin-top: 95px;
}
.pg_company .section#sec3{
  margin-top: 95px;
}
.pg_company .section#sec4{
  margin-top: 95px;
}
.pg_company .section#sec5{
  margin-top: 95px;
}

.company_greeting{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.company_greeting .box1{
  width: 64.28%;
  line-height: 2.375;
}
.company_greeting .box2{
  width: 31.25%;
}
.company_greeting .box1 .name{
  font-size: 18px;
  font-weight: bold;
  text-align: right;
  margin-top: 20px;
}
.company_greeting .box1 .name span{
  font-size: 24px;
  margin-left: 15px;
}

.company_map{
  margin-top: 40px;
}

.company_tbl1{
  
}
.company_tbl1 tr{
  border-top: 1px solid #b8d8f8;
  border-bottom: 1px solid #b8d8f8;
}
.company_tbl1 th,
.company_tbl1 td{
  padding: 20px;
  text-align: left;
  vertical-align: top;
  letter-spacing: 0.065em;
}
.company_tbl1 th{
  width: 250px;
  font-weight: bold;
  color: #1a5691;
}
.company_tbl1 td{
  
}

.company_tbl2{
  margin-bottom: 60px;
}
.company_tbl2 .row{
  border-top: 1px solid #b8d8f8;
  border-bottom: 1px solid #b8d8f8;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 185px;
}
.company_tbl2 .row > .title,
.company_tbl2 .row > .deitals{
  padding: 20px;
  text-align: left;
  letter-spacing: 0.065em;
}
.company_tbl2 .row > .title{
  width: 250px;
  font-weight: bold;
  color: #1a5691;
}
.company_tbl2 .row > .details{
  width: calc(100% - 250px);
  padding: 0;
}

.company_tbl2 .sub{
  
}
.company_tbl2 .sub td{
  
}
.company_tbl2 .sub td{
  
}

.company_tbl_tt{
  background: #e0effd;
  border-left: 5px solid #b8d8f8;
  font-size: 18px;
  font-weight: 300;
  padding: 6px 10px;
  margin-bottom: 30px;
}

dl.list1{
  display: flex;
}
dl.list1 dt{
  width: 180px;
  position: relative;
}
dl.list1 dt:after{
  content: ":";
  position: absolute;
  right: 0;
}
dl.list1 dd{
  padding-left: 1em;
}
dl.list1 + dl.list1{
  margin-top: 5px;
}

/* **********************************
 *  採用情報
 * ********************************* */
.pg_recruit{
  
}
.pg_recruit .section#sec1{
  
}
.pg_recruit .section#sec2{
  margin-top: 75px;
}
.pg_recruit .section#sec3{
  margin-top: 75px;
}
.pg_recruit .section#sec4{
  margin-top: 75px;
}
.pg_recruit .section#sec5{
  margin-top: 200px;
}

.recruit_mynavi{
  text-align: center;
  margin-top: 55px;
}
.recruit_mynavi a{
  
}

.recruit_desc{
  
}
.recruit_desc .title{
  font-size: 21px;
  font-weight: bold;
  color: #1a5691;
  margin-bottom: 15px;
}
.recruit_desc .txt{
  line-height: 1.875;
}

.recruit_tt1{
  font-weight: bold;
  color: #000000;
}
.recruit_tt2{
  font-weight: bold;
  color: #ff0000;
}
.recruit_tt3{
  font-weight: bold;
  color: #1a5691;
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  margin-top: 75px;
}
.pg_contact .section#sec3{
  
}


.pg_contact .privacy{
  margin-top: 80px;
}
