@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #f67c3a;
  --sub-color: #f3e3c2;
  --txt-color: #000000;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Montserrat", sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}

/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: var(--txt-color);

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.body_home{
  padding-top: 0;
}

#root{
  overflow: hidden;
}
@media (min-width:768px){
  body{
    padding-top: 100px;
  }
}

/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
    --margin-for-device-side-w: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
    --margin-for-device-side-w: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
    --margin-for-device-side-w: calc(555px - 50vw);
  }
}
@media (min-width:1366px){

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


/* ******************************
   
   ****************************** */

/* 管理画面の余白調整 */
.gjs-dashed #wrapper{
  padding-bottom: 150px;
}

@media (max-width:767px){
  #chatbot-btn {
    bottom: 55px!important;
    z-index: 5;
  }
}

.mincho{
  font-family: 'Noto Serif JP', serif;
}

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
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%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


/* 指定した行数での切り取り */
.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;
}

/*******************************
*　ヘッダー
********************************/
.header{
}
.hdr1{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 5px 10px;
  /*background: rgba(255,255,255,0.85);*/
}
.hdr1_box1{

}
.hdr1_box2{

}
.hdr_contact{

}
.hdr_contact_link a{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 11px 5px;
}
.hdr_contact_link a:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}

.pg_header{
  margin-bottom: 30px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}


.mv{
  position: relative;
}
.mv_img{
  position: relative;
}
.mv_img.img_fit:before{
  padding-top: calc(100vh - 63px - 54px - 50px);
}

.mv_inner{
  position: relative;
  padding-bottom: 50px;
}
.mv_inner:before{
  content: "";
  display: block;
  width:80.2%;
  height: 82.2%;
  background: #f2f0e8;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}
.mv_img_outer{
  position: relative;
  z-index: 1;
}
.mv_items{

}
.mv_item{

}
.mv_img:before{

}
.mv_bnr{
  width: 280px;

  position: absolute;
  right: 3.2%;
  bottom: 6.25%;
  z-index: 1;
}
.mv_txt_box{
  position: absolute;
  left: 5.2%;
  top: 45%;
  transform: translateY(-50%);
  z-index: 1;
}
.mv_txt_box1{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.mv_txt_box1 p{
  background: #fff;
  color:#eb7839;
  letter-spacing: 0.025em;
  padding: 7px 10px 10px 10px;
}
.mv_txt_box1 p:nth-child(n+2){
  margin-top: 10px;
}
.mv_txt_box2{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  margin-top: 20px;
}
.mv_txt_box2 p{
  background: #eb7839;
  color: #fff;
  letter-spacing: 0.025em;
  padding: 5px 0px 5px 7px;
}
.mv_txt_box2 p:nth-child(n+2){
  margin-top: 5px;
}

@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }

  .hdr1 {
  }
  .hdr_contact{
    display: none;
  }

  /* スマホ用 */
  .gnav{
    display:flex !important;
    width: 100%;
    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;
  }
  .gnav.active{
    transform: translateX(0%);
  }
  .gnav .gnav_item{
    width:50%;
    padding: 5px 0;
    padding-right: 10px;
    border: 0;
    border-bottom: 1px dashed #CCC;
    color: inherit;
    justify-content: center;
    display: block;
    text-align: left;
  }
  .gnav_item:before{
    display: none;
  }
  .gnav .gnav_item + .gnav_item,
  .gnav .gnav_item:first-child,
  .gnav .gnav_item:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav_item:nth-child(n+5){
    margin-top: 0;
  }
  .gnav_bg{
    padding: 0;
    background: inherit;
  }

  .gnav_item .gnav_item_sub{
    display: block;
    position: static;
    width: 100%;
    background: aliceblue;
    padding: 15px;
    margin-top: 20px;
  }
  .gnav .gnav_item:hover{
    color: #000000;
  }

  .hdr_num,
  .hdr_btns{
    display: none;
  }
  .hdr_logo{
    width: 200px;
    display: block;
  }

  .mv_txt_box2{
    line-height: 1.6em;
  }

  .gnav_item .gnav_item_en{
    display: none;
  }
}
@media (min-width:768px){
  .header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 30px;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 1);
  }
  .header.slim{
    background: rgba(255, 255, 255, 0.8);
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .hdr_num{
    text-align: center;
    margin-left: 34px;
  }
  .hdr_num_txt1{
    font-size: 24px;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 0;
    line-height: 1;
  }
  .hdr_num_txt1 strong{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
  }
  .hdr_num_txt1 a:hover{
    color: var(--main-color);
  }
  .hdr_num_txt2{
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .pg_header{
    margin-bottom: 40px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .gnav {
    margin: 0 -15px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .gnav .gnav_item {
    font-size: 16px;
    padding: 0;
    /*line-height: 2;*/
    font-weight: 700;
    transition: 0.2s all;
  }
  .gnav .gnav_item a{
    display: block;
    padding: 0 5px;
  }
  .gnav .gnav_item a p{
    letter-spacing: 0.025em;
  }

  .gnav .gnav_item{

  }
  /*.gnav:hover .gnav_item{
      opacity: 0.5;
    }*/
  .gnav .gnav_item:hover{
    opacity: 1;
  }
  .gnav .gnav_item:hover a{
    opacity: 1;
  }
  .gnav .gnav_item a:hover p{
    border-bottom: 1px solid #eb7839;
  }
  .gnav .gnav_item a:hover .gnav_item_en{
    border-bottom: 0;
  }
  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  .hdr_btns{
    display: flex;
    margin-left: 32px;
  }
  .hdr_btn_item{
    width: 110px;
    height: 100px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_btn_item p{
    letter-spacing: 0;

  }
  .hdr_btn_item.line{
    background: #4cc764;
    color: #fff;

  }
  .ftr_contact_box1_link.line:hover,
  .hdr_btn_item.line:hover{
    background: #00c326;
  }
  .hdr_btn_item.line p:before{
    content: "";
    display: block;
    width: 35px;
    aspect-ratio:35 / 34;
    background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/line.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline:auto;
    margin-bottom: 10px;
  }
  .hdr_btn_item.mail{
    background: #f67c3a;
    color: #fff;
    border: 1px solid transparent;
  }
  .ftr_contact_box1_link.mail:hover,
  .hdr_btn_item.mail:hover{
    background: #fff;
    color: #f67c3a;
    border: 1px solid #f67c3a;

  }
  .hdr_btn_item.mail p:before{
    content: "";
    display: block;
    width: 35px;
    aspect-ratio:35 / 34;
    background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/mail2.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-inline:auto;
    margin-bottom: 10px;
  }
  .hdr_btn_item.mail:hover p:before{
    background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/mail2_or.png);
  }

  .hdr_logo{
    width: 210px;
  }

  .mv_inner{
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .mv_img_outer{
    width: 80.2%;
    margin-left: auto;
    position: relative
  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_img:before{

  }
  .mv_bnr{
    width: 45.45%;

    position: absolute;
    right: 3.2%;
    bottom: 6.25%;
    z-index: 1;
  }
  .mv_bnr img{
    transition: all .2s;
  }
  .mv_bnr:hover img{
    transform: scale(1.02);
  }
  .mv_txt_box{
    position: absolute;
    left: 5.2%;
    top: 45%;
    transform: translateY(-50%);
    z-index: 1;
  }
  .mv_txt_box1{
    font-size: 50px;
  }
  .mv_txt_box1 p{

  }
  .mv_txt_box1 p:nth-child(n+2){
    margin-top: 21px;
  }
  .mv_txt_box2{
    font-size: 17px;
    margin-top: 43px;
  }
  .mv_txt_box2 p{

  }
  .mv_txt_box2 p:nth-child(n+2){
    margin-top: 10px;
  }

  .mv_scroll{
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    line-height: 1;
    position: absolute;
    bottom: 100px;
    left: 5.2%;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .mv_scroll p{
    letter-spacing: 0;
    display: flex;
    flex-direction: column-reverse;
  }
  .mv_scroll p:before{
    content: "";
    display: block;
    width: 1px;
    height: 145px;
    background: #000;
    margin-right: 5px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .mv_img.img_fit:before{
    padding-top: 700px;
  }

  .hdr_num{

  }
  .hdr_num_txt1{
    font-size: 24px;
  }
  .hdr_num_txt1 strong{
    font-size: 20px;
  }
  .hdr_num_txt2{

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

  .mv_img.img_fit:before{
    padding-top: calc(100vh - 100px - 100px);
    /*    padding-top: 800px;*/
  }

  .hdr_logo{
    width: 210px;
  }

  .mv_txt_box{

  }
  .mv_txt_box1{
    font-size: 60px;
  }
  .mv_txt_box1 p{

  }
  .mv_txt_box2{
    font-size: 18px;
  }
  .mv_txt_box2 p{

  }
  .mv_scroll{
    bottom: 40px;
    left: 2%;
  }
  .mv_scroll p:before{
    height: 100px;
  }
}

@media (min-width:1720px){
  .hdr_logo{
    width: auto;
  }

  .hdr_num_txt1{
    font-size: 30px;
  }

  .mv_inner{

  }
  .mv_img_outer{

  }
  .mv_items{

  }
  .mv_item{

  }
  .mv_img.img_fit:before{

  }
  .mv_img:before{

  }
  .mv_bnr{

  }
  .mv_txt_box{

  }
  .mv_txt_box1{
    font-size: 80px;
  }
  .mv_txt_box1 p{

  }
  .mv_txt_box2{

  }
  .mv_txt_box2 p{

  }
  .mv_scroll{
    bottom: 100px;
    left: 5.2%;
  }
  .mv_scroll p:before{
    height: 145px;
  }

}
@media (min-width:768px) and (max-width:1023px) {
  .hdr_num_txt1 {
    font-size: 19px;
  }
  .hdr_btns {
    margin-left: 15px;
  }
  .hdr_btn_item.line,
  .hdr_btn_item.mail,
  .hdr_outer .hdr_menubtn{
    width: 100px;
  }
}

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

.footer{
  margin-top: 80px;
  ;
}
.body_home .footer{
  margin-top: 0;
}

.ftr1{
  border-top: 1px solid #7d7d7d;
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
  margin-bottom: 25px;
}

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{

}
.ftr1_box2{

}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  letter-spacing: 0.075em;
  margin-bottom: 10px;
}
.ftr_addr{
  margin-bottom: 10px;
}

/*.ftr_info_wrap{
  display: flex;
}
.ftr_info_box1{
  width: 90px;
  padding-right: 20px;
  position: relative;
}
.ftr_info_box1:after{
  content: " /";
  position: absolute;
  right: 5px;
  top: 0;
}
.ftr_info_box2{
  width: calc(100% - 90px);
}*/

.ftr_contact{
  display: block;
  background: #ef7f1a;
  border-radius: 10px;
  color: #FFF;
  width: 255px;
  padding: 13px 5px;
  text-align: center;
}

.ftr_contact p:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  margin-right: 10px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #f2f0e8;
  border-top: 1px solid #000;
  padding: 15px;
}
.ftr_copy a:hover{
  color: var(--main-color);
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #cab386;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 10px;
  bottom: 60px;
  z-index: 1;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: var(--main-color);
}
.pagetop a i{
  font-size: 40px;
}

.ftr_contact_wrap{
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box1{
  width: 100%;
  text-align: center;
  position: relative
}
.ftr_contact_box1_img{

}
.ftr_contact_box1_img:before{
  padding-top: 450px;
}
.ftr_contact_box1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.ftr_contact_box1_inner{
  width: 100%;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  color: #fff;
}
.ftr_contact_box1_en{
  font-size: 40px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box1_num{
  font-size: 28px;
  font-weight: 600;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
  margin-top: 45px;
}
.ftr_contact_box1_num p{
  letter-spacing: 0;
}
.ftr_contact_box1_num2{
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 12px;
}
.ftr_contact_box1_num strong{
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
}
.ftr_contact_box1_links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
}
.ftr_contact_box1_link{
  width: 100%;
  max-width: 300px;
  display: block;
  font-size: 16px;
  font-weight: 500;
  padding: 25px 0;
  border: 1px solid transparent;
}
.ftr_contact_box1_link.line{
  background: #4cc764;
}
.ftr_contact_box1_link.mail{
  background:#f67c3a;
}
.ftr_contact_box1_link p{
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ftr_contact_box1_link.line:hover{
  color: #FFF;
}
.ftr_contact_box1_link.line p:before{
  content: "";
  display: block;
  width: 28px;
  aspect-ratio:28 / 27;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/ftr_line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
}
.ftr_contact_box1_link.mail p:before{
  content: "";
  display: block;
  width: 25px;
  aspect-ratio:25 / 19;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/ftr_mail.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 12px;
}
.ftr_contact_box1_link.mail:hover p:before{
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/ftr_mail_wh.png);
}

.ftr_contact_box2{
  width: 100%;
  padding: 50px 20px;
  background: #FFF;
}
.ftr_contact_box2_content{

}
.ftr_contact_box2_content_h2{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  position: relative;
  padding-left: 20px;
}
.ftr_contact_box2_content_h2:before{
  content: "";
  display: block;
  width: 10px;
  aspect-ratio:1;
  border-radius: 50%;
  background: var(--main-color);
  position: absolute;
  top: 50%;
  left:0;
  transform: translateY(-50%);
}
.ftr_contact_box2_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
  margin-top: 16px;
}
.ftr_contact_box2_desc p{
  letter-spacing: 0.05em;
}
.ftr_contact_box2_img{
  width: 100%;
  margin-left: auto;
  margin-top: 40px;
  ;
}

.ftr_1{
  background: #f2f0e8;
  padding-top: 80px;
  padding-bottom: 62px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 14px;
  margin-top: 28px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  letter-spacing: 0.025em;
}
.ftr_add_txt a:hover{
  color: var(--main-color);
}
.ftr_add_items{

}
.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_left{
  position: relative;
  padding-right: 9px;
  margin-right: 19px;
}
.ftr_add_left:after{
  content: "";
  display: block;
  width: 1px;
  height: 18px;
  background: #000;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link:hover{
  color: var(--main-color);
}

@media (min-width:375px){

}

@media (min-width:768px){
  .footer{
    margin-top: 100px;
    ;
  }
  .body_home .footer{
    margin-top: 0;
  }
  .ftr_contact_wrap{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_img{

  }
  .ftr_contact_box1_img:before{
    padding-top: 500px;
  }
  .ftr_contact_box1_img:after{

  }
  .ftr_contact_box1_inner{

  }
  .ftr_contact_box1_en{
    font-size: 60px;
  }
  .ftr_contact_box1_num{
    font-size: 32px;
  }
  .ftr_contact_box1_num strong{
    font-size: 24px;
  }
  .ftr_contact_box1_links{
    margin-top: 40px;
  }
  .ftr_contact_box1_link{
    font-size: 16px;
    margin: 0 10px;
  }
  .ftr_contact_box1_link.line{

  }
  .ftr_contact_box1_link.mail{

  }
  .ftr_contact_box1_link p{

  }
  .ftr_contact_box1_link.line p:before{

  }
  .ftr_contact_box1_link.mail p:before{

  }

  .ftr_contact_box2{
    padding:50px;
  }
  .ftr_contact_box2_content{

  }
  .ftr_contact_box2_content_h2{
    font-size: 20px;
  }
  .ftr_contact_box2_desc{

  }
  .ftr_contact_box2_img{
    width: 67.2%;
    margin-top: 40px;
    ;
  }

  .ftr_1_box{
    justify-content: space-between;
    align-items: flex-start;
  }
  .ftr_1_box1{
    width: 44.23%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 28px;
  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }
  .ftr_add_left{

  }
  .ftr_add_left:after{

  }
  .ftr_1_box2{
    width: 50%;
  }
  .ftr_1_box2 .ftr_links {
    display: flex;
    flex-wrap: wrap;
    gap:0!important;
    margin-inline: -30px;
    position: relative;
  }
  .ftr_link {
    display: block;
    width: 50%;
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
    padding-inline: 8px;
  }


  .ftr_link p {
    position: relative;
    display: flex;
    align-items: center;
    padding-bottom: 6px;
    letter-spacing: 0.025em;
  }
  .ftr_link p:before{
    content: "";
    display: block;
    width: 22px;
    aspect-ratio:1;
    background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arrr5.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 9px;
  }
  .ftr_link p:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #000;
    position: absolute;
    left: 0;
    bottom: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
    ;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .ftr_contact_box2_img{
    margin-top: 0;
  }

  .ftr_1_box1{
    width: 33.23%;
  }
  .ftr_1_box2{
    width: 55.39%;
  }
  .ftr_link {
    width: 33.333%;
  }
  .ftr_link p:after {
    width: 90%;
    left: 0;
    bottom: 0;
  }

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

  }
  .ftr_contact_box1{
    width: 47.91%;
  }
  .ftr_contact_box1_img{

  }
  .ftr_contact_box1_img:before{

  }
  .ftr_contact_box1_img:after{

  }
  .ftr_contact_box1_inner{

  }
  .ftr_contact_box1_en{
    font-size: 90px;
  }
  .ftr_contact_box1_num{
    font-size: 36px;
  }
  .ftr_contact_box1_num strong{

  }
  .ftr_contact_box1_links{

  }
  .ftr_contact_box1_link{
    font-size: 20px;
  }
  .ftr_contact_box1_link.line{
    width: 250px;
  }
  .ftr_contact_box1_link.mail{
    width: 250px;
  }
  .ftr_contact_box1_link p{

  }
  .ftr_contact_box1_link.line p:before{

  }
  .ftr_contact_box1_link.mail p:before{

  }
  .ftr_contact_box2{
    width: 52.08%;
  }

  .ftr_contact_box2{
    display: flex;
    align-items: flex-end;
    width: 52.08%;
    position: relative;
    padding: 0 16px 0 0;
  }
  .ftr_contact_box2_content{
    width: 34%;
    width: 262px;
    position: absolute;
    top: 52px;
    left: 60px;
  }
  .ftr_contact_box2_content_h2{
    font-size: 24px;
  }
  .ftr_contact_box2_desc{

  }
  .ftr_contact_box2_img{
    text-align: right;
  }


  .ftr_1_box1{
    width: 38.23%;
  }
  .ftr_1_box2{
    width: 55.39%;
    /*    display: flex;
        flex-wrap: wrap;*/
    padding-top: 0;
  }
  .ftr_links {
    position: relative;
  }
  .ftr_links:after{
    content: "";
    display: block;
    width: 1px;
    height: 125px;
    border-right: 1px dashed #b3b3b3;
    position: absolute;
    top: 5px;
    ;
    right: 0;
    /*  transform: translateY(-50%) translateX(-50%);*/
  }
  .ftr_links:last-child:after{
    display: none;
  }
  .ftr_link{
    padding-inline: 30px;
    margin-bottom: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 8px;
  }
  .ftr_link p:after {
    width: 100%;
  }
}
@media (min-width:1470px){
  .ftr_1_box1{
    width: 33.23%;
  }
  .ftr_contact_box1_link.line,
  .ftr_contact_box1_link.mail{
    width: 100%;
  }
}
@media (max-width:767px){
  .ftr_addr em{
    display: block;
  }

  .ftr_contact_box1_link:nth-child(n+2){
    margin-top: 16px;
  }

  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_add_items{
    width: 85%;
    margin-inline: auto;
  }
  .ftr_add_item{
    width: 200px;
    margin-inline: auto;
  }
  .ftr_logo{
    display: block;
    width: 200px;
    margin-inline:auto;
  }
}
@media (min-width:1720px){
  .ftr_contact_box2{
    align-items: flex-start;
  }
}


/*******************************
*　
********************************/

/* Flexテーブルレイアウト */
.fl_tbl_items{
  border: 1px solid #cab386;
  margin-bottom:80px;
}
.fl_tbl_items_item{
  display: flex;
  letter-spacing: 0.05em;
}
.fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #cab386;
}

.fl_tbl_items_item_box1,
.fl_tbl_items_item_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  min-height: 70px;
}
.fl_tbl_items_item_box1{
  width:31.53%;
  background: #eeeeee;
  padding: 10px 5px;
  border-right: 1px solid #cab386;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.fl_tbl_items_item_box2{
  width:68.47%;
  background: #fff;
}
.fl_tbl_items_item_txt{
  width: 100%;
  padding: 10px 10px;
}
.fl_tbl_items_item_txt + .fl_tbl_items_item_txt{
  border-top: 1px solid #cab386;
}

/* 青 */
.fl_tbl_items.blue{
  border: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item + .fl_tbl_items_item{
  border-top: 1px solid #7ecef4;
}
.fl_tbl_items.blue .fl_tbl_items_item_box1{
  background: #eff8fc;
  border-right: 1px solid #7ecef4;
}

@media (min-width:375px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px;
  }
}
@media (min-width:768px){
}
@media (min-width:1024px){
  .fl_tbl_items_item_box1{
    padding: 10px 10px 10px 60px;
  }
  .fl_tbl_items_item_txt{
    padding: 10px 10px 10px 25px;
  }
}
@media (min-width:1200px){

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

  body{
    padding-bottom: 56px;
  }
}


/* テーブル用 */
.table_rows{
  display: table;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.table_rows_tr{
  display: table-row;
}
.table_rows_th,
.table_rows_td{
  display: table-cell;
  border: 1px solid #dcdcdc;
  vertical-align: middle;
  padding: 10px 15px;
  letter-spacing: 0.075em;
}
.table_rows_th{
  background-color: #eeeeee;
  vertical-align: top;
  border-right: 0;
}
.table_rows_td{
  background-color: #eeeeee;
  vertical-align: top;
  border-left: 0;
}
.table_rows_td_pad0{
  padding: 0 !important;
}

/* テーブル入れ子 */
.table_rows .table_rows{

}
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:first-child .table_rows_td{
  border-top:0;
}
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_th,
.table_rows .table_rows > .table_rows_tr:last-child .table_rows_td{
  border-bottom:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:first-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:first-child{
  border-left:0;
}
.table_rows .table_rows > .table_rows_tr .table_rows_th:last-child,
.table_rows .table_rows > .table_rows_tr .table_rows_td:last-child{
  border-right:0;
}

.anchor{
  position: relative;
  top: -30px;
}

.tt2{
  position: relative;
}
.tt2.penki:before{
  content: "";
  display: block;
  width: 368px;
  aspect-ratio: 368 / 241;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/penki.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 28%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 0;
}
.tt2_en{
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.025em;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align:left;
  border: 1px solid transparent;
  border-radius: 25px;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  color: #fff;
  background: #f67c3a;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  letter-spacing: 0;
}
.read_more a:after{
  content: "";
  display: block;
  position: absolute;
  width: 30px;
  aspect-ratio:1;
  z-index: 1;
  top: 50%;
  right: 9px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.read_more a:hover{
  color: #f67c3a;
  background: #fff;
  border: 1px solid #f67c3a;
}
.read_more a:hover:after{
  margin-right: -5px;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arr2.png);
}

/*白バージョン*/
.read_more.wh{

}
.read_more.wh a{
  background: #fff;
  color: #f67c3a;
}
.read_more.wh a:after{
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arr_wh.png);
}
.read_more.wh a:hover{
  background: rgba(255,255,255,0.2);
  border: 1px solid #fff;
  color: #fff;
}
.read_more.wh a:hover:after{
  margin-right: -5px;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media (max-width:374px){

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

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

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

  .anchor{
    top: -100px;
  }

  .tt2{

  }
  .tt2_en{
    font-size: 50px;
  }
  .tt2_ja{
    font-size: 18px;
  }

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    border-radius: 27px;
    padding: 14px 31px;
    margin: 5px 5px;
  }
  .read_more a:after{
    /*    content: "→";
        top: 50%;
        right: 18px;*/
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){
  .tt2.penki:before{
    left: 10%;
  }

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

  }
  .tt2_en{
    font-size: 64px;
  }
  .tt2_ja{

  }

  .tt2.penki:before{
    left: 28%;
  }
}
@media (min-width:1470px){
  .tt2_en{
    font-size: 72px;
  }
}


/*******************************
*　HOME
********************************/
.pg_home{

}

.pg_home .section.sec1{
  position: relative;
  padding-top:60px;
}
.pg_home .section.sec1:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 2266;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/texture.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.pg_home .section.sec2{
  position: relative;
  padding-top: 60px;
  padding-bottom: 50px;

}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio: 1920 / 1465;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/machi_no2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -157px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
.pg_home .section.sec3{
  background: #f67c3a;
  position: relative;
  padding-top: 20px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  background: #f3e3c2;
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec5{
  position: relative;
  padding: 0;
}
.pg_home .section.sec6{
  padding-top: 50px;
  position: relative;
  padding-bottom: 50px;
}
.pg_home .section.sec6:after{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: #f67c3a;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.pg_home .section.sec7{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec8{

}



@media (max-width:767px){

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

  }
  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 40px;
    padding-bottom: 85px;
  }
  .pg_home .section.sec4{
    padding-top: 80px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 85px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

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


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

  }
  .pg_home .section.sec1{
    padding-top: 127px;
  }
  .pg_home .section.sec2{
    padding-bottom: 130px;
  }
  .pg_home .section.sec3{
    padding-top: 20px;
  }
  .pg_home .section.sec4{
    padding-top: 107px;
    padding-bottom: 124px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-bottom: 134px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


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


}


/*main*/
/*sec1*/
.home_sec1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec1_box1{
  width: 100%;
  order: 2;
  margin-top: 50px;
}
.home_sec1_box1_imgs{

}
.home_sec1_box1_img{

}
.home_sec1_box1_img.no1{
  width: 88.7%;
}
.home_sec1_box1_img.no1:before{

}
.home_sec1_box1_img.no2{
  width: 56.45%;
  margin-left: auto;
  margin-top: -27.5%;
}
.home_sec1_box1_img.no2:before{

}
.home_sec1_box2{
  width: 100%;
  order: 1;
}
.cover_tt{
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cover_tt p{
  letter-spacing: 0.025em;
  background: #f3e3c2;
  color: #f67c3a;
  padding: 10px 10px;
}
.home_sec1_box2 .cover_tt{
  margin-top: 20px;
}
.cover_tt p:nth-child(n+2){
  margin-top: 5px;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  text-align: justify;
}
.home_sec1_box2 .content_desc{
  margin-top: 20px;
}
.home_sec1_box2 .read_more{

}

/*sec2*/
.home_sec2_wrap{
  text-align: center;
  position: relative;
  z-index: 1;
}
.home_sec2_txt1{
  font-size: 16px;
  font-weight: 700;
}
.home_sec2_txt1 p{
  display: inline-block;
  background: #fff;
  letter-spacing: 0.025em;
  padding: 8px 10px 9px;
}
.home_sec2_txt1 p strong{
  font-size: 20px;
  display: inline-block;
  background: linear-gradient(transparent 70%, #ffe34b 70%);
  letter-spacing: 0.055em;
}
.home_sec2_txt2{
  display: inline-block;
  font-size: 19px;
  font-weight: 700;
  margin-top: 16px;
}
.home_sec2_txt2 p{
  letter-spacing: 0.025em;
  background: linear-gradient(transparent 70%, #ffe34b 70%);
  text-shadow    :
    4px  4px 0px #ffffff,
    -4px  4px 0px #ffffff,
    4px -4px 0px #ffffff,
    -4px -4px 0px #ffffff,
    4px  0px 0px #ffffff,
    0px  4px 0px #ffffff,
    -4px  0px 0px #ffffff,
    0px -4px 0px #ffffff;
  padding: 5px 10px;
}
.home_sec2_txt2 p strong{
  font-size: 22px;
  color: #f67c3a;
}
.home_sec2_img1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}
.home_sec2_img1_item{
  width: 33.333%;
}
.home_sec2_img1_item_inner{

}
.home_sec2_txt3{
  font-size: 14px;
  font-weight: 500;
  margin-top: 18px;
}
.home_sec2_txt3 p{
  letter-spacing: 0.025em;
}
.home_sec2_bnr{
  display: block;
  margin-top: 40px;
}
.home_sec2_bnr img{
  transition: all .2s;
}
.home_sec2_bnr:hover img{
  transform: scale(1.02);
}

/*sec3*/
.sec_tt_box{
  text-align: center;
  position: relative;
}
.sec_tt_en{
  font-size:clamp(2.5rem, -0.5rem + 15vw, 17.5rem);
  font-weight: 600;
  white-space: nowrap;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  color: rgba(255,255,255,0.15);

}
.sec_tt_ja{
  width: 100%;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  color: #fff;
}
.sec_tt_box.ver2{

}
.sec_tt_box.ver2 .sec_tt_en{
  color: #f2f0e8;
}
.sec_tt_box.ver2 .sec_tt_ja{
  color: #000;
}
.sec_tt_box.lg{

}
.sec_tt_box.lg .sec_tt_en{
  font-size: clamp(2.5rem, -1.375rem + 19.38vw, 21.875rem);
}
.sec_tt_box.lg .sec_tt_ja{

}

.home_sec3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}
.home_sec3_item{
  width: 100%;
}
.home_sec3_item:nth-child(n+2){
  margin-top: 30px;
}
.home_sec3_item_inner{

}
.home_sec3_item_img:before{
  padding-top: 75.86%;
}
.home_sec3_item_txt{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  background: #000000;
  color: #fff94b;
  padding: 16px 0;
}
.home_sec3_item_txt p{
  letter-spacing: 0.025em;
}

.lg_txt{
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: #fff94b;
  margin-top: 40px;
}
.lg_txt p{

}
.img_txt{
  text-align: center;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  display:block;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.img_txt p{
  letter-spacing: 0.025em;
}
.img_txt .img_{
  margin: 16px 0;
}

/*sec4*/
.tt2_en.or{
  color: #f67c3a;
}
.home_sec4_wrap{

}
.home_sec4_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec4_head_box1{
  width: 100%;
}
.home_sec4_head_box2{
  width: 100%;
}
.home_sec4_head_box2 .content_desc{
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.home_sec4_head_box2 .content_desc p{
  letter-spacing: 0.025em;
}
.home_sec4_items{
  margin-top: 40px;
}
.home_sec4_item_head{

}
.home_sec4_item_head_inner{
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}
.home_sec4_item_head_box1{
  width: 100%;
}
.home_sec4_item_head_box1_img:before{
  padding-top: 66.666%;
}
.home_sec4_item_head_box1_img{
  overflow: hidden;
}
.home_sec4_item_head_box1_img img{
  transition: all .2s;
}
.home_sec4_item_head_inner:hover .home_sec4_item_head_box1_img img{
  transform: scale(1.02);
}
.home_sec4_item_head_box2{
  width: 100%;
  padding: 37px 16px;

}
.home_sec4_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
  position: relative;
}
.home_sec4_item_head:hover .home_sec4_item_tt,
.home_sec4_sub_item:hover .home_sec4_item_tt.sm{
  color: var(--main-color);
  border-color: var(--main-color);
}
.home_sec4_item_tt:after{
  content: "";
  display: block;
  width: 40px;
  aspect-ratio:1;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/arr3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: all .2s;
}
.home_sec4_item_head_inner:hover .home_sec4_item_tt:after,
.home_sec4_sub_item_inner:hover .home_sec4_item_tt:after{
  right: -5px;
}
.home_sec4_item_tt.sm{
  font-size: 17px;
  border-bottom: none;
  padding-bottom: 0;
}
.home_sec4_item_head_box2 .content_desc{
  margin-top: 20px;
}
.home_sec4_item_head:hover .content_desc{
  color: #000;
}
.home_sec4_sub_items{
  margin-top: 30px;
}
.home_sec4_sub_items{
  display: flex;
  flex-wrap: wrap;
}
.home_sec4_sub_item{
  width: 100%;
}
.home_sec4_sub_item:nth-child(n+2){
  margin-top: 30px;
}

.home_sec4_sub_item_inner{

}
.home_sec4_sub_item_img{
  overflow: hidden;
}
.home_sec4_sub_item_img img{
  transition: all .2s;
}
.home_sec4_sub_item_img:before{

}
.home_sec4_sub_item_inner:hover .home_sec4_sub_item_img img{
  transform: scale(1.02);
}
.home_sec4_sub_item.col2 .home_sec4_sub_item_img:before{
  padding-top: 40.54%;
}
.home_sec4_sub_item.col3 .home_sec4_sub_item_img:before{
  padding-top: 40.54%;
}
.home_sec4_sub_item_tt{
  background: #fff;
  padding: 16px;
}

/*sec5*/
.home_sec5_imgs{
  display: flex;
  flex-wrap: wrap;
}
.home_sec5_img{
  width: 100%;
}
.home_sec5_img:before{
  padding-top: 320px;
}
.home_sec5_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec5_wrap{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.home_sec5_wrap_inner{

}
.home_sec5_wrap_item{
  margin: 80px 0;
}
.home_sec5_wrap_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
  color: #fff;
}
.home_sec5_wrap_item .content_desc{
  color: #fff;
  margin-top: 20px;
}

/*sec6*/
.pg_home .section.sec6 .news_list_thumb{
  margin-top: -10px;
}
.pg_home .section.sec6 .news_list_thumb .webgene-blog{
  margin-inline:0;
}
.pg_home .section.sec6 .news_list_thumb .webgene-item{
  width: 250px;
  padding: 0;
  margin-right: 15px;
}
.pg_home .section.sec6 .infiniteslide_wrap{
  overflow:visible!important;
}
.pg_home .section.sec6 .news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 70%;
}
.home_sec7_wrap .home_sec4_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_sec7_wrap .news_list_thumb{

}
.home_sec7_wrap .news_list_thumb .webgene-blog{
  margin-inline:0;
  display: flex;
  flex-wrap: nowrap;
}
.home_sec7_wrap .news_list_thumb .webgene-item{
  width: 100%;
  padding: 0;
}
.home_sec7_wrap .news_list_thumb .webgene-item .img.img_fit:before {
  padding-top: 66.666%;
}
.home_sec7_wrap .news_list_thumb .swiper-slide{
  width: 360px;
}
.news_list_thumb{
  position: relative;
}
.news_list_thumb .slide-prev{
  width: 76px;
  aspect-ratio:1;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/left.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.news_list_thumb .slide-next{
  width: 76px;
  aspect-ratio:1;
  background-image: url(https://hiro-kenso.jp/system_panel/uploads/images/right.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 1;
}
.news_list_thumb .slide-prev,
.news_list_thumb .slide-next{
  cursor: pointer;
}
/*.slide-next.swiper-button-disabled,
.slide-prev.swiper-button-disabled{
  display: none;
}*/

/*sec7*/
.cover_img{
  width: 100%;
  position: relative;
  z-index: 0;
}
.cover_img:before{
  padding-top: 700px;
}
/*.cover_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
 background: linear-gradient(90deg,rgba(243, 227, 194, 0) 81%, rgba(243, 227, 194, 0.85) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}*/
.cover_mask{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(280deg,rgba(243, 227, 194, 0.97) 0%, rgba(243, 227, 194, 0.85) 0%);
  background:rgba(243,227,194,0.8);
  pointer-events: none;
  z-index: 1;
}
.home_sec7_wrap_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_sec7_wrap .home_sec4_head_box2{
  margin-top: 30px;
}
.home_sec7_wrap .content_desc{
  position: relative;
  z-index: 1;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec4_item_tt:after{
    width: 30px;

  }
  .home_sec4_item_head_box2 .home_sec4_item_tt:after{
    top: 40%;
  }

  .tt2.penki:before{
    width: 200px;
  }
  .home_sec7_wrap .home_sec4_head{
    justify-content: center;
  }
  .home_sec7_wrap .news_list_thumb .swiper-slide{
    width: 75%;
  }
  .home_sec7_wrap .read_more,
  .home_sec7_wrap .read_more a{
    width: 100%;
  }
}
@media (min-width:768px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    margin-top: 40px;
  }
  .home_sec1_box1_imgs{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box1_img.no1{

  }
  .home_sec1_box1_img.no1:before{

  }
  .home_sec1_box1_img.no2{
    margin-top: -27.5%;
  }
  .home_sec1_box1_img.no2:before{

  }
  .home_sec1_box2{

  }
  .cover_tt{
    font-size: 30px;
  }
  .home_sec1_box2 .cover_tt{
    margin-top: 54px;
  }
  .cover_tt p{

  }
  .cover_tt p:nth-child(n+2){
    margin-top: 10px;
  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{
    margin-top: 52px;
  }
  .home_sec1_box2 .read_more{
    margin-top: 45px;
  }

  .sec_tt_box.lg{

  }
  .sec_tt_box.lg .sec_tt_en{

  }
  .sec_tt_box.lg .sec_tt_ja{

  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_txt1{
    font-size: 18px;
  }
  .home_sec2_txt1 p{

  }
  .home_sec2_txt1 p strong{
    font-size: 22px;
  }
  .home_sec2_txt2{
    font-size: 30px;
    margin-top: 10px;
  }
  .home_sec2_txt2 p{

  }
  .home_sec2_txt2 p strong{
    font-size: 40px;
  }
  .home_sec2_img1{

  }
  .home_sec2_img1_item{
    padding: 0;
    margin-inline:-12px;
  }
  .home_sec2_img1_item_inner{

  }
  .home_sec2_txt3{

  }
  .home_sec2_bnr{
    margin-top: 91px;
  }

  /*sec3*/
  .sec_tt_box{

  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 40px;
  }

  .home_sec3_items{
    margin-inline:-8.5px;
    margin-top: -15px;
  }
  .home_sec3_item{
    width: 33.333%;
    padding-inline:8.5px;
  }
  .home_sec3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec3_item:nth-child(n+4){
    margin-top: 30px;
    ;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_txt{
    font-size: 18px;
  }

  .lg_txt{
    font-size: 40px;
    margin-top: 60px;
  }
  .img_txt{
    font-size: 28px;
  }
  .img_txt .img_{
    margin: 20px 0;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_head{

  }
  .home_sec4_head_box1{

  }
  .home_sec4_head_box2{

  }
  .home_sec4_head_box2 .content_desc{

  }
  .home_sec4_items{
    margin-top: 80px;
  }
  .home_sec4_item_head{

  }
  .home_sec4_item_head_box1{
    width: 100%;
  }
  .home_sec4_item_head_box1_img:before{

  }
  .home_sec4_item_head_box2{
    width: 100%;
    padding: 37px 50px;
  }
  .home_sec4_item_tt{
    font-size: 30px;
    padding-bottom: 19px;
  }
  .home_sec4_item_tt.sm{
    font-size: 18px;
  }
  .home_sec4_item_head_box2 .content_desc{
    margin-top: 41px;
  }

  .home_sec4_sub_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-5px;
    margin-top: 41px;
  }
  .home_sec4_sub_item{
    width: 100%;
    padding-inline:5px;
  }
  .home_sec4_sub_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sec4_sub_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_sec4_sub_item.col2{
    width: 50%;
  }
  .home_sec4_sub_item.col3{
    width: 50%;
  }
  .home_sec4_sub_item_inner{

  }
  .home_sec4_sub_item_img:before{

  }
  .home_sec4_sub_item.col2 .home_sec4_sub_item_img:before{
    padding-top: 40.54%;
  }
  .home_sec4_sub_item.col3 .home_sec4_sub_item_img:before{
    padding-top: 40.54%;
  }
  .home_sec4_sub_item_tt{
    background: #fff;
    padding: 20px 32px;
  }

  /*sec5*/
  .home_sec5_imgs{

  }
  .home_sec5_img{

  }
  .home_sec5_img:before{
    padding-top: 420px;
  }
  .home_sec5_img:after{

  }
  .home_sec5_wrap{

  }
  .home_sec5_wrap_inner{
    display: flex;
    flex-wrap: wrap;
  }
  .home_sec5_wrap_item{
    width: 100%;
    margin: 80px 0;
  }
  .home_sec5_wrap_item_tt{
    font-size: 30px;
    padding-bottom: 21px;
  }
  .home_sec5_wrap_item .content_desc{
    margin-top: 50px;
  }

  /*sec6*/
  .pg_home .section.sec6 .news_list_thumb{
    margin-top: -30px;
  }
  .pg_home .section.sec6 .news_list_thumb .webgene-blog{
    margin-inline:0;
  }
  .pg_home .section.sec6 .news_list_thumb .webgene-item{
    width: 300px;
    padding: 0;
  }
  .pg_home .section.sec6 .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .pg_home .section.sec6 .read_more{
    margin-top: 55px;
  }

  /*sec7*/
  .home_sec7_wrap .home_sec4_head_box1 .content_desc{
    margin-top: 46px;
  }
  .news_list_thumb .slide-prev{
    top: 48.5%;
    left: -35px;
  }
  .news_list_thumb .slide-next{
    top: 48.5%;
    right: -39px;
  }
  .home_sec7_wrap .read_more{
    margin-top: 52px;
  }
  .home_sec7_wrap .home_sec4_head_box2{
    margin-top: 50px;
  }
  .cover_img:before{
    padding-top: 900px;
  }
}
@media (min-width:1024px){
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 41.11%;
    padding-top: 10px;
    margin-top: 0;
    order: 1;
  }
  .home_sec1_box2{
    width: 52.82%;
    order: 2;
  }

  .home_sec2_img1_item{

  }

  .img_txt{
    font-size: 22px;
    display: flex;
  }
  .img_txt .img_{
    margin: 0;
  }

  .home_sec4_item_tt.sm{
    font-size: 20px;
  }
  .home_sec4_sub_item.col3{
    width: 33.33%;
  }
  .home_sec4_sub_item.col3 .home_sec4_sub_item_img:before{
    padding-top: 62.5%;
  }

  /*sec3*/
  .home_sec3_items {
    margin-top: -30px;
  }

  /*sec5*/
  .home_sec5_imgs{

  }
  .home_sec5_img{
    width: 50%;
  }
  .home_sec5_img:before{
    padding-top: 500px;
  }
  .home_sec5_img:after{

  }
  .home_sec5_wrap{

  }
  .home_sec5_wrap_inner{

  }
  .home_sec5_wrap_item{
    width: 50%;
    margin: 0;
  }
  .home_sec5_wrap_item_tt{
    font-size: 30px;
  }
  .home_sec5_wrap_item .content_desc{

  }

  .home_sec5_wrap_item:nth-child(odd){
    padding-right: 30px;
  }
  .home_sec5_wrap_item:nth-child(even){
    padding-left: 30px;
  }

  /*sec6*/
  .pg_home .section.sec6 .news_list_thumb{
    margin-top: -40px;
  }
  .pg_home .section.sec6 .news_list_thumb .webgene-item{
    width: 400px;
  }
  .news_list_thumb .slide-next{
    right: -39px;
  }
  .home_sec7_wrap .home_sec4_head_box2{
    margin-top: 50px;
  }
  .cover_img{
    width: 100%;
  }
  .cover_img:before{
    padding-top: 900px;
  }
}
@media (min-width:1200px){
  /*main*/
  /*sec1*/
  .home_sec1_wrap{

  }
  .home_sec1_box1{
    width: 41.11%;
    padding-top: 10px;
    margin-top: 0;
    order: 1;
  }
  .home_sec1_box1_imgs{

  }
  .home_sec1_box1_img{

  }
  .home_sec1_box1_img.no1{

  }
  .home_sec1_box1_img.no1:before{

  }
  .home_sec1_box1_img.no2{
    margin-top: -27.5%;
  }
  .home_sec1_box1_img.no2:before{

  }
  .home_sec1_box2{
    width: 52.82%;
    order: 2;
  }
  .cover_tt{
    font-size: 40px;
  }
  .cover_tt p{

  }
  .content_desc{

  }
  .home_sec1_box2 .content_desc{

  }
  .home_sec1_box2 .read_more{

  }

  .sec_tt_box.lg{

  }
  .sec_tt_box.lg .sec_tt_en{

  }
  .sec_tt_box.lg .sec_tt_ja{
    font-size: 58px;
  }

  /*sec2*/
  .home_sec2_wrap{

  }
  .home_sec2_txt1{
    font-size: 24px;
  }
  .home_sec2_txt1 p{
    padding: 8px 20px 10px;
  }
  .home_sec2_txt1 p strong{
    font-size: 28px;
  }
  .home_sec2_txt2{
    font-size: 50px;
  }
  .home_sec2_txt2 p{
    font-size: 50px;
  }
  .home_sec2_txt2 p strong{
    font-size: 60px;
  }
  .home_sec2_img1{

  }
  .home_sec2_img1_item{

  }
  .home_sec2_img1_item_inner{

  }
  .home_sec2_txt3{

  }
  .home_sec2_bnr{

  }

  /*sec3*/
  .sec_tt_box{

  }
  .sec_tt_en{

  }
  .sec_tt_ja{
    font-size: 50px;
  }

  .home_sec3_items{
    margin-top: -45px;
  }
  .home_sec3_item{
    width: 20%;
  }
  .home_sec3_item:nth-child(n+4){
    margin-top: 0;
  }
  .home_sec3_item_inner{

  }
  .home_sec3_item_img:before{

  }
  .home_sec3_item_txt{
    font-size: 22px;
  }

  .lg_txt{
    font-size: 60px;
  }
  .img_txt{
    font-size: 24px;
  }
  .img_txt .img_{
    margin-right: 10px;
  }

  /*sec4*/
  .home_sec4_wrap{

  }
  .home_sec4_head{

  }
  .home_sec4_head_box1{
    width: 25.98%;
  }
  .home_sec4_head_box2{
    width: 69.73%;
  }
  .home_sec4_head_box2 .content_desc{
    margin-top: 5px;
  }
  .home_sec4_items{

  }
  .home_sec4_item_head{

  }
  .home_sec4_item_head_box1{
    width: 39.47%;
    order: 1;
  }
  .home_sec4_item_head_box1_img:before{
    padding-top: 500px;
  }
  .home_sec4_item_head_box2{
    width: 60.52%;
    padding: 37px 50px;
    order: 2;
  }
  .home_sec4_item_tt{
    font-size: 40px;
  }
  .home_sec4_item_tt.sm{
    font-size: 22px;
  }
  .home_sec4_item_head_box2 .content_desc{

  }

  .home_sec4_sub_items{
    margin-inline:-20px;
  }
  .home_sec4_sub_item{
    padding-inline:20px;
  }

  .home_sec4_sub_item.col2{
    width: 50%;
  }
  .home_sec4_sub_item.col3{
    width: 33.333%;
  }
  .home_sec4_sub_item_inner{

  }
  .home_sec4_sub_item_img:before{

  }
  .home_sec4_sub_item_tt{

  }

  /*sec5*/
  .home_sec5_imgs{

  }
  .home_sec5_img{

  }
  .home_sec5_img:before{

  }
  .home_sec5_img:after{

  }
  .home_sec5_wrap{

  }
  .home_sec5_wrap_inner{

  }
  .home_sec5_wrap_item{

  }
  .home_sec5_wrap_item_tt{
    font-size: 48px;
  }
  .home_sec5_wrap_item .content_desc{

  }
  .home_sec5_wrap_item .read_more{
    margin-top: 50px;
  }

  .home_sec5_wrap_item:nth-child(odd){
    padding-right: 60px;
  }
  .home_sec5_wrap_item:nth-child(even){
    padding-left: 60px;
  }

  /*sec6*/
  .pg_home .section.sec6 .news_list_thumb{
    margin-top: -60px;
  }
  .pg_home .section.sec6 .news_list_thumb .webgene-item{
    width: 500px;
  }

  .home_sec7_wrap .news_list_thumb{
    margin-right: var(--margin-for-device-side-w);
  }

  /*sec7*/
  .home_sec7_wrap .home_sec4_head_box2{
    width: 69.4%;
    padding-top: 12px;
    margin-top: 0;
  }
  .news_list_thumb .slide-prev{
    top: 48.5%;
    left: -35px;
  }
  .news_list_thumb .slide-next{
    top: 48.5%;
    right: 98px;
  }
  /*sec7*/
  .home_sec7_wrap .news_list_thumb .swiper-slide{
    width: 330px;
  }
  .news_list_thumb .slide-next{
    right: 98px;
  }
  .cover_img{
    width: 49.01%;
  }
  .cover_img:before{
    padding-top: 640px;
  }
}
@media (min-width:1470px){
  /*sec1*/
  .cover_tt{
    font-size: 50px;
  }

  .img_txt{
    font-size: 30px;
  }
  .home_sec3_item_txt{
    font-size: 24px;
  }

  .home_sec4_item_head_box1_img:before{
    padding-top: 400px;
  }

  .home_sec4_item_tt.sm{
    font-size: 30px;
  }

  .home_sec5_wrap_item:nth-child(odd){
    padding-right: 80px;
  }
  .home_sec5_wrap_item:nth-child(even){
    padding-left: 80px;
  }
  /*sec2*/
  .home_sec2_img1_item{
    width: auto;
  }
  /*sec6*/
  .pg_home .section.sec6 .news_list_thumb{
    margin-top: -75px;
  }

  /*sec7*/
  .home_sec7_wrap .news_list_thumb .swiper-slide{
    width: 285px;
  }
}
@media (min-width:1720px){
  .img_txt .img_{
    margin-right: 36px;
  }
  .img_txt{
    font-size: 36px;
  }

  .home_sec7_wrap .news_list_thumb .swiper-slide{
    width: 360px;
  }
}




/*******************************
*　
********************************/

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



/*******************************
*　
********************************/

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}







/*******************************
*　
********************************/

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}




/*******************************
*　
********************************/

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


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

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}







/*******************************
*　
********************************/
.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){


}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 30px;
}
.posts_layout{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

}
.posts_layout_box1{
  width: 100%;
}
.posts_layout_box2{
  width: 100%;
  margin-top: 50px;
}

.select_wrap{
  position: relative;
  z-index: 1;
}
.select_wrap:after{
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.select_wrap select{
  width: 100%;
  padding: 10px 10px;
  /*height: 40px;*/
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.posts_category_sp{
  margin-bottom: 30px;
}

/* リスト */
.posts_list{

}
.posts_list .webgene-item{
  display: flex;
  align-items: center;
  border-bottom: 1px dotted;
  padding-bottom: 10px;
}
.posts_list .webgene-item + .webgene-item{
  margin-top: 10px;
}
.posts_list .webgene-item .date{
  width: 95px;
  letter-spacing: 0.1em;
}
.posts_list .webgene-item .category{
  width: auto;
  font-size: 0.75em;
}
.posts_list .webgene-item .category span{
  display: block;
  background: #0069ba;
  color: #FFF;
  padding: 3px 5px;
  text-align: center;
}
.posts_list .webgene-item .title{
  width: 100%;
  letter-spacing: 0.075em;
}
.posts_list .webgene-item .title a{

}


/* サイド */
.posts_side_wrap{

}
.posts_side_wrap + .posts_side_wrap{
  margin-top: 30px;
}
.posts_side_title {
  background: #0069ba;
  color: #FFF;
  padding: 10px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 8px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 18px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

/* 詳細 */
.posts_detail{
  border: 1px solid #d3d3d3;
  border-top: 15px solid #0069ba;
  padding: 15px 10px;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category span{
  display: inline-block;
  background: #0069ba;
  border-radius: 5px;
  color: #FFF;
  min-width: 150px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 2px 5px;
  line-height: 1.2;
}
.posts_detail .meta .date{

}
.posts_detail .meta .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.065em;

}
.posts_detail .post_content{
  line-height: 1.875;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

}
.posts_back_list a{
  display: block;
  width: 255px;
  max-width: 100%;
  margin: 30px auto 0;
  background: #f3f2f2;
  padding: 4px;
  border-radius: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
.posts_back_list a p{
  border: 2px dashed #0069b6;
  border-radius: 10px;
  padding: 10px 6px;
}
.posts_back_list a p:after{
  content: "\f105";
  font-family: "FontAwesome";
  margin-left: 18px;
}

/* PDFリンク */
.post_pdf{
  text-align: left;
}
.post_pdf a{
  display: inline-block;
  margin-top: 30px;
  border-bottom: 1px solid;
  transition: 0.2s all;
}
.post_pdf a[href=""]{
  display: none;
}
.post_pdf a:hover{
  border-bottom: 0;
}
.post_pdf a:before{
  /*
  * f054 > (大)
  * f105 > (小)
  */
  content: "\f105";
  font-family: "FontAwesome";
  margin-right: 5px;
}

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

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

}
@media (max-width:767px){
  .posts_list .webgene-item{
    flex-wrap: wrap;
  }
  .posts_list .webgene-item .title{
    margin-top: 5px;
  }
  .posts_list .webgene-item .category{
    max-width: calc(100% - 95px);
    line-height: 1.2;
  }
}
@media (min-width:768px){

  .pg_news{
    padding-top: 50px;
  }
  .posts_layout_box1{
    width: 74.32%;
  }
  .posts_layout_box2{
    width: 22.97%;
    margin-top: 0;
  }

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
    padding-bottom: 20px;
  }
  .posts_list .webgene-item + .webgene-item{
    margin-top: 20px;
  }
  .posts_list .webgene-item .date{
    width: 90px;
    font-size: 14px;
    letter-spacing: 0.075em;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 100px - 150px - 15px);
    margin-left: 15px;
  }
  .posts_list .webgene-item .title a{

  }

  .posts_side_wrap + .posts_side_wrap{
    margin-top: 55px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 20px 30px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    padding: 0 10px 5px;
    margin-bottom: 25px;
  }
  .posts_detail .meta .category{
    width: 100%;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: 105px;
  }
  .posts_detail .meta .title{
    width: calc(100% - 105px);
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0 10px;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }


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

  /* リスト */
  .posts_list{

  }
  .posts_list .webgene-item{
  }
  .posts_list .webgene-item + .webgene-item{
  }
  .posts_list .webgene-item .date{
    width: 120px;
    font-size: 16px;
  }
  .posts_list .webgene-item .category{
    width: 160px;
  }
  .posts_list .webgene-item .category span{
  }
  .posts_list .webgene-item .title{
    width: calc(100% - 120px - 160px - 25px);
    margin-left: 25px;
  }
  .posts_list .webgene-item .title a{

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　お問い合わせ
********************************/

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
  font-family: "Noto Serif JP", serif;
}
.contact_info_tt{
  font-family: "Noto Serif JP", serif;
  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;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #eeeeee;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 0 12px;
  margin-top: 3px;
  float: right;
  font-weight: 900;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.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: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  letter-spacing: 0.18em;
}
.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: 16px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  max-width: 314px;
  width: 100%;
  font-size: 18px;
  padding: 10px;
  margin: 32px auto 0;
  border: 0;
  background: #b80000;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  cursor: pointer;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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;
}
.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%;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 35px;
}
.privacy_ttl {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  padding: 10px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #c3d194;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.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: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}


@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 {
    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: 7px 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: 15px;
    padding-left: 10px;
  }
}

/*******************************
*　お問い合わせ送信完了
********************************/
.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;
  }
}


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

}
.pg_xxx .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_xxx .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
}


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

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }


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


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


}
