@charset "UTF-8";
/*
Theme Name: MY-THEME
*/
@import "style-visual.css";

/* Webフォント読込サンプル */
/*
@font-face {
  font-family: "Font-Family-NAME";
  src: url(css/fonts/font-file.woff2) format("woff2"),
  url(css/fonts/font-file.woff) format("woff"),
  url(css/fonts/font-file.eot) format("eot");
  font-weight: 400;
  font-style: normal;
}
*/

/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #000000;
  padding-top: 155px;
}

/* 基本フォント: 明朝 */
/**/
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[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{
  height: 110px;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  
  position: relative;
}
.tbl th{
  width: 200px;
  padding-right: 40px;
}
.tbl th:after{
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: #0F90EF;
  position: absolute;
  bottom: 0;
  left: 0;
}
.tbl td{
  border-bottom: 1px solid #AAAAAA;
}



/* スクロール テーブル */
.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: 1220px;
  max-width: 100%;
  padding: 0 10px; 
  margin: 0 auto;
}
.container-w{
  width: 1740px;
  max-width: 100%;
  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: #ccc;*/
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.pg_header:after{
  content: "";
  background: rgba(8,30,54,0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pg_header .container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 596px;
  position: relative;
  z-index: 1;
}

.pg_header .tt_bgtxt{
  font-size: 180px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
  color: #7AAFA7;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  right: -50px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.pg_header.nobg{
  
}
.pg_header.nobg:after{
  background: none;
}
.pg_header.nobg .tt1{
  color: #000;
}

/* 共通のfloat ボックスとして定義しておく */
.box_l{
  float: left;
}
.box_r{
  float: right;
}

/* ▼サンプル▼ 利用箇所毎に幅指定だけで済むように */
/*
.post_list .post_box .box_l {
    width: 70%;
}
.post_list .post_box .box_r {
    width: 25%;
}
*/

/* ▼サンプル▼ リストなどでアイキャッチがない場合のclass */
/*
.post_list .post_box .box_w{
  width: 100%;
}
*/

/*
 * 共通クラスとして定義しておく
 * リスト組みのテンプレート
 * 
 */

.listbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.listbox .item{
  display: block;
  width: 100%;
}
.listbox .item .img{
  position: relative;
  display: block;
  overflow: hidden;
}
.listbox .item .img:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.listbox .item .img.img2x1:before{
  padding-top: 50%;
}
.listbox .item .img.img1x2:before{
  padding-top: 200%;
}
.listbox .item .img.img2x3:before{
  padding-top: 150%;
}
.listbox .item .img.img3x2:before{
  padding-top: 66.666666%;
}
.listbox .item .img.img3x4:before{
  padding-top: 133.333333%;
}
.listbox .item .img.img4x3:before{
  padding-top: 75%;
}
.listbox .item .img.img16x9:before{
  padding-top: 56.25%;
}
.listbox .item .img img{
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.listbox .item .title{
  
}
.listbox .item .date{
  
}
.listbox .item .txt{
  
}


/* ▼サンプル▼ 利用箇所ごとにマージンなど設定 */
/*
.post_content .col1,
.post_content .col2,
.post_content .col3{
  margin-bottom: 20px;
}
*/


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  padding: 15px 0 25px;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid #EEE;
}
header .hdr1{
  display: flex;
  justify-content: space-between;
  margin-bottom: 17px;
  padding: 0 75px 0 45px;
}

header .hdr1 .box1{
  display: flex;
  align-items: center;
}
header .hdr1 .hdr_logo{
  width: 81px;  
  line-height: 1;
  margin-right: 10px;
}
header .hdr1 .hdr_txt{
  font-size: 14px;
  font-weight: 500;
}
header .hdr1 .hdr_name{
  font-size: 29px;
  font-weight: 700;
}
header .hdr1 .hdr_name a{
  text-decoration: none;
}

.hdr_contact{
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hdr_contact a{
  text-decoration: none;
}
.hdr_contact a + a{
  margin-left: 35px;
}
.hdr_contact .btn1{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
}
.hdr_contact .btn1 span{
  font-size: 0.666em;
  margin-right: 5px;
}
.hdr_contact .btn2{
  width: 185px;
  background: #0F90EF;
  color: #FFF;
  padding: 14px 10px;
  font-weight: 500;
  text-align: center;
}
.hdr_contact .btn2 i{
  margin-right: 6px;
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{
  /*background: #EEE;*/
  /*padding: 0 5px;*/
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: 700;
  /*font-size: 18px;*/
}
.gnav > ul > li{
  /*width: 100%;*/
  position: relative;
}
.gnav > ul > li+li{
  margin-left: 60px;
}
.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{
  /*background: #333;*/
  /*color: #FFF;*/
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}


.mv{
  position: relative;
  height: 788px;
  
  background: #eee;
  background-image: url('/img/mv.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mv:after{
  content: "";
  background: rgba(0,0,0,0.25);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.mv .mv_box{
  
}
.mv .mv_box .txt{
  font-size: 52px;
  font-weight: 700;
  color: #FFF;
  position: relative;
  z-index: 5;
}
.mv .mv_box .img{
  
}
.mv .mv_box .img img{
  
}


/* **********************************
 *  フッター
 * ********************************* */
footer{
  background: #081E36;
  color: #FFF;
  font-weight: 700;
  margin-top: 200px;
}

body.home footer,
body.pg_slug_industrial footer{
  margin-top: 0;
}

/* Contact */
.ftr_contact_wrap{
  background-image: url('/img/ftr_contact_bg.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 125px 0;
  position: relative;
}
.ftr_contact_wrap:after{
  content: "";
  background: rgba(0,0,0,0.45);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.ftr_contact_wrap .box{
  text-align: center;
  position: relative;
  z-index: 2;
}
.ftr_contact_wrap .more{
  
}
.ftr_contact_wrap .more a{
  display: block;
  width: 380px;
  max-width: 100%;
  margin: 0 auto;
  padding: 28px 10px;
  font-size: 24px;
  font-family: 'Roboto', sans-serif;
  border: 2px solid #FFF;
  text-decoration: none;
  
  
  background-image: url('/img/read_more2.png');
  background-repeat: no-repeat;
  background-position: right 35px center;
}
.ftr_contact_wrap .more a:hover{
  background-color: #111;
}
.ftr_contact_items{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
} 
.ftr_contact_items .item{
  width: 370px;
  font-weight: 700;
  position: relative;
  
}
.ftr_contact_items .item.left{
  padding-right: 60px;
  
}
.ftr_contact_items .item.right{
  padding-left: 60px;
  text-align: left;
}
.ftr_contact_items .item.right:before{
  content: "";
  width: 1px;
  height: 45px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ftr_contact_items .item .tel{
  display: block;
  font-size: 2.25em;
  font-family: 'Roboto', sans-serif;
}
.ftr_contact_items .item .fax{
  display: block;
  font-size: 1.5em;
}
.ftr_contact_items .item .time{
  font-size: 1em;
}


/* footer */
footer .ftr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
footer .ftr1 .box1{
  width: 60%;
  padding-top: 55px;
  padding-left: 155px;
}
footer .ftr1 .box2{
  width: 40%;
  padding-top: 80px;
  padding-left: 0;
}

.ftr_logo{
  font-size: 29px;
  font-weight: 700;
}
.ftr_logo a{
  text-decoration: none;
}
.ftr_logo span{
  margin-left: 12px;
}
.ftr_addr{
  margin-top: 20px;
  line-height: 2.25;
}
.ftr_banner{
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
.ftr_banner a{
  margin-right: 30px;
  margin-bottom: 10px;
}
.ftr_banner a + a{
}
.ftr_sns{
  display: flex;
  flex-wrap: wrap;
  margin-top: 70px;
}
.ftr_sns li{
  font-size: 30px;
}
.ftr_sns li + li{
  margin-left: 40px;
}

.ftr_links_wrap{
  width: 485px;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_links{
  
}
.ftr_links+.ftr_links{
  margin-left: 140px;
}
.ftr_links li{
  
}
.ftr_links li + li{
  margin-top: 30px;
}


.ftr_copy{
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  text-align: center;
  opacity: 0.37;
}

.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;
  
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}


/* 検索フォーム */
.pg_404{
  text-align: center;
}
.pg_404{
  
}

.search-form{
  padding: 20px 0;
}
.search-form .search-field{
  padding: 5px;
}
.search-form .search-submit{
  padding: 5px 10px;
}

.pg_image{
  
}
.pg_image .attachment{
  padding: 20px;
  background-color: #ececec;
  text-align: center;
}


/* 記事リスト */
.post_items{
  padding: 0 0;
}
.post_items .item{
  /*background: #f0f0f0;*/
  padding: 10px;
/*  border-top: 2px solid #707070;*/
  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;
  color: #000000;
  font-weight: 700;
}
/*.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);
  color:#707070
  /*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: 50px;
  
}
.post_items .post_content p{
  line-height: 2em;
  letter-spacing: 0.1;
}


/* ページ送り(一覧) */
.pagination{
  text-align: center;
  margin-top: 30px;
}
.pagination .nav-links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  
}
.pagination .page-numbers{
  align-self: stretch;
  border: 1px solid #c0c0c0;
  padding: 5px 10px;
  margin: 4px 4px;
  color: #1e1e1e;
  text-decoration: none;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover{
  background: #e5e5e5;
}
.pagination .page-numbers.next:after{
  content: "\f101";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
.pagination .page-numbers.prev:before{
  content: "\f100";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

/* ページ送り(詳細) */
.pagination .nav-posts{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pagination .nav-posts .page-next,
.pagination .nav-posts .page-prev{
  min-width: 200px;
}
.pagination .nav-posts .page-next a,
.pagination .nav-posts .page-prev a{
  display: block;
  border: 1px solid #c0c0c0;
  padding: 10px 50px;
  position: relative;
}
.pagination .nav-posts .page-next a:before,
.pagination .nav-posts .page-prev a:after{
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pagination .nav-posts .page-next a:before{
  content: "\f053";
  left: 10px;
}
.pagination .nav-posts .page-prev a:after{
  content: "\f054";
  right: 10px;
}
.pagination .nav-posts .page-archive a{
  display: block;
  background: #bcbcbc;
  color: #ffffff;
  padding: 10px 100px;
}

/* 検索 */
.search_list{
  background: #eee;
  padding: 15px;
}
.search_list .item{
  
}
.search_list .item + .item{
  
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

/* コンタクトフォーム */
/*.contact_info{
  background: #acd598;
  text-align: center;
  padding: 28px 30px 25px;
  margin-bottom: 100px;
}*/
/*.contact_info .box1{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
}
.contact_info .box2{
  margin-top: 20px;
  background: #FFFFFF;
  padding: 22px 5px;
  line-height: 1;
}
.contact_info .box2 .icon{
  display: inline-block;
  font-size: 25px;
  font-weight: bolder;
  background: #acd598;
  color: #FFFFFF;
  padding: 5px 15px;
  margin-right: 10px;
  vertical-align: middle;
  border-radius: 5px;
  letter-spacing: 0.08em;
}
.contact_info .box2 .tel{
  display: inline-block;
  font-size: 44px;
  font-weight: bold;
  vertical-align: middle;
  font-weight: bold;
}
.contact_info .box2 .tel a{
  display: block;
  font-family: "impact";
  letter-spacing: 0.04em;
}
.contact_info .box2 .txt{
  display: inline-block;
  vertical-align: bottom;
  margin-left: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}*/


.contact_form{
  width: 100%;
  background-color: #f5f5f5;
/*  border: 1px solid #b2b2b2;*/
}





.contact_form tr{
/*  border-bottom: 1px solid #b2b2b2;*/
}
.contact_form th,
.contact_form td{
  padding: 20px 0;
  font-weight: normal;
  text-align: left;
}
.contact_form th{
/*  background: #f0f0f0;*/
  width: 270px;
 font-size:18px;
}
.contact_form th.require_top {
  color:#e30312;
  padding-bottom: 36px;
  font-size:18px;
}
.contact_form th .require{
  display: inline-block;
  padding: 2px 12px;
  color:#e30312;
  font-size: 14px;
  font-weight: normal;
}
.contact_form dl{
  width: 100%;
  display: flex;
  align-items: center;
}
.contact_form dl + dl{
  margin-top: 10px;
}
.contact_form dl dt,
.contact_form dl dd{
  
}
.contact_form dl + p{
  margin-top: 5px;
  margin-bottom: 5px;
}

.contact_form dl.addr dt{
  width: 90px;
}
.contact_form dl.addr dd{
  width: calc(100% - 90px);
}
.contact_form dl.date {
  align-items: flex-start;
}
.contact_form dl.date dt{
  width: 90px;
}
.contact_form dl.date dt + dt{
  margin-left: 5px;
}
.contact_form dl.date dt select{
  width: 100%;
}
.contact_form dl.date dt.wide{
  width: 200px;
}
.contact_form dl.addr dd{
  
}

.contact_form_addr{
  display: flex;
  align-items: center;
  margin: 0;
}
.contact_form_addr + .contact_form_addr{
  margin-top: 8px;
}
.contact_form_addr dt,
.contact_form_addr dd{
  margin: 0;
}
.contact_form_addr dt{
  width: 90px;
}
.contact_form_addr dd{
  width: calc(100% - 90px);
}

.contact_form_addr dd [name$="zipcode"]{
  width: 210px;
}
.contact_form_addr dd [name$="addr1"]{
  width: 210px;
}

.addr_auto_box{
  display: flex;
  align-items: center;
}
.addr_auto_box .zipcode{
  display: flex;
  flex-wrap: wrap;
}
.addr_auto_box .zipcode i{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  background: #cccccc;
  padding: 0 5px;
}
.addr_auto_box .zipcode input{
  
}

.addr_auto_box button{
  margin-left: 20px;
}



.contact_form td .wpcf7-form-control-wrap{
  display: block;
}
.contact_form td .wpcf7-form-control-wrap + .wpcf7-form-control-wrap {
  margin-top: 5px;
}
.contact_form td input ,
.contact_form td textarea ,
.contact_form td select ,
.contact_form td .wpcf7-form-control ,
.contact_form td .wpcf7c-conf-hidden {
  padding: 20px 0;
  max-width: 100%;
  border: 1px solid #CCC;
  border-radius: 0;
}
.contact_form td .wpcf7-checkbox,
.contact_form td .wpcf7-radio{
  border: 0;
}
.contact_form td .wpcf7-text {
  width: 500px;
  max-width: 100%;
}
.contact_form td .wpcf7-textarea {
  width: 100%;
}
.contact_form td .wpcf7-file {
  width: 100%;
  border: 0;
}
.contact_form td .wpcf7-file + .wpcf7c-conf{
  width: 100%;
  border: 1px solid #398f14;
}
.contact_form td [name$="_zipcode"],
.contact_form td [name="zipcode"],
.contact_form td [name="addr1"]{
  width: 160px;
}
.contact_form td [name="addr1"]{
  width: 220px;
}
.contact_form td [name="addr2"]{
}
.contact_form td .wpcf7-form-control-wrap.zipcode,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]{
  display: flex;
  align-items: stretch;
}
.contact_form td .wpcf7-form-control-wrap.zipcode:before,
.contact_form td .wpcf7-form-control-wrap[class$="_zipcode"]:before{
  vertical-align: top;
  content: "〒";
  background: #CCC;
  width: 30px;
  padding: 0;
  margin: 0;
  border: 1px solid #CCC;
  border-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.contact_form td .addr_auto{
  background: #f0f0f0;
  border: 1px solid #d6d8d8;
  margin-left: 10px;
  padding: 5px 5px;
}

.contact_form td .wpcf7-checkbox, 
.contact_form td .wpcf7-radio{
  display: block;
}
.contact_form span.wpcf7-list-item{
  margin: 0 1em 0 0;
}


.contact_form_msg{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* 確認画面用 */
.wpcf7c-conf:not([type="radio"]):not([type="checkbox"]){
  background: #eeffe4;
  -webkit-box-shadow: 0 0 0px 1000px #eeffe4 inset;
  border: 1px solid #398f14;
  opacity: 0.9;
}
.wpcf7c-conf:checked + .wpcf7c-conf-hidden + .wpcf7-list-item-label{
  color: #398f14;
}
/*input:-webkit-autofill,
textarea:-webkit-autofill, 
select:-webkit-autofill {
  background-color: #eeffe4 !important;
  background-image: none !important;
  color: #666 !important;
}*/ 


.contact_form_acceptance{
/*  text-align: center;
  margin-top: 20px;*/
}
.contact_form_acceptance a{
  color: #1a3e9b;
}
.contact_form_acceptance span.wpcf7-list-item{
  margin: 0;
}

/* コンタクトフォーム - ボタン */
.contact_form_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  padding: 30px 0;
}
.contact_form_btns input[type="submit"],
.contact_form_btns input[type="button"],
.contact_form_btns button{
  background: #0f90ef;
  color: #FFF;
  border: 0;
  padding: 40px 100px;
  width: 300px;
  margin: 0 10px;
}
.contact_form_btns input[type="submit"][disabled],
.contact_form_btns input[type="button"][disabled]{
  background: #CCC;
}
.contact_form_btns button[type="reset"]{
  background: #CCC;
}
.contact_form_btns input.wpcf7-confirm{
  
}
.contact_form_btns input.wpcf7-back{
  background: #CCC;
}
.contact_form_btns input.wpcf7-submit{
  background: #398f14;
}
.contact_form_btns .ajax-loader{
  order: 10;
  width: 100% !important;
  margin-top: 10px !important;
  background-repeat: no-repeat;
  background-position: center;
}


/* サイトマップ */
.sitemap_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}
.sitemap_items .item{
  width: 25%;
  padding: 0 10px;
  margin-bottom: 20px;
}
.sitemap_items .item h4{
  border: 1px solid #d3d3d3;
  border-bottom: 5px solid #d3d3d3;
}
.sitemap_items .item h4 a{
  display: block;
  padding: 20px 15px;
}
.sitemap_items .item ul{
}
.sitemap_items .item ul li{
  border-bottom: 1px dashed #d3d3d3;
  position: relative;
}
.sitemap_items .item ul li:before{
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 10px;
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.sitemap_items .item ul li a{
  display: block;
  padding: 5px 10px 5px 20px;
}


/* プライバシーポリシー */
.privacy_tt{
  text-align: center;
  margin-bottom: 67px;
}
.privacy_tt h3{
  font-size: 23px;
  font-weight: 500;
/*  letter-spacing: 0.2em;*/
}
.privacy_tt br{
  display: none;
}
.privacy_tt .dots{
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.privacy_tt .dots i{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #c1c1c1;
  margin: 0 8px;
}

.privacy_items{
  
}
.privacy_items .item{
/*  line-height: 1.6;*/

}
.privacy_items .item + .item{
  margin: 47px 0 0;
  border-bottom:1px solid #000000;
}
.privacy_items .item h4{
  font-size: 24px;
  margin-bottom: 10px;
  line-height: 2.33;
}
.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;
}


.breadcrumb_wrap{
  
}
.breadcrumb{
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 20px 0;
  font-size: 14px;
  overflow-x: auto;
  overflow-y: hidden;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 10px;
}
.breadcrumb li:first-child{
  color: #B9B9B9;
}
.breadcrumb li:last-child{
  font-weight: 500;
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
  padding-right: 30px;
}
.breadcrumb li a:after{
  
  content: "";
  width: 14px;
  height: 1px;
  background: #B9B9B9;
  /*
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;*/
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*.breadcrumb li:first-child a{
  padding-left: 15px;
}
.breadcrumb li:first-child a:before{
  content: "\f015";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}*/

/* **********************************
 *  メイン
 * ********************************* */
.main{
  padding-top: 65px;
}
body.home .main{
  padding-top: 0;
}

.tt1{
  font-size: 60px;
  font-weight: 700;
  line-height: 1.4;
  color: #FFF;
}
.tt1 span{
  display: block;
  text-align: center;
  font-size: 14px;
}

.tt2{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 60px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.tt2.wh{
  color: #FFF;
}
.tt2 span{
  
}
.tt2 .bg_txt{
  position: absolute;
  width: 100vw;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: right;
  color: #7AAFA7;
  font-size: 181px;
  line-height: 1;
  opacity: 0.1;
  pointer-events: none;
}
.tt2.wh .bg_txt{
  color: #FFF;
}

.tt4{
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.tt4:after{
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  background: #0F90EF;
  margin: 30px auto 0;
}
.tt4_sub{
  text-align: center;
  margin-bottom: 60px;
}

.tt5{
  
}
.tt5 span{
  
}

/* 詳しく見る サンプル */
.read_more{
  
}
.read_more a{
  display: block;
  width: 556px;
  max-width: 100%;
  margin: 75px auto 0;
  padding: 18px 0;
  background: #0F90EF;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  position: relative;
  text-decoration: none;
}
.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%);
}

.view_more{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  text-align: center;
  margin-top: 75px;
}

/* ファイルダウンロード(共通) */
.file_download_links{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12.5px;
}
.file_download_links li{
  padding: 0 12.5px;
}
.file_download_links li a{
  display: flex;
  align-items: center;
  min-height: 90px;
  height:100%;
  background: #0F90EF;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  padding: 0 25px;
  position: relative;
}
.file_download_links li a:hover{
  opacity: 0.8;
}
.file_download_links li a:after{
  content: "\f019";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.file_download_links.col3 li{
  width: 33.333%;
}
.file_download_links.col3 li:nth-child(n+4){
  margin-top: 25px;
}

.file_download_links.col4 li{
  width: 25%;
}
.file_download_links.col4 li:nth-child(n+5){
  margin-top: 25px;
}

.adobe_download_link{
  margin-top: 85px;
}
.adobe_download_link a{
  display: flex;
  align-items: center;
  /*justify-content: center;*/
  width: 475px;
  max-width: 100%;
  height: 90px;
  padding-left: 80px;
  padding-right: 10px;
  margin: 0 auto;
  border: 1px solid #000;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.adobe_download_link a:before{
  content: "";
  width: 34px;
  height: 28px;
  background-image: url('/img/icon_adobe.png');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.adobe_download_link_msg{
  margin-top: 35px;
  text-align: center;
}

/* **********************************
 *  Home
 * ********************************* */

.pg_home{
  
}
.pg_home .section{
  position: relative;
}
.pg_home .section#sec1{
  background: linear-gradient(to right, #73838d 0%, #3a4247 100%);
}
.pg_home .section#sec2{
  margin-top: 150px;
}
.pg_home .section#sec3{
  margin-top: 180px;
  padding-bottom: 180px;
}
.pg_home .section#sec3:after{
  content: "";
  background: #F5F5F5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 560px;
  z-index: -1;
}
.pg_home .section#sec4{
}
.pg_home .section#sec5{
  margin-top: 155px;
  padding-bottom: 140px;
}
.pg_home .section#sec5:after{
  content: "";
  background: #F5F5F5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 380px;
  z-index: -1;
}
.pg_home .section#sec6{
  padding-top: 150px;
  padding-bottom: 165px;
  background-image: url('/img/home/sns_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}


/* News */
.home_news_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  min-height: 210px;
  color: #FFF;
  height:auto;
  
}
.home_news_wrap .box1{
  width: 200px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 40px;
}
.home_news_wrap .box2{
  width: calc(100% - 200px - 220px);
}
.home_news_wrap .box3{
  width: 220px;
  text-align: right;
}
.home_news_wrap .tt2{
  font-size: 40px;
  margin-bottom: 0;
}

.home_news_items{
  
}
.home_news_items .item{
  display: flex;
}
.home_news_items .item .date{
  width: 115px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
}
.home_news_items .item .title{
  width: calc(100% - 115px);
  font-weight: 500;
}
.home_news_items .item .title a{
  display: block;
  white-space: nowrap;  
} 

.home_news_wrap .more{
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
  background-image: url('/img/read_more1.png');
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 35px;
}

/* About */
.home_about_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.home_about_wrap .box1{
  width: 55%;
}
.home_about_wrap .box2{
  width: 45%;
  padding-left: 140px;
  padding-right: 10px;
}
.home_about_wrap .txt{
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
.home_about_wrap .list{
  margin-top: 40px;
}
.home_about_wrap .list li{
  font-size: 20px;
  font-weight: 700;
}
.home_about_wrap .list li+li{
  margin-top: 25px;
}
.home_about_wrap .list li span{
  /*display: flex;*/
  /*align-items: center;*/
  display: inline-block;
  background: #F2F7F6;
  line-height: 1;
  padding: 15px 25px 15px 60px;
  position: relative;
}
.home_about_wrap .list li span:before{
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background: #F2F7F6;
  background-image: url('/img/about_list_icon.png');
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 20px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* Service */
.home_service_wrap{
  display: flex;
  flex-wrap: wrap;
  margin: 0 70px;
}
.home_service_wrap .item{
  width: 25%;
  padding: 0 30px;
}
.home_service_wrap .item .img{
  
}
.home_service_wrap .item .txt{
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 35px;
}
.home_service_wrap .item .txt:after{
  content: "";
  display: block;
  margin: 30px auto 0;
  width: 45px;
  height: 5px;
  background: #0F90EF;
}

/* Links */
.home_links_wrap{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.home_links_wrap .item{
  width: 50%;
  padding: 0 5px;
}
.home_links_wrap .inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFF;
  text-decoration: none;
  position: relative;
  min-height: 435px;
  height:100%;
  font-size: 20px;
  transition: all 0.2s;
}
.home_links_wrap .inner:after{
  content: "";
  background: rgba(8,30,54,0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home_links_wrap .inner:hover{
  font-size: 22px;
}
.home_links_wrap .txt,
.home_links_wrap .more{
  
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 2;
}
.home_links_wrap .txt{
  width: 100%;
  font-size: 2em;
}
.home_links_wrap .more{
  font-size: 1em;
  margin-top: 60px;
  background-image: url('/img/read_more1.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 20px auto;
  padding-right: 40px;
}

/* BLOG */
.home_blog_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.home_blog_items .item{
  width: 25%;
  padding-left: 5px;
  padding-right: 5px;
}
.home_blog_items .item:nth-child(n+5){
  margin-top: 10px;
}
.home_blog_items .item .inner{
  display: block;
  text-align: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
}
.home_blog_items .item .inner:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.home_blog_items .item .inner:after{
  content: "";
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.home_blog_items .item .box{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  z-index: 2;
  color: #FFF;
}
.home_blog_items .item .date{
  display: block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 20px;
}
.home_blog_items .item .title{
  font-weight: 500;
  padding: 0 30px;
  margin-top: 30px;
}
.home_blog_items .item .more{
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  
  background-image: url('/img/read_more1.png');
  background-repeat: no-repeat;
  background-position: right center;
  background-size: 16px auto;
  padding-right: 25px;
  margin-top: 30px;
}

/* SNS */
.home_sns_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -16px 65px;
  
}
.home_sns_items .item{
  width: 33.333%;
  padding: 20px 16px;
}
.home_sns_items .item .inner{
  display: block;
  background: #FFF;
  position: relative;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  padding: 30px 10px;
}
.home_sns_items .item .inner:hover{
  opacity: 0.9;
}
.home_sns_items .item i{
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.home_sns_items .item span{
  
}

.home_sns_banner{
  text-align: center;
}
.home_sns_banner + .home_sns_banner{
  margin-top: 40px;
}

/* **********************************
 *  事業案内
 * ********************************* */
.pg_service{
  
}
.pg_service .section#sec1{
  padding-bottom: 160px;
  position: relative;
}
.pg_service .section#sec1:after{
  content: "";
  background: #F5F5F5;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  z-index: -1;
}
.pg_service .section#sec2{
  margin-top: 180px;
}


/* contents1 */
.service_contents_wrap1{
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 265px;
}
.service_contents_wrap1 .box1{
  width: 50%;
}
.service_contents_wrap1 .box2{
  width: 50%;
}
.service_contents_wrap1 .title{
  font-weight: 700;
  font-size: 36px;
}
.service_contents_wrap1 .txt{
  line-height: 2;
}

/* contents2 */
.service_contents_wrap2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.service_contents_wrap2 + .service_contents_wrap2{
  margin-top: 145px;
}
.service_contents_wrap2 .box1{
  width: 41.66%;
  height: 476px;
  position: relative;
}
.service_contents_wrap2 .box2{
  width: 50%;
}
.service_contents_wrap2 .img{
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1000px;
}
.service_contents_wrap2 .img img{
  height: 100%;
}
.service_contents_wrap2 .title{
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 50px;
}
.service_contents_wrap2 .title:after{
  content: "";
  display: block;
  width: 45px;
  height: 5px;
  background: #0F90EF;
  margin-top: 20px;
}
.service_contents_wrap2 .txt{
  line-height: 2;
}

.service_contents_wrap2:nth-child(odd) .box1{
  order: 1;
}
.service_contents_wrap2:nth-child(odd) .box2{
  order: 2;
}
.service_contents_wrap2:nth-child(even) .box1{
  order: 2;
}
.service_contents_wrap2:nth-child(even) .box2{
  order: 1;
}

.service_contents_wrap2:nth-child(odd) .box1 .img{
  right: 0;
  text-align: right;
}
.service_contents_wrap2:nth-child(even) .box1 .img{
  left: 0;
  text-align: left;
}

/* **********************************
 *  引取・買取品目
 * ********************************* */
.pg_purchase{
  
}.pg_purchase .section#sec1{
  background: #F5F5F5;
  padding-top: 10px;
  padding-bottom: 190px;
  margin-top: 120px;
}
.pg_purchase .section#sec2{
  background: #F5F5F5;
  padding-bottom: 190px;
}

/* ギャラリー */
.purchase_gallery{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -7px 180px;
  margin-top: -130px;
}
.purchase_gallery .item{
  width: 25%;
  padding: 5px 7px;
}

/* 品目 */
.purchase_list_wrap{
  
}
.purchase_list_wrap + .purchase_list_wrap{
  margin-top: 95px;
}
.purchase_list_wrap .tbl_msg{
  margin-top: 20px;
  text-align: right;
}
.purchase_list_tt1{
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  padding-left: 15px;
  margin-bottom: 25px;
  border-left: 5px solid #0F90EF;
}

/* table1 */
.purchase_list_tbl1{
  display: flex;
  flex-wrap: wrap;
}
.purchase_list_tbl1 li{
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  background: #FFF;
  border: 0.5px solid #707070;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.333;
  text-align: center;
  padding: 5px 10px;
}

@media (min-width:768px){
  .purchase_list_tbl1 li{
    width: 25%;
  }
  .purchase_list_tbl1 li:nth-child(n+5){
    margin-top: -1px;
  }
  .purchase_list_tbl1 li+li:not(:nth-child(4n+1)){
    border-left: 0;
  }
}
@media (max-width:767px){
  
  .purchase_list_tbl1 li{
    width: 50%;
  }
  .purchase_list_tbl1 li:nth-child(n+3){
    margin-top: -1px;
  }
  .purchase_list_tbl1 li+li:not(:nth-child(2n+1)){
    border-left: 0;
  }
}
  

/* table2 */
.purchase_list_tbl2{
  background: #FFF;
}
.purchase_list_tbl2 th,
.purchase_list_tbl2 td{
  font-weight: 500;
  font-size: 18px;
  text-align: center;
  border: 1px solid #707070;
}

.purchase_contact_msg{
  margin-top: 100px;
  text-align: center;
}

.purchase_list_image{
  margin-top: 135px;
}

/* **********************************
 *  初めての方へ
 * ********************************* */
.pg_beginner{
  
}
.pg_beginner .section#sec1{
  padding-bottom: 150px;
}
.pg_beginner .section#sec2{
  background: #F5F5F5;
  padding-top: 150px;
  padding-bottom: 120px;
}
.pg_beginner .section#sec3{
  
}

.beginner_tt1{
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 50px;
}
.beginner_tt1:after{
  content: "";
  display: block;
  width: 45px;
  height: 5px;
  background: #0F90EF;
  margin-top: 30px;
}

.beginner_msg{
  line-height: 2;
  margin-bottom: 30px;
}

.beginner_tbl{
  width: 700px;
  max-width: 100%;
}

/**/
.beginner_contents_wrap{
  
}
.beginner_contents_wrap + .beginner_contents_wrap{
  margin-top: 60px;
}

/* 別途費用 */
.beginner_price_msg1{
  margin-bottom: 30px;
}
.beginner_price_msg2{
  margin-top: 60px;
}

.beginner_price_list_wrap{
  background: linear-gradient(to right, #73838d 0%, #3a4247 100%);
  padding: 65px;
}
.beginner_price_list{
}
.beginner_price_list li{
  font-size: 20px;
  font-weight: 700;
  color: #FFF;
  text-indent: -1em;
  padding-left: 1em;
}
.beginner_price_list li+li{
  margin-top: 10px;
}
.beginner_price_list li:before{
  content: "・";
  color: #FFEB00;
}

/* 流れ */
.beginner_flow_wrap{
  background: #FFF;
  padding: 25px 10px 50px;
  text-align: center;
}
.beginner_flow_wrap .date{
  text-align: right;
  margin-bottom: 30px;
}


/* **********************************
 *  有価物処理について
 * ********************************* */
.pg_valuables{
  
}
.pg_valuables .section#sec1{
  
}
.pg_valuables .section#sec2{
  background: #F5F5F5;
  margin-top: 120px;
  padding-top: 150px;
  padding-bottom: 150px;
}
.pg_valuables .section#sec3{
  margin-top: 120px;
}

.valuables_list_wrap{
  width: 800px;
  max-width: 100%;
  background: linear-gradient(to right, #73838d 0%, #3a4247 100%);
  color: #FFF;
  padding: 70px 20px;
  margin: 0 auto;
  text-align: center;
}
.valuables_list_wrap.wide{
  width: 1000px;
}
.valuables_list_wrap .txt{
  font-size: 20px;
  font-weight: 700;
  margin-top: 40px;
}

.valuables_list{
  display: inline-block;
}
.valuables_list li{
  display: flex;
  align-items: center;
  color: #FFF;
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}
.valuables_list li+li{
  margin-top: 55px;
}
.valuables_list li span{
  border-bottom: 4px solid #FFEB00;
  padding-bottom: 20px;
}
.valuables_list li em,
.valuables_list li i{
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 50px;
  line-height: 1;
  color: #FFEB00;
  margin-right: 20px;
}
.valuables_list li i{
  font-style: normal;
}

.valuables_list_msg{
  line-height: 2;
  margin-top: 60px;
  text-align: center;
}
.valuables_list_msg .txt1{
  
}
.valuables_list_msg .txt2{
  font-size: 20px;
  font-weight: 700;
  margin: 35px 0;
}
.valuables_list_msg .txt3{
  
}



/* **********************************
 *  産業物廃棄処理について
 * ********************************* */
.pg_industrial{
  
}
.pg_industrial .section#sec1{
  
}
.pg_industrial .section#sec2{
  background: #F5F5F5;
  margin-top: 100px;
  padding-top: 140px;
  padding-bottom: 200px;
}
.pg_industrial .section#sec3{
  margin-top: 150px;
}
.pg_industrial .section#sec4{
  background: #F5F5F5;
  margin-top: 180px;
  padding-top: 150px;
  padding-bottom: 75px;
}
.pg_industrial .section#sec5{
  background: #F5F5F5;
  padding-top: 75px;
  padding-bottom: 100px;
}

.industrial_flow_wrap{
  background: #FFF;
  padding: 50px;
  text-align: center;
}


/* **********************************
 *  
 * ********************************* */
.pg_xxxx{
  
}
.pg_xxxx .section#sec1{
  
}
.pg_xxxx .section#sec2{
  
}
.pg_xxxx .section#sec3{
  
}


/* **********************************
 *  会社概要
 * ********************************* */
.pg_company{
  
}
.pg_company .section#sec1{
  
}
.pg_company .section#sec2{
  
}
.pg_company .section#sec3{
  
}


/* **********************************
 *  お問い合わせ
 * ********************************* */
.pg_contact{
  margin-bottom:-200px;
}
.pg_contact .section#sec1{
  
}
.pg_contact .section#sec2{
  
}
.pg_contact .section#sec3{
  
}

.contact_tt{
  text-align: center;
  font-weight: bold;
  font-size: 23px;
  letter-spacing: 0.2em;
}

.pg_contact .privacy{
  margin-top: 80px;
}

/* **********************************
 *  お知らせ
 * ********************************* */

 .news_wrap .news_items .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    border-bottom: 2px solid #707070;
    padding: 40px 0;
    line-height: 2.376;
    text-align: left;
}
 .news_wrap .news_items .item .date {
    width: 115px;
    font-size: 16px;
    font-weight: 700;
}
 .news_wrap .news_items .item .title {
    width: calc(100% - 115px);
    font-weight: 500;
    color:#707070
}


 



