@charset "UTF-8";


/* ==========================================================================
   サイト毎の独自のスタイル
   ========================================================================== */

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "游明朝体", "Yu Mincho", YuMincho, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.666;
  color: #000000;
}

@media(max-width:767px){
  body{
    padding-bottom: 60px;
  }
}

a{
  color: inherit;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

img{
  max-width: 100%;
}
a:hover img{
  opacity: 0.8;
}

img[class*="wp-image-"],
img[class*="attachment-"]{
  max-width: 100%;
  height: auto;
}

i, em{
  font-style: normal;
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video {
  position: relative;
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video,
.responsive_video iframe,
.responsive_video object,
.responsive_video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* テーブル */
table{
  width: 100%;
  table-layout: fixed;
}
table th,
table td{
  padding: 10px 10px;
}

/* テーブル 汎用class */
.tbl{

}
.tbl th,
.tbl td{
  border: 1px solid #b2b2b2;
}
.tbl th{

}
.tbl td{

}


/* スクロール テーブル */
.js-scrollable{
  overflow-x: auto;
}
.js-scrollable table{
  min-width: 748px;
}

/* 指定デバイスのみで表示するclass */
@media (min-width:1024px){
  .tb:not(.pc){
    display: none;
  }
  .sp:not(.pc){
    display: none;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none;
  }
  .sp:not(.tb){
    display: none;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none;
  }
  .tb:not(.sp){
    display: none;
  }
}


.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}


/* ページ送り(一覧) */
.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;
}

/*パンくずリスト*/
.breadcrumb{
  padding: 11px 0;
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 12px;
  color: #ffffff;
  background: #408cff;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 0;
}
.breadcrumb:after{
  content: "";
  width: 1000%;
  height: 100%;
  background: #408cff;
  position: absolute;
  left: -50%;
  top: 0;
  z-index: -1;
}
.breadcrumb li{
  display: inline;
  white-space: nowrap;
}
.breadcrumb li + li{
  margin-left: 7px;
}
.breadcrumb li:last-child{
  /*font-weight: 500;*/
}
.breadcrumb li a{
  position: relative;
  padding-right: 15px;
}
.breadcrumb li a:after{
  /*content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;*/
  content: ">";
  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%);
}*/

@media(min-width:768px){
  .breadcrumb{
    margin-bottom: 80px;
  }
}
@media(min-width:1024px){
  .breadcrumb{
    margin-bottom: 90px;
  }
}
@media(min-width:1200px){
  .breadcrumb{
    margin-bottom: 112px;
  }
}

/*404*/
.pg_404{
  text-align: center;
  letter-spacing: 0.075em;
}

/* **********************************
 *  コンテナ
 * ********************************* */
.wrapper{
  overflow: hidden;
}
.container{
  width: 1140px;
  max-width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
.section{
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.section + .section{
  margin-top: 50px;
}

/* **********************************
 *  ヘッダー
 * ********************************* */
.header{
  padding: 0 ;
}
.logo{
  margin-top: 27px;
  /*line-height: 1;*/
}
.header_logo{
  line-height: 1;
  display: inline-block;
}
.logo img{
  display: block;
}
.header_inner{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  width: 100%;
  padding: 0 100px;
}
.header_contact{
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  text-align: center;
  margin-top: 20px;
}
.header_contact1{
  padding: 10px 10px;
  color: #fff;
  background: #000;
  border-radius: 30px;
  line-height: 1px;
  margin-left: 10px;
  font-size: 13px;
  font-family: Noto Sans JP;
  letter-spacing: 0.075em;
  width: 130px;
  border: 1px solid #000;
}
.header_contact2{
  padding: 10px 10px;
  color: #fff;
  background: #000;
  border-radius: 30px;
  line-height: 1px;
  margin-left: 10px;
  font-size: 13px;
  font-family: Noto Sans JP;
  letter-spacing: 0.075em;
  width: 150px;
  border: 1px solid #000;
}
.header_contact1:hover,
.header_contact2:hover{
  background: #fff;
  color: #000;
  text-decoration: none;
}
.header_gnav{
  align-items: center;
  display: flex;
  justify-content: flex-end;
}
.header_gnav > ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  margin-top: 18px;
}
.header_gnav > ul > li{
  position: relative;
  font-family: Noto Sans JP;
  font-size: 15px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 0.0075em;
  padding-left: 25px;
  text-decoration: none;
}
.header_gnav > ul > li:last-child{
  border: none;
  padding-right: 0 ;
}


/* スマホエリア */


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .header {
    padding: 20px 0;
  }
  .header_inner{
    margin-bottom: 0;
  }
  .logo{
    margin-top: 0px;
  }
  .header_outer .header_contact{
    display: none;
  }

  /*スマホメニュー*/
  .header_gnav{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFF;
    padding: 0;
    z-index: 99999;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    transform: translateX(100%);
    padding: 15px;

    display: block;
  }
  .header_gnav.active{
    transform: translateX(0%);
  }
  .header_gnav > ul{
    display: block;
  }
  .header_gnav > ul > li{
    width: 100%;
    font-size: 16px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid #CCC;
  }
  .header_gnav > ul > li + li,
  .header_gnav > ul > li:first-child,
  .header_gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .header_gnav > ul > li a{
    padding: 25px 0;
    display: block;
  }
  .header_gnav .children, .header_gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }
}
@media (min-width:768px){

  /* タブレット */
  .logo{
    margin-top: 40px;
  }
  .header_inner{
    padding: 0 15px;
  }
  .header_logo img{
    height: 25px;
  }
  .header_gnav > ul > li{
    font-size: 14px;
    padding-left: 10px;
  }
  .header_gnav > ul > li + li{
    margin-left: 10px;
    border-left: 1px solid #000;
  }
  .header_gnav > ul > li:nth-child(2){
    border-left: 0;
  }

}
@media (min-width:1024px){

  /* タブレット横 */
  .header_inner{
    padding: 0 100px;
  }
  .header_logo img{
    height: auto;
  }
  .header_gnav > ul > li{
    font-size: 14px;
    padding-left: 10px;
  }
  .header_gnav > ul > li + li{
    margin-left: 10px;
  }
}
@media (min-width:1200px){

  /* PC */
  .header_gnav > ul > li{
    font-size: 15px;
    padding-left: 25px;
  }
  .header_gnav > ul > li + li{
    margin-left: 25px;
  }


}

/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav{

}

/* スマホエリア */


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){

  /* タブレット */



}
@media (min-width:1024px){

  /* タブレット横 */

}
@media (min-width:1200px){

  /* PC */



}

/* **********************************
 *  mv
 * ********************************* */
.mv{
  margin: 0 100px;
  margin-top: 20px;
  position: relative;
}
.mv_img{
  z-index: -1;
}
.mv_txt{
  font-family: Noto Sans JP;
  font-weight: 900;
  font-size: 56px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-shadow: 1.414px 1.414px 3px rgba(0, 0, 0, 0.6);
  color: #fff;
  position: absolute;
  bottom: 25%;
  left: 4%;
}
.mv_btns{
  position: absolute;
  bottom: 5.5%;
  right: 0;
  text-align: center;
}
.mv_btns a{
  color: #FFF;
  font-family: Outfit;
  font-size: 26px;
  font-weight: 600;
  display:block;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 370px;
  letter-spacing: 0.1em;
  position: relative;
  text-decoration: none;
}
.mv_btns a:after{
  position: absolute;
  content: "";
  border: 1px solid #FFF;
  top: 5px;
  left: 5px;
  right: 5px;
  bottom: 5px;
}

.mv_tel{
  padding-left: 15px;
  background-image: -moz-linear-gradient( 0deg, rgba(65,65,65,0.99608) 0%, rgb(1,1,1) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgba(65,65,65,0.99608) 0%, rgb(1,1,1) 100%);
  background-image: -ms-linear-gradient( 0deg, rgba(65,65,65,0.99608) 0%, rgb(1,1,1) 100%);
}
.mv_mail{
  margin-top: 10px;
  padding-left: 54px;
  background-image: -moz-linear-gradient( 0deg, rgb(1,1,1) 0%, rgba(65,65,65,0.99608) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(1,1,1) 0%, rgba(65,65,65,0.99608) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(1,1,1) 0%, rgba(65,65,65,0.99608) 100%);
}

.mv_btns a:before{
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  left: 48px;
}
.mv_tel:before{
  content: "\f879";
}
.mv_mail:before{
  content: "\f0e0";
}
.mv_mail span{
  font-family: Noto Sans JP;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* スマホエリア */


@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .mv{
    margin: 0 ;
  }
  .mv_txt{
    font-size: 20px;
  }
  .mv_btns {
    display: none;
  }
}
@media (min-width:768px){

  /* タブレット */
  .mv{
    margin: 0 ;
  }
  .mv_txt{
    font-size: 40px;
  }
}
@media (min-width:1024px){

  /* タブレット横 */
  .mv{
    margin: 0 100px;
    margin-top: 20px;
  }
  .mv_txt{
    font-size: 50px;
  }
  .mv_btns {
    bottom: 0%;
    right: 0%;
  }
}
@media (min-width:1200px){

  /* PC */
  .mv_txt{
    font-size: 56px;
  }
  .mv_btns{
    bottom: 6%;
    right: 0;
  }
  .mv_btns {
    display: block;
  }

}

/* **********************************
 *  フッター
 * ********************************* */

/*CONTACT US*/
.hp_contact-us{
  position: relative;
  /*top: -83px;
  left: 1%;*/
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  /*height: 180px;*/
  padding: 15px;
  background-color: #000;
}
.contact-us_p span{
  padding: 0 10px;
  background-color: #000;
  position: relative;
  z-index: 1;
}
.contact-us_right{
  width: 50%;
}
.contact-us_tt{
  font-family: Outfit;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  color: #FFF;
  text-align: center;
}
.contact-us_btn{
  position: relative;
  /*top: 10px;*/
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 505px;
  width: 100%;
  margin: 0 auto;
  height: 68px;
  background-color: #e5e5e5;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: 0.2s;
}
.contact-us_btn:hover{
  background: #797979;
  color: #e5e5e5;
  text-decoration: none;
}
.contact-us_icon1{
  width: 34px;
  position: absolute;
  left: 5%;
}
.contact-us_icon2{
  position: absolute;
  right: 3.5%;
}
.contact-us_btn1{
  font-family: Outfit;
  font-size: 21px;
  letter-spacing: 0.0075em;
}
.contact-us_btn2{
  font-size: 16px;
}
.contact-us_left{
  width: 41%;
  margin-top: 20px;
  line-height: 1.5;
  color: #fff;
}
.contact-us_p{
  font-size: 21px;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 0;
  text-align: center;
}
.contact-us_p:before{
  content: "";
  width: 100%;
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: -1;
}
.contact-us_left a{
  font-family: Outfit;
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-decoration: none;
  display: inline-block;
  transition: 0.2s;
}
.contact-us_left a:before{
  font-size: 29px;
  margin-right: 12px;
}
.contact-us_left a:hover{
  opacity: 0.7;
}
.contact-us_tel1{
  position: relative;
  /*top: 9%;
  left: 10%;*/
}
.contact-us_tel2{
  position: relative;
  /*top: 9%;
  left: 10%;*/
  pointer-events: none;
}
.contact-us_tel1:before,
.contact-us_tel2:before{
  /*position: absolute;
  left: -15%;*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.contact-us_tel1:before{
  content: "\f879";
}
.contact-us_tel2:before{
  content: "\f1ac";
}

/*footer*/
.footer{
  margin-top: 80px;
  position: relative;
  /*height: 650px;*/
}
/*.footer:before{
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  background: #f4f4f4;
  height: 350px;
  z-index: -1
}*/
.fotter1{
  padding: 52px 0 30px;
  margin-top: 50px;
  background: #f4f4f4;
}
.fotter1 .container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.fotter1 .box1{
  width: 50%;
}
.footer_logo{
  padding-left: 14px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  width: 360px;
}
.footer_tel{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 10px;
  padding: 0 10px;
}
.footer_tel1{
  font-size: 15px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.footer_tel2{
  font-family: Outfit;
  font-size: 26px;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.footer_btn {
}
.footer_btn1{
  font-size: 14px;
  margin-top: 5px;
  padding: 10px 12px;
  width: 254px;
  background-color: #fff;
  font-weight: 500;
  letter-spacing: 0.075em;
  box-shadow: 0.707px 0.707px 1px 0px rgba(0, 0, 0, 0.6);
  position: relative;
  display: block;
  transition: 0.2s;
}
.footer_btn1:after{
  content: "\f138";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  line-height: 1;
}
.footer_btn1:hover{
  text-decoration: none;
  background: #000;
  color: #fff;
}
.fotter1 .box2{
  /*width: 34%;*/
}
.fotter1 .box2 .ftr_links{
  display: flex;
  flex-wrap: wrap;
}
.footer_links{
  /*display: flex;
  flex-wrap: wrap;
  flex-direction:column;*/
  /*column-count: 2;*/
  /*justify-content: flex-start;*/
  margin-top: 7px;
  padding-left: 57px;
  /*height: 200px;*/
}
.footer_links1{
  padding-bottom: 22px;
  /*width: 50%;*/
  font-weight: 500;
  letter-spacing: 0.075em;
}
.footer_links2{
  font-size: 14px;
  letter-spacing: 0.075em;
}
.footer_links1:nth-child(n+5){
  padding-left: 32px;
}
.footer_copy{
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
  padding-left: 57px;
  font-family: Noto Sans JP;
  font-size: 12px;
  letter-spacing: 0.075em;
}


/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 70px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #878787;
}
.pagetop a i{
  font-size: 40px;
  background: #ffffff;
  border-radius: 50%;
}

/* スマホエリア */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #408cff;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 12px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 38%;
  border-right: 1px solid #397de3;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px 5px 5px;
  background: #408cff;
  color: #FFF;
  text-decoration: none;
}
.footer_fix ul li.btn2 a{
  background: #000;
}
.footer_fix ul li a i{
  font-size: 22px;
  margin-bottom: 5px;
  display: block;
}

@media (max-width:374px){
}
@media (min-width:375px){
}
@media (max-width:767px){
  .footer_fix{
    display: flex;
  }

  /*CONTACT US*/
  .hp_contact-us{
    /*top: 20px;
    left: 0%;*/
    width: 100%;
  }
  .contact-us_right{
    width: 100%;
  }
  .contact-us_btn{
    /*top: 10px;*/
    width: 100%;
    margin-top: 5px;
  }
  .contact-us_btn1,.contact-us_btn2 {
    font-size: 16px;
    text-decoration: none;
  }
  .contact-us_icon1{
    width: 30px;
    left: 10%;
  }
  .contact-us_icon2{
    right: 10%;
  }
  .contact-us_left{
    width: 100%;
    text-align: center;
  }
  .contact-us_p{
    font-size: 16px;
  }
  .contact-us_left a{
    font-size: 24px;
  }
  .contact-us_left a:before{
    font-size: 24px;
  }
  .contact-us_btn > span{
    margin: 0 2px;
  }

  /*footer*/
  .footer{
    padding: 0;
    right: 0;
    left: 0;
  }
  .footer_tel{
    justify-content: center;
    margin: 10px;
  }
  .fotter1 .box1,
  .fotter1 .box2{
    width: 100%;
    text-align: center;
  }
  .footer_logo{
    padding: 0;
    width: 100%;
  }
  .footer_logo img{
    width: 280px;
    margin-bottom: 10px;
  }
  .footer_links {
    padding-left: 10px;
  }
  .footer_links1{
    /*width: 50%;*/
  }
  .footer_copy,
  .footer_tel{
    justify-content: center;
  }
  .footer_tel{
    margin: 10px;
  }
  .footer_tel2{
    /*font-size: 15px;*/
    padding: 0;
    display: block;
  }
  .footer_btn1{
    margin: 0 auto;
    padding-right: 30px;
  }
  .fotter1 .box2 .ftr_links{
    display: none;
  }
  .footer_copy{
    margin-top: 30px;
    padding-left: 0;
  }
}

@media (min-width:768px){
  /* タブレット */

  /*CONTACT US*/
  .hp_contact-us{
    /*top: 20px;
    left: 0%;*/
    width: 100%;
    padding: 0 35px 10px;
  }
  .contact-us_right{
    width: 100%;
  }
  .contact-us_tt{
    font-size: 62px;
  }
  .contact-us_btn{
    /*top: 10px;*/
    width: 100%;
    margin-top: 15px;
  }
  .contact-us_left{
    width: 100%;
    text-align: center;
    margin-top: 25px;
  }
  .contact-us_p{
    font-size: 21px;
  }
  .contact-us_tel1{
    /*top: 0%;
    left: -23%;*/
  }
  .contact-us_tel2{
    /*top: -40%;
    left: 30%;*/
  }
  .contact-us_btn > span{
    margin: 0 1em;
  }

  /*footer*/
  .footer{
    margin-top: 150px;
  }
  .fotter1{
    margin-top: 100px;
    padding-bottom: 50px;
  }
  .box1,.box2{
    /*width: 100%;*/
  }
  .footer_links {
    /*width: 50%;*/
  }
  .footer_logo{
    width: 360px;
  }
}

@media (min-width:1024px){
  /* タブレット横 */

  /*CONTACT US*/
  .hp_contact-us{
    /*top: -80px;
    left: 0%;*/
    width: 100%;
  }
  .contact-us_right{
    width: 50%;
  }
  .contact-us_tt{
    font-size: 64px;
    text-align: left;
  }
  .contact-us_btn{
    top: 10px;
    width: 435px;
    margin: 0;
  }
  .contact-us_left{
    width: 50%;
    padding-left: 10px;
    text-align: center;
  }
  .contact-us_p{
    font-size: 21px;
  }
  .contact-us_tel1,
  .contact-us_tel2{
    font-size: 16px;
    /*top: 9%;
    left: 10%;*/
  }
  /*footer*/
  .fotter1{
    margin-top: 200px;
    padding-bottom: 75px;
  }
  .fotter1 .box1{
    width: 50%;
  }
  .fotter1 .box2{
    /*width: 33.33%;*/
  }
  .footer_logo{
    width: 420px;
  }
  .footer_tel2{
    padding-left: 10px;
  }

}
@media (min-width:1200px){

  /* PC */
  .footer_links {
    padding-left: 68px;
  }
  .contact-us_tt{
    font-size: 70px;
  }

  .contact-us_btn{
    width: 505px;
  }
  .contact-us_icon1 {
    left: 8.5%;
  }
}



/*******************************
*　company
********************************/
.pg_company{

}
.pg_company .section.sec1{
  position: relative;
}
/*.pg_company .section.sec1:after{
  content: "";
  background-image: url(../img/company/company.png);
}*/
.pg_company .section.sec2{
}
.pg_company .section.sec3{
}
.en{
  font-family: Outfit;
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1;
}
.en:first-letter{
  color: #408cff;
}
.ja{
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.075em;
  line-height: 1;
}

/*会社案内*/
.company_top{
  margin-top: 7.5%;
}
.pg_company h1{
  font-family: Outfit;
  font-size: 100px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.075em;
}
.company_top .sb_title{
  font-size: 21px;
  font-weight: 700;
  line-height: 2.5;
  letter-spacing: 0.075em;
  position: relative;
  left: 115px;
}
.company_top .sb_title:after{
  content: "";
  border-bottom: solid 1px #005dea;
  width: 100px;
  position: absolute;
  transform: translateY(50%);
  top: 50%;
  left: -100px;
}
.company_top .page{
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.075em;
  color: #fff;
  display: flex;
  position: relative;
  top: 130px;
}
.pg_company .back_img{
  width: 100%;
  position: absolute;
  z-index: -2;
  bottom: -145px;
}


/*代表挨拶*/
.company_msg_wrap{
  /*display: flex;
  flex-wrap: wrap;
  justify-content: space-between;*/
  position: relative;
  padding-top: 50px;
  /*margin-bottom: 12%;*/
}
.company_msg_wrap .box1{
  width: 100%;
  /*position: absolute;*/
  z-index: 1;
  order: 2;
}
.company_msg_wrap .box2{
  background-color: rgb(255, 255, 255);
  box-shadow: 0.707px 0.707px 1px 0px rgba(0, 0, 0, 0.6);
  background: #FFF;
  position: relative;
  z-index: 2;
  order: 1;
}
.company_msg_wrap .box2 .txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding: 15px;
  line-height: 2;
  text-align: justify;
}
.company_msg_wrap .box2 .name{
  text-align: right;
  margin-top: 23px;
}

/*会社概要*/
.pg_company .section.sec2 {
  padding-top: 40px;
}
.pg_company table{
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
  margin-top: 30px;
}
.pg_company table th,
.pg_company table td{
  padding: 15px;
  letter-spacing: 0.075em;
  border: 1px solid #ababab;
}
.pg_company table th{
  background: #e0ecff;
  font-weight: 500;
  text-align: left;
}
.pg_company table td{
  text-align: left;
  line-height: 2;
}

/* 沿革 */
.pg_company .section.sec3 {
  padding-top: 5px;
}
.company_history_items{
  margin-top: 30px;
}
.company_history_items .item{
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ababab;
  letter-spacing: 0.075em;
}
.company_history_items .item:last-child{
  border-bottom: 1px solid #ababab;
}
.company_history_items .box1 {
  width: 27%;
  font-size: 60px;
  font-weight: 700;
  color: #408cff;
  letter-spacing: 0.075em;
}
.company_history_items .box2 {
  width: 73%;
  padding: 20px 30px;
  line-height: 1.9;
  font-size: 16px;
}
.company_history_items .box2 .data{
  font-weight: 700;
}
.company_history_items .box2 .txt{
  font-weight: 400;
}
.company_history_items .box2 .title{
  font-size: 16px;
}
.company_history_items .box2 .row + .row{
  margin-top: 15px;
}

/*アクセス*/
.pg_company .section.sec4 {
  padding-top: 10px;
}
.access_items .box1 iframe{
  height: 300px;
}
.access_items .box2{
  max-width: 570px;
  padding: 5px 30px;
  margin-top: -50px;
  margin-left: auto;
  background: #ffffff;
  box-shadow: 0.707px 0.707px 1px 0px rgba(0, 0, 0, 0.6);
  position: relative;
  z-index: 1;
  letter-spacing: 0.075em;
  font-weight: 500;
}
.access_items .box2 .name{
  font-weight: 700;
  line-height: 2.25;
}
.access_items .box2 .address,
.access_items .box2 a{
  line-height: 2.25;
  text-align: justify;
}

/* 使用車両 */
.pg_company .section.sec5 {
  padding-top: 50px;
}
.pg_company .section.sec5 .table th,
.pg_company .section.sec5 .table td{
  padding: 6px 10px;
  font-size: 16px;
}
.pg_company .section.sec5 .table th{
  width: 94px;
  text-align: center;
}
.pg_company .section.sec5 .table td{
  padding-left: 36px;
}

/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  /*代表挨拶*/
  .company_msg_wrap{
    padding-top: 30px;
  }
  .pg_company table tr + tr th{
    border-top: 0;
  }
  .pg_company table th{
    border-bottom: none;
  }
  .pg_company table td{
    border-top: none;
  }
  /*.company_msg_wrap .box1{
    width: 60%;
    position: absolute;
    top: -30px;
    z-index: 1;
  }
  .company_msg_wrap .box2{
    margin-left: auto;
    left: 0;
  }
  .company_msg_wrap .box1 img{
    width: 100%;
  }*/

  .company_history_items .box1 {
    width: 100%;
    font-size: 40px;
  }
  .company_history_items .box2 {
    width: 100%;
    padding: 0 0 15px;
  }

  .access_items {
    margin-top: 30px;
  }
  .access_items .item2{
    margin-top: 20px;
  }

  .vehicle_used_items{
    margin-top: 30px;
  }
  .pg_company .section.sec5 .table{
    margin: 15px 0 0;
    table-layout: inherit;
  }
  .pg_company .section.sec5 .table th,
  .pg_company .section.sec5 .table td{
    display: table-cell;
  }
  .pg_company .section.sec5 .table th{
    border-right: 0;
    border-bottom: 1px solid #ababab;
  }
  .pg_company .section.sec5 .table td{
    width: calc(100% - 94px);
    border-top: 1px solid #ababab;
    border-left: 0;
  }

  .vehicle_used_items .item + .item{
    margin-top: 40px;
  }
}
@media (min-width:768px){
  .company_msg_wrap .box2{
    width: 570px;
    margin-left: auto;
    margin-top: -30px;
  }
  .company_msg_wrap .box2 .txt{
    padding: 44px 23px 44px 30px;
  }

  .pg_company .section.sec3 {
    padding-top: 40px;
  }
  .company_history_items {
    margin-top: 50px;
  }
  .en{
    font-size: 60px;
  }
  .pg_company table {
    margin-top: 50px;
  }
  .pg_company table th{
    width: 224px;
    padding: 19px 25px;
    border-right: none;
  }
  .pg_company table td{
    padding: 19px 35px;
    border-left: none;
  }

  .pg_company .section.sec4 {
    padding-top: 42px;
  }
  .access_items .box1 iframe{
    height: 400px;
  }

  .access_items{
    margin: 50px -15px 0;
    display: flex;
    flex-wrap: wrap;
  }
  .access_items .item1{
    width: 100%;
    padding: 0 15px;
  }
  .access_items .item2{
    width: 50%;
    padding: 0 15px;
    margin-top: 50px;
  }
  .access_items .item2 .box2{
    max-width: 445px;
    margin-top: -40px;
  }

  .vehicle_used_items{
    margin: 50px -15px 0;
    display: flex;
    justify-content: space-between;
    text-align: center;
  }
  .vehicle_used_items .item{
    width: 33.33%;
    padding: 0 15px;
  }

  .pg_company .section.sec5 .table{
    margin: 18px 0 0;
  }
}
@media (min-width:1024px){
  .en{
    font-size: 70px;
  }
  .company_msg_wrap{
    padding-bottom: 50px;
  }
  .company_msg_wrap .box2{
    width: 570px;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0;
  }

  .pg_company table th{
    width: 284px;
  }

  .company_history_items .box2 {
    width: 61%;
  }

}
@media (min-width:1200px){



}


/*******************************
*　safety
********************************/

/*安全への取り組み*/
.pg_safety{

}
.pg_safety .section.sec1{
}
.int .txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;
  margin-top: 47px;
}
.safety_int_items{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
  margin-top: 83px;
  background: url(/img/safety/4-1.png);
}
.safety_int_items .item{
  width: 25%;
  padding: 0 15px;
  position: relative;
}
.safety_int_items .item:nth-child(n+5){
  margin-top: 50px;
}
.safety_int_items .inner{
  position: relative;
  border: 3px solid #408cff;
  height: 150px;
  padding: 0 15px;
}
.safety_int_items .inner:before{
  content: "";
  background-color: rgb(64, 140, 255);
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  position: absolute;
  top: -1px;
  left: -1px;
  width: 15px;
  height: 15px;
}
.safety_int_items .inner:after{
  content: "";
  background-color: rgb(64, 140, 255);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 15px;
  height: 15px;
}
/*.safety_int_items img{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}*/
.safety_int_items .tt{
  width: 100%;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.safety_int_items .outer{
  font-family: Outfit;
  font-size: 40px;
  font-weight: 500;
  color: #408cff;
  letter-spacing: 0.075em;
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.safety_int_items .outer:before{
  content: "";
  border-top: 7px solid #FFF;
  width: 68px;
  height: 5px;
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .safety_int_items{
    margin-top: 50px;
  }
  .safety_int_items .item{
    width:  100%;
  }
  .safety_int_items .item:nth-child(n+2){
    margin-top: 50px;
  }
  .int .txt{
    text-align: justify;
  }
}
@media (min-width:768px){
  .pg_safety .section.sec1 {
    /*margin-top: -15px;*/
  }
  .safety_int_items .item{
    width:  50%;
    padding: 0 15px;
  }
  .safety_int_items .item:nth-child(n+2){
    margin-top: 0%;
  }
  .safety_int_items .item:nth-child(n+3){
    margin-top: 30px;
  }
}
@media (min-width:1024px){
  .safety_int_items .item{
    width:  25%;
    padding: 0 15px;
  }
  .safety_int_items .item:nth-child(n+3){
    margin-top: 0;
  }
  .safety_int_items .item:nth-child(n+5){
    margin-top: 50px;
  }
}
@media (min-width:1200px){
}





/*******************************
*　recruit
********************************/
/*採用メッセージ*/
.rm_wrap{
  margin-top: 35px;
  margin-bottom: 54px;
}
.rm_wrap .txt{
  text-align: justify;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
}

/*当社採用募集の特徴*/
.ft_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 60px;
}
.ft_items .items{
}
.ft_items .item{
  padding: 0 15px;
}
.ft_items .inner{
  border: 10px solid #408cff;
  height: 230px;
  padding: 25px 10px;
  text-align: center;
  background: url(/img/recruit/bg01.png);
}
.ft_items .tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 2.3;
  letter-spacing: 0.075em;
  padding: 0;
}
.ft_items .tt:after{
  content: "";
  width: 220px;
  height: 1px;
  border-bottom: 1px solid #408cff;
  display: block;
  margin: 0 auto;
}
.ft_items .txt{
  font-size: 16px;
  font-weight: 500;
  margin-top: 7px;
  letter-spacing: 0.075em;
  line-height: 2;
  margin-top: 7px;
}
/*募集要項*/
td .txt{
  margin-bottom: 30px;
  line-height: 3.5;
}
.pg_recruit .pg_company table th{
  vertical-align: top;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){
  .en{
    font-size: 40px;
  }
  .ja{
    font-size: 18px;
  }
  .ft_items .item {
    width: 100%;
    padding: 10px 0;
  }
  .ft_items .txt{
    letter-spacing: 0.065em;
  }
  table th,
  table td{
    display: block;
    width: 100%;
  }
  table th{
    border-right: 1px solid;
  }
  table td{
    border-left: 1px solid;
    padding: 0;
  }

}
@media (min-width:768px){

  .ft_items {
    margin: 50px -15px 110px;
  }
  .ft_items .item{
    width: 50%;
  }
  .ft_items .item:nth-child(n+3){
    margin-top: 50px;
  }
  .rm_wrap{
    margin-top: 45px;
    margin-bottom: 84px;
  }
  .rm_wrap .txt {
    text-align: center;
  }

}
@media (min-width:1024px){
  .rm_wrap{
    margin-bottom: 100px;
  }
  .ft_items .item{
    width: 33.33%;
  }
  .ft_items .item:nth-child(n+3){
    margin-top: 0;
  }

}
@media (min-width:1200px){



}



/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){



}



/*******************************
*　Privacy policy
********************************/
.pg_privacy_policy{

}
.pg_privacy_policy .section.sec1{
}
.pp .box1,
.pp .box2{
  width: 100%;
}
.pp{
  /*margin-bottom: 20%;*/
}
.pp .box1 .tt{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.9;
  margin-top: -15px;
}
.pp .box1 .txt{
  letter-spacing: 0.05em;
  line-height: 1.9;
  margin-top: 47px;
  text-align: justify;
}
.pp .box2 .tt{
  border-left: 6px #408cff solid;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.5;
  padding: 7px 0;
  padding-left: 20px;
  margin-top: 24px;
}
.pp .box2 .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.95;
  margin-top: 12px;
  margin-bottom: 27px;
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){



}



/*******************************
*　
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{
}
.pg_xxx .section.sec2{
}
.pg_xxx .section.sec3{
}


/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){

}
@media (max-width:767px){

}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{
  }
  .pg_xxx .section.sec2{
  }
  .pg_xxx .section.sec3{
  }


}
@media (min-width:1024px){


}
@media (min-width:1200px){



}
