@charset "UTF-8";
/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
  padding: 10px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: var(--logo-height);
  height: auto;
  transition: 0.2s all;
}

/* メニュー全般 */
.hdr_menu{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* TELボタン */
.hdr_tel{

}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
}
.hdr_tel_link{

}
.hdr_tel_link p{

}
.hdr_tel_link p:before{
  display: inline-block;
  content:"\f095";
  font-family: "fontAwesome";
  margin-right: 6px;
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
  color: var(--main-color);
}


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: var(--main-color);
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

/* SNSボタン */
.hdr_sns{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_sns a{
  width: 24px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    display: none;
  }
  .hdr_tel{
    display: none;
  }
  /* SNSボタン */
  .hdr_sns{
    margin-left: 20px;
  }
  .hdr_sns a img{
    height: 30px;
  }

  .hdr_logo{
    width: 65px;
    display: block;
  }

  .hdr_link{
    display: none;
  }
  .hdr_contact_btn{
    display: none;
  }

  .gnav_item_en{
    display: none!important;
  }
}
@media (min-width:768px){

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0;
  }
  .header{
    --logo-height: 70px;

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    /*align-items: center;*/
    align-items: flex-start;
    justify-content: space-between;
    padding: 0 16px 16px;
  }
  .hdr_logo {
    position: relative;
    top: 10px;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  /* ロゴ */
  .hdr_logo img{
    width: 70px;
    /*height: var(--logo-height);*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
    width: 112px;
    width: auto;
    height: calc(var(--logo-height) * 0.87);
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }

  /*ボタン*/
  .hdr_link{
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    height: 50px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 258px;
    background: #fff;
    color: #32333d;
    /* border-radius: 27px; */
    padding: 0 10px;
    ;
    margin: 5px 5px;
    position: relative;
    z-index: 1;
    transition: 0.2s all;
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.1);
  }
  .hdr_link:hover{
    transform: scale(1.02);
    box-shadow: 0px 0px 9px 1px rgba(0, 0, 0, 0.3);
  }
  .hdr_link p{
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
  }
  .hdr_link.bg_bl{
    color: #fff;
    border: 1px solid #fff;
    background: linear-gradient(180deg,rgba(32, 183, 236, 1) 2%, rgba(49, 88, 163, 1) 100%);
  }
  .hdr_link p:before{
    content: "";
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 11px;
  }

  /* お問い合わせ */
  .hdr_contact_btn {
    display: block;
    width: 154px;
    background: var(--sub-color);
    color: #fff !important;
    text-align: center;
    font-size: 16px;
    font-family: var(--font-ja);
    font-weight: 500;
    padding: 24px 0;
    border: 1px solid transparent;
  }
  .hdr_contact_btn:hover{
    background: #FFF;
    border: 1px solid var(--sub-color);
  }
  .hdr_contact_btn:hover p,
  .hdr_contact_btn:hover p:before{
    color: var(--sub-color);
  }
  .hdr_contact_btn p{
    letter-spacing: 0.075em;
  }
  .hdr_contact_btn p:before {
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 8px;
    color: #fff;
  }
  .hdr_contact_btn.recruit {
    background: var(--main-color);
    margin-left: 20px;
  }
  .hdr_contact_btn.recruit:hover{
    background: #FFF;
    border: 1px solid var(--main-color);
  }
  .hdr_contact_btn.recruit:hover p,
  .hdr_contact_btn.recruit:hover p:before{
    color: var(--main-color);
  }
  .hdr_contact_btn.recruit p:before {
    content: "\f0c0";
    font-family: "fontAwesome";
    margin-right: 8px;
    color: #fff;
  }

  .gnav_item_en{
    font-size: 1.2em;
    letter-spacing: 0;
    border-bottom: 1px solid #181818;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
@media (min-width:1024px){

  .header{
    --logo-height: 90px;
    padding: 0px 0px 34px 30px;
  }

  /* ロゴ */
  .hdr_logo img{
    /*width: 200px;*/
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }

  /* お問い合わせ */
  .hdr_contact_btn {
    width: 184px;
    font-size: 16px;
    padding: 24px 0;
  }
  .hdr_contact_btn p:before {
    margin-right: 8px;
  }
  .hdr_contact_btn.recruit {
    margin-left: 20px;
  }
  .hdr_contact_btn.recruit p:before {
    margin-right: 8px;
  }
}
@media (min-width:1200px){

  .header{
    --logo-height: 110px;
  }
  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: 15px;
  }
  .hdr_logo img{
    width: 112px;
  }

  /* ヘッダースリム */
  .header.slim{

  }
  .header.slim .hdr_logo img{
  }

}

@media (min-width:1720px){
  /* ロゴ */
  .hdr_logo{
    position: relative;
    top: 30px;
  }
  .hdr_logo img{
    width: 132px;
  }

}

/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 30px;
  position: relative;
  z-index: 1;

  position: absolute;
  top: 90px;
  right: 0;
  left: 0;
}
.pg_header{
  position: relative!important;
  top: 0!important;
  margin-bottom: 60px;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
  width: 90.89%;
  margin-left: auto;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 0px;
  height: 100%;
}
/*.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}*/

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_ja{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.5;
  position: relative;
}
.pg_header_title_ja:after{
  content: "";
  display: block;
  width: 135px;
  height: 1px;
  background: #000;
  margin-top: 9px;
  margin-bottom: 17px;
}
.pg_header_title_en{
  font-size: 16px;
  font-family: var(--font-en);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
}


.pg_header_mv_img img {
  -webkit-mask-image: url(/system_panel/uploads/images/about_mask1.png);
  aspect-ratio: 1515 / 581;
}

@media (max-width: 767px) {

  .pg_header_title{
    top: 62% !important;
    filter: drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF) drop-shadow(0 0 2px #FFF);
  }
  .pg_header_mv_img.mask_img:before{
    content:"";
    display: block;
    padding-top: 200px;
  }
  .pg_header_mv_img.mask_img img{
    object-fit: cover;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-size: cover;
    -webkit-mask-position: left;
  }
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 84.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 55%;
    left: 35px;
  }
  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_ja:after{
    width: 180px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 20px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 25px;
  }
  .pg_header_title_ja{
    font-size: 30px;
  }
  .pg_header_title_ja:after{
    width: 190px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 22px;
  }

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

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 60px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

@media (min-width:1470px){

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    left: 70px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

@media (min-width:1720px){

  .pg_header{
    margin-bottom: 30px;
    top: 0;
  }
  .pg_header_mv_img{
    width: 78.89%;
    margin-left: auto;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 0px;
    height: 100%;
  }
  .pg_header_title{
    top: 50%;
    top: 49%;
    left: 195px;
  }
  .pg_header_title_ja{
    font-size: 40px;
  }
  .pg_header_title_ja:after{
    width: 205px;
    margin-top: 9px;
    margin-bottom: 17px;
  }
  .pg_header_title_en{
    font-size: 24px;
  }
}

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

}
.pg_company .section.sec1{
  position: relative;
}
.pg_company .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/*見出し台形*/
.daikei{
  position: relative
}
.daikei:before{
  content: "";
  display: block;
  width: 1585px;
  aspect-ratio:1585 / 1143;
  background-image: url(/system_panel/uploads/images/company_daikei.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -350px;
  left: 41%;
  top: -200px;
  left: 58.9%;
  transform:translateX(-50%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width:374px){

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

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

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

  .pg_header{
    margin-bottom: 80px;
  }

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{
    padding-top: 100px;
  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

  .daikei:before{
    top: -50px;
  }
}
@media (min-width:1024px){
  .daikei:before{
    top: -350px;
    left: 41%;
    top: -60px;
    left: 58.9%;
    transform:translateX(-50%);
  }

}
@media (min-width:1200px){
  .pg_header{
    margin-bottom: 150px;
  }
  .pg_company .section.sec2{
    padding-top: 185px;
  }

  .daikei:before{
    top: -350px;
    left: 41%;
    top: -220px;
    left: 61%;
    transform:translateX(-50%);
  }
}
@media (min-width:1470px){
  .daikei:before{
    top: -350px;
    left: 41%;
    top: -220px;
    left: 51%;
    transform:translateX(-50%);
  }
}
@media (min-width:1720px){
  .daikei:before{
    top: -350px;
    left: 41%;
    top: -200px;
    left: 41%;
    transform:translateX(-50%);
  }

}


/*装飾*/
.plate{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
}

.pos1{
  background-image: url(/system_panel/uploads/images/c1.png);
  width: 66%;
  aspect-ratio:510 / 466;
  left: 0;
  bottom: -26.09%;
}

/*main*/
/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.page_hdr_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: 30px;
}
.page_hdr_box1_img{
  position: relative;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  aspect-ratio: 776 / 552;
}
.page_hdr_box1_img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url(/system_panel/uploads/images/company_mask1.png);
}
.page_hdr_box2{
  width: 100%;
  order: 1;
}
.page_hdr_box2 .about_box_title{
  font-size: 20px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 500;
  line-height: 1.38em;
  letter-spacing: 0.075em;
}
.page_hdr_box2 .content_desc{
  margin-top: 20px;
}
.page_hdr_box2 .daihyo{
  text-align: right;
  margin-top: 20px;
}
.page_hdr_box2 .daihyo strong{
  font-size: 18px;
  font-weight: 700;
}

.company_tt{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 27px;
}
.company_tt_en{
  font-size: 24px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0.075em;
  margin-right: 33px;
}
.company_tt_ja{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{

}
.company_tbl .table_rows_th{

}
.company_tbl .table_rows_td{

}
.company_tbl .table_rows_td a:hover{
  color: var(--sub-color);
}
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}

@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #bababa;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #bababa;
  }
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    margin-top: 40px;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box2{

  }
  .page_hdr_box2 .about_box_title{
    font-size: 26px;
  }
  .page_hdr_box2 .content_desc{
    margin-top: 29px;
  }

  .company_tt{

  }
  .company_tt_en{
    font-size: 30px;
  }
  .company_tt_ja{
    font-size: 18px;
  }

  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    border-color: #bababa;
  }
  .company_tbl .table_rows_th p,
  .company_tbl .table_rows_td p{
    letter-spacing: 0.05em;
  }
  .company_tbl .table_rows_th{
    background: #f6f6f6;
    font-weight: 700;
  }
  .company_tbl .table_rows_td{
    font-weight: 500;
    line-height: 1.75em;
  }
  .gmap{
    margin-top: 40px;
  }
  .access_map iframe{
    width: 100%;
    height: 450px;
    border: none;
  }
}
@media (min-width:1024px){


}
@media (min-width:1200px){
  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{
    width: 50.98%;
    order: 1;
    margin-top: 0;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img img{

  }
  .page_hdr_box2{
    width: 42.76%;
    order: 2;
    padding-top: 54px;
  }
  .page_hdr_box2 .about_box_title{
    font-size: 36px;
  }
  .page_hdr_box2 .content_desc{

  }

  .company_tt{

  }
  .company_tt_en{
    font-size: 38px;
  }
  .company_tt_ja{

  }

  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 31px 17px;
  }
  .company_tbl .table_rows_th{
    /*  width: 284px;*/
  }
  .company_tbl .table_rows_td{

  }
  .gmap{
    margin-top: 80px;
  }
  .access_map iframe{
    height: 450px;
  }
  .company_gallery_items{
    margin-top: 96px;
  }
}
@media (min-width:1366px){
  .page_hdr_box2 .about_box_title{
    font-size: 50px;
  }

}
@media (min-width:1520px){
  .page_hdr_box2 .about_box_title{
    font-size: 52px;
  }

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


}


/*******************************
*　解体工事について
********************************/
.pg_demolition{

}
.pg_demolition .section.sec1{
  position: relative;
}
.pg_demolition .section.sec2{

}
.pg_demolition .section.sec3{
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
}
.pg_demolition .section.sec4{

}
.pg_demolition .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_demolition .section.sec1{
    padding-bottom: 70px;
  }
  .pg_demolition .section.sec2{

  }
  .pg_demolition .section.sec3{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pg_demolition .section.sec4{

  }
  .pg_demolition .section.sec5{

  }


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

  }
  .pg_demolition .section.sec1{
    padding-bottom: 120px;
  }
  .pg_demolition .section.sec2{

  }
  .pg_demolition .section.sec3{
    padding-top: 100px;
    padding-bottom: 160px;
  }
  .pg_demolition .section.sec4{

  }
  .pg_demolition .section.sec5{

  }


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


}
@media (min-width:1366px){
  .pg_demolition .section.sec3{
    padding-bottom: 160px;
  }

}
@media (min-width:1470px){
  .pg_demolition .section.sec3{
    padding-top: 100px;
    padding-bottom: 200px;
  }

}
@media (min-width:1720px){
  .pg_demolition{

  }
  .pg_demolition .section.sec1{
    padding-bottom: 482px;
  }
  .pg_demolition .section.sec2{

  }
  .pg_demolition .section.sec3{
    padding-top: 178px;
    padding-bottom: 370px;
  }
  .pg_demolition .section.sec4{

  }
  .pg_demolition .section.sec5{

  }

}

/* 背景 */
.cmn_bk4_1{
  top: 0;
  padding-bottom: 1189px;
}
.cmn_bk4_1:before{
  width: 32.09%;
  top: 0;
  right: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  transform: none;
}

.cmn_bk5{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background: #f6f6f6;
  z-index: -1;
  top: auto;
  bottom: 200px;
  padding-bottom: 1184px;
}
.cmn_bk5:before {
  content: "";
  position: absolute;
  background: #FFF;
  width: 32.09%;
  top: 0;
  left: 0;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  transform: none;
}

/*main*/
.cmn_box1.right:before {
  aspect-ratio: 255 / 233;
  background-image: url(/system_panel/uploads/images/gr3.png);

  left: auto;
  right: -50px;
  bottom: -15%;
  z-index: 1;
}

/* FEATURES */
.demolition_features_rows{
  margin-top: 50px;
}
.demolition_features_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.demolition_features_row:after{
  content: "";
  display: block;
  background: #FFF;
  position: absolute;
  top: -16px;
  /*left: 140px;*/
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
  bottom: -10px;
  z-index: -1;
}
.demolition_features_row:nth-child(n+2){
  margin-top: 55px;
}
.demolition_features_box1{
  width: 100%;
}
.demolition_features_box1_tt{
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.15;

  margin-bottom: 17px;
  margin-left: 0;

}
.demolition_features_box1_img{
  -webkit-mask-image: url(/system_panel/uploads/images/mask4.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.demolition_features_box1_img img{
  aspect-ratio: 745 / 272;
}
.demolition_features_box2{
  width: 100%;
  margin-top: 10px;
}
.demolition_features_title{
  font-size: 18px;
  letter-spacing: 0.075em;
}
.ddemolition_features_title:after{
  width: 125px;
  margin-top: 14px;
  margin-bottom: 21px;
}
.demolition_features_txt{
  letter-spacing: 0.075em;
  padding-left: 4px;
}

/* FLOW */
.demolition_flow{

}
.demolition_flow_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  /*margin-inline: -26.5px;*/
  margin-top: 55px;
}
.demolition_flow_item{
  width: 100%;
  /*padding-inline: 26.5px;*/
  position: relative;
}
.demolition_flow_item:nth-child(n+2){
  margin-top: 35px;
}
.demolition_flow_item_img{
  overflow: initial;
}
.demolition_flow_item_img:before{
  padding-top: 75%;
}
.demolition_flow_item_img:after{
  content: "";
  position: absolute;
  background: #FFF;
  width: 24.52%;
  height: 100%;
  top: -1px;
  left: -1px;
  clip-path: polygon(100% 0, 0 0, 0 60%);
  transform: none;
  z-index: 1;
}
.demolition_flow_num{
  font-size: 40px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0;
  color: #181818;
  position: absolute;
  top: -20px;
  left: 0;
  z-index: 3;
}
.demolition_flow_title{
  font-size: 18px;
  font-family: var(--font-mincho);
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.075em;
  margin-top: 9px;
}
.demolition_flow_title:after{
  content: "";
  display: block;
  width: 100px;
  height: 1px;
  background: #181818;
  margin-top: 10px;
  margin-bottom: 16px;
}
.demolition_flow_txt{
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.075em;
}


@media (max-width:767px){

}
@media (min-width:768px){
  /* 背景 */
  .cmn_bk4_1{
    top: 20px;
    padding-bottom: 1189px;
  }

  .cmn_box1.right:before {
    left: auto;
    right: -150px;
    bottom: -15%;
  }

  /* FEATURES */
  .demolition_features_box1_tt{
    margin-left: 240px;
  }
  .demolition_features_row:nth-child(n+2) {
    margin-top: 65px;
  }

  /* FLOW */
  .demolition_flow{

  }
  .demolition_flow_items{
    margin-inline: -10px;
    margin-top: 65px;
  }
  .demolition_flow_item{
    width: 50%;
    padding-inline: 10px;
  }
  .demolition_flow_item:nth-child(n+2){
    margin-top: 0;
  }
  .demolition_flow_item:nth-child(n+3){
    margin-top: 35px;
  }
  .demolition_flow_item_img{

  }
  .demolition_flow_item_img:before{
    padding-top: 75%;
  }
  .demolition_flow_item_img:after{
    width: 24.52%;
    height: 100%;
    top: -1px;
    left: -1px;
    clip-path: polygon(100% 0, 0 0, 0 60%);
    transform: none;
  }
  .demolition_flow_num{
    font-size: 40px;
    top: -20px;
    left: 0;
  }
  .demolition_flow_title{
    font-size: 18px;
    margin-top: 9px;
  }
  .demolition_flow_title:after{
    width: 100px;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .demolition_flow_txt{
    font-size: 15px;
  }
}
@media (min-width:1024px){
  /* 背景 */
  .cmn_bk4_1 {
    top: 0;
    padding-bottom: 530px;
  }
  .cmn_bk4_1:before {
    width: 23.09%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

  .cmn_bk5{
    width: 100%;
    top: auto;
    bottom: 200px;
    padding-bottom: 1184px;
  }
  .cmn_bk5:before {
    width: 85%;
    height: 100%;
    top: 0;
    left: -250px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    transform: skewX(23deg);
  }

  .cmn_box1.right{
    order: 2;
  }
  .cmn_box2.left{
    order: 1;
  }
  .cmn_box1.right:before {
    right: -35%;
    bottom: 32%;
  }

  /* FEATURES */
  .demolition_features_rows{
    margin-top: 137px;
    margin-top: 80px;
  }
  .demolition_features_row{

  }
  .demolition_features_row:after {
    top: -16px;
    left: 140px;
    /* left: 30px; */
    left: var(--margin-for-device-side-w);
    right: var(--margin-for-device-side-w);
    bottom: -20px;
  }
  .demolition_features_row:nth-child(n+2){
    margin-top: 65px;
  }
  .demolition_features_box1{
    width: 47.01%;
  }
  .demolition_features_box1_tt{
    font-size: 26px;
    margin-bottom: 17px;
    margin-left: 161px;
  }
  .demolition_features_box1_tt{
    font-size: 18px;
    margin-bottom: 17px;
    margin-left: 65px;
  }
  .demolition_features_box1_img img{

  }
  .demolition_features_box2{
    width: 50.93%;
    margin-top: 70px;
    margin-top: 30px;
  }
  .demolition_features_title{
    font-size: 21px;
  }
  .demolition_features_title:after{
    width: 125px;
    margin-top: 14px;
    margin-bottom: 21px;
  }
  .demolition_features_txt{
    letter-spacing: 0.075em;
    padding-left: 4px;
  }

  /* FLOW */
  .demolition_flow_items{
    margin-inline: -10px;
  }
  .demolition_flow_item {
    width: 33.333%;
    padding-inline: 10px;
  }
  .demolition_flow_item:nth-child(n+3){
    margin-top: 0;
  }
  .demolition_flow_item:nth-child(n+4){
    margin-top: 35px;
  }
}
@media (min-width:1200px){
  /* 背景 */
  .cmn_bk5 {
    width: 100%;
    top: auto;
    bottom: 70px;
    padding-bottom: 1184px;
  }

  .cmn_box1.right:before {
    right: -35%;
    bottom: 25%;
  }

  /* FEATURES */
  .demolition_features_box1_tt {
    margin-bottom: 17px;
    margin-left: 150px;
  }
  .demolition_features_row:after {
    top: -16px;
    left: 140px;
    left: 120px;
    /* left: var(--margin-for-device-side-w); */
    right: -30px;
    bottom: 10px;
  }

  /* FLOW */
  .demolition_flow_items{
    margin-inline: -15px;
  }
  .demolition_flow_item {
    width: 25%;
    padding-inline: 15px;
  }
  .demolition_flow_item:nth-child(n+4) {
    margin-top: 0;
  }
  .demolition_flow_item:nth-child(n+5){
    margin-top: 45px;
  }
}
@media (min-width:1366px){
  .cmn_bk4_1 {
    top: 60px;
    padding-bottom: 1189px;
  }

  .cmn_box1.right:before {
    right: -25%;
    bottom: 15%;
  }

  /* FEATURES */
  .demolition_features_row:after {
    top: -16px;
    left: 140px;
    left: 140px;
    /* left: var(--margin-for-device-side-w); */
    right: 0;
    bottom: 20px;
  }

}
@media (min-width:1470px){
  /**/
  .cmn_bk5 {
    width: 100%;
    top: auto;
    bottom: 80px;
    padding-bottom: 1184px;
  }

  .cmn_box1.right:before {
    right: -35%;
    bottom: 15%;
  }


  /* FEATURES */
  .demolition_features_rows{
    margin-top: 137px;
  }
  .demolition_features_row{

  }
  .demolition_features_row:after {
    top: -16px;
    left: 140px;
    left: 130px;
    /* left: var(--margin-for-device-side-w); */
    right: 0;
    bottom: 25px;
  }
  .demolition_features_row:nth-child(n+2){
    margin-top: 48px;
  }
  .demolition_features_box1{
    width: 49.01%;
  }
  .demolition_features_box1_tt{
    font-size: 24px;
    margin-bottom: 17px;
    margin-left: 160px;
  }
  .demolition_features_box1_img img{

  }
  .demolition_features_box2{
    width: 47.93%;
    margin-top: 30px;
  }
  .demolition_features_title{
    font-size: 24px;
  }
  .demolition_features_title:after{
    width: 125px;
    margin-top: 14px;
    margin-bottom: 21px;
  }
  .demolition_features_txt{
    letter-spacing: 0.075em;
    padding-left: 4px;
  }

  /* FLOW */
  .demolition_flow{

  }
  .demolition_flow_items{
    margin-inline: -26.5px;
    margin-top: 95px;
  }
  .demolition_flow_item{
    width: 25%;
    padding-inline: 26.5px;
  }
  .demolition_flow_item:nth-child(n+4) {
    margin-top: 0;
  }
  .demolition_flow_item:nth-child(n+5){
    margin-top: 55px;
  }
  .demolition_flow_item_img{
    overflow: initial;
  }
  .demolition_flow_item_img:before{
    padding-top: 76.47%;
  }
  .demolition_flow_item_img:after{
    width: 24.52%;
    height: 100%;
    top: -1px;
    left: -1px;
    clip-path: polygon(100% 0, 0 0, 0 60%);
    transform: none;
  }
  .demolition_flow_num{
    font-size: 52px;
    top: -24px;
    left: -4px;
  }
  .demolition_flow_title{
    font-size: 21px;
    margin-top: 9px;
  }
  .demolition_flow_title:after{
    width: 100px;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .demolition_flow_txt{
    font-size: 15px;
  }
}
@media (min-width:1520px){

}
@media (min-width:1720px){
  /* 背景 */
  .cmn_bk4_1{
    top: 91px;
    padding-bottom: 1189px;
  }
  .cmn_bk4_1:before{
    width: 32.09%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

  .cmn_bk5{
    width: 100%;
    top: auto;
    bottom: 200px;
    padding-bottom: 1184px;
  }
  .cmn_bk5:before {
    width: 58%;
    height: 100%;
    top: 0;
    left: -250px;
    clip-path: polygon(100% 0, 0 0, 0 100%);
    transform: skewX(23deg);
  }

  .cmn_box1.right{
    width: 50.98%;
    order: 2;
  }
  .cmn_box2.left{
    width: 42.76%;
    order: 1;
  }
  .cmn_box1.right:before{
    width: 510px;
    right: -26%;
    bottom: -11.5%;
  }
  .cmn_box1.right .cmn_box1_img{
    margin-left: 0;
  }

  /* FEATURES */
  .demolition_features_box2{
    width: 44.93%;
    margin-top: 70px;
  }
  .demolition_features_row:after {
    top: -16px;
    left: 140px;
    left: 140px;
    /* left: var(--margin-for-device-side-w); */
    right: 0;
    bottom: 32px;
  }
  .demolition_features_box1_tt{
    font-size: 26px;
    margin-bottom: 17px;
    margin-left: 161px;
  }
  .demolition_features_txt {
    padding-inline: 6px;
  }

  /* FLOW */
  .demolition_flow{

  }
  .demolition_flow_items{
    margin-inline: -26.5px;
    margin-top: 95px;
  }
  .demolition_flow_item{
    width: 25%;
    padding-inline: 26.5px;
  }
  .demolition_flow_item:nth-child(n+5){
    margin-top: 55px;
  }
  .demolition_flow_item_img{
    overflow: initial;
  }
  .demolition_flow_item_img:before{
    padding-top: 76.47%;
  }
  .demolition_flow_item_img:after{
    width: 24.52%;
    height: 100%;
    top: -1px;
    left: -1px;
    clip-path: polygon(100% 0, 0 0, 0 60%);
    transform: none;
  }
  .demolition_flow_num{
    font-size: 52px;
    top: -24px;
    left: -4px;
  }
  .demolition_flow_title{
    font-size: 21px;
    margin-top: 9px;
  }
  .demolition_flow_title:after{
    width: 100px;
    margin-top: 10px;
    margin-bottom: 16px;
  }
  .demolition_flow_txt{
    font-size: 15px;
  }
}
/*@media (min-width: 1720px) {
  :root {
    --margin-for-device-side-w: calc(960px - 50vw);
  }
}*/

/*******************************
*　共通タイトル
********************************/
.cmn_contents_box1{
  padding-top: 15px;
  padding-left: 50px;
  margin-bottom: 30px;
  position: relative;
}
.cmn_contents_box1:before{
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 25 / 37;
  background-image: url(/system_panel/uploads/images/gr4.png);
  /* background-position: center center; */
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 8px;
  left: 0;
  pointer-events: none;
  z-index: 1;
  /* transform: rotate(62deg);*/
}
.cmn_contents_box1.line:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #396e95;
  position: absolute;
  top: 0;
  left: 0;
  /* transform: rotate(-62deg); */
}

.cmn_contents_box1e .cmn_contents_head{
  margin-bottom: 20px;
}
.cmn_contents_box1 .cmn_contents_ja {
  margin-top: 10px;
  margin-left: 0;
}

@media (max-width:767px){

}
@media (min-width:768px){
  .cmn_contents_box1 .cmn_contents_ja{
    margin-top: 0;
    margin-left: 20px;
  }

  .cmn_contents_box1:before{
    width: 65px;
    top: -20px;
    left: 0;
  }
  .cmn_contents_box1.line:after{
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #396e95;
    position: absolute;
    top: 130px;
    left: -390px;
    transform: rotate(-62deg);
  }
}
@media (min-width:1024px){
  .cmn_contents_box1{
    padding-top: 0;
    padding-left: 133px;
    margin-bottom: 77px;
  }
  .cmn_contents_box1:before {
    width: 135px;
    top: -70px;
    left: 20px;
  }
  .cmn_contents_box1 .cmn_contents_head{
    margin-bottom: 20px;
  }
  .cmn_contents_box1 .cmn_contents_ja {
    margin-left: 33px;
  }
  .cmn_contents_box1.line:after{
    width: 1150px;
    height: 1px;
    top: 350px;
    left: -685px;
    transform: rotate(-62deg);
  }

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


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


}
@media (min-width:1470px){
  .cmn_contents_box1 {
    padding-left: 160px;
    margin-bottom: 77px;
  }
  .cmn_contents_box1:before {
    width: 185px;
    top: -75px;
    left: -18px;
  }
}
@media (min-width:1520px){


}
@media (min-width:1720px){
  .cmn_contents_box1{
    padding-left: 133px;
    margin-bottom: 77px;
  }
  .cmn_contents_box1:before{
    width: 275px;
    top: -156px;
    left: -70px;
  }
  .cmn_contents_box1.line:after{
    width: 1350px;
    height: 1px;
    top: 131px;
    left: -692px;
    transform: rotate(-62deg);
  }

  .cmn_contents_box1 .cmn_contents_head{
    margin-bottom: 20px;
  }
  .cmn_contents_box1 .cmn_contents_ja {
    margin-left: 33px;
  }

}

/*******************************
*　お問い合わせ
********************************/
.pg_contact .section.sec1 {
  position: relative;
}
.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 21px;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #bfbfbf;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #bfbfbf;
}
.pg_contact .formTh {
  padding: 15px 15px 15px 20px;
  background: #ebebeb;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 19px;
}
.pg_contact .formTd.a-center{
  display: flex;
  align-items: center;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  font-weight: 500;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 56px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.08em;
}
.pg_contact .privacyLabel a{
  color: #0e44a7;
}
.pg_contact .formBtn.formSend {
  display: block;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  display: block;
  width:332px;
  height: auto;
  overflow: hidden;
  color: #fff !important;
  border: 0;
  background: linear-gradient(90deg, #1f4f7a, #8a6f7f, #1f4f7a);
  background-size: 200% 100%;
  background-position: 0% 0;
  transition: background-position 0.5s ease;
  border-bottom: none;
  padding: 9px 0;
  margin: 5px 5px 0;
  margin-left: auto;
  margin-right: auto;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 18px;
  height: 220%;
  background: #fff;
  clip-path: polygon(99% 0, 0 0, 98% 50%);
  z-index: 1;
}
.text-center_inner{
  width:332px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
.pg_contact .text-center_inner:before{
  content: "";
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: 17px;
  height: 105%;
  background: #fff;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  z-index: 2;
}

.pg_contact .formBtn.formSend::before {
  content: "";
  position: absolute;
  top: -34%;
  left: 23px;
  width: 2px;
  height: 190%;
  background: #fff;
  opacity: 0.7;
  transform: skewX(23deg);
  box-shadow: 16px 0 0 rgba(255,255,255,1);
  z-index: 1;
}

.pg_contact .formBtn.formSend:hover{
  background-position: 100% 0 !important;
  border: 0;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 7px;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}
.radioArea .d-inline-block{
  margin-right: 12px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .thanks_text{
    text-align: center;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 139px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 45px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: var(--font-ja);
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid var(--main-color);
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}
.privacy_txt a:hover{
  color: var(--sub-color);
}
.privacy_txt p{
  letter-spacing: 0.04em;
}
.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

}
.privacy_txt_type2 p{
  text-indent: -1em;
  padding-left: 1em;
}

.privacy_txt ol li{
  padding-left: 1.6em;
  text-indent: -1.6em;
}
.privacy_txt ul li{
  padding-left: 1em;
  text-indent: -1em;
}

.contact_tt.privacy {
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}

.privacy_box {
  padding: 28px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 56px;
}
@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

@media only screen and (max-width: 767px){
  .contact_info {
    padding: 18px 15px 10px;
  }
  .contact_info_txt_1 br{
    display: block;
  }
  .contact_info_txt_2 {
    padding: 0 6px 0 10px;
    margin-right: 10px;
  }
  .contact_tt {
    margin-bottom: 25px;
    font-size:18px;
  }
  .pg_contact .formTh {
    padding: 5px 10px;
  }
  .pg_contact .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .pg_contact .formTd input[name="zip1"] {
    width: 80px;
  }
  .pg_contact .formTd input[name="zip2"] {
    width: 100px;
  }
  .pg_contact .formTd select[name="pref"] {
    width: 155px;
  }
  .pg_contact .formTd input[type="text"]::placeholder,
  .pg_contact .formTd input[type="tel"]::placeholder,
  .pg_contact .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .pg_contact .formWrap .text-center {
    padding-top: 25px;
  }
  .pg_contact .privacyLabel {
    font-size: 15px;
  }

  .privacyformError{
    margin-top:-40px !important;
  }

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    font-size: 19px;
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .pg_contact .d-inline {
    display: block!important;
  }
  .pg_contact .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 6.5px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .radioArea .d-inline-block {
    margin-right: 10px;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }

  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }

  .privacy_ttl {
    font-size: 18px;
    padding-left: 10px;
  }
}

@media (min-width: 1024px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
}
@media (min-width: 1200px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
  .pg_contact .formBtn.formSend{
    min-width: 0;
  }
}
@media (min-width: 1470px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }
}
@media (min-width: 1720px) {
  /* タイトル */
  .tt2_en5:before,
  .tt2_en5:after {
    width: 360px;
  }

  .cmn_bk6 {
    top: -350px;
    width: 100%;
    padding-bottom: 1271px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.pg_thanks .link_3{
  margin-top: 50px;
}
.thanks_text{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

@media only screen and (max-width: 767px){
  .thanks_text{
    /*display: block;*/
    letter-spacing: -0.08em;
    margin-top: 30px;
  }

  .privacy_box{
    padding: 30px 10px;
  }
}

/*******************************
*　出石興業について
********************************/

/* セクション設定 */
.pg_about{

}
.pg_about .section.sec1{
  position: relative;
}
.pg_about .section.sec2{
  position: relative;
}
.pg_about .section.sec3{
  position: relative;
}
.pg_about .section.sec4{
  position: relative;
  padding-top: 20px;
}


@media (max-width:374px){

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

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

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

  .pg_about{

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{
    padding-top: 50px;
  }
}
@media (min-width:1024px){
  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 70px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

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

  .pg_about{

  }
  .pg_about .section.sec1{
    padding-bottom: 190px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{

  }
  .pg_about .section.sec4{

  }
}
@media (min-width:1470px){
  .pg_about {
    margin-top: 550px;
    margin-top: 150px;
  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 100px;
  }
  .pg_about .section.sec4{

  }
}
@media (min-width:1720px){
  .pg_about{
    margin-top: 730px;
    margin-top: 150px;
  }
  .pg_about .section.sec1{
    padding-bottom: 430px;
  }
  .pg_about .section.sec2{

  }
  .pg_about .section.sec3{
    padding-top: 135px;
  }
  .pg_about .section.sec4{

  }
}

/* メイン部分 */
.cmn_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_box1{
  width: 100%;
  position: relative;
  order: 2;
  margin-top: 20px;
}
.cmn_box1:before{
  content: "";
  display: block;
  width: 190px;
  aspect-ratio: 255 / 233;
  background-image: url(/system_panel/uploads/images/gr1.png);
  /*background-position: center center;*/
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: -15%;
  pointer-events: none;
  z-index: 1;
}
.cmn_box1_img{
  /*margin-left: var(--margin-for-device-side-w);*/
  -webkit-mask-image: url(/system_panel/uploads/images/about_mask2.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.cmn_box1_img img{
  aspect-ratio: 775 / 552;
}
.cmn_box2{
  width: 100%;
  order: 1;
}
.cmn_box_title{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.38;
  margin-bottom: 15px;
}
.cmn_box_txt{
  letter-spacing: 0.075em;
}

/* reason */
.about_reason{

}
.about_reason_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_title_box.line{
  width: 100%;
  position: relative;
  z-index: 0;
}
.cmn_title_box.line:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #396e95;
  position: absolute;
  top: 0;
  left: 0;
  /*transform: rotate(-62deg);*/
}
.cmn_title_box.line:after{
  content: "";
  display: block;
  width: 45px;
  aspect-ratio: 25 / 37;
  background-image: url(/system_panel/uploads/images/gr2.png);
  /* background-position: center center; */
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -8px;
  left: 20px;
  top: 8px;
  left: 0;
  pointer-events: none;
  z-index: 2;
  /*transform: rotate(62deg);*/
}
.cmn_title_en{
  font-size: 30px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.89;
  /*transform: rotate(-62deg);*/
  position: absolute;
  top: 0;
  left: 100px;
  top: 15px;
  left: 50px;
}
.about_reason_box2{
  width: 100%;
  margin-top: 80px;
  margin-top: 90px;
}
.cmn_box_title1{
  margin-bottom: 12px;
}

/* service　*/
.cmn_contents_head{
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  margin-bottom: 25px;
}
.cmn_contents_en{
  font-size: 24px;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
}
.cmn_contents_ja{
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-left: 15px;
}
.cmn_contents_box{

}
.cmn_contents_box_txt{
  line-height: 1.875;
}
.cmn_service_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
  margin-bottom: 30px;
}
.cmn_service_box1{
  width: 100%;
}
.cmn_service_img{
  -webkit-mask-image: url(/system_panel/uploads/images/about_mask3.png);
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
}
.cmn_service_img img{
  aspect-ratio: 1061 / 387;
}
.cmn_service_img:before{

}
.cmn_service_box2{
  width: 100%;
  margin-top: 25px;
  /*margin-left: -300px;*/
  position: relative;
  z-index: 1;
}
.cmn_service_cat_txt{
  display: inline-block;
  background: #192a43;
  padding: 3px 20px;
  font-size: 16px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
}
.cmn_service_title{
  font-size: 22px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  margin-top: 15px;
  margin-bottom: 10px;
}
.cmn_service_box_txt{
  line-height: 1.875;
}
.cmn_item_img.bk{
  position: relative;
}
.cmn_item_cat{
  display: inline-block;
  background: #192a43;
  width: 205px;
  padding: 5px 10px;
  font-size: 15px;
  font-family: var(--font-ja);
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}


@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .cmn_box{

  }
  .cmn_title_box.line:before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #396e95;
    position: absolute;
    top: 190px;
    left: -400px;
    transform: rotate(-62deg);
  }
  .cmn_box1{
    margin-top: 30px;
  }
  .cmn_box1:before{
    width: 370px;
    left: 0%;
    bottom: -15%;
  }
  .cmn_box1_img{

  }
  .cmn_box2{

  }
  .cmn_box_title{
    font-size: 24px;
    margin-bottom: 28px;
  }

  /* reason */
  .cmn_title_box.line:after{
    width: 75px;
  }
  .cmn_title_en {
    font-size: 35px;
    top: 35px;
    left: 80px;
  }
  .about_reason_box2{
    margin-top: 140px;
  }

  /* service　*/
  .cmn_contents_en{
    font-size: 30px;
  }
  .cmn_contents_ja {
    font-size: 18px;
    margin-left: 20px;
  }
  .cmn_service_box{
    margin-top: 35px;
    margin-bottom: 40px;
  }
  .cmn_service_box2{
    margin-top: 30px;
  }

}
@media (min-width:1024px){
  /* メイン部分 */
  .cmn_box{

  }
  .cmn_box1{
    width: 40.69%;
    order: 1;
    margin-top: 0;
  }
  .cmn_box1:before{
    width: 265px;
    left: -12%;
    bottom: 32%;
  }
  .cmn_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_box2{
    width: 55.39%;
    margin-top: 18px;
    order: 2;
  }
  .cmn_box_title{
    font-size: 35px;
    margin-bottom: 28px;
  }

  /* reason */
  .about_reason{

  }
  .about_reason_box{

  }
  .cmn_title_box.line{
    width: 13.48%;
    position: relative;
  }
  .cmn_title_box.line:before{
    width: 1150px;
    height: 1px;
    top: 230px;
    left: -620px;
    transform: rotate(-62deg);
  }
  .cmn_title_box.line:after{
    width: 135px;
    top: 50px;
    left: -30px;
  }
  .cmn_title_en{
    font-size: 35px;
    top: -50px;
    left: 60px;
    transform: rotate(-62deg);
  }
  .about_reason_box2{
    width: 75.48%;
    margin-top: 0px;
  }
  .cmn_box_title1{
    margin-bottom: 12px;
  }


  /* service */
  .cmn_service_box{
    margin-top: 45px;
    margin-bottom: 50px;
  }
  .cmn_service_box1{
    width: 71.73%;
  }
  .cmn_service_img{

  }
  .cmn_service_img img{

  }
  .cmn_service_img:before{

  }
  .cmn_service_box2{
    width: 48%;
    margin-top: 160px;
    margin-left: -300px;
  }
  .cmn_item_cat{
    padding: 6px 6px;
    font-size: 16px;
  }

}
@media (min-width:1200px){
  /* メイン部分 */
  .cmn_box{

  }
  .cmn_box1{
    width: 40.69%;
    position: relative;
  }
  .cmn_box1:before{
    width: 315px;
    left: -10%;
    bottom: 10%;
  }
  .cmn_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_box2{
    width: 55.39%;
    margin-top: 18px;
  }
  .cmn_box_title{
    font-size: 40px;
    margin-bottom: 28px;
  }

  /* reason */
  .cmn_title_box.line:before{
    width: 1270px;
    height: 1px;
    top: 220px;
    left: -630px;
    transform: rotate(-62deg);
  }
  .cmn_title_box.line:after{
    width: 145px;
    top: 72%;
    left: -18px;
  }
  .cmn_title_en{
    font-size: 38px;
    top: 0;
    left: 80px;
  }
  .about_reason_box2 {
    width: 80.48%;
    margin-top: 0px;
  }

  /* service　*/
  .cmn_contents_head{
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    margin-bottom: 36px;
  }
  .cmn_contents_en{
    font-size: 38px;
  }
  .cmn_contents_ja{
    font-size: 18px;
    margin-left: 31px;
  }
  .cmn_contents_box{

  }

  .cmn_service_box{
    margin-top: 95px;
    margin-bottom: 75px;
  }
  .cmn_service_box1{
    width: 69.73%;
  }
  .cmn_service_img{

  }
  .cmn_service_img img{

  }
  .cmn_service_img:before{

  }
  .cmn_service_box2 {
    width: 49%;
    margin-top: 170px;
    margin-left: -300px;
  }
  .cmn_service_cat_txt{
    padding: 3px 52px;
    font-size: 20px;
  }
  .cmn_service_cat_txt1{
    padding: 3px 10px;
  }
  .cmn_service_title{
    font-size: 25px;
    margin-top: 24px;
    margin-bottom: 10px;
  }
  .cmn_item_img.bk{
    position: relative;
  }
  .cmn_item_cat{
    padding: 6px 6px;
    font-size: 16px;
  }
}
@media (min-width:1366px){
  .cmn_box1:before {
    width: 315px;
    left: -7.5%;
    bottom: 10%;
  }

  /**/
  .cmn_service_box2 {
    width: 49%;
    margin-top: 210px;
    margin-left: -300px;
  }

}

@media (min-width:1470px){
  /* メイン部分 */
  .cmn_box{

  }
  .cmn_box1{
    width: 37.69%;
    position: relative;
  }
  .cmn_box1:before {
    width: 365px;
    left: -9%;
    bottom: 10%;
  }
  .cmn_box1_img{

  }
  .cmn_box2{
    width: 55.39%;
    margin-top: 18px;
  }
  .cmn_box2.left{
    width: 50.76%;
    margin-top: 18px;
  }
  .cmn_box_title{
    font-size: 52px;
    margin-bottom: 28px;
  }

  /* reason */
  .about_reason{

  }
  .about_reason_box{

  }
  .cmn_title_box.line{
    width: 13.48%;
    position: relative;
  }
  .about_reason_box2{
    width: 82.48%;
  }
  .cmn_box_title1{
    margin-bottom: 12px;
  }

  .cmn_title_box.line:before{
    width: 1350px;
  }
  .cmn_title_box.line:after{
    width: 185px;
    top: 70%;
    left: -20px;
  }
  .cmn_title_en{
    font-size: 38px;
    top: 0px;
    left: 110px;
  }

  /* service */
  .cmn_service_box2{
    width: 49%;
    margin-top: 220px;
    margin-left: -300px;
  }
  .cmn_service_title{
    font-size: 34px;
    margin-top: 24px;
    margin-bottom: 10px;
  }

  /**/
  .cmn_item_titie.cmn_item_titie1{
    font-size: 25px;
  }
}
@media (min-width: 1536px) {
  .cmn_box1:before {
    width: 365px;
    left: -16%;
    bottom: 10%;
  }

  /**/
  .cmn_item_titie.cmn_item_titie1{
    font-size: 26px;
  }
  .cmn_item_titie.cmn_item_titie1:after {
    width: 160px;
    margin-top: 10px;
    margin-bottom: 13px;
  }
}

@media (min-width:1720px){
  /* メイン部分 */
  .cmn_box{

  }
  .cmn_box1{
    width: 37.69%;
    position: relative;
  }
  .cmn_box1:before{
    width: 515px;
    left: -35%;
    bottom: -19%;
  }
  .cmn_box1_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .cmn_box2{
    width: 55.39%;
    margin-top: 18px;
  }
  .cmn_box2.left{
    width: 42.76%;
    margin-top: 18px;
  }
  .cmn_box_title{
    font-size: 52px;
    margin-bottom: 28px;
  }

  /* reason */
  .about_reason{

  }
  .about_reason_box{

  }
  .cmn_title_box.line{
    width: 13.48%;
    position: relative;
  }
  .cmn_title_box.line:before{
    width: 1350px;
    height: 1px;
    top: 255px;
    left: -669px;
    transform: rotate(-62deg);
  }
  .cmn_title_box.line:after{
    width: 275px;
    top: 78%;
    left: -128px;
  }
  .cmn_title_en{
    font-size: 38px;
    top: 0;
    left: 95px;
  }
  .about_reason_box2{
    width: 82.48%;
  }
  .cmn_box_title1{
    margin-bottom: 14px;
  }

  /* service */
  .cmn_service_box2{
    width: 49%;
    margin-top: 267px;
    margin-left: -300px;
  }
}

/*******************************
*　背景　
********************************/
.cmn_bk{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background: #f6f6f6;
  z-index: -1;
}
/**/
.cmn_bk1{
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  background: #f6f6f6;
  z-index: -1;
  top: -70px;
  padding-bottom: 950px;
}
.cmn_bk1:before{
  content: "";
  position: absolute;
  background: #FFF;
  width: 58%;
  height: 100%;
  top: 0;
  left: -220px;
  clip-path: polygon(0 0, 0% 100%, 91% 100%);
  clip-path: polygon(0 0, 0 100%, 100% 139%);
  transform: skewX(23deg);
}
.cmn_bk1:after{
  content: "";
  position: absolute;
  background: #FFF;
  width: 36%;
  height: 100%;
  top: 0;
  right: -180px;
  clip-path: polygon(0 0, 100% 0, 100% 48%);
  transform: skewX(19deg);
}

/**/
.cmn_bk2{
  top: 335px;
  padding-bottom: 1160px;
}
.cmn_bk2:before{
  content: "";
  position: absolute;
  background: #FFF;
  width: 20.98%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transform: none;
}
.cmn_bk2:after{
  content: "";
  position: absolute;
  background: #FFF;
  width: 20.98%;
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  transform: none;
}


/**/
.cmn_bk3{
  top: 0;
  padding-bottom: 1189px;
}
.cmn_bk3:before{
  content: "";
  position: absolute;
  background: #FFF;
  width: 48.23%;
  width: 28.23%;
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 0);
  clip-path: polygon(100% 18%, 100% 0, 0 0);
  transform: none;
}

/**/
.cmn_bk4{
  top: 0;
  padding-bottom: 1970px;
}
.cmn_bk4:before{
  content: "";
  position: absolute;
  background: #FFF;
  width: 18.23%;
  height: 100%;
  top: 0;
  right: 0;
  clip-path: polygon(100% 100%, 100% 0, 0 100%);
  transform: none;
}

@media (max-width:767px){

}
@media (min-width:768px){
  .cmn_bk1{
    top: -40px;
    width: 100%;
    padding-bottom: 1010px;
  }
  .cmn_bk1:before{
    width: 40%;
    height: 100%;
    top: 0;
    left: -220px;
    clip-path: polygon(0 0, 0% 100%, 91% 100%);
    transform: skewX(18deg);
  }
  .cmn_bk1:after{
    width: 20.85%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 30%);
    transform: none;
  }

  /**/
  .cmn_bk2 {
    top: 335px;
    padding-bottom: 1200px;
  }

  /**/
  .cmn_bk3 {
    top: 0;
    padding-bottom: 1400px;
  }
  .cmn_bk3:before{
    width: 20.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 18%, 100% 0, 0 0);
    transform: none;
  }

  /**/
  .cmn_bk4{
    top: 0;
    padding-bottom: 1700px;
  }
}
@media (min-width:1024px){
  .cmn_bk1{
    top: -130px;
    width: 100%;
    padding-bottom: 800px;
  }
  .cmn_bk1:before{
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 91% 100%);
    transform: none;
  }
  .cmn_bk1:after{
    width: 40.85%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 90%);
  }

  /**/
  .cmn_bk2 {
    width: 100%;
    top: 210px;
    padding-bottom: 763px;
  }
  .cmn_bk2:before{
    width: 20.98%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: none;
  }
  .cmn_bk2:after{
    width: 20.98%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

  /**/
  .cmn_bk3{
    top: 0;
    padding-bottom: 1189px;
  }
  .cmn_bk3:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 44%, 100% 0, 0 0);
    transform: none;
  }

  /**/
  .cmn_bk4{
    top: 0;
    padding-bottom: 1189px;
  }
  .cmn_bk4:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }
}
@media (min-width:1200px){
  .cmn_bk1{
    top: -220px;
    width: 100%;
    padding-bottom: 920px;
  }
  .cmn_bk1:before {
    width: 40%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 91% 100%);
    transform: none;
  }
  .cmn_bk1:after {
    width: 40.85%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
  }

  /**/
  .cmn_bk2{
    width: 100%;
    top: 240px;
    padding-bottom: 763px;
  }
  .cmn_bk2:before{
    width: 20.98%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: none;
  }
  .cmn_bk2:after{
    width: 20.98%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

  /**/
  .cmn_bk3{
    top: 0;
    padding-bottom: 980px;
  }
  .cmn_bk3:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 60%, 100% 0, 0 0);
    transform: none;
  }

  /**/
  .cmn_bk4{
    top: 40px;
    padding-bottom: 1080px;
  }
  .cmn_bk4:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }
}
@media (min-width: 1366px) {
  .cmn_bk4 {
    top: 40px;
    padding-bottom: 1160px;
  }
}
@media (min-width:1470px){
  /**/
  .cmn_bk3 {
    top: 30px;
    padding-bottom: 1110px;
  }
  .cmn_bk3:before {
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 72%, 100% 0, 0 0);
    transform: none;
  }

  /**/
  .cmn_bk4{
    top: 40px;
    padding-bottom: 1200px;
  }
  .cmn_bk4:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

}
@media (min-width:1720px){
  .cmn_bk1{
    top: -350px;
    width: 100%;
    padding-bottom: 1271px;
  }
  .cmn_bk1:before{
    width: 35.2%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 0% 100%, 91% 100%);
  }
  .cmn_bk1:after{
    width: 46.85%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(0 0, 100% 0, 100% 145%);
  }

  /**/
  .cmn_bk2{
    width: 100%;
    top: 240px;
    padding-bottom: 763px;
  }
  .cmn_bk2:before{
    width: 20.98%;
    height: 100%;
    top: 0;
    left: 0;
    clip-path: polygon(0 0, 100% 0, 0 100%);
    transform: none;
  }
  .cmn_bk2:after{
    width: 20.98%;
    height: 100%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }

  /**/
  .cmn_bk3{
    top: 60px;
    padding-bottom: 1189px;
  }
  .cmn_bk3:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 0);
    transform: none;
  }

  /**/
  .cmn_bk4{
    top: 42px;
    padding-bottom: 1189px;
  }
  .cmn_bk4:before{
    width: 32.23%;
    top: 0;
    right: 0;
    clip-path: polygon(100% 100%, 100% 0, 0 100%);
    transform: none;
  }
}


/*******************************
*　共通パーツ
********************************/
.cmn_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  justify-content: flex-start;
}
.cmn_items + .cmn_items{
  margin-top: 20px;
}
.cmn_items.column2{
  justify-content: center;
  margin-top: 30px;
  /*  margin-inline: 50px;*/
}
.cmn_items.column3{
  /*  margin-inline: -46px;*/
}
.cmn_item{
  width: 100%;
  /*  padding-inline: 46px;*/
}
.cmn_item:nth-child(n+2){
  margin-top: 20px;
}
.cmn_items.column2 .cmn_item{
  /*  padding-inline: 15px;*/
}

.cmn_item_img{

}
.cmn_item_img:before{
  padding-top: 70%;
}
.cmn_item_titie{
  font-size: 20px;
  font-family: var(--font-mincho);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  position: relative;
  margin-top: 10px;
}
.cmn_item_titie:after {
  content: "";
  display: block;
  width: 160px;
  height: 1px;
  background: #181818;
  margin-top: 8px;
  margin-bottom: 13px;
}
.cmn_item_txt{
  letter-spacing: 0;
  line-height: 1.875;
}


@media (max-width:767px){

}
@media (min-width:768px){
  .cmn_items{
    margin-inline: -10px;
  }
  .cmn_item{
    width: 50%;
    padding-inline: 10px;
  }
  .cmn_item:nth-child(n+2) {
    margin-top: 0;
  }
  .cmn_item:nth-child(n+3) {
    margin-top: 20px;
  }
}
@media (min-width:1024px){
  .cmn_items{

  }
  .cmn_items + .cmn_items{
    margin-top: 30px;
  }
  .cmn_items.column2{
    justify-content: center;
    margin-top: 80px;
    margin-inline: 15px;
  }
  .cmn_items.column3{
    margin-inline: -15px;
  }
  .cmn_item{
    width: 33.333%;
    padding-inline: 15px;
  }
  .cmn_item:nth-child(n+3) {
    margin-top: 0;
  }
  .cmn_item:nth-child(n+4) {
    margin-top: 30px;
  }
  .cmn_items.column2 .cmn_item{
    padding-inline: 15px;
  }

  .cmn_item_img{

  }
  .cmn_item_img:before{
    padding-top: 72.80%;
  }
  .cmn_item_titie{
    font-size: 21px;
    font-size: 18px;
    margin-top: 7px;
  }
  .cmn_item_titie:after {
    width: 160px;
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .cmn_item_txt{
    letter-spacing: 0;
    line-height: 1.875;
  }

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

  }
  .cmn_item{
    width: 33.333%;
    padding-inline: 15px;
  }
  .cmn_items + .cmn_items{
    margin-top: 50px;
  }
  .cmn_items.column2{
    justify-content: center;
    margin-top: 70px;
    margin-inline: 50px;
  }
  .cmn_items.column3{
    margin-inline: -15px;
  }
  .cmn_item{
    width: 33.333%;
    padding-inline: 15px;
  }
  .cmn_item:nth-child(n+3) {
    margin-top: 0;
  }
  .cmn_item:nth-child(n+4) {
    margin-top: 42px;
  }
  .cmn_items.column2 .cmn_item{
    padding-inline: 15px;
  }

  .cmn_item_img{

  }
  .cmn_item_img:before{
    padding-top: 72.80%;
  }
  .cmn_item_titie{
    font-size: 21px;
  }
  .cmn_item_titie:after {

  }
  .cmn_item_txt{
    letter-spacing: 0;
    line-height: 1.875;
  }

}
@media (min-width:1470px){
  .cmn_items{

  }
  .cmn_items + .cmn_items{
    margin-top: 73px;
  }
  .cmn_items.column2{
    justify-content: center;
    margin-top: 68px;
    margin-inline: 50px;
  }
  .cmn_items.column3{
    margin-inline: -30px;
  }
  .cmn_item{
    width: 33.333%;
    padding-inline: 30px;
  }
  .cmn_items.column2 .cmn_item{
    padding-inline: 15px;
  }

  .cmn_item_img{

  }
  .cmn_item_img:before{
    padding-top: 72.80%;
  }
  .cmn_item_titie{
    font-size: 28px;
    margin-top: 7px;
  }
  .cmn_item_titie:after {
    width: 160px;
    margin-top: 8px;
    margin-bottom: 13px;
  }
  .cmn_item_txt{
    letter-spacing: 0;
    line-height: 1.875;
    margin-right: 13px
  }


}
@media (min-width:1720px){
  .cmn_items.column3 {
    margin-inline: -46px;
  }
  .cmn_item {
    width: 33.333%;
    padding-inline: 46px;
  }

}

/*******************************
*　施工実績
********************************/
.pg_works{

}
.pg_works .section.sec1{
  padding-bottom: 0;
}
.pg_works .section.sec2{
  padding-top: 0;
}
@media (max-width:374px){

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

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

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

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 50px;
  }
}
@media (min-width:1024px){
  .pg_works{

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 80px;
  }

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


}
@media (min-width:1470px){
  .pg_works{

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 100px;
  }
}
@media (min-width:1720px){
  .pg_works{

  }
  .pg_works .section.sec1{

  }
  .pg_works .section.sec2{
    padding-top: 155px;
  }

}



/*カテゴリ*/
.works_cate_list{
  margin-top: 45px;
}
.works_cate_list .webgene-blog {
  display: flex;
  flex-wrap: wrap;

}
.works_cate_list .webgene-blog .webgene-item{

}
.works_cate_list .webgene-blog .webgene-item a{
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  display: block;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(90deg, #014d82, #617db6, #d4b2bb, #014d82);
  background-size: 200% 200%;
  background-position: 34% 0;
  transition: background-position 0.5s ease;
  border-bottom: none;
  padding: 9px 0;
  cursor: pointer;
  background-color: #014d82;
  background-repeat: no-repeat;
}
.works_cate_list .webgene-blog .webgene-item a:hover {
  background-position: 134% 0;
}
/*.works_cate_list .webgene-blog .webgene-item a:hover:after{
    color: #FFF;
    margin-right: -5px;
}*/


.pg_works .news_list_thumb .webgene-item .box1{
  position: relative;
}
.pg_works .news_list_thumb .webgene-item .box1 .category span{
  display: inline-block;
  background: #192a43;
  min-width: 80px;
  padding: 3px 5px;
  font-size: 12px;
  font-family: var(--font-ja);
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.5;
  color: #FFF;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.pg_works .webgene-pagination li.selected {
  border: 0;
  background: #192a43;
  color: #FFF;
}

@media (max-width:374px){

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

}
@media (max-width: 767px) {
  .works_cate_list {
    display: none;
  }
}
@media (min-width:768px){
  .works_cate_list .webgene-blog {
    margin-inline: -5px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 50%;
    padding-inline: 5px;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .works_cate_list .webgene-blog .webgene-item a{
    font-size: 15px;
  }

  .pg_works .news_list_thumb .webgene-item .box1 .category span{
    min-width: 230px;
    padding: 6px 10px;
    font-size: 16px;

    min-width: 110px;
    padding: 6px 10px;
    font-size: 13px;
  }
}
@media (min-width:1024px){
  .works_cate_list{
    margin-top: 75px;
  }
  .works_cate_list .webgene-blog {
    margin-inline: -15px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 25%;
    padding-inline: 15px;
  }
  .works_cate_list .webgene-blog .webgene-item a {
    font-size: 15px;
    padding: 12px 10px;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

  .pg_works .news_list_thumb .webgene-item .img.img_fit:before{
    padding-top: 75%;
  }
  .pg_works  .news_list_thumb .webgene-blog {
    margin-left: -13.5px;
    margin-right: -13.5px;
  }
  .pg_works .news_list_thumb.col4 .webgene-item {
    width: 25%;
    padding-inline: 13.5px;
  }
  .pg_works .news_list_thumb.col4 .webgene-item:nth-child(n+5) {
    margin-top: 32px;
  }
  .pg_works .webgene-pagination {
    margin-top: 63px;
  }
}
@media (min-width:1200px){

}
@media (min-width:1470px){
  .works_cate_list .webgene-blog {
    margin-inline: -15px;
  }
  .works_cate_list .webgene-blog .webgene-item{
    width: 25%;
    padding-inline: 15px;
  }

  .works_cate_list .webgene-blog .webgene-item:nth-child(n+3),
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+5){
    margin-top: 0;
  }
  .works_cate_list .webgene-blog .webgene-item:nth-child(n+6){
    margin-top: 15px;
  }
}
@media (min-width:1720px){
  .works_cate_list .webgene-blog .webgene-item a {
    font-size: 18px;
    padding: 12px 28px;
  }
  .pg_works .news_list_thumb .webgene-item .box1 .category span{
    min-width: 230px;
    padding: 6px 10px;
    font-size: 16px;
  }
}


/*******************************
* 新着情報
********************************/
.pg_xxx{

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


}
@media (min-width:1200px){
  .pg_news .news_list_thumb .webgene-item .box2 {
    margin-top: 2px;
    padding: 12px 0;
  }

}

/*main*/

@media (max-width:767px){

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


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


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


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


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


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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}

/*main*/

@media (max-width:767px){

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


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


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


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


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


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


}
