@charset "UTF-8";
/*
Theme Name: MY-THEME
*/

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/
@font-face {
  font-family: "Impact";
  src: url(css/fonts/impact.woff2) format("woff2"),
  url(css/fonts/impact.woff) format("woff"),
  url(css/fonts/impact.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-family:  '游ゴシック体','Yu Gothic', 'YuGothic',  "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.666;
  color: #383838;
}

/* 基本フォント: 明朝 */
/**/
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:hover{
  opacity: 0.8;
}
/*
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: 1120px;
  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;*/
  background-color: #e5e5e5;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-bottom: 145px;
}
.pg_header .container{
  position: relative;
  height: 310px;
}

.pg_header .tt1{
  display: flex;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
  width: 100%;
  
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.3em;
}
.pg_header .tt1 .box{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45.45%;
  height: 90px;
  margin: 0 2.27%;
  background: #FFF;
  color: #043786;
  box-shadow: 0px 1px 1.4px 0.6px rgba(8, 1, 3, 0.2);
  font-size:18px;
}

.pg_header .tt1 a.box{
  text-decoration: none;
  position: relative;
}
.pg_header .tt1 a.box:after{
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
}

/* 共通の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{
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hdr1 .hdr_logo{
  display: flex;
  width: 450px;
  height: 100%;
  margin-left: 10px;
}
header .hdr1 .hdr_logo img{
  display: block;
}
header .hdr1 .hdr_menu{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 56px;
}

header .hdr_contact{
  width: 160px;
  height: 100%;
  margin-left: 20px;
}
header .hdr_contact a{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: #023793;
  color: #FFF;
  text-decoration: none;
}
header .hdr_contact a:hover{
  opacity: 0.8;
}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.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;
  white-space: nowrap;
  
  border-right: 1px solid;
  line-height: 1;
  padding: 0 20px;
}
.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;
}
.gnav li a:hover{
}

.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: 780px;
  
  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;
  margin-bottom: 50px;
}
.mv .mv_box{
  margin-left: -38%;
  margin-top: -18.5%;
}
.mv .mv_box .txt{
  font-size: 32px;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{

}

footer .ftr1{
}
footer .ftr2{
  margin-top: 30px;
}
footer .ftr3{
  margin-top: 45px;
  background: #023793;
  color: #FFF;
  padding: 10px 0;
}

footer .ftr_logo{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .ftr_logo a{
  width: 450px;
}
footer .ftr_logo:after{
  content: "";
  width: calc(100% - 160px - 15px);
  height: 1px;
  background: #023793;
}

footer .ftr2>.container{
  display: flex;
  justify-content: space-between;
}
footer .ftr2 .box1{
  line-height: 1.625;
}
footer .ftr2 .box2{
  
}
footer .ftr2 .box2 a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 56px;
  background: #023793;
  color: #FFF;
  text-decoration: none;
  font-weight: 500;
}
footer .ftr2 .box3{
  
}

footer .ftr3>.container{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .ftr3 .box1{
  
}
footer .ftr3 .box2{
  
}

footer .ftr_links{
  display: flex;
  font-size: 14px;
}
footer .ftr_links li{
  padding: 0 20px;
  line-height: 1;
}
footer .ftr_links li + li{
  border-left: 1px solid;
}

footer .copy{
  text-align: center;
  font-size: 12px;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 37%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 5px 0 3px;
  background: #023793;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li a i{
  font-size: 22px;
  margin-bottom: 3px;
  display: block;
}

/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 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: 100px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
.contact_info{
  background: #f0f0f0;
  text-align: center;
  padding: 20px;
}
.contact_info .box1{
  font-size: 20px;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 20px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #8c8c8c;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
}
.contact_info .box2 .tel a{
  display: block;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
}

.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}
.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-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.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_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 50px;
}



.tt1{
  /*font-size: 20px;
  font-weight: bold;
  line-height: 1.4;*/
}
.tt1 span{
  /*display: block;
  text-align: center;
  font-size: 12px;*/
}
.tt2{
  font-size: 18px;
  font-weight: bold;
  color: #023793;
  text-align: center;
  line-height: 1;
  position: relative;
  padding: 50px 0;
  margin-bottom: 30px;
}
.tt2 span{
  font-family: "Impact";
  font-weight: normal;
  font-size: 42px;
  margin-right: 20px;
}

.tt2:before,
.tt2:after{
  content: "";
  display: block;
  width: 43px;
  height: 43px;
  background-image: url('/img/tt2_bg.png');
  background-size: contain;
  position: absolute;
  
}
.tt2:before{
  top: 0;
  left: 50%;
  -webkit-transform: translateX(25px);
  transform: translateX(25px);
}
.tt2:after{
  bottom: 0;
  right: 50%;
  -webkit-transform: translateX(-25px);
  transform: translateX(-25px);
}

.tt3{
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  line-height: 2.25;
  position: relative;
  /*height: 55px;*/
  /*height: 3.4375em;*/
  height: 36px;
  padding: 0 12px;
  color: transparent;
  margin-bottom: 35px;
  background: #043786;
}
.tt3 .t1{
  font-family: "Impact";
  font-weight: normal;
  /*font-size: 62px;*/
  font-size: 3.875em;
  line-height: 0.8225;
  margin-right: 25px;
  margin-bottom: 5px;
  background-image: url('/img/tt3_mask.png');
  background-repeat: repeat-x;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tt3 .t2{
  color: #ffffff;
  font-weight: normal;
}

/*.tt3:before{
  content: "";
  display: block;
  background: #043786;
  height: 2.25em;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}*/

.tt3.col2 .t1{
  background-image: url('/img/tt3_mask2.png');
}
.tt3.col2{
  background: #e06623;
}

/*
@supports (-ms-ime-align: auto) {
  .tt3{
    display:block;
  }
}
*/
@media all and (-ms-high-contrast: none) {
  *::-ms-backdrop, .tt3{
    height: auto;
  }
  *::-ms-backdrop, .tt3 .t1 {
    background: #043786;
    color: #FFF;
    
    height: 65px;
    padding: 5px 12px;
  }
  *::-ms-backdrop, .tt3.col2 .t1 {
    background: #e06623;
  }
}

.tt4{
  font-size: 22px;
  font-weight: bold;
  color: #171717;
  border-bottom: 3px solid #043786;
  padding-bottom: 8px;
  margin-bottom: 35px;
}
.tt4 span{
  
}
.tt5{
  
}
.tt5 span{
  
}


/* **********************************
 *  Home
 * ********************************* */
.pg_home{
  
}
.pg_home .section#sec1{
  
}
.pg_home .section#sec2{
  margin-top: 70px;
}
.pg_home .section#sec3{
  /*margin-top: 70px;*/
  padding-top: 70px;
  background-color: #d0e2fd;
}
.pg_home .section#sec4{
  margin-top: 50px;
}
.pg_home .section#sec5{
  margin-top: 95px;
}

/* POWER */
.power_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}
.power_items .item{
  width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.power_items .item .icon{
  /*transform: translateY(50%);*/
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}

.power_items .item .img{
  margin-top: 17px;
}
.power_items .item .title{
  margin-top: 15px;
  font-size: 18px;
  text-align: center;
}
.power_items .item .txt{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.85;
}

/* TRANSPORT */
.pg_home .section#sec2 .wrapbox{
  background-color: #d0e2fd;
  background-image: url('/img/home/bg1.jpg');
  background-position: center top;
  background-repeat: no-repeat;
  padding-top: 210px;
  padding-bottom: 10px;
}


.transport_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.transport_items .item{
  width: 33.333333%;
  padding-left: 8px;
  padding-right: 8px;
  position: relative;
}
.transport_items .item .img{
  position: relative;
}
.transport_items .item .img:before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(0 0 0 / 22%);
}
.transport_items .item .title{
  font-size: 16px;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 15px;
}
.transport_items .item .title span{
  font-size: 26px;
  font-family: "Impact";
  font-weight: normal;
  display: block;
}

.read_more{
  margin-top: 30px;
}
.read_more a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 320px;
  height: 50px;
  margin: 0 auto;
  background: #FFF;
  border: 1px solid #023793;
  border-radius: 10px;
  text-decoration: none;
}
.transport_items + .read_more{
  
}


/* VEHICLE */
.vehicle_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -6.5px;
  margin-right: -6.5px;
}
.vehicle_items .item{
  width: 25%;
  padding-left: 6.5px;
  padding-right: 6.5px;
  margin-bottom: 25px;
}
.vehicle_items .item .img{
  
}
.vehicle_items .item .title{
  margin-top: 10px;
  text-align: center;
}


/* MOVIE */
.movie_items{
  width: 700px;
  max-width: 100%;
  margin: 0 auto;
}

/* ページリンク */
.page_items{
  
}
.page_items .item{
  height: 370px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.page_items .item + .item{
  margin-top: 10px;
}
.page_items .item.item1{
  background-image: url('/img/home/bg2.jpg');
}
.page_items .item.item2{
  background-image: url('/img/home/bg3.jpg');
}
.page_items .item.item3{
  background-image: url('/img/home/bg4.jpg');
}
.page_items .item .tt2{
  color: #FFF;
  margin-bottom: 0;
}
.page_items .item .tt2:before, 
.page_items .item .tt2:after{
  background-image: url('/img/tt2_bg2.png');
}

/* **********************************
 *  物流事業
 * ********************************* */
.pg_service{
  
}
.pg_service .section#sec1{
  
}
.pg_service .section#sec2{
  margin-top: 100px;
}

.service_items1{
  
  
}
.service_items1 .item{
  
}
.service_items1 .item + .item{
  margin-top: 50px;
}
.service_items1 .desc1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_items1 .desc1 .box1{
  width: 31.8181%;
}
.service_items1 .desc1 .box2{
  width: 64.5454%;
}
.service_items1 .desc1 .box2.w{
  width: 100%;
}
.service_items1 .desc1 h3{
  font-size: 22px;
  color: #d81618;
  margin-bottom: 5px;
}
.service_items1 .desc1 p{
  line-height: 2;
}

.service_items1 .desc2{
  margin-top: 25px;
}
.service_items1 .desc2 h4{
  background: #eeeeee;
  color: #043786;
  font-size: 18px;
  padding: 5px 12px;
  border: 1px solid #043786;
}
.service_items1 .desc2 .vehicle_tbl{
  border: 1px solid #043786;
  border-top: 0;
}
.service_items1 .desc2 .vehicle_tbl .td1{
  /*width: 375px;*/
  width: 34.0909%;
  padding: 9px;
  border-right: 1px solid #043786;
  vertical-align: top;
}
.service_items1 .desc2 .vehicle_tbl .td2{
  padding: 0;
  vertical-align: top;
}
.service_items1 .desc2 .box1{
  
}
.service_items1 .desc2 .box2{
  
}
.service_items1 .desc2 .box3{
  padding: 10px;
}
.service_items1 .desc2 .sub{
  
}
.service_items1 .desc2 .sub th,
.service_items1 .desc2 .sub td{
  text-align: center;
  font-weight: bold;
  padding: 7px 5px;
}
.service_items1 .desc2 .sub th{
  background: #cfd9e8;
}
.service_items1 .desc2 .sub td{
  border-top: 1px solid #043786;
  border-bottom: 1px solid #043786;
}

.service_items1 .desc2 .sub th + th,
.service_items1 .desc2 .sub td + td{
  border-left: 1px solid #043786;
}

.pg_service .section#sec2 .service_items1{
  margin-bottom: 55px;
} 

.service_items2_tt{
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
}
.service_items2{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
  margin-bottom: 75px;
}
.service_items2 .item{
  width: 25%;
  padding-left: 5px;
  padding-right: 5px;
}
.service_items2 .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.service_items2 .item .img:before{
  content: "";
  display: block;
  padding-top: 70%;
}
.service_items2 .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
}
/*.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%);
}*/

/* **********************************
 *  安心・安全
 * ********************************* */
.pg_safety{
  
}
.pg_safety .section#sec1{
  
}
.pg_safety .section#sec2{
  margin-top: 80px;
}

.safety_items1{
  
}
.safety_items1 .item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.safety_items1 .item + .item{
  margin-top: 30px;
}
.safety_items1 .item .box1{
  width: 55%;
}
.safety_items1 .item .box2{
  width: 40.17%;
}
.safety_items1 .item .title{
  font-size: 18px;
  
}
.safety_items1 .item .title span{
  display: inline-block;
  min-width: 360px;
  max-width: 100%;
  padding: 8px 20px;
  color: #FFF;
  background-image: url('/img/safety/bg1.jpg');
  border-radius: 5px;
}
.safety_items1 .item .txt{
  line-height: 1.875;
  margin-top: 10px;
}

.safety_items2{
  display: flex;
  flex-wrap: wrap;
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.safety_items2 .item{
  width: 25%;
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.safety_items2 .item .img{
  background: #FFF;
  box-shadow: 0 0 5px 1px rgba(0,0,0,0.35);
  padding: 10px;
  text-align: center;
}
.safety_items2 .item .title{
  font-weight: bold;
  background-image: url('/img/safety/bg2.jpg');
  border-radius: 5px;
  margin-top: 15px;
  padding: 5px 5px;
  text-align: center;
}