@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', "ＭＳ Ｐゴシック", "MS PGothic", sans-serif, "Zen Maru Gothic", "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  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 img{
  opacity: 0.8;
}


.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}


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: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

@media (min-width: 576px){
  .container {
    width: 540px;
  }
}
@media (min-width: 768px){
  .container {
    width: 720px;
  }
}

@media (min-width: 992px){
  .container {
    width: 960px;
  }
}
@media (min-width: 1200px){
  .container {
    width: 1140px;
  }
}



.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;
}
.pg_header .container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 150px;
}
.pg_header .container .tt1{
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #FFF;
  text-align: left;

}
.pg_header .container .tt1 span{
  margin-bottom: 15px;
}
.pg_header .container .tt1 span img{

}
@media (max-width:767px){
  .pg_header .container .tt1 span img{
    height: 30px;
  }
}
@media (min-width:768px){
  .pg_header .container{
    height: 350px;
  }
  .pg_header .container .tt1 span img{
    height: 40px;
  }
}
@media (min-width:1024px){
  .pg_header .container{
    height: 400px;
  }
}
@media (min-width:1200px){
  .pg_header .container{
    height: 500px;
  }
  .pg_header .container .tt1 span img{
    height: auto;
  }
}

/* 共通の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;
}
*/





/* 検索フォーム */
.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: 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;
}


.breadcrumb{
  display: flex;
  list-style: none;
  margin-bottom: 50px;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb{
  margin-top: 20px;
}
.breadcrumb li{
  /*display: inline;*/
  white-space: nowrap;
  padding-right: 12px;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:last-child{
  font-weight: 400;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  content: "＞";
  font-family: "Noto Sans JP";
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.075em;
  position: absolute;
  top: 50%;
  right: 0;
  left: 51px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.breadcrumb li{
  font-size: 12px;
  letter-spacing: 0.075em;
  font-weight: 400;
}
/*.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%);
}*/

@media (min-width:768px){
  .breadcrumb{
    margin-bottom: 102px;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

}



/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding: 0 0 50px;
}
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{

}
.read_more a{
  display: block;
  width: 290px;
  max-width: 100%;
  margin: 0 auto;
  padding: 15px 0;
  border-radius: 10px;
  background: #00a7c6;
  color: #FFF;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  position: relative;
}
.read_more a:after{
  /*content: "\f054";*/
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* **********************************
 *  共通
 * ********************************* */
.img_fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
}
.anchor{
  display: block;
  padding-top: 50px;

}

/* **********************************
 *  01 Home
 * ********************************* */
.pg_home {

}
.pg_home .section#sec1{
  background-color: #f9f9f9;
}
.pg_home .section#sec2{
  margin-top: 50px;
}

.pg_home .section#sec3{
  margin-top: 40px;
}
.pg_home .section#sec4{
  margin-top: 55px;
}


/* sec1 */

.bu_wrap{
  padding-top: 50px;
  padding-bottom: 20px;
}
.bu_tt{

}
.bu_tt_en {
  width: 80%;
  margin-bottom: -12px;
}
.bu_tt_jp{
  font-size: 15px;
  letter-spacing: 0.2em;
  color: #19467e;
  line-height: 3;
}
.bu_text_wrap{

}

.bu_text_top {
  font-size: 15.3px;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.bu_text_bottom{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.bu_text_bottom {
  padding-top: 18px;
}
/* sec2 */

.home_trans_wrap{

}
.home_trans_inner{

}
.home_trans_b1b2_wrap{
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
/* sec2 box1*/
.home_trans_box1{
  width: 100%
}
.home_trans_box1 {
  padding-bottom: 30px;
}
.home_trans_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 78.386%;
}
.home_trans_img.img_fit:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff100;
  bottom: -5px;
  right: -5px;
  position: absolute;
  z-index: -1;
}
/* sec2 box2*/
.home_trans_box2 {
  width: 100%;
  padding: 0px 10px 0 10px;
  background-color: #f9f9f9;
}

.home_trans_box2:after {
  content: "";
  display: block;
  width: 120%;
  height: 84%;
  background-color: #f9f9f9;
  bottom: 5px;
  right: -25px;
  position: absolute;
  z-index: -2;
}

.home_trans_box2_inner{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_trans_box2_item {
  width: 33.285%;
  margin-bottom: 14px;
}
.home_trans_box2_img {
  width: 88%;
  margin: 0 auto;
}
.home_trans_box2_img{
  border:1px solid #c0c0c0;
}

.home_trans_box2_img.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}

.home_trans_box2_txt{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0em;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 4px;
}
/* sec2 box3*/

.home_trans_box3 {
  position: relative;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.home_trans_box3_txt a:before{
  content: "";
  position: absolute;
  background-color: #19467e;
  top: 0%;
  right: 0px;
  padding: 24px 0;
  width: 61px;
}
.home_trans_box3_txt a:hover:before{
  content: "";
  position: absolute;
  background-color: #c0c0c0;
}

.home_trans_box3_txt a {
  font-size: 13px;
  font-weight: 700;
  line-height: 3.7;
  letter-spacing: 0.075em;
  display: block;
  background: #c0c0c0;
  padding-left: 16px;
}
.home_trans_box3_txt a:hover {
  display: block;
  background: #19467e;
  color: #fff;
  transition: 0.2s;
}
.home_trans_box3_txt a:after{
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color: #fff;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.home_trans_box3_txt a:hover:after{
  position: absolute;
  color: #fff;
  right: 8px;
}

.home_trans_box3_txt a:hover {
  text-decoration: none;
}
/* se3 運搬・搬入搬出・クレーン作業下 */

.home_3box_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
.home_3box_item {
  position: relative;
  width: 80%;
  margin-bottom: 30px;
}
.home_3box_item:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff100;
  bottom: -5px;
  right: -5px;
  position: absolute;
  z-index: -1;
}

.home_3box_item_inner{
  display: block;
}
.home_3box_img.img_fit{

}
.home_3box_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 75.386%;
}
.home_3box_text_wrap{

}
.home_3box_text{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  font-weight: 700;
  position: relative;
}
.home_3box_text a {
  position: relative;
  display: block;
  background-color: #c4cbd3;
  width: 100%;
}
.home_3box_text a {
  padding: 8px 0px 6px 18px;
}
.home_3box_text a:hover {
  position: relative;
  display: block;
  background-color: #19467e;
  color: #fff;
}
.home_3box_text a:before {
  content: "";
  position: absolute;
  background-color: #19467e;
  top: 0%;
  right: 0px;
  padding: 23px 0;
  width: 50px;
}
.home_3box_text a:hover:before {
  content: "";
  position: absolute;
  background-color: #c4cbd3;
}
.home_3box_text a:after {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color: #fff;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
}
.home_3box_text a:hover:after {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 7px;
}
.home_3box_text a:hover {
  text-decoration: none;
}

/* sec3 リンク青バナー部 */
.home_3box_linkt_wrap{
  margin: 0 auto;
}

.home_3box_linkt_wrap {
  margin-top: 0px;
}
.home_3box_link_text{
  position: relative;
  font-size:15px;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.home_3box_link_text a {
  position: relative;
  display: block;
  background-color: #19467e;
  border: 1px solid #19467e;
  color: #fff;
  width: 260px;
  padding: 15px 0;
  text-align: center;
  z-index: 2;
}
.home_3box_link_text a:hover{
  position: relative;
  display: block;
  background-color: #fff;
  color: #19467e;
  border: 1px solid #19467e;
}
.home_3box_link_text a:hover{
  text-decoration: none;
}
.home_3box_link_text:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #19467e;
  top: 5px;
  left: 1%;
  position: absolute;
  z-index: 1;
}
.home_3box_link_text:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #19467e;
  background-color: #19467e;
  top: 6px;
  left: 2%;
  position: absolute;
  z-index: 1;
}
.home_3box_link_text:before {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color:#fff;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  z-index: 3;
}
.home_3box_link_text:hover:before {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color:#19467e;
  right: 15px;
  z-index: 3;
}
.home_3box_link_text_wrap {
  width: 260px;
  margin: 0 auto;
}
/* sec4 */
.home_bottom_wrap{

}
.home_bottom{

}
.home_bottom_item {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.home_bottom {
  margin-bottom: 90px;
}
.home_bottom_box1{
  position: relative;
  width: 100%
}
.home_bottom_box1:before {
  content: "";
  display: block;
  width: 184%;
  height: 146.3%;
  background-color: #f9f9f9;
  bottom: -10%;
  right: 0;
  left: 12.167%;
  position: absolute;
  z-index: -1;
}
.home_bottom_title_en img {
  display: block;
  max-height: 35px;
}
.home_bottom_title_jp {
  margin-top: 2px;
}
.home_bottom_title_jp {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #19467e;
}
.home_bottom_txt_middle_title {
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #181818;
}
.home_bottom_txt_middle_title {
  margin-top: 10px;
}

.home_bottom_txt {
  margin-top: 4px;
  margin-bottom: 26px;
}

.home_bottom_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
  color: #181818;
}
.home_bottom_box2{
  width: 100%
}
.home_bottom_box1{
  order: 2;
}
.home_bottom_box2{
  order: 1;
}

.home_bottom_img.img_fit {
  position: relative;
}

.home_bottom_img.img_fit {
  margin-bottom: 40px;
  margin-left: 10px;
}

.home_bottom_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 71.04%;
}
.home_bottom_img.img_fit:after {
  content: "";
  display: block;
  width: 255px;
  height: 181px;
  background-color: #fff100;
  bottom: -5px;
  left: -5px;
  position: absolute;
  z-index: -1;
}
.home_bottom:last-child .img_fit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #c4cbd3;
}
/* sec5 LINK部分*/
.bt_link_wrap{

}
.bt_link_wrap a {
  text-decoration: none;
}

.bt_link_item {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.bt_link_item_box1, .bt_link_item_box2 {
  background-color: #19467e;
  color: #fff;
  border: 1px solid #fff;
  border-collapse: collapse;
  position: relative;
  z-index: 1;
}


.bt_link_item_box1:hover, .bt_link_item_box2:hover {
  /*background-color: #c4cbd3;*/
  background-color: #1b3554;
  transition: 0.2s;
}
.bt_link_item_box1, .bt_link_item_box2 {
}
.bt_link_item_box1 a,
.bt_link_item_box2 a{
  display: block;
  padding: 29px 13px 63px 23px;
}
.bt_link_item_box1:before, .bt_link_item_box2:before {
  content: "";
  position: absolute;
  background-color: #c4cbd3;
  bottom: 0%;
  right: 0px;
  padding: 23px 0;
  width: 50px;
}
.bt_link_item_box1:hover:before, .bt_link_item_box2:hover:before {
  content: "";
  position: absolute;
  background-color: #19467e;
  /*background-color: #1b3554;*/
  bottom: 0%;
  right: 0px;
  padding: 23px 0;
  width: 50px;
  transition: 0.2s;
}

.bt_link_item_box1:after, .bt_link_item_box2:after {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color: #000;
  right: 14px;
  bottom: -10px;
  transform: translateY(-50%);
  z-index: 5;
}
.bt_link_item_box1:hover:after, .bt_link_item_box2:hover:after {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  color: #fff;
  right: 7px;
  bottom: -10px;
  transform: translateY(-50%);
  z-index: 5;
}
.bt_link_item_box1{
  width: 100%;
}
.bt_link_item_box2{
  width: 100%;
}

.bt_link_item{

}
.bt_link_txt_title_jp {
  font-size: 13px;
  padding: 8px 0 22px 0;
}
.bt_link_txt {
  font-size: 14px;
}



@media (min-width:768px){
  .pg_home .section#sec1{
    margin-top: 0px;
  }
  .pg_home .section#sec2 {
    margin-top: 120px;
  }
  .pg_home .section#sec3{
    margin-top: 117px;
  }
  .pg_home .section#sec4{
    margin-top: 152px;
  }
  .pg_home .section#sec5{
    margin-top: 257px;
  }
  /* sec1 768px */
  .bu_wrap{
    padding-top: 152px;
    padding-bottom: 53px;
  }
  .bu_tt_en {
    width: 100%;
    margin-bottom: 0px;
  }
  .bu_text_top {
    margin-top: 29px;
  }
  .bu_text_top{
    font-size: 24.3px;
    line-height: 1.5;
    letter-spacing: 0.075em;
  }
  /* sec2 768px */
  /* sec2 box1*/
  .home_trans_box1{
    width: 40.09%
  }
  .home_trans_box1 {
    padding-bottom: 0px;
  }
  /* sec2 box2*/
  .home_trans_box2 {
    width: 59.90%;
    padding: 0px 26px 0 26px;
  }
  .home_trans_box2:after {
    content: "";
    display: block;
    width: 91.444%;
    height: 111%;
    background-color: #f9f9f9;
    bottom: 0;
    right: 0;
    position: absolute;
    z-index: -2;
  }
  .home_trans_box2_item {
    width: 18.285%;
    margin-bottom: 20px;
  }
  /* sec2 box3*/
  .home_trans_box3{
    position: absolute;
    width: 68.4%;
    right: 0px;
    bottom: -59px;
  }
  .home_trans_box3_txt a {
    padding-left: 16.5%;
  }
  .home_trans_box3_txt a {
    font-size: 16px;
    line-height: 3;
  }
  /* sec3 クレーン作業下3BOX 768px */
  .home_3box_linkt_wrap {
    margin-top: 45px;
  }
  .home_3box_item{
    width: 31.531%;
  }
  .home_3box_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_3box_item {
    margin-bottom: 0px;
  }
  .home_3box_linkt_wrap {
    margin-top: 85px;
  }
  .home_3box_link_text a{
    width: 320px;
  }

  /* sec4 768px */
  .home_3box_link_text_wrap{
    width: 320px;
    margin-left: 0px;
  }
  .home_bottom {
    margin-bottom: 166px;
  }
  .home_bottom_item {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_bottom_box1{
    width: 52.70%
  }

  .home_bottom_title_en img {
    display: block;
    max-height: 100%;
  }
  .home_bottom_img.img_fit {
    margin-bottom: 0px;
    margin-left: 0px;
  }

  .home_bottom_title_jp {
    margin-top: 14px;
  }
  .home_bottom_txt_middle_title{
    font-size: 28px;
  }
  .home_bottom_txt_middle_title{
    margin-top: 45px;
  }
  .home_bottom_txt{
    margin-top: 20px;
    margin-bottom: 52px;
  }
  .home_bottom_box2{
    width: 40.09%
  }
  .home_bottom:nth-child(even) .home_bottom_box1 {
    order: 2;
  }
  .home_bottom:nth-child(even) .home_bottom_box2 {
    order: 1;
  }
  .home_bottomr:nth-child(odd) .home_bottom_box1 {
    order: 1;
  }
  .home_bottom:nth-child(odd) .home_bottom_box2 {
    order: 2;
  }
  /* sec4 768px 写真幅*/
  .home_bottom:nth-child(odd) .home_bottom_box2_inner {
    margin-right: -205px;
  }

  .home_bottom:nth-child(even) .home_bottom_box2_inner {
    margin-left: -22px;
  }
  /* sec4 768px グレー背景*/
  .home_bottom_box1:before {
    content: "";
    display: block;
    width: 198%;
    height: 92.3%;
    background-color: #f9f9f9;
    bottom: -9%;
    right: 0;
    left: 27.167%;
    position: absolute;
    z-index: -1;
  }
  .home_bottom:nth-child(even) .home_bottom_box1:before {
    content: "";
    display: block;
    width: 198%;
    height: 92.3%;
    background-color: #f9f9f9;
    bottom: -12%;
    left: -125%;
    right: 0;
    position: absolute;
    z-index: -1;
  }
  /* sec4 768px TRUCK写真部分*/

  .home_bottom_box2_item {
    width: 100%;
  }

  .home_bottom_box2_item_wrap {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .home_bottom_box2_item {
    margin-bottom: 11px;
  }
  /* sec5 */
  .bt_link_item {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}


@media (min-width:1024px){
  .home_bottom_box2_item {
    width: 49%;
  }

  .home_bottom_box2_item_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  /* sec4 768px TRUCK 黄色打消し*/
  .home_bottom_img.img_fit.none:after {
    display: none;
  }
  /* sec4 768px TRUCK 左幅写真部*/
  .home_bottom:nth-child(even) .home_bottom_box2_inner {
    margin-left: -22px;
  }
  .home_bottom_img.img_fit.none.line:after {
    content: "";
    display: block;
    width: 79%;
    height: 79%;
    background-color: #fff100;
    bottom: -6px;
    left: 23%;
    position: absolute;
    z-index: -1;
  }
  /* sec5 768px */
  .bt_link_item_box1, .bt_link_item_box2 {

  }
  .bt_link_item_box1 a,
  .bt_link_item_box2 a{
    padding: 41px 9px 67px 32px;
  }

}
@media (min-width:1200px){
  .bt_link_txt_title_jp {
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 15px 0 43px 0;
  }
  .bt_link_txt {
    font-size: 18px;
    line-height: 2;
    letter-spacing: 0.075em;
  }

}
@media (min-width:1520px){
  .home_bottom:nth-child(even) .home_bottom_box2_inner {
    margin-left: -205px;
  }
  /* sec4 768px TRUCK 左幅写真部*/
  .bt_link_item_box1{
    margin-left: -205px;
  }
  .bt_link_item_box2{
    margin-right: -205px;
  }
  .bt_link_item_box1, .bt_link_item_box2 {

  }
  .bt_link_item_box1 a,
  .bt_link_item_box2 a{
    padding: 84px 38px 121px 105px;
  }
}


/* **********************************
 *  02 事業案内 business
 * ********************************* */
.pg_busi {

}
.pg_busi .section#sec1{

}
.pg_busi .section#sec2{
  margin-top: 50px;
  border-top: 2px solid #19467e;
  background-color: #f9f9f9;
}
.pg_busi .section#sec3{
  margin-top: 20px;
}
.pg_busi .section#sec4{
  margin-top: 60px;
}
.busi_tt_wrap{
  margin-bottom: 30px;
}
.busi_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
  margin-bottom: 21px;
}
.busi_tt_text{
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.075em;
}

/* リンクエリア */
.busi_select_wrap{

}
.busi_selectitem {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.busi_selectitem_link{

}
.busi_selectitem .item_link{
  position: relative;
  font-size: 15px;
  line-height: 3.7;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: center;
  background: #19467e;
  border: 1px solid #19467e;
  color: #fff;
  width: 100%;
  z-index: 1;
}
.busi_selectitem .item_link{
  margin-bottom: 15px;
}
.busi_selectitem .item_link a{
  position: relative;
  display: block;
  text-decoration: none;
  z-index: 2;
}
.busi_selectitem .item_link a:hover{
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  color:  #19467e;
  width: 100%;
  z-index: 2;
}

.busi_selectitem .item_link a:before {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 9px;
  top: -8%;
  transform: translateY(-50%);
  transition: 0.2s;
  transform: rotate(90deg);
  transition: 0.2s all;
}
/*.busi_selectitem .item_link a:hover:before {
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: -8%;
  transform: translateY(-50%);
  transition: 0.2s;
  transform: rotate(90deg);
}*/
.busi_select_wrap .busi_selectitem .item_link:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #19467e;
  top: 6px;
  left: 1%;
  position: absolute;
}
.busi_select_wrap .busi_selectitem .item_link:hover:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #19467e;
  border: 1px solid #19467e;
  top: 6px;
  left: 1%;
  position: absolute;
}
.busi_selectitem .txt{

}
.pg_busi .section#sec1 .busi_base_wrap {
  margin-top: 0px;
}

/* text-pixエリア */
.busi_base_wrap {
  margin-top: 0px;
}
.busi_base {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
}
.busi_base_box1{
  width: 100%;
  position: relative;
  padding-left: 15px;
}
.busi_base_box1:before {
  content: "";
  display: block;
  width: 185%;
  height: 150.3%;
  background-color: #f9f9f9;
  bottom: -6%;
  right: 0;
  left: 27.167%;
  position: absolute;
  z-index: -1;
}
.busi_base_title_txt {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.busi_base_title_txt {
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}
.busi_base_txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
}

.busi_base_title_txt:before {
  content: "";
  position: absolute;
  background: #19467e;
  top: 6%;
  left: -5%;
  padding: 17px 0;
  width: 3px;
}
.busi_base_box2{
  width: 100%;
  position: relative;
}



.busi_base_box2_inner {
  position: relative;
}

.busi_base_img.img_fit:before {
  content: "";
  display: block;
  padding-top: 71.04%;
}
.busi_base_img.img_fit {
  margin-right: 0px;
}
.busi_base_img.img_fit:after {
  /*content: "";
  display: block;
  width: 255px;
  height: 181px;
  background-color: #fff100;
  bottom: -5px;
  left: -5px;
  position: absolute;
  z-index: -1;*/
}

.busi_base_box2_inner:after{
  content: "";
  display: block;
  width: 255px;
  height: 181px;
  background-color: #fff100;
  bottom: -5px;
  left: -5px;
  position: absolute;
  z-index: -1;
}

/* sec2 */
/* イラストエリア */

.busi_example_wrap{
  position: relative;
}
.busi_example_wrap {
  position: relative;

}


.busi_example_tt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em;
  text-align: center;
  margin-top: 15px;
}
.busi_example_speech{

}
.busi_example_speech_txt{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
  margin-bottom: 10px;
}
.busi_example_txt {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}

.busi_example_item_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 30px;
  justify-content: center;
}

.busi_example_item{

}
.busi_example_item {
  width: 44%;
}
.busi_example_item_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
}
.busi_example_img.img_fit {
  border: 1px solid #000;
}
.busi_example_item .img_fit:before {
  content: "";
  display: block;
  padding-top: 59.375%;
}

.busi_example_txt {
  font-size: 12px;
  line-height: 1.285;
  letter-spacing: 0em;
  padding-top: 5px;
  margin-bottom: 21px;
}
/* se4 コンタクト */

.busi_base_contact_wrap{
  background-color: #19467e;
}
.busi_base_contact_wrap:hover{
  /*background-color: #c0c0c0;*/
  background-color: #1b3554;
  text-decoration: none;
}
.pg_busi .container a:hover {
  text-decoration: none;
}
.busi_base_contact_inner {
  padding: 26px 0px 17px 17px;
  position: relative;
  height: 168px;
}

.busi_base_contact_inner:before {
  content: "";
  position: absolute;
  background-color: #c0c0c0;
  top: 0%;
  right: 0px;
  padding: 84px 0;
  width: 42px;
}
.busi_base_contact_inner:hover:before{
  content: "";
  position: absolute;
  background-color: #19467e;
  top: 0%;
  right: 0px;
}

.busi_base_contact_inner::after {
  position: absolute;
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
  color: #000;
}
.busi_base_contact_inner:hover:after{
  position: absolute;
  right: 5px;
  color: #fff;
}
.busi_base_img_contact {
  width: 77%;
}

.busi_base_contact_box1{

}
.busi_base_img_contact{

}

.busi_base_contact_txt {
  font-size: 21px;
  line-height: 2.38;
  letter-spacing: 0.2em;
  color: #fff;
  padding-bottom: 12px;
}
.busi_base_contact_box2{

}

.busi_base_contact_txt2 {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #fff;
  padding-left: 0px;
  margin-top: -13px;
}

@media (min-width:768px){

  .pg_busi .section#sec2 {
    margin-top: 149px;
  }
  .pg_busi .section#sec3 {
    margin-top: 91px;
  }
  .pg_busi .section#sec4 {
    margin-top: 239px;
  }

  .busi_tt_wrap{
    margin-bottom: 79px;
    .busi_tt{
      font-size: 28px;
    }
  }
  /* リンクエリア 768px */
  .busi_selectitem {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .busi_selectitem .item_link {
    position: relative;
    width: 48.7%;
  }
  .busi_selectitem .item_link{
    margin-bottom: 35px;
  }
  /* text-pixエリア 768px */
  .pg_busi .section#sec1 .busi_base_wrap {
    margin-top: 71px;
  }
  .pg_busi .section#sec1 .busi_base_title_txt {
    margin-top: 72px;
    position: relative;
  }
  .busi_base {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
  }
  .busi_base_box1 {
    width: 54.23%;
    padding-left: 17px;
  }

  .busi_base_box2 {
    width: 40.09%;
  }
  .busi_base_img.img_fit {
    margin-right: -205px;
  }
  
  
  
  .busi_base_box1:before {
    content: "";
    display: block;
    width: 191%;
    height: 92.3%;
    background-color: #f9f9f9;
    bottom: -12%;
    right: 0;
    left: 27.167%;
    position: absolute;
    z-index: -1;
  }

  .busi_base_title_txt{
    margin-top: 147px;
  }
  .busi_base_title_txt{
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.075em;
    position: relative;
  }
  .busi_base_txt {
    margin-top: 22px;
  }
  .busi_base_title_txt:before {
    content: "";
    position: absolute;
    background: #19467e;
    top: 7px;
    left: -3%;
    padding: 23px 0;
    width: 3px;
  }

  /* sec2 */
  /* イラストエリア 768px */

  .busi_example_tt {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.075em;
    text-align: center;
    margin-top: 39px;
  }
  .busi_example_tt {
    font-size: 28px;
    text-align: center;
    padding-left: 20px;
    margin-top: 41px;
  }
  .busi_example_speech {
    max-width: 730px;
    margin: 7px auto 10px auto;
  }
  .busi_example_speech_txt{
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.075em;
    text-align: center;
    margin-bottom: 50px;
  }
  .busi_example_txt {
    text-align: center;
    padding-top: 3px;
    padding-left: 0px;
  }
  .busi_example_item {
    width: 14.414%;
  }
  .busi_example_txt {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0em;
  }
  .busi_example_item_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2.7027%;
    justify-content: flex-start;
  }
  /* sec3 768px */
  .busi_base_wrap {
    margin-top: 125px;
  }
  .busi_base_wrap:first-child {
    margin-top: 00px;
  }
  /* sec4 768px */
  .busi_base_contact_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .busi_base_contact_inner:before{
    content: "";
    position: absolute;
    background-color: #c0c0c0;
    top: 0%;
    right: 0px;
    padding: 84px 0;
    width: 97px;
  }
  .busi_base_contact_txt2 {
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.075em;
    color: #fff;
    padding-left: 0px;
    margin-top: -24px;
  }
  .busi_base_contact_txt{
    font-size: 21px;
    line-height: 2.38;
    letter-spacing: 0.2em;
    color: #fff;
  }
  .busi_base_contact_inner::after{
    position: absolute;
    font-size: 20px;
    content: "→";
    font-family: 'Zen Maru Gothic';
    font-weight: 700;
    position: absolute;
    right: 39px;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.2s;
    color: #000;
  }
  .busi_base_contact_inner:hover:after{
    position: absolute;
    right: 27px;
    color: #fff;
  }
  .busi_base_contact_inner {
    padding: 26px 0px 17px 36px;
    position: relative;
    height: 168px;
  }
}
@media (min-width:1024px){
  .busi_example_txt {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0em;
  }
  .busi_base_contact_inner {
    padding: 34px 0px 9px 60px;
    position: relative;
  }
  .busi_base_contact_box1 {
    width: 369px;
  }
}
@media (min-width:1200px){
  .busi_example_item_wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 2.7027%;
    justify-content: flex-start;
  }
  .busi_base_img_contact {
    width: 100%;
  }
  .busi_base_contact_txt {
    line-height: 3.38;
  }
  .busi_base_contact_txt2{
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.075em;
    color: #fff;
    padding-left: 42px;
    margin-top: -20px;
  }

}

/* **********************************
 *  03.会社案内 company
 * ********************************* */
.pg_comp{

}
.pg_comp .section#sec1{

}
.pg_comp .section#sec2 {
  padding-top: 30px;
  margin-top: 50px;
  background-color: #f9f9f9;
}
.pg_comp .section#sec2 {
  padding-bottom: 12px;
}
.pg_comp .section#sec3 {
  margin-top: 50px;
}
.pg_comp .section#sec4 {
  margin-top: 50px;
}
.pg_comp .section#sec5 {
  margin-top: 50px;
}
.comp_tt {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 30px;
  position: relative;
}
.comp_intoro_wrap{

}
.comp_intoro_inner {
  display: flex;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}


.comp_intoro_box1{
  width: 100%;
}
.comp_intoro_title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.075em
}

.comp_intoro_text{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: justify;
}
.comp_intoro_text2{
  text-align: right;
  padding-top: 1em;
}
.comp_intoro_box2 {
  width: 80%;
  margin-bottom: 15px;
}
.comp_intoro_img img_fit{

}
.comp_intoro_box2 .img_fit:before {
  content: "";
  display: block;
  padding-top: 128%;
}

/* sec2 */
.comp_philo_wrap {
  margin-top: 50px;
}

.comp_philo_inner {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: flex-start;
}
.comp_philo_inner {
  margin-bottom: 50px;
}

.comp_philo_box1 {
  width: 50px;
  margin-bottom: 15px;
  position: relative;
}

.comp_philo_box1:after {
  position: absolute;
  content: "";
  border-left: 1px solid #19467e;
  width: 0px;
  height: 32px;
  top: 2px;
  right: -18px;
}

.comp_philo_box2 {
  text-align: justify;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.619;
  letter-spacing: 0.075em;
}
.comp_philo_box2 {
  padding-left: 0px;
}

/* sec3 */
.comp_overview_wrap{

}
.comp_overview_item table tr {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
.comp_overview_item table tr {
  font-size: 15px;
  line-height: 1.933;
  letter-spacing: 0.075em;
  text-align: justify;
}
.comp_overview_item table th, table td {
  border: 1px solid #dcdcdc;
  padding: 12px 10px;
}
.comp_overview_item table th{
  font-weight: 400;
  border-right: none;
  background-color: #19467e;
  color: #fff;
}
.name_tb_wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.comp_indent{
  text-indent: -1em;
  padding-left: 1em;
}
.name_tb_box1{
  padding-right: 20px;
}
.name_tb_box2{

}
/* sec4 */
.history_items {
  position: relative;
}

.history_items .item {
  display: flex;
  flex-wrap: wrap;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.75;
  position: relative;
  padding-bottom: 25px;
}
.item{
  position: relative;
}

.history_items .item:after {
  position: absolute;
  content: "";
  background: #19467e;
  width: 13px;
  height: 13px;
  top: 7px;
  left: -33px;
}

.history_items .item:before {
  position: absolute;
  content: "";
  border-left: 1px solid #c4cbd3;
  width: 1px;
  height: 120px;
  top: 7px;
  left: -27px;
}
.history_items .item:last-child:before {
  position: absolute;
  content: "";
  border-left: 4px solid #fff;
  width: 8px;
  height: 46px;
  top: 20px;
  left: -28px;
  z-index: 1;
}
.history_items{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  font-weight: 400;
}
.history_items .item {
  margin-left: 39px;
}

/* sec5 */

.comp_access_wrap {

}
.comp_access_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.comp_access_item_wrap {

}
.comp_access_item {
  width: 100%;
  margin-bottom: 30px;
}
.comp_access_item_txt {
  font-size: 21px;
  line-height: 2;
  letter-spacing: 0.075em;
}
.comp_access_item_txt {
  border-bottom: 1px solid #c4cbd3;
  padding-bottom: 8px;
  margin-bottom: 31px;
}
.comp_access_item_txt {
  font-size: 18px;
}
.comp_access_item_img_wrap{

}
.comp_access_item_img_inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.comp_access_item_img.img_fit {
  position: relative;
  width: 46.648%;
}

.comp_access_item_img_inner .img_fit:before {
  content: "";
  display: block;
  padding-top: 72.666%;
}
.comp_access_item_map_wrap{

}
.comp_access_item_map {
  width: 100%;
}
.comp_access_item_map_txt{
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.075em;
  margin-top: 6px;
}


@media (min-width:768px){

  .pg_comp .section#sec2 {
    padding-top: 50px;
    margin-top: 108px;
    background-color: #f9f9f9;
  }
  .pg_comp .section#sec3 {
    margin-top: 110px;
  }
  .pg_comp .section#sec4 {
    margin-top: 115px;
  }
  .pg_comp .section#sec5 {
    margin-top: 71px;
  }
  .pg_comp .section#sec6 {
    margin-top: 71px;
  }
  /* sec1 768px */
  .comp_intoro_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
  }
  .comp_intoro_box1{
    width: 64.0%;
  }
  .comp_intoro_box2{
    width: 21.531%;
    margin-top: 12px;
  }
  .comp_intoro_title {
    font-size: 24px;
    margin-bottom: 25px;
  }
  /* sec2  768px */
  .comp_philo_box2 {
    text-align: justify;
    font-size: 19px;
  }
  .comp_philo_box1:after {
    position: absolute;
    content: "";
    border-left: 1px solid #19467e;
    width: 1px;
    height: 50px;
    top: 2px;
    right: -4px;
  }
  .comp_philo_box1{
    width: 128px;
    position: relative;
  }

  /* sec3 768px　*/
  .comp_overview_wrap{
    padding-top: 13px;
  }
  .comp_overview_item table tr {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .comp_overview_item table th {
    border: 1px solid #dcdcdc;
    padding: 12px 17px;
  }
  .comp_overview_item  table td {
    border: 1px solid #dcdcdc;
    padding: 14px 35px;
  }



  .comp_overview_item table th {
    width: 210px;
  }

  .comp_overview_item table td {
    border-left: none;
    width: 69.3%;
  }
  /* sec4 768px */
  .pg_comp .yellow_bar.comp {
    margin-bottom: 49px;
  }
  .history_items .item {
    padding-bottom: 50px;
  }
  .history_items .box1 {
    width: 239px;
    position: relative;
  }
  .history_items .box1:after {
    position: absolute;
    content: "";
    border-left: 1px solid #000;
    width: 1px;
    height: 17px;
    top: 8px;
    right: 0px;
  }
  .history_items .box2 {
    padding-left: 35px;
    position: relative;
  }

  .history_items .item{
    margin-left: 46px;
  }
  .history_items .item:after {

    left: -48px;
  }
  .history_items .item:before {
    left: -42px;
  }
  .history_items .item:last-child:before {
    left: -42px;
  }

  /* sec5 768px */
  .comp_access_item {
    width: 48.648%;
    margin-bottom: 63px;
  }

}
@media (min-width:1024px){
  .comp_overview_item table td {
    border-left: none;
    width: 69.3%;
  }

  .comp_philo_inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .comp_philo_box2 {
    padding-left: 61px;
  }
  .comp_philo_box1 {
    margin-bottom: 0px;
  }
  .comp_philo_box2 {
    font-size:19px;
  }
  .comp_overview_item table td {
    border-left: none;
    width: 58.3%;
  }
  .comp_overview_item table th{
    width: 284px;
  }
}
@media (min-width:1200px){
  .comp_overview_item table td{
    border-left: none;
    width: 74.3%;
  }
  .comp_philo_box2 {
    text-align: justify;
    font-size: 21px;
  }
}



/* **********************************
 *  
 * ********************************* */
.pg_company{

}
.pg_company .section#sec1{

}
.pg_company .section#sec2{

}
.pg_company .section#sec3{

}
@media (min-width:768px){

}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{

}
.pg_contact .section#sec1{

}
.pg_contact .section#sec2{

}
.pg_contact .section#sec3{

}

.contact_tt{
  text-align: center;
  font-weight: 700;
  font-size: 23px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-bottom: 10px;
  position: relative;
}
.yellow_bar {
  content: "";
  background: #fff100;
  width: 65px;
  height: 3px;
  text-align: center;
  margin: 0 auto;
}
.yellow_bar {
  margin-bottom: 25px;
}
.contact_msg2 {
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: justify;
  margin-bottom: 20px;
}

/* 連絡先 */
.contact_info_tel {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 6px;
}
.contact_info{
  text-align: center;
  padding: 0px 20px 0px;
  margin-bottom: 65px;
  border: 8px solid  #19467e;
}
.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  color: #FFF;
}
.contact_info .box2 {
  margin-top: 1px;
  background: #FFFFFF;
  padding: 20px 0px 14px 0px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #ff2700;
  color: #FFFFFF;
  padding: 5px 18px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.fa-phone-alt:before {
  content: "\f879";
  font-size: 27px;
  padding-right: 6px;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: 500;
  vertical-align: middle;
  font-weight: bold;
}

.contact_info .box2 .tel a {
  display: block;
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  font-size: 14px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* コンタクトフォーム */


.contact_form{
  width: 100%;
  border: 1px solid #b2b2b2;
}
.contact_form tr{
  border-bottom: 1px solid #b2b2b2;
}

.contact_form th {
  background: #f5f5f5;
  width: 284px;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding: 10px 10px 10px 10px;
  text-align: justify;
}

.contact_form td {
  font-size: 16px;
  letter-spacing: 0.16em;
  padding: 10px 8px 10px 10px;
  font-weight: normal;
  text-align: left;
}

.contact_form th.vtop{
  vertical-align: top;
}
.contact_form th {
  width: 100%;
  text-align: justify;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 11px;
  color: #FFF;
  background: #b80000;
  font-size: 14px;
  font-weight: normal;
  float: right;
}
.mwform-checkbox-field input, .mwform-radio-field input {
  margin-right: -2px;
}
.privacy_box {
  max-width: 840px;
  width: 100%;
  height: 200px;
  overflow: auto;
}
.box_size input {
  font-size: 12px;
}

/* MW WP Formの規定クラス */
/* checkbox, radio */
.mwform_check_box_wrap{
  padding: 6px 0;
}
.mw_wp_form .mwform-radio-field.horizontal-item,
.mw_wp_form .mwform-checkbox-field.horizontal-item{
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
}

/**/
.mw_wp_form_confirm .addr_auto{
  display: none;
}
.mw_wp_form_confirm .addr_auto_box .zipcode i{
  background: none;
  padding: 0;
  font-size: inherit;
}

.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.date dt.m,
.contact_form dl.date dt.d{
  width: 120px;
}
.contact_form dl.date dt.m select,
.contact_form dl.date dt.d select{
  width: calc(100% - 2em);
}
.contact_form dl.date dt.t{
  width: 150px;
}
.contact_form dl.date dt.t select{
  width: calc(100% - 5em);
}


.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: 80px;
}
.contact_form_addr dd{
  width: calc(100% - 80px);
}

.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 input ,
.contact_form td textarea ,
.contact_form td select {
  padding: 8px 10px;
  max-width: 100%;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.contact_form td textarea {
  height: 150px;
  font-size: 14px;
}
.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 .addr_auto {
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
  margin-top: 10px;
  margin-left: 0px;
}

.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */




.contact_form_acceptance {
  font-size: 17px;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 10px;
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance .mwform-checkbox-field.horizontal-item{
  margin-right: 0;
}


/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 35px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  padding: 12px 10px;
  width: 315px;
  position: relative;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: center;
  background: #19467e;
  border: 1px solid #19467e;
  color: #fff;
  z-index: 1;
  height: 58px;
}
.contact_form_btns button:hover{
  padding: 12px 10px;
  width: 315px;
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  color:  #19467e;
  margin: 0 10px;
  z-index: 2;
}
.contact_form_btns button:before{
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}
.contact_form_btns button:hover:before{
  font-size: 20px;
  content: "→";
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s;
}

.contact_form_btns button:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid #19467e;
  top: 6px;
  left: 2%;
  position: absolute;
  z-index: -1
}


.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 .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width:425px){
  .contact_form tr {
    display: flex;
    flex-direction: column;
  }
}
@media (min-width:768px){
  .pg_contact .section#sec2 {
    margin-top: 96px;
  }
  .contact_tt{
    text-align: center;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 0.075em;
    line-height: 1.5;
    margin-bottom: 30px;
    position: relative;
  }
  .yellow_bar {
    margin-bottom: 50px;
  }
  .contact_msg2 {
    text-align: center;
    margin-bottom: 52px;
  }
  /* コンタクトフォーム */
  .contact_form th {
    background: #f5f5f5;
    width: 284px;
    font-weight: 400;
    letter-spacing: 0.08em;
    padding: 10px 10px 10px 24px;
    text-align: justify;
  }
  .contact_form td .addr_auto {
    background: #f0f0f0;
    border: 1px solid #d6d8d8;
    margin-left: 0px;
    padding: 5px 5px;
  }
  .contact_form td textarea {
    height: 170px;
    width: 98%;
  }
  .contact_form td textarea {
    height: 280px;
  }
  .privacy_box {
    max-width: 840px;
    width: 98%;
    height: 233px;
    overflow: auto;
  }
  .privacy_box {
    max-width: 840px;
    width: 98%;
    height: 233px;
    overflow: auto;
  }
  .contact_form td textarea {
    height: 170px;
    font-size: 16px;
  }
  .contact_form_acceptance {
    font-size: 17px;
    letter-spacing: 0.08em;
    text-align: justify;
    margin-top: 23px;
  }
  .contact_form {
    margin-bottom: 28px;
  }
  .contact_info .box2 .txt{
    font-size: 16px;
  }
  .contact_info .box2 .tel a{
    font-size: 34px;
  }
  .fa-phone-alt:before {
    content: "\f879";
    font-size: 34px;
    padding-right: 15px;
  }


}
@media (min-width:1024px){

  .contact_form td{
    font-size: 17px;
    letter-spacing: 0.04em;
    padding: 8px 8px 8px 37px;
    font-weight: normal;
    text-align: left;
  }
  .contact_form td .addr_auto{
    background: #f0f0f0;
    border: 1px solid #d6d8d8;
    margin-left: 10px;
    padding: 5px 5px;
  }
  .contact_form td .addr_auto {
    background: #f0f0f0;
    border: 1px solid #d6d8d8;
    margin-left: 10px;
    padding: 5px 5px;
    margin-top: 0;
    margin-left: 10px;
  }
  .mwform_message .contact_form td textarea textarea {
    max-width: 98%;
  }
  .box_size input {
    /* line-height: normal; */
    width: 60%;
    font-size: 16px;
  }

}
@media (min-width:1200px){
  .contact_form td textarea {
    padding: 8px 10px;
    max-width: 100%;
    border: 1px solid #d6d8d8;
    border-radius: 0;
  }

}

/* **********************************
 *  プライバシーポリシー
 * ********************************* */


.privacy_box {
  border: 1px solid #dedede;
  padding: 8px 15px;
  color: #181818;
  height: 176px;
  overflow: auto;
  text-align: left;
}
.privacy_box .item {
  margin-bottom: 40px;
}

.privacy_box .item .title {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: left;
  margin-bottom: 1em;
}

.pg_contact .privacy{
  margin-top: 105px;
}

.privacy_tt{
  text-align: center;
  margin-bottom: 55px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 700;
  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;
  letter-spacing: 0.04em;
}
.privacy_items .item + .item{
  margin-top: 40px;
}
.privacy_items .item h4{
  font-size: 18px;
  font-weight: 500;
  border-left: 6px solid #f0f0f0;
  padding-left: 20px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.privacy_box .txt {
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.075em;
}
.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;
}
@media (min-width:768px){
  .privacy_box {
    border: 1px solid #dedede;
    padding: 8px 15px;
    color: #181818;
    height: 230px;
    overflow: auto;
    text-align: left;
  }
  .privacy_box .item .title {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.075em;
    line-height: 1;
    margin-bottom: 1em;
  }
  .privacy_box .txt {
    font-size: 16px;
    line-height: 2.25;
    letter-spacing: 0.075em;
  }
}
@media (min-width:1024px){

}
@media (min-width:1200px){

}

.swiper-pagination-bullet{
  background: #CCC;
}
.swiper-pagination-bullet-active{
  /*background: #CCC;*/
}