@charset "UTF-8";

:root {
  --main-color: #73674c;
  --sub-color: #856b31;
}

/* 基本フォント: ゴシック */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #fff;
  background: #1c1b1a;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}



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

@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;
  color: #8a691e;
  /*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;
}
.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: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;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: transparent;
  transition: all 0.2s;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

/* メニュー全般 */
.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-right: 5px;
}
.hdr_contact a{
  background: transparent;
  color: #FFF;
  width: 185px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid #fff;
  position: relative;
  z-index: 1;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 17px;
}
.hdr_contact a:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 2px;
  width: 17px;
  height: 16px;
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250610113112990459.png)no-repeat center center/contain;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
  font-size: 16px;
}
.hdr_contact a:hover{
  color: #1c1b1a;
  background: #fff;
}
.hdr_contact a:hover:after{
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png)no-repeat center center/contain;
}

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

}
.hdr_sns a + a{
  margin-left: 10px;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 0px;
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 10px 15px;
  }

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

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

  }
  .header.slim .hdr1{
    padding: 20px 15px;
    background: #2c2c2c;
  }

  /* TELボタン */
  .hdr_tel{

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


  /* お問い合わせボタン */
  .hdr_contact{

  }
  .hdr_contact a{

  }
  .hdr_contact a.email p:before{

  }
  .hdr_contact a:hover{

  }


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

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

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

  }
  .header.slim .hdr1{
    padding: 20px 15px;
  }

  /* TELボタン */
  .hdr_tel{

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


  /* お問い合わせボタン */
  .hdr_contact{

  }
  .hdr_contact a{
    margin-top: -3px;
    width: 250px;
    padding: 13px 5px 10px;
  }
  .hdr_contact a.email p:before{

  }
  .hdr_contact a:hover{

  }

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

  .hdr1{
    padding: 33px 40px 0 22px;
  }

  /* ロゴ */
  .hdr_logo{
    margin-top: 5px;
  }
  .hdr_logo img{
    width: auto;
  }

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

  }
  .header.slim .hdr1{
    padding: 20px 15px;
  }

}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.mv:before,
.mv:after{
  content: "";
  position: absolute;
  z-index: 2;
  background-color: rgb(33, 33, 33);
  width: calc(500px*0.3);
  height: calc(240px*0.3);
}
.mv:before{
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 99% 0%, 0% 99%);
}
.mv:after{
  right: 0;
  bottom: 0;
  clip-path: polygon(101% 0, 100% 0%, 100% 100%, 0 101%);
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 300px;
}
.mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(11, 13, 15, 0.6);
  pointer-events: none;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  color: #FFF;
}
.mv_txt_p1,
.mv_txt_p2{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
}
.mv_txt_p1{
  font-size: 30px;
}
.mv_txt_p2{
  font-size: 18px;
  margin-top: 5px;
}

/*scroll_btn*/
.scroll_btn{
  position: absolute;
  z-index: 3;
  right: 5%;
  bottom: 5px;
}
.scroll_btn_inner{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  writing-mode: vertical-rl;
  color: #696969;
  position: relative;
  z-index: 1;
}
.scroll_btn_inner:before,
.scroll_btn_inner:after{
  content: "";
  width: 1px;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
}
.scroll_btn_inner:before{
  height: 50px;
  background: #474747;
  bottom: -55px;
}
.scroll_btn_inner:after{
  height: 15px;
  background: var(--main-color);
  bottom: -20px;
}


/* スライダーの場合 */
.mv_slider{

}
.mv_slider_item{
  position: relative;
  z-index: 1;
}

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (max-width:767px){
  .mv_txt{
    top: 44%;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv:before,
  .mv:after{
    width: calc(500px*0.5);
    height: calc(240px*0.5);
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 50%;
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 40px;
  }
  .mv_txt_p2{
    font-size: 20px;
    margin-top: 10px;
  }

  /*scroll_btn*/
  .scroll_btn{
    right: 5%;
    bottom: 35px;
  }
  .scroll_btn_inner{

  }
  .scroll_btn_inner:before{
    height: 70px;
    bottom: -80px;
  }
  .scroll_btn_inner:after{
    height: 25px;
    bottom: -35px;
  }

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


  /* MV */
  .mv{
  }
  .mv:before,
  .mv:after{
    width: calc(500px*0.7);
    height: calc(240px*0.7);
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 50%;
    left: 30px;
  }
  .mv_txt_p1{
    font-size: 50px;
  }
  .mv_txt_p2{
    font-size: 22px;
    margin-top: 15px;
  }

  /*scroll_btn*/
  .scroll_btn{
    right: 6.5%;
    bottom: 13.5%
  }
  .scroll_btn_inner{

  }
  .scroll_btn_inner:before{
    height: 90px;
    bottom: -100px;
  }
  .scroll_btn_inner:after{
    height: 55px;
    bottom: -65px;
  }
}
@media (min-width:1200px){

  /* MV */
  .mv{
    margin-bottom: 145px;
  }
  .mv:before,
  .mv:after{
    width: 500px;
    height: 240px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 900px;
  }

  /* MVテキスト */
  .mv_txt{
    top: 55.9%;
    left: 143px;
  }
  .mv_txt_p1{
    font-size: 68px;
  }
  .mv_txt_p2{
    font-size: 22px;
    margin-top: 15px;
  }

  /*scroll_btn*/
  .scroll_btn{
    right: 6.5%;
    bottom: 8.5%;
  }
  .scroll_btn_inner{

  }
  .scroll_btn_inner:before{
    height: 100px;
    bottom: -113.5px;
  }
  .scroll_btn_inner:after{
    height: 60px;
    bottom: -75px;
  }

}


/*******************************
*　サイドバー
********************************/

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 70px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv:before,
.pg_header_mv:after{
  content: "";
  position: absolute;
  z-index: 2;
  background-color: rgb(33, 33, 33);
  width: calc(500px*0.3);
  height: calc(240px*0.3);
}
.pg_header_mv:before{
  top: 0;
  left: 0;
  clip-path: polygon(0% 0%, 100% 0%, 99% 0%, 0% 99%);
}
.pg_header_mv:after{
  right: 0;
  bottom: 0;
  clip-path: polygon(101% 0, 100% 0%, 100% 100%, 0 100%);
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 250px;
}
.pg_header_mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(11, 13, 15, 0.6);
  pointer-events: none;
}
.pg_header .sec_title{
  position: absolute;
  z-index: 1;
  left: 10%;
  bottom: 5%;
}
.pg_header .sec_title_en{
  color: #fff;
  letter-spacing: 0.1em;
  padding-left: 3px;
}
.pg_header .sec_title_en:after{
  background: #fff;
}
.pg_header .sec_title_ja{
  margin-top: 0;
}

@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv:before,
  .pg_header_mv:after{
    width: calc(500px*0.5);
    height: calc(240px*0.5);
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header .sec_title{
    left: 10%;
    bottom: 5%;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 145px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv:before,
  .pg_header_mv:after{
    width: calc(500px*0.7);
    height: calc(240px*0.7);
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 450px;
  }
  .pg_header .sec_title{
    left: 10%;
    bottom: 5%;
  }
  .pg_header .sec_title_en:after{
    margin-top: -3px;
    margin-left: 16px;
  }

}
@media (min-width:1200px){
  .pg_header_mv:before,
  .pg_header_mv:after{
    width: 500px;
    height: 240px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 550px;
  }
  .pg_header .sec_title{
    left: 17.75%;
    bottom: 16%;
  }

}
@media (min-width:1800px){
  .pg_header .sec_title{
    left: 20.75%;
    bottom: 16%;
  }
}



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

.footer{
  margin-top: 50px;
  background: #212121;
}
/*お問い合わせ*/
.ftr1{
  border-bottom: 1px solid #7d7d7d;
  padding: 30px 0;
}
.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  align-items: flex-start;
}
.ftr1_box1{

}
.ftr1_box2{
  margin-top: 30px;
}
.ftr1 .sec_title_en{

}
.ftr1 .sec_title_ja{

}
.ftr1_text{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.ftr1 .read_more{

}
.ftr1 .read_more a{
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  width: 100%;
}
.ftr1 .read_more a p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
  font-size: 16px;
}

/*ifis*/
.ftr2{
  display: flex;
  justify-content: center;
}
.ftr2_inner{
  padding: 30px 0;
}
.ftr_logo{
  text-align: center;
}
.ftr_addr{
  margin-top: 25px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
}
.ftr_box{
  margin-top: 17px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  display: flex;
  align-content: center;
  align-items: center;
}
.ftr_box + .ftr_box{
  margin-top: 15px;
}
.ftr_box1{
  width: 95px;
  line-height: 1.5;
}
.ftr_box2{
  line-height: 1;
  border-left: 1px solid;
  padding-left: 14px;
}
.ftr_links{
  padding: 14px 0;
  display: none;
  background: #1c1b1a;
}
.ftr_link{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  display: flex;
}
.ftr_link:nth-child(n+2){
  margin-left: 10px;
}
.ftr_link:nth-child(n+2):before{
  content: "／";
  margin-right: 17px;
}
.ftr_copy{
  padding: 30px 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  text-align: center;
}

/* 追尾スマホメニュー */
.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: #000;
  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: #000;
}
.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;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: var(--main-color);
  color: #8a691e;
}
.pagetop a i{
  font-size: 40px;
}



@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }
  .ftr1_box1,
  .ftr1_box2{
    width: 100%;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  /*お問い合わせ*/
  .ftr1{
    padding: 50px 0;
  }
  .ftr1_box1{
    width: 30%;
  }
  .ftr1_box2{
    margin-top: 0px;
    width: 59.9%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .ftr1 .sec_title_en{

  }
  .ftr1 .sec_title_ja{

  }
  .ftr1_text{
    line-height: 2.125;
  }
  .ftr1 .read_more{

  }
  .ftr1 .read_more a{
    width: 250px;
  }

  /*ifis*/
  .ftr2{

  }
  .ftr2_inner{
    padding: 50px 0;
  }
  .ftr_logo{

  }
  .ftr_addr{
    margin-top: 25px;
  }
  .ftr_box{
    margin-top: 17px;
  }
  .ftr_box + .ftr_box{
    margin-top: 15px;
  }
  .ftr_box1{
    width: 95px;
  }
  .ftr_box2{
    padding-left: 14px;
  }
  .ftr_links{
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
  }
  .ftr_link{
    font-size: 12px;
  }
  .ftr_link:nth-child(n+2){
    margin-left: 9.7px;
  }
  .ftr_link:nth-child(n+2):before{
    margin-right: 17px;
  }
  .ftr_copy{
    padding: 30px 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 194px;
  }
  /*お問い合わせ*/
  .ftr1{
    padding: 70px 0 67px;
  }
  .ftr1_box1{

  }
  .ftr1_box2{
    margin-top: 20px;
  }
  .ftr1 .sec_title_en{

  }
  .ftr1 .sec_title_ja{
    margin-top: 8px;
  }
  .ftr1_text{

  }
  .ftr1 .read_more{

  }
  .ftr1 .read_more a{
    width: 285px;
    padding: 18px 0 15px;
  }

  /*ifis*/
  .ftr2{

  }
  .ftr2_inner{
    padding: 60px 0 77px;
  }
  .ftr_logo{

  }
  .ftr_addr{
    margin-top: 25px;
  }
  .ftr_box{
    margin-top: 17px;
  }
  .ftr_box + .ftr_box{
    margin-top: 15px;
  }
  .ftr_box1{
    width: 97px;
  }
  .ftr_box2{
    padding-left: 14px;
  }
  .ftr_links{
    padding: 14px 0;
  }
  .ftr_link{
    font-size: 15px;
  }
  .ftr_link:nth-child(n+2){
    margin-left: 15.7px;
  }
  .ftr_link:nth-child(n+2):before{
    margin-right: 17px;
  }
  .ftr_copy{
    padding: 30px 0;
  }
}
@media (min-width:1200px){
  .ftr1 .read_more{
    margin-top: 0;
  }

}


/*******************************
*　共通パーツ
********************************/


/* テーブル用 */
.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;
}


/* ページネーション */
.webgene-pagination {
  width: 100%;
  margin: 50px 0 0;
  line-height: 1.85;
}
.webgene-pagination ul{
  display: flex;
  justify-content: center;
  align-items: center;
}
.webgene-pagination li{
  /*padding: 4px 13px;*/
  margin: 0 4px;
  border: 1px solid #73674c;
  background: #ffffff;
  font-weight: 500;
  transition: 0.2s all;
}
.webgene-pagination li a{
  display: block;
  padding: 4px 13px;
}
.webgene-pagination li.selected{
  border: 0;
  background: #8a691e;
}
.webgene-pagination li:hover a{
  color: #FFF;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

/* アンカー */
.anchor{
  position: relative;
  top: -30px;
}

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 250px;
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #777777;
  background: transparent;
  /*border-radius: 27px;*/
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:before{
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 2px;
  width: 17px;
  height: 16px;
  background: url(	https://ifis-corp.co.jp/system_panel/uploads/images/20250610113112990459.png) no-repeat center center / contain;
}
/*.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}*/
.read_more a:hover{
  color: #1c1b1a;
  background: #fff;
}
.read_more a:hover:before{
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png)no-repeat center center / contain;
}
.read_more a:hover:after{
  margin-right: -5px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


/* セクション */
.section{
  padding-top: 50px;
  padding-bottom: 50px;
}
.section.sec1{
  padding-top: 0;
}
.section:last-child{
  padding-bottom: 0;
}

.section.beige{
  background-color: #c3b9a9;
}

/* コンテナ */
.container.wide{

}

/*各ページタイトル*/
.sec_title{

}
.sec_title.center{
  text-align: center;
}
.sec_title_en{
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
  font-size: 20px;
  color: #8a691e;
  display: flex;
  align-content: center;
  align-items: center;
}
.sec_title_en:after{
  content: "";
  margin-left: 15px;
  width: 1px;
  height: 20px;
  background: #777777;
  transform: rotate(45deg);
  /*background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250610124719786717.png)no-repeat center center/contain;*/
}
.sec_title_ja{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 24px;
}
.sec_text{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
}


@media (max-width:374px){

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

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

  /* スマホ用テーブル */
  .table_rows.resp{

  }
  .table_rows.resp,
  .table_rows.resp .table_rows_tr,
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    display: block;
    width: 100%;
    border: 0;
  }

  .table_rows.resp{
    border: 1px solid #dcdcdc;
    border-top: 0;
  }
  .table_rows.resp .table_rows_th,
  .table_rows.resp .table_rows_td{
    border-top: 1px solid #dcdcdc;
  }

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

  .anchor{
    top: -150px;
  }

  /* ページネーション */
  .webgene-pagination {
    margin-top: 50px;
  }

  /* ボタン */
  .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: 250px;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  /*  .read_more a:after{
      content: "→";
      top: 50%;
      right: 18px;
    }*/
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }

  .tt2_ja2{
    font-size: 24px;
    margin-top: 30px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }

  /*各ページタイトル*/
  .sec_title{

  }
  .sec_title_en{

  }
  .sec_title_en:after{
    margin-left: 10px;
  }
  .sec_title_ja{
    font-size: 30px;
  }


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }

  /* ボタン */
  .read_more a{
    padding: 16px 20px 19px;
  }

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/

  /*各ページタイトル*/
  .sec_title{

  }
  .sec_title_en{

  }
  .sec_title_en:after{
    margin-left: 20px;
  }
  .sec_title_ja{
    font-size: 40px;
  }
  .sec_text{
    line-height: 2.125;
  }

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

  /*各ページタイトル*/
  .sec_title{

  }
  .sec_title_en{

  }
  .sec_title_en:after{
    margin-left: 19px;
    margin-top: -4px;
  }
  .sec_title_ja{
    margin-top: 5px;
    font-size: 50px;
  }


}



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

}
.pg_home .section.sec1{
  padding-top: 0;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec5{
  padding-top: 0px;
  padding-bottom: 0px;
}
.pg_home .section.sec6{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec2,
.pg_home .section.sec4{
  background: #212121;
}

/*理想を超えて、 想像をカタチに。*/
.home_about_wrap{

}
.home_about_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1,
.home_about_box2{
  width: 100%;
}
.home_about_box1{
  order: 2;
  margin-top: 30px;
}
.home_about_box2{
  order: 1;
}
.home_about_box .sec_title_en{

}
.home_about_box .sec_title_ja{

}
.home_about_box .sec_text{
  margin-top: 15px;
}
.home_about_box .read_more{
  justify-content: flex-start;
}
.home_about_box_img_outer{

}
.home_about_box_img.img_fit{

}
.home_about_box_img.img_fit:before{
  padding-top: 125.68%;
}
.home_about_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: -9%;
  bottom: 10%;
  width: 150px;
  height: 1px;
  background: var(--sub-color);
  transform: rotate(-45deg);
}
.home_about_bg_img{
  position: absolute;
  z-index: 1;
  bottom: 2%;
  width: 100%;
  pointer-events: none;
}

/*IFISが選ばれる理由*/

/*IFISができること*/
.home_business_wrap{

}
.home_business_box{
  display: contents;
}
.home_business_box1,
.home_business_box2{
  width: 100%;
}
.home_business_box1{
  order: 1;
}
.home_business_box2{
  order: 3;
}
.home_business_box .sec_title_en{

}
.home_business_box .sec_title_ja{

}
.home_business_box .sec_text{
  margin-top: 27px;
}
.home_business_box .read_more{

}
.home_business_item_content{
  margin-top: 70px;
  display: flex;
  flex-wrap: wrap;
}
.home_business_item{
  width: 100%;
}
.home_business_item:nth-child(n+2){
  margin-top: 50px;
}
.home_business_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #555555;
  padding-bottom: 15px;
  height: 100%;
}
.home_business_item_inner:after{
  content: "";
  position: absolute;
  z-index: 37;
  width: 95px;
  height: 1px;
  background: var(--sub-color);
  left: 0;
  bottom: -1px;
}
.home_business_item1,
.home_business_item2{
  width: 47.22%;
}
.home_business_item1{

}
.home_business_item2{

}
.home_business_item_img.img_fit{

}
.home_business_item_img.img_fit:before{
  padding-top: 125.49%;
}
.home_business_item_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
}
.home_business_item .sec_text{
  margin-top: 10px;
}

/*改修・リニューアル*/
.home_renovation_wrap{

}
.home_renovation_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_renovation_box1,
.home_renovation_box2{
  width: 100%;
}
.home_renovation_box1{
  margin-top: 70px;
  order: 2;
}
.home_renovation_box2{
  order: 1;
  position: relative;
  z-index: 1;
}
.home_renovation_box .sec_title_en{

}
.home_renovation_box .sec_title_ja{

}
.home_renovation_box_sub_title{
  margin-top: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
}
.home_renovation_box .sec_text{
  margin-top: 15px;
}
.home_renovation_box .read_more{
  justify-content: flex-start;
}
.home_renovation_box_img1_outer{
  display: flex;
  justify-content: flex-end;
}
.home_renovation_box_img1{
  width: 78.07%;
}
.home_renovation_box_img1:before{
  padding-top: 123.59%;
}
.home_renovation_box_img1:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: -9%;
  bottom: 10%;
  width: 150px;
  height: 1px;
  background: var(--sub-color);
  transform: rotate(-45deg);
}
.home_renovation_box_img2_outer{
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: -10%;
  width: 50%;
}
.home_renovation_box_img2{

}
.home_renovation_box_img2:before{
  padding-top: 122.8%
}

/*施工事例*/
.home_works_warp{

}
.home_works{
  position: relative;
  z-index: 1;
}
.home_works_img.img_fit{

}
.home_works_img.img_fit:before{
  padding-top: 530px;
}
.home_works_img.img_fit:after{
  content: "";
  background-color: rgba(49, 49, 49, 0.949);
  position: absolute;
  z-index: 1;
  inset: 0;
}
.home_works_inner{
  margin-top: 50px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90%;
}
.home_works .sec_title_en{

}
.home_works .sec_title_ja{

}
.home_works.works_list{
  margin-top: 30px;
}
.home_works.works_list .webgene-blog{

}
.home_works.works_list .webgene-item{

}
.home_works.works_list .webgene-item:nth-child(n+3){
  display: none;
}
.home_works.works_list .webgene-item .img.img_fit{

}
.home_works.works_list .webgene-item .img.img_fit:before{

}
.home_works.works_list .webgene-item .category{

}
.home_works.works_list .webgene-item .title{

}
.home_works.works_list .read_more{

}



/*新着情報*/
.home_news_wrap{

}
.home_news_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_box1,
.home_news_box2{
  display: contents;
}
.home_news_box1{

}
.home_news_box2{

}
.home_news_box .sec_title{
  order: 1;
  width: 100%;
}
.home_news_box .sec_title_en{

}
.home_news_box .sec_title_ja{

}
.home_news_box .read_more{
  order: 3;
  width: 100%;
}
.home_news.news_list{
  margin-top: 30px;
  order: 2;
  width: 100%;
}
.home_news.news_list .webgene-blog{

}
.home_news.news_list .webgene-item{

}
.home_news.news_list .webgene-item:after{
  display: none;
}
.home_news.news_list .webgene-item .date{

}
.home_news.news_list .webgene-item .category{
  margin: 0 10px;
  font-size: 14px;
}
.home_news.news_list .webgene-item .title{
  margin-top: 5px;
  font-size: 16px;
}


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

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

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

  .home_about_box .read_more{
    justify-content: center;
  }
  .home_renovation_box .read_more{
    justify-content: center;
  }
  
}
@media (min-width:768px){
  .pg_home{

  }
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec5{
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
    padding-bottom: 100px;
  }

  /*理想を超えて、 想像をカタチに。*/
  .home_about_box{

  }
  .home_about_box1{
    margin-top: 0;
    order: 1;
    width: 50.35%;
  }
  .home_about_box2{
    order: 2;
    width: 42.79%;
  }
  .home_about_box .sec_title_en{

  }
  .home_about_box .sec_title_ja{

  }
  .home_about_box .sec_text{
    margin-top: 20px;
  }
  .home_about_box .read_more{

  }
  .home_about_box_img_outer{

  }
  .home_about_box_img.img_fit{

  }
  .home_about_box_img.img_fit:after{
    right: -17%;
    bottom: 8%;
    width: 150px;
  }
  .home_about_bg_img{
    bottom: 10%;
  }

  /*IFISが選ばれる理由*/

  /*IFISができること*/
  .home_business_wrap{

  }
  .home_business_box{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }
  .home_business_box1{
    width: calc(100% - 300px);
  }
  .home_business_box2{
    width: 250px;
  }
  .home_business_box .sec_title_en{

  }
  .home_business_box .sec_title_ja{

  }
  .home_business_box .sec_text{
    margin-top: 27px;
  }
  .home_business_box .read_more{

  }
  .home_business_item_content{
    margin: 50px -10px 0;
  }
  .home_business_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_business_item:nth-child(n+2){
    margin-top: 0px;
  }
  .home_business_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_business_item_inner{
    padding-bottom: 15px;
  }
  .home_business_item1{

  }
  .home_business_item2{

  }
  .home_business_item_img.img_fit{

  }
  .home_business_item_title{
    font-size: 20px;
  }
  .home_business_item .sec_text{
    margin-top: 19px;
  }

  /*改修・リニューアル*/
  .home_renovation_wrap{

  }
  .home_renovation_box{

  }
  .home_renovation_box1{
    margin-top: 0;
    order: 1;
    width: 44%;
  }
  .home_renovation_box2{
    order: 2;
    width: 51.35%;
  }
  .home_renovation_box .sec_title_en{

  }
  .home_renovation_box .sec_title_ja{

  }
  .home_renovation_box_sub_title{
    margin-top: 10px;
    font-size: 23px;
  }
  .home_renovation_box .sec_text{
    margin-top: 20px;
  }
  .home_renovation_box .read_more{

  }
  .home_renovation_box_img1_outer{

  }
  .home_renovation_box_img1{

  }
  .home_renovation_box_img1:before{

  }
  .home_renovation_box_img1:after{
    right: -17%;
    bottom: 7%;
    width: 150px;
  }
  .home_renovation_box_img2_outer{
    bottom: 17%;
  }
  .home_renovation_box_img2{

  }

  /*施工事例*/
  .home_works_warp{

  }
  .home_works{

  }
  .home_works_img.img_fit{

  }
  .home_works_img.img_fit:before{
    padding-top: 570px;
  }
  .home_works_inner{
    margin-top: 50px;
  }
  .home_works .sec_title_en{

  }
  .home_works .sec_title_ja{

  }
  .home_works.works_list{
    margin-top: 30px;
  }
  .home_works.works_list .webgene-blog{

  }
  .home_works.works_list .webgene-item{

  }
  .home_works.works_list .webgene-item:nth-child(n+3){
    display: block;
  }
  .home_works.works_list .webgene-item:nth-child(n+4){
    display: none;
  }
  .home_works.works_list .webgene-item .img.img_fit{

  }
  .home_works.works_list .webgene-item .category{

  }
  .home_works.works_list .webgene-item .title{

  }
  .home_works.works_list .read_more{

  }

  /*新着情報*/
  .home_news_wrap{

  }
  .home_news_box{

  }
  .home_news_box1,
  .home_news_box2{
    display: block;
  }
  .home_news_box1{
    width: 260px;
  }
  .home_news_box2{
    width: 60%;
  }
  .home_news_box .sec_title{

  }
  .home_news_box .sec_title_en{

  }
  .home_news_box .sec_title_ja{

  }
  .home_news_box .read_more{

  }
  .home_news.news_list{
    margin-top: 0px;
  }
  .home_news.news_list .webgene-blog{

  }
  .home_news.news_list .webgene-item{

  }
  .home_news.news_list .webgene-item .date{

  }
  .home_news.news_list .webgene-item .category{
    margin: 0 15px;
  }
  .home_news.news_list .webgene-item .title{

  }


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

  }
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 267px;
  }
  .pg_home .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 173px;
    padding-bottom: 150px;
  }
  .pg_home .section.sec4{
    padding-top: 145px;
    padding-bottom: 197px;
  }
  .pg_home .section.sec5{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec6{
    padding-top: 143px;
    padding-bottom: 0;
  }

  /*理想を超えて、 想像をカタチに。*/
  .home_about_box{

  }
  .home_about_box1{

  }
  .home_about_box2{

  }
  .home_about_box .sec_title_en{

  }
  .home_about_box .sec_title_ja{

  }
  .home_about_box .sec_text{
    margin-top: 30px;
  }
  .home_about_box .read_more{
    margin-top: 45px;
  }
  .home_about_box_img_outer{

  }
  .home_about_box_img.img_fit{
    margin-top: 5px;
  }
  .home_about_box_img.img_fit:after{
    right: -15%;
    bottom: 8.5%;
    width: 200px;
  }
  .home_about_bg_img{
    height: 239px;
    bottom: 10%;
  }

  /*IFISが選ばれる理由*/

  /*IFISができること*/
  .home_business_wrap{

  }
  .home_business_box{

  }
  .home_business_box1{

  }
  .home_business_box2{

  }
  .home_business_box .sec_title_en{

  }
  .home_business_box .sec_title_ja{

  }
  .home_business_box .sec_text{
    margin-top: 27px;
  }
  .home_business_box .read_more{
    margin-bottom: 3px;
  }
  .home_business_item_content{
    margin: 71px -15px 0;
  }
  .home_business_item{
    width: 50%;
    padding: 0 15px;
  }
  .home_business_item:nth-child(n+3){
    margin-top: 70px;
  }
  .home_business_item_inner{
    padding-bottom: 15px;
  }
  .home_business_item1{

  }
  .home_business_item2{

  }
  .home_business_item_img.img_fit{

  }
  .home_business_item_title{
    margin-top: -7px;
    font-size: 25px;
  }
  .home_business_item .sec_text{
    margin-top: 19px;
  }

  /*改修・リニューアル*/
  .home_renovation_wrap{

  }
  .home_renovation_box{

  }
  .home_renovation_box1{

  }
  .home_renovation_box2{

  }
  .home_renovation_box .sec_title_en{

  }
  .home_renovation_box .sec_title_ja{

  }
  .home_renovation_box_sub_title{
    margin-top: 30px;
    font-size: 30px;
  }
  .home_renovation_box .sec_text{
    margin-top: 32px;
    padding-right: 53px;
  }
  .home_renovation_box .read_more{

  }
  .home_renovation_box_img1_outer{
    margin-top: 7px;
  }
  .home_renovation_box_img1{

  }
  .home_renovation_box_img1:before{

  }
  .home_renovation_box_img1:after{
    right: -17%;
    bottom: 10%;
    width: 200px;
  }
  .home_renovation_box_img2_outer{
    bottom: 9%;
  }
  .home_renovation_box_img2{

  }

  /*施工事例*/
  .home_works_warp{

  }
  .home_works{

  }
  .home_works_img.img_fit{

  }
  .home_works_img.img_fit:before{
    padding-top: 750px;
  }
  .home_works_inner{
    margin-top: 95px;
  }
  .home_works .sec_title_en{

  }
  .home_works .sec_title_ja{

  }
  .home_works.works_list{
    margin-top: 50px;
  }
  .home_works.works_list .webgene-blog{

  }
  .home_works.works_list .webgene-item{

  }
  .home_works.works_list .webgene-item .img.img_fit{

  }
  .home_works.works_list .webgene-item .category{
    margin-top: 15px;
  }
  .home_works.works_list .webgene-item .title{
    margin-top: 20px;
  }
  .home_works.works_list .read_more{
    margin-top: 53px;
  }

  /*新着情報*/
  .home_news_wrap{

  }
  .home_news_box{

  }
  .home_news_box1{

  }
  .home_news_box2{
    margin-top: 8px;
    width: 68.46%;
  }
  .home_news_box .sec_title{

  }
  .home_news_box .sec_title_en{

  }
  .home_news_box .sec_title_ja{

  }
  .home_news_box .read_more{
    margin-top: 61px;
  }
  .home_news.news_list{

  }
  .home_news.news_list .webgene-blog{

  }
  .home_news.news_list .webgene-item{
    padding: 25px 0 25px;
  }
  .home_news.news_list .webgene-item:first-child{
    padding-top: 21px;
  }
  .home_news.news_list .webgene-item .date{

  }
  .home_news.news_list .webgene-item .category{
    margin: 0 20px 0 23px;
    padding: 0 0 2px;
  }
  .home_news.news_list .webgene-item .title{
    margin-top: -5px;
    padding-right: 0px;
    width: calc(100% - 215px);
  }


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

  /*理想を超えて、 想像をカタチに。*/
  .home_about_box_img.img_fit:after{
    right: -17%;
    bottom: 8%;
    width: 250px;
  }
  .home_about_bg_img{
    height: 239px;
    bottom: 19%;
  }

  /*改修・リニューアル*/
  .home_renovation_box_sub_title{
    margin-top: 37px;
    font-size: 35px;
  }
  .home_renovation_box_img1:after{
    right: -17%;
    bottom: 8%;
    width: 250px;
  }
  .home_renovation_box_img2_outer{
    bottom: -8.5%;
  }

  /*施工事例*/
  .home_works_inner{
    margin-top: 95px;
    width: 1110px;
  }
  .home_works_img.img_fit:before{
    padding-top: 848px;
  }


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

  /*理想を超えて、 想像をカタチに。*/
  .home_about_box_img.img_fit:after{
    right: -28%;
    bottom: 7.5%;
    width: 350px;
  }

  /*改修・リニューアル*/
  .home_renovation_box_img1:after{
    right: -30%;
    bottom: 8%;
    width: 350px;
  }

}


/*******************************
*　IFISについて
********************************/
.pg_about{

}
.pg_about .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_about .section.sec2{
  padding-top: 50px;
  padding-bottom: 0;
}

/*共に創り、共に喜ぶ建築を*/
.about_concept_wrap{

}
.about_concept_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_concept_box1,
.about_concept_box2{
  display: contents;
}
.about_concept_box1{

}
.about_concept_box2{

}
.about_concept_box .sec_title{
  order: 1;
  width: 100%;
}
.about_concept_box .sec_title_en{

}
.about_concept_box .sec_title_ja{

}
.about_concept_box_img1.img_fit{
  margin-top: 48px;
  order: 3;
  width: 44%;
}
.about_concept_box_img1.img_fit:before{
  padding-top: 119.25%;
}
.about_concept_box_img2.img_fit{
  margin-bottom: 30px;
  order: 4;
  width: 54%;
  margin-bottom: 107px;
}
.about_concept_box_img2.img_fit:before{
  padding-top: 66.14%;
}
.about_concept_box_img2.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: -10%;
  bottom: 13%;
  width: 70px;
  height: 1px;
  background: var(--sub-color);
  transform: rotate(-45deg);
}
.about_concept_box .sec_text{
  margin-top: 30px;
  order: 2;
  width: 100%;
}

/*IFISが選ばれる理由*/
.about_reason_wrap{

}
.about_reason_wrap .sec_title_en{

}
.about_reason_wrap .sec_title_ja{

}
.about_reason_item_content{
  margin-top: 50px;
}
.about_reason_item{
  display: flex;
  justify-content: space-between;
}
.about_reason_item:nth-child(n+2){
  margin-top: 100px;
}
.about_reason_item:nth-child(odd) .about_reason_item1,
.about_reason_item:nth-child(even) .about_reason_item2{
  order: 1;
}
.about_reason_item:nth-child(even) .about_reason_item1,
.about_reason_item:nth-child(odd) .about_reason_item2{
  order: 2;
}
.about_reason_item1{
  width: 50px;
}
.about_reason_item2{
  width: 80.01%;
}
.about_reason_item_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.485;
  writing-mode: vertical-rl;
}
.about_reason_item_img.img_fit{

}
.about_reason_item_img.img_fit:before{
  padding-top: 38.89%;
}
.about_reason_item_box{
  margin-top: 35px;
  display: flex;
  justify-content: space-between;
}
.about_reason_item_box1{

}
.about_reason_item_box2{

}
.about_reason_item_box_nbr{
  margin-top: -40px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 70px;
  color: #8a691e;
}
.about_reason_item_box_nbr p{
  letter-spacing: 0;
}
.about_reason_item_box .sec_text{
  display: flex;
}
.about_reason_item_box .sec_text:before{
  margin-left: 10px;
  margin-right: 10px;
  content: "";
  width: 5px;
  height: 120px;
  background: #8a691e;
}

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

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

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

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

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 100px;
    padding-bottom: 0;
  }

  /*共に創り、共に喜ぶ建築を*/
  .about_concept_wrap{

  }
  .about_concept_box{

  }
  .about_concept_box1,
  .about_concept_box2{
    display: block;
  }
  .about_concept_box1{
    width: 40.09%;
  }
  .about_concept_box2{
    width: 57.2%;
    margin-bottom: 0;
  }
  .about_concept_box .sec_title_en{

  }
  .about_concept_box .sec_title_ja{

  }
  .about_concept_box_img1.img_fit,
  .about_concept_box_img2.img_fit{
    width: 100%;
  }
  .about_concept_box_img1.img_fit{
    margin-top: 48px;
  }
  .about_concept_box_img2.img_fit{
    margin-bottom: 0;
  }
  .about_concept_box_img2.img_fit:after{
    right: -10%;
    bottom: 14%;
    width: 150px;
  }
  .about_concept_box .sec_text{
    margin-top: 50px;
  }

  /*IFISが選ばれる理由*/
  .about_reason_wrap{

  }
  .about_reason_wrap .sec_title_en{

  }
  .about_reason_wrap .sec_title_ja{

  }
  .about_reason_item_content{
    margin-top: 70px;
  }
  .about_reason_item{

  }
  .about_reason_item:nth-child(n+2){
    margin-top: 70px;
  }
  .about_reason_item1{
    width: 75px;
  }
  .about_reason_item2{
    width: 85.01%;
  }
  .about_reason_item_title{
    font-size: 25px;
  }
  .about_reason_item_img.img_fit{

  }
  .about_reason_item_box{
    margin-top: 35px;
  }
  .about_reason_item_box1{
    width: 75px;
  }
  .about_reason_item_box2{
    width: 91.64%;
  }
  .about_reason_item_box_nbr{
    margin-top: -15px;
    font-size: 80px;
  }
  .about_reason_item_box .sec_text{

  }
  .about_reason_item_box .sec_text:before{
    margin-right: 15px;
    margin-left: 15px;
    width: 2px;
  }

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

  }
  .pg_about .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_about .section.sec2{
    padding-top: 317px;
    padding-bottom: 0;
  }

  /*共に創り、共に喜ぶ建築を*/
  .about_concept_wrap{

  }
  .about_concept_box{

  }
  .about_concept_box1{

  }
  .about_concept_box2{

  }
  .about_concept_box .sec_title_en{

  }
  .about_concept_box .sec_title_ja{

  }
  .about_concept_box_img1.img_fit{
    margin-top: 48px;
  }
  .about_concept_box_img2.img_fit{
    margin-top: 8px;
  }
  .about_concept_box_img2.img_fit:after{
    right: -10%;
    bottom: 13%;
    width: 200px;
  }
  .about_concept_box .sec_text{
    margin-top: 71px;
  }

  /*IFISが選ばれる理由*/
  .about_reason_wrap{

  }
  .about_reason_wrap .sec_title_en{

  }
  .about_reason_wrap .sec_title_ja{

  }
  .about_reason_item_content{
    margin-top: 133px;
  }
  .about_reason_item{

  }
  .about_reason_item:nth-child(n+2){
    margin-top: 83px;
  }
  .about_reason_item1{
    margin-top: -16px;
    width: 95px;
  }
  .about_reason_item2{
    width: 88.01%;
  }
  .about_reason_item_title{
    font-size: 35px;
  }
  .about_reason_item_img.img_fit{

  }
  .about_reason_item_box{
    margin-top: 41px;
  }
  .about_reason_item:nth-child(even) .about_reason_item_box{

  }
  .about_reason_item_box1{

  }
  .about_reason_item_box2{

  }
  .about_reason_item_box_nbr{
    font-size: 100px;
  }
  .about_reason_item_box .sec_text{
    align-content: center;
    align-items: center;
  }
  .about_reason_item_box .sec_text:before{
    margin-left: 30px;
    margin-right: 30px;
    width: 1px;
  }


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

  /*IFISが選ばれる理由*/
  .about_reason_item:nth-child(3){
    margin-top: 107px;
  }
  .about_reason_item:nth-child(4){
    margin-top: 128px;
  }
  .about_reason_item:nth-child(5){
    margin-top: 108px;
  }
  .about_reason_item:nth-child(odd) .about_reason_item1{
    margin-left: -11px;
  }
  .about_reason_item:nth-child(even) .about_reason_item1{
    margin-right: -1px;
  }
  .about_reason_item_box_nbr{
    margin-top: -18px;
    margin-left: -2px;
    font-size: 100px;
  }
  .about_reason_item_box .sec_text{
    margin-right: -2px;
    align-content: center;
    align-items: center;
  }
  .about_reason_item:nth-child(3) .about_reason_item_box .sec_text{
    margin-right: -11px;
  }
  .about_reason_item:nth-child(odd) .about_reason_item_box .sec_text:before{
    margin-left: 23px;
  }
  .about_reason_item:nth-child(even) .about_reason_item_box .sec_text:before{
    margin-left: 31px;
  }
  .about_reason_item:nth-child(5) .about_reason_item_box .sec_text:before{
    margin-left: 30px;
  }

  /*共に創り、共に喜ぶ建築を*/
  .about_concept_box_img2.img_fit:after{
    right: -10%;
    bottom: 15.5%;
    width: 250px;
  }


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

  /*共に創り、共に喜ぶ建築を*/
  .about_concept_box_img2.img_fit:after{
    right: -13%;
    bottom: 22.3%;
    width: 350px;
  }

}


/*******************************
*　IFISができること
********************************/
.pg_business{

}
.pg_business .section.sec1{
}
.pg_business .section.sec2{
}

/*空間を通して人と社会の未来に貢献*/
.business_thought_wrap{

}
.business_thought_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.business_thought_box1,
.business_thought_box2{
  width: 100%;
}
.business_thought_box1{
  margin-top: 30px;
  order: 2;
}
.business_thought_box2{
  order: 1;
}
.business_thought_box .sec_title_en{

}
.business_thought_box .sec_title_ja{

}
.business_thought_box .sec_text{
  margin-top: 15px;
}
.business_thought_box_img_outer{

}
.business_thought_box_img.img_fit{

}
.business_thought_box_img.img_fit:before{
  padding-top: 125.68%;
}
.business_thought_box_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: -9%;
  bottom: 10%;
  width: 150px;
  height: 1px;
  background: var(--sub-color);
  transform: rotate(-45deg);
}

/*事業内容*/
.business_service_wrap{

}
.business_service.sec_title_en{

}
.business_service.sec_title_ja{

}

/*事業内容 ボタン*/
.business_service_btn_content{
  margin: 30px -5px 0;
  display: flex;
  flex-wrap: wrap;
}
.business_service_btn{
  width: 50%;
  padding: 0 5px;
}
.business_service_btn .read_more{
  margin: 0;
}
.business_service_btn:nth-child(n+3){
  margin-top: 10px;
}
.business_service_btn .read_more{
  margin: 0;
}
.business_service_btn .read_more a{
  width: 100%;
}

/*事業内容 内容*/
.business_service_item_content{
  margin-top: 94px;
}
.business_service_item{

}
.business_service_item,
.business_service_item > *{
  position: relative;
  z-index: 1;
}
.business_service_item:nth-child(odd):before{
  content: "";
  position: absolute;
  z-index: 1;
  width: 100vw;
  top: 4.5%;
  left: 50%;
  bottom: -14%;
  transform: translateX(-50%);
  background: #212121;
}
.business_service_item:nth-child(n+2){
  margin-top: 110px;
}
.business_service_item_img_content{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.business_service_item_img1_outer{
  width: 67.56%;
}
.business_service_item_img2_outer{
  width: 31.53%;
}
.business_service_item_img1_inner,
.business_service_item_img2_inner{
  position: relative;
  z-index: 1;
}
.business_service_item:nth-child(odd) .business_service_item_img1_outer,
.business_service_item:nth-child(even) .business_service_item_img2_outer{
  order: 1;
}
.business_service_item:nth-child(even) .business_service_item_img1_outer,
.business_service_item:nth-child(odd) .business_service_item_img2_outer{
  order: 2;
}
.business_service_item:nth-child(odd) .business_service_item_img2_inner:after,
.business_service_item:nth-child(even) .business_service_item_img1_inner:after{
  content: "";
  position: absolute;
  z-index: 1;
  height: 1px;
  background: var(--main-color);
  transform: rotate(-45deg);
}
.business_service_item:nth-child(odd) .business_service_item_img2_inner:after{
  right: -20%;
  bottom: 10%;
  width: 70px;
}
.business_service_item:nth-child(even) .business_service_item_img1_inner:after{
  right: -9%;
  bottom: 10%;
  width: 70px;
}
.business_service_item_img1.img_fit{

}
.business_service_item_img2.img_fit{

}
.business_service_item_img1.img_fit:before{
  padding-top: 46.66%;
}
.business_service_item_img2.img_fit:before{
  padding-top: 122.85%;
}
.business_service_item_img_txt{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  position: absolute;
  z-index: 1;
  top: -20px;
  color: transparent;
  color: rgba(207, 207, 207, 0);
  text-shadow:
    1px  1px 1px #ffffff,
    -1px  1px 1px #ffffff,
    1px -1px 1px #ffffff,
    -1px -1px 1px #ffffff,
    1px  0px 1px #ffffff,
    0px  1px 1px #ffffff,
    -1px  0px 1px #ffffff,
    0px -1px 1px #ffffff;        /* 文字の影 */
}
.business_service_item_img_txt p{
  letter-spacing: 0;
}
.business_service_item:nth-child(odd) .business_service_item_img_txt{
  left: -6px;
}
.business_service_item:nth-child(even) .business_service_item_img_txt{
  right: -6px;
}
.business_service_item_txt{

}
.business_service_item_txt_title{
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
.business_service_item_txt .sec_text{
  margin-top: 15px;
}
.business_service_item_box_main_title_content{
  margin-top: 50px;
  padding: 5px 15px;
  display: flex;
  align-items: baseline;
  background: #2c2c2c;
}
.business_service_item_box_main_title_ja{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  display: flex;
  align-content: center;
  align-items: center;
}
.business_service_item_box_main_title_ja:after{
  content: "";
  margin-left: 15px;
  width: 1px;
  height: 20px;
  background: #777777;
  transform: rotate(45deg);
}
.business_service_item_box_main_title_en{
  margin-left: 15px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #8a691e;
}
.business_service_item_box_content{
  margin-top: 0px;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.business_service_item_box{
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 30px 0;
}
.business_service_item_box:before,
.business_service_item_box:after{
  background: #555555;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
/* 縦 */
.business_service_item_box:before{
  width: 1px;
  height: 100000px;
}
/* 横 */
.business_service_item_box:after{
  height: 1px;
}
.business_service_item_box_inner{

}
.business_service_item_box_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
}
.business_service_item_box_title:after{
  content: "";
  border-bottom: 1px solid #8a691e;
  display: block;
  width: 95px;
  margin-top: 7px;
}
.business_service_item_box .sec_text{
  margin-top: 7px;
}
.business_service_item .read_more{

}
.business_service_item .read_more a{
  width: 100%;
  color: #f1a701;
}
.business_service_item .read_more a:before{
  right: 1px;
  bottom: 2px;
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250613155705909145.png) no-repeat center center / contain;
}
.business_service_item .read_more a:hover{
  color: #000;
}
.business_service_item .read_more:hover a:before{
  background-image: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png);
}

@media (max-width:374px){

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

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

  /* 横 */
  .business_service_item_box{
    border-top: 1px solid #555555;
  }
  .business_service_item_box:first-child{
    border-top: none;
  }
}
@media (min-width:768px){
  .pg_business{

  }
  .pg_business .section.sec1{
  }
  .pg_business .section.sec2{
  }

  /*空間を通して人と社会の未来に貢献*/
  .business_thought_box{

  }
  .business_thought_box1{
    margin-top: 0;
    order: 1;
    width: 48.64%;
  }
  .business_thought_box2{
    order: 2;
    width: 42.79%;
  }
  .business_thought_box .sec_title_en{

  }
  .business_thought_box .sec_title_ja{

  }
  .business_thought_box .sec_text{
    margin-top: 20px;
  }
  .business_thought_box_img_outer{

  }
  .business_thought_box_img.img_fit{

  }
  .business_thought_box_img.img_fit:after{
    right: -17%;
    bottom: 8%;
    width: 150px;
  }

  /*事業内容*/
  .business_service_wrap{

  }
  .business_service.sec_title_en{

  }
  .business_service.sec_title_ja{

  }

  /*事業内容 ボタン*/
  .business_service_btn_content{
    margin: 50px -10px;
  }
  .business_service_btn{
    width: 33.33%;
    padding: 0 10px;
  }
  .business_service_btn:nth-child(n+3){
    margin-top: 0px;
  }
  .business_service_btn:nth-child(n+4){
    margin-top: 20px;
  }
  .business_service_btn .read_more{

  }
  .business_service_btn .read_more a{

  }

  /*事業内容 内容*/
  .business_service_item_content{
    margin-top: 94px;
  }
  .business_service_item{

  }
  .business_service_item:nth-child(odd):before{
    top: 10.5%;
    bottom: -18.5%;
  }
  .business_service_item:nth-child(n+2){
    margin-top: 100px;
  }
  .business_service_item_img_content{

  }
  .business_service_item_img1_outer{

  }
  .business_service_item_img2_outer{

  }
  .business_service_item_img1_inner{

  }
  .business_service_item_img2_inner{

  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after,
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{

  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after{
    right: -17%;
    bottom: 10%;
    width: 125px;
  }
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{
    right: -7%;
    bottom: 10%;
    width: 115px;
  }
  .business_service_item_img1.img_fit{

  }
  .business_service_item_img2.img_fit{

  }
  .business_service_item_img_txt{
    font-size: 70px;
  }
  .business_service_item_txt{

  }
  .business_service_item:nth-child(odd) .business_service_item_img_txt{
    top: -35px;
    left: -6px;
  }
  .business_service_item:nth-child(even) .business_service_item_img_txt{
    top: -35px;
    right: -6px;
  }
  .business_service_item_txt_title{
    margin-top: 30px;
    font-size: 27px;
  }
  .business_service_item_txt .sec_text{
    margin-top: 15px;
  }
  .business_service_item_box_main_title_content{
    margin-top: 50px;
    padding: 5px 15px;
  }
  .business_service_item_box_main_title_ja{

  }
  .business_service_item_box_main_title_ja:after{
    margin-left: 10px;
  }
  .business_service_item_box_main_title_en{
    margin-left: 10px;
  }
  .business_service_item_box_content{
    margin-top: 30px;
  }
  .business_service_item_box{
    width: 50%;
    padding-bottom: 20px;
    padding-top: 0;
  }
  .business_service_item_box:nth-child(odd){
    padding-right: 20px;
  }
  .business_service_item_box:nth-child(even){
    padding-left: 20px;
  }
  .business_service_item_box:nth-child(n+3){
    padding-top: 20px;
    padding-bottom: 0;
  }
  /* 縦 */
  .business_service_item_box:nth-child(2):before{
    content: "";
  }
  /* 横 */
  .business_service_item_box:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
  .business_service_item_box_inner{

  }
  .business_service_item_box_title{
    font-size: 20px;
  }
  .business_service_item_box_title:after{
    width: 95px;
    margin-top: 15px;
  }
  .business_service_item_box .sec_text{
    margin-top: 15px;
  }
  .business_service_item .read_more{

  }


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

  }
  .pg_business .section.sec1{
  }
  .pg_business .section.sec2{
    padding-top: 94px;
  }

  /*空間を通して人と社会の未来に貢献*/
  .business_thought_box{

  }
  .business_thought_box1{

  }
  .business_thought_box2{

  }
  .business_thought_box .sec_title_en{

  }
  .business_thought_box .sec_title_ja{
    margin-top: 4px;
  }
  .business_thought_box .sec_text{
    margin-top: 27px;
  }
  .business_thought_box_img_outer{

  }
  .business_thought_box_img.img_fit{
    margin-top: 4px;
  }
  .business_thought_box_img.img_fit:after{
    right: -15%;
    bottom: 8.5%;
    width: 200px;
  }

  /*事業内容*/
  .business_service_wrap{

  }
  .business_service.sec_title_en{

  }
  .business_service.sec_title_ja{

  }

  /*事業内容 ボタン*/
  .business_service_btn_content{
    margin: 44px -15px 0;
  }
  .business_service_btn{
    padding: 0 10px;
  }
  .business_service_btn:nth-child(n+4){
    margin-top: 15px;
  }
  .business_service_btn .read_more{

  }
  .business_service_btn .read_more a{

  }

  /*事業内容 内容*/
  .business_service_item_content{
    margin-top: 94px;
  }
  .business_service_item{

  }
  .business_service_item:nth-child(odd):before{
    top: 12.5%;
    bottom: -24%;
  }
  .business_service_item:nth-child(n+2){
    margin-top: 145px;
  }
  .business_service_item_img_content{

  }
  .business_service_item_img1_outer{

  }
  .business_service_item_img2_outer{

  }
  .business_service_item_img1_inner{

  }
  .business_service_item_img2_inner{

  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after,
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{

  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after{
    right: -15%;
    bottom: 11.5%;
    width: 170px;
  }
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{
    right: -7%;
    bottom: 14.5%;
    width: 170px;
  }
  .business_service_item_img1.img_fit{

  }
  .business_service_item_img2.img_fit{

  }
  .business_service_item_img_txt{
    font-size: 120px;
  }
  .business_service_item:nth-child(odd) .business_service_item_img_txt{
    top: -62px;
    left: -6px;
  }
  .business_service_item:nth-child(even) .business_service_item_img_txt{
    top: -62px;
    right: -8px;
  }
  .business_service_item_txt{

  }
  .business_service_item_txt_title{
    margin-top: 54px;
    font-size: 35px;
  }
  .business_service_item:nth-child(even)  .business_service_item_txt_title{
    margin-top: 30px;
  }
  .business_service_item_txt .sec_text{
    margin-top: 32px;
  }
  .business_service_item_box_main_title_content{
    margin-top: 51px;
    padding: 11px 0 9px 20px;
  }
  .business_service_item_box_main_title_ja{

  }
  .business_service_item_box_main_title_ja:after{
    margin-left: 20px;
  }
  .business_service_item_box_main_title_en{
    margin-left: 15px;
  }
  .business_service_item_box_content{
    margin-top: 43px;
  }
  .business_service_item_box{
    padding-bottom: 41px;
  }
  .business_service_item_box:nth-child(odd){
    padding-right: 39px;
  }
  .business_service_item_box:nth-child(even){
    padding-left: 42px;
  }
  .business_service_item_box:nth-child(n+3){
    padding-top: 44px;
  }
  /* 縦 */
  .business_service_item_box:nth-child(2):before{
    content: "";
    margin-top: 7px;
  }
  /* 横 */
  .business_service_item_box:nth-child(3n+1):not(:first-child):after{
    content: "";
    width: 300%;
  }
  .business_service_item_box_inner{

  }
  .business_service_item_box_title{
    font-size: 22px;
  }
  .business_service_item_box_title:after{
    width: 95px;
    margin-top: 12px;
  }
  .business_service_item_box .sec_text{
    margin-top: 7px;
  }
  .business_service_item .read_more{
    margin-top: 46px;
  }


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

  /*空間を通して人と社会の未来に貢献*/
  .business_thought_box_img.img_fit:after{
    right: -17%;
    bottom: 8%;
    width: 250px;
  }

  /*事業内容 内容*/
  .business_service_item:nth-child(odd):before{
    top: 15.5%;
    bottom: -26%;
  }
  .business_service_item_box_main_title_ja:after{
    margin-left: 10px;
    margin-top: 3px;
  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after,
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{
    right: -17%;
    bottom: 8%;
    width: 250px;
  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after{

  }
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{

  }

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

  /*空間を通して人と社会の未来に貢献*/
  .business_thought_box_img.img_fit:after{
    right: -28%;
    bottom: 7.5%;
    width: 350px;
  }

  /*事業内容 内容*/
  .business_service_item:nth-child(5) .business_service_item_txt_title{
    margin-top: -13px;
  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after,
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{
    width: 240px;
  }
  .business_service_item:nth-child(odd) .business_service_item_img2_inner:after{
    right: -16%;
    bottom: 15%;
  }
  .business_service_item:nth-child(even) .business_service_item_img1_inner:after{
    right: -7.5%;
    bottom: 19%;
  }

}


/*******************************
*　改修・リニューアル
********************************/
.pg_renovation{

}
.pg_renovation .section.sec1{
  padding-bottom: 50px;
}
.pg_renovation .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #212121;
}
.pg_renovation .section.sec3,
.pg_renovation .section.sec3 > *{
  position: relative;
  z-index: 1;
}
.pg_renovation .section.sec3{
  padding-top: 0px;
  padding-bottom: 0px;
}
.pg_renovation .section.sec3:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 155px;
  height: 25px;
  background: #212121;
  clip-path: polygon(50% 0%, 100% 0%, 50% 100%, 0% 0%);
}
.pg_renovation .section.sec4{
  padding-top: 50px;
  padding-bottom: 50px;
  background: #212121;
}
.pg_renovation .section.sec5{
  padding-top: 50px;
  padding-bottom: 0px;
}
.pg_renovation .section.sec6{
  padding-top: 50px;
}

/*使い続けたい空間をより快適で機能的に*/
.renovation_suggest_wrap{

}
.renovation_suggest_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.renovation_suggest_box1,
.renovation_suggest_box2{
  width: 100%;
}
.renovation_suggest_box1{
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.renovation_suggest_box2{
  margin-top: 70px;
}
.renovation_suggest_box_img1_outer{
  position: absolute;
  z-index: 1;
  top: 14%;
  left: 0;
  width: 53%;
}
.renovation_suggest_box_img1{

}
.renovation_suggest_box_img1:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 15px;
  left: -20px;
  width: 70px;
  height: 1px;
  background: var(--sub-color);
  transform: rotate(-45deg);
}
.renovation_suggest_box_img2{
  width: 53%;
}
.renovation_suggest_box_img1:before,
.renovation_suggest_box_img2:before{
  padding-top: 209.47%;
}
.renovation_suggest_box .sec_title_en{

}
.renovation_suggest_box .sec_title_ja{

}
.renovation_suggest_box .sec_text{
  margin-top: 15px;
}

/*見直しのタイミング逃していませんか？*/
.renovation_worries_wrap{

}
.renovation_worries_main{
  text-align: justify;
}
.renovation_worries_main_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
.renovation_worries_main .sec_text{
  margin-top: 15px;
}
.renovation_worries_btn_content{
  display: flex;
  flex-wrap: wrap;
  margin: 30px -5px 0;
}
.renovation_worries_btn{
  width: 50%;
  padding: 0 5px;
}
.renovation_worries_btn:nth-child(n+3){
  margin-top: 30px;
}
.renovation_worries_btn_inner{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.866;
  text-align: center;
  border: 1px solid #555555;
  transition: all 0.2s;
  padding: 10px 0;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.renovation_worries_btn_inner:hover,
.renovation_worries_btn.active .renovation_worries_btn_inner{
  background: #2c2c2c;
  border: 1px solid #8a691e;
  position: relative;
  z-index: 1;
}
.renovation_worries_btn.active .renovation_worries_btn_inner:before,
.renovation_worries_btn.active .renovation_worries_btn_inner:after{
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);

}
.renovation_worries_btn.active .renovation_worries_btn_inner:before{
  bottom: -14px;
  height: 14px;
  width: 30px;
  background: #8a691e;
  clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
}
.renovation_worries_btn.active .renovation_worries_btn_inner:after{
  bottom: -13px;
  height: 13px;
  width: 26px;
  background: #2c2c2c;
  clip-path: polygon(0% 0, 100% 0%, 50% 100%, 0 0%);
}
.renovation_worries_list_content{
  margin-top: 50px;
}
.renovation_worries_list{
  display: none;
}
.renovation_worries_list.show{
  display: block;
}
.renovation_worries_list_inner{
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #555555;
  position: relative;
  z-index: 1;
}
.renovation_worries_list_inner:before,
.renovation_worries_list_inner:after{
  content: "";
  position: absolute;
  z-index: 1;
  background: #555555;
  width: 20px;
  height: 20px;
}
.renovation_worries_list_inner:before{
  top: 2px;
  left: 2px;
  clip-path: polygon(0% 0, 100% 0%, 0% 100%, 0 0%);
}
.renovation_worries_list_inner:after{
  right: 2px;
  bottom: 2px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.renovation_worries_list1,
.renovation_worries_list2{
  width: 100%;
}
.renovation_worries_list1{
  order: 2;
}
.renovation_worries_list2{
  order: 1;
}
.renovation_worries_list_title{
  margin-top: 17px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
.renovation_worries_list_title:after{
  content: "";
  display: block;
  border-bottom: 1px solid #555555;
  width: 65px;
  margin-top: 18px;
}
.renovation_worries_list_check_context{
  margin-top: 20px;
}
.renovation_worries_list_check{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
  z-index: 1;
}
.renovation_worries_list_check:nth-child(n+2){
  margin-top: 15px;
}
.renovation_worries_list_check:before{
  content: "\f14a";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #8a691e;
  position: absolute;
  z-index: 1;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
}
.renovation_worries_list_img{

}
.renovation_worries_list_img:before{
  padding-top: 61.3%;
}

/*その様々なお悩みIFISの改修・リニューアルで解決*/
.renovation_img_wrap{

}
.renovation_img_box_content{

}
.renovation_img_box{
  position: relative;
  z-index: 1;
}
.renovation_img.img_fit{

}
.renovation_img.img_fit:before{
  padding-top: 600px;
}
.renovation_img_box_txt{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 90%;
}
.renovation_img_box_txt_title{
  margin-top: 50px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.renovation_img_box_txt .sec_text{
  margin-top: 20px;
}
.renovation_img_box_txt_btn_content{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.renovation_img_box_txt_btn{
  width: 100%;
}
.renovation_img_box_txt_btn:nth-child(n+2){
  margin-top: 15px;
}
.renovation_img_box_txt_btn a{
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #777777;
  background: transparent;
  color: #FFF;
  padding: 16px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.renovation_img_box_txt_btn a:hover{
  color: #1c1b1a;
  background: #fff;
}
.renovation_img_box_txt_btn a:before{
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 2px;
  width: 17px;
  height: 16px;
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250610113112990459.png) no-repeat center center / contain;
}
.renovation_img_box_txt_btn a:hover:before{
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png) no-repeat center center / contain;
}

/*改修・リニューアルにおけるIFISの強み*/
.renovation_feature_wrap{

}
.renovation_feature.sec_title_en{

}
.renovation_feature.sec_title_ja{

}
.renovation_feature_item_content{
  margin-top: 40px;
}
.renovation_feature_item{
  padding-bottom: 25px;
  border-bottom: 1px solid #555555;
  display: flex;
  justify-content: space-between;
}
.renovation_feature_item:nth-child(n+2){
  margin-top: 25px;
}
.renovation_feature_item:last-child{
  border: none;
}
.renovation_feature_item1{
  width: 22px;
}
.renovation_feature_item2{
  width: 90.7%;
}
.renovation_feature_item_nbr{
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  color: #545454;
  writing-mode: vertical-rl;
  display: flex;
  align-content: center;
  align-items: center;
}
.renovation_feature_item_nbr p{
  letter-spacing: 0.1em;
}
.renovation_feature_item_nbr:after{
  content: "";
  width: 1px;
  height: 35px;
  background: #545454;
  margin-top: 13px;
}
.renovation_feature_item_title{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.5;
  color: #8a691e;
}
.renovation_feature_item .sec_text{
  margin-top: 15px;
}

/*施工内容*/
.renovation_service_wrap{

}
.renovation_service.sec_title_en{

}
.renovation_service.sec_title_ja{

}
.renovation_service_item_content{
  margin-top: 30px;
}
.renovation_service_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  padding-bottom: 30px;
}
.renovation_service_item:nth-child(n+2){
  padding-top: 30px;
  padding-bottom: 30px;
}
.renovation_service_item:nth-child(even),
.renovation_service_item:nth-child(even) > *{
  position: relative;
  z-index: 1;
}
.renovation_service_item:nth-child(2):before,
.renovation_service_item:nth-child(4):before{
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  background: #212121;
}
.renovation_service_item1,
.renovation_service_item2,
.renovation_service_item3{
  width: 100%;
}
.renovation_service_item1{
  order: 2;
}
.renovation_service_item2{
  order: 1;
}
.renovation_service_item3{
  order: 3;
}
.renovation_service_item_title{
  margin-top: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
.renovation_service_item_title:after{
  content: "";
  display: block;
  border-bottom: 1px solid #8a691e;
  width: 95px;
  margin-top: 5px;
}
.renovation_service_item .sec_text{
  margin-top: 10px;
}
.renovation_service_item_img.img_fit{
  margin-top: 11px;
}
.renovation_service_item_img.img_fit:before{
  padding-top: 59.84%;
}
.renovation_service_item_merit_title{
  margin-top: 30px;
  padding: 5px 15px;
  display: flex;
  background: #2c2c2c;
}
.renovation_service_item_merit_title_ja{
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
}
.renovation_service_item_merit_title_en{
  font-family: "Cormorant Garamond", serif;
  font-weight: 900;
  font-size: 20px;
  color: #8a691e;
  display: flex;
  align-content: center;
  align-items: center;
}
.renovation_service_item_merit_title_en:before{
  content: "";
  margin-left: 13px;
  margin-right: 17px;
  width: 1px;
  height: 20px;
  background: #777777;
  transform: rotate(45deg);
}
.renovation_service_item_merit_content{
  padding: 20px 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: 1px solid #555555;
  border-top: none;
}
.renovation_service_item_merit{
  padding-left: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  width: 100%;
  position: relative;
  z-index: 1;
}
.renovation_service_item_merit:nth-child(n+2){
  margin-top: 17px;
}
.renovation_service_item_merit:before{
  content: "\f14a";
  font-family: "FontAwesome";
  font-size: 16px;
  color: #8a691e;
  position: absolute;
  z-index: 1;
  top: 55%;
  left: 0;
  transform: translateY(-50%);
}

/*改修・リニューアルの目的*/
.renovation_purpose_wrap{

}
.renovation_purpose.sec_title_en{

}
.renovation_purpose.sec_title_ja{

}
.renovation_purpose.sec_text{
  margin-top: 29px;
}
.renovation_purpose.business_service_item{
  margin-top: 0;
}
.renovation_purpose.business_service_item:before{
  display: none;
}
.renovation_purpose.business_service_item_box_content{

}
.renovation_purpose.business_service_item_box{

}
.renovation_purpose.business_service_item_box_inner{

}
.renovation_purpose.business_service_item_box_title{

}
.renovation_purpose.business_service_item_box .sec_text{

}
.renovation_purpose.business_service_item .read_more{
  margin-top: 30px;
}


@media (max-width:374px){

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

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

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

  }
  .pg_renovation .section.sec1{
    padding-bottom: 100px;
  }
  .pg_renovation .section.sec2{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_renovation .section.sec3{
  }
  .pg_renovation .section.sec3:after{
    width: 350px;
    height: 55px;
  }
  .pg_renovation .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .pg_renovation .section.sec5{
    padding-top: 100px;
  }
  .pg_renovation .section.sec6{
    padding-top: 100px;
  }

  /*使い続けたい空間をより快適で機能的に*/
  .renovation_suggest_wrap{

  }
  .renovation_suggest_box{

  }
  .renovation_suggest_box1{
    width: 48.7%;
  }
  .renovation_suggest_box2{
    margin-top: 0;
    width: 48.64%;
  }
  .renovation_suggest_box_img1_outer{
    top: 14%;
  }
  .renovation_suggest_box_img1{

  }
  .renovation_suggest_box_img1:after{
    top: 5%;
    left: -17%;
    width: 100px;
  }
  .renovation_suggest_box_img2{

  }
  .renovation_suggest_box .sec_title_en{

  }
  .renovation_suggest_box .sec_title_ja{

  }
  .renovation_suggest_box .sec_text{
    margin-top: 30px;
  }

  /*見直しのタイミング逃していませんか？*/
  .renovation_worries_wrap{

  }
  .renovation_worries_main{
    text-align: center;
  }
  .renovation_worries_main_title{
    font-size: 40px;
  }
  .renovation_worries_main .sec_text{
    margin-top: 30px;
  }
  .renovation_worries_btn_content{
    margin: 50px -9px 0;
  }
  .renovation_worries_btn{
    width: 33.33%;
    padding: 0 9px;
  }
  .renovation_worries_btn:nth-child(n+3){
    margin-top: 0px;
  }
  .renovation_worries_btn:nth-child(n+4){
    margin-top: 30px;
  }
  .renovation_worries_btn_inner{
    font-size: 15px;
  }
  .renovation_worries_list_content{
    margin-top: 46px;
  }
  .renovation_worries_list{

  }
  .renovation_worries_list_inner{

  }
  .renovation_worries_list1{
    order: 1;
    width: 44.79%;
  }
  .renovation_worries_list2{
    order: 2;
    width: 51.3%;
  }
  .renovation_worries_list_title{
    margin-top: 17px;
    font-size: 20px;
  }
  .renovation_worries_list_title:after{
    margin-top: 18px;
  }
  .renovation_worries_list_check_context{
    margin-top: 20px;
  }
  .renovation_worries_list_check{
    padding-left: 20px;
  }
  .renovation_worries_list_check:nth-child(n+2){
    margin-top: 15px;
  }
  .renovation_worries_list_img{

  }

  /*その様々なお悩みIFISの改修・リニューアルで解決*/
  .renovation_img_box_content{

  }
  .renovation_img_box{

  }
  .renovation_img.img_fit{

  }
  .renovation_img.img_fit:before{

  }
  .renovation_img_box_txt{

  }
  .renovation_img_box_txt_title{
    margin-top: 100px;
    font-size: 35px;
  }
  .renovation_img_box_txt .sec_text{
    margin-top: 20px;
  }
  .renovation_img_box_txt_btn_content{
    margin: 30px -10px 0;
  }
  .renovation_img_box_txt_btn{
    width: 300px;
    padding: 0 10px;
  }
  .renovation_img_box_txt_btn a{
  }
  .renovation_img_box_txt_btn:nth-child(n+2){
    margin-top: 0px;
  }

  /*改修・リニューアルにおけるIFISの強み*/
  .renovation_feature_wrap{

  }
  .renovation_feature.sec_title_en{

  }
  .renovation_feature.sec_title_ja{

  }
  .renovation_feature_item_content{
    margin-top: 50px;
  }
  .renovation_feature_item{
    padding-bottom: 20px;
  }
  .renovation_feature_item:nth-child(n+2){
    margin-top: 20px;
  }
  .renovation_feature_item1{

  }
  .renovation_feature_item2{
    width: 95.7%;
  }
  .renovation_feature_item_nbr{
    font-size: 20px;
  }
  .renovation_feature_item_title{
    font-size: 22px;
  }
  .renovation_feature_item .sec_text{
    margin-top: 15px;
  }

  /*施工内容*/
  .renovation_service_wrap{

  }
  .renovation_service.sec_title_en{

  }
  .renovation_service.sec_title_ja{

  }
  .renovation_service_item_content{
    margin-top: 40px;
  }
  .renovation_service_item{
    padding-bottom: 30px;
  }
  .renovation_service_item:nth-child(n+2){
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .renovation_service_item:nth-child(2):before,
  .renovation_service_item:nth-child(4):before{
    left: 0%;
    transform: none;
    width: 100%;
  }
  .renovation_service_item:nth-child(4):before{
    left: auto;
    right: 0;
  }
  .renovation_service_item:nth-child(2):before{
    margin-left: calc(345px - 50vw);
  }
  .renovation_service_item:nth-child(4):before{
    margin-right: calc(345px - 50vw);
  }
  .renovation_service_item:nth-child(odd) .renovation_service_item1,
  .renovation_service_item:nth-child(even) .renovation_service_item2{
    order: 1;
  }
  .renovation_service_item:nth-child(even) .renovation_service_item1,
  .renovation_service_item:nth-child(odd) .renovation_service_item2{
    order: 2;
  }
  .renovation_service_item1{
    width: 40.09%;
  }
  .renovation_service_item2{
    width: 57.20%;
  }
  .renovation_service_item3{

  }
  .renovation_service_item_title{
    margin-top: 0;
    font-size: 25px;
  }
  .renovation_service_item_title:after{
    margin-top: 20px;
  }
  .renovation_service_item .sec_text{
    margin-top: 10px;
  }
  .renovation_service_item_img.img_fit{
    margin-top: 11px;
  }
  .renovation_service_item_merit_title{
    margin-top: 50px;
    padding: 10px 22px 10px;
  }
  .renovation_service_item_merit_title_ja{
    font-size: 20px;
  }
  .renovation_service_item_merit_title_en{
    font-size: 20px;
  }
  .renovation_service_item_merit_title_en:before{
    margin-left: 13px;
    margin-right: 17px;
  }
  .renovation_service_item_merit_content{
    padding: 30px 25px;
  }
  .renovation_service_item_merit{
    width: 48%;
  }
  .renovation_service_item_merit:nth-child(n+2){
    margin-top: 0px;
  }
  .renovation_service_item_merit:nth-child(n+3){
    margin-top: 17px;
  }

  /*改修・リニューアルの目的*/
  .renovation_purpose_wrap{

  }
  .renovation_purpose.sec_title_en{

  }
  .renovation_purpose.sec_title_ja{

  }
  .renovation_purpose.sec_text{
    margin-top: 29px;
  }
  .renovation_purpose.business_service_item{

  }
  .renovation_purpose.business_service_item_box_content{

  }
  .renovation_purpose.business_service_item_box{

  }
  .renovation_purpose.business_service_item_box:nth-child(odd){

  }
  .renovation_purpose.business_service_item_box:nth-child(even){

  }
  .renovation_purpose.business_service_item_box:nth-child(n+3){

  }
  .renovation_purpose.business_service_item_box_inner{

  }
  .renovation_purpose.business_service_item_box_title{

  }
  .renovation_purpose.business_service_item_box .sec_text{

  }
  .renovation_purpose.business_service_item .read_more{
    margin-top: 50px;
  }

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

  }
  .pg_renovation .section.sec1{
    padding-bottom: 230px;
  }
  .pg_renovation .section.sec2{
    padding-top: 134px;
    padding-bottom: 120px;
  }
  .pg_renovation .section.sec3{
  }
  .pg_renovation .section.sec3:after{
    width: 350px;
    height: 55px;
  }
  .pg_renovation .section.sec4{
    padding-top: 143px;
    padding-bottom: 93px;
  }
  .pg_renovation .section.sec5{
    padding-top: 144px;
  }
  .pg_renovation .section.sec6{
    padding-top: 22px;
  }

  /*使い続けたい空間をより快適で機能的に*/
  .renovation_suggest_wrap{

  }
  .renovation_suggest_box{

  }
  .renovation_suggest_box1{

  }
  .renovation_suggest_box2{

  }
  .renovation_suggest_box_img1_outer{
    top: 14%;
  }
  .renovation_suggest_box_img1{

  }
  .renovation_suggest_box_img1:after{
    top: 10%;
    left: -23%;
    width: 200px;
  }
  .renovation_suggest_box_img2{
    margin-top: 5px;
  }
  .renovation_suggest_box .sec_title_en{

  }
  .renovation_suggest_box .sec_title_ja{

  }
  .renovation_suggest_box .sec_text{
    margin-top: 30px;
  }

  /*見直しのタイミング逃していませんか？*/
  .renovation_worries_wrap{

  }
  .renovation_worries_main{

  }
  .renovation_worries_main_title{
    font-size: 50px;
  }
  .renovation_worries_main .sec_text{
    margin-top: 27px;
    text-align: center;
  }
  .renovation_worries_btn_content{
    margin: 67px -9px 0;
  }
  .renovation_worries_btn{
    width: 16.66%;
    padding: 0 9px;
  }
  .renovation_worries_btn:nth-child(n+4){
    margin-top: 0px;
  }
  .renovation_worries_btn:nth-child(n+7){
    margin-top: 30px;
  }
  .renovation_worries_btn_inner{
    font-size: 15px;
    padding: 7px;
  }
  .renovation_worries_list_content{
    margin-top: 46px;
  }
  .renovation_worries_list{

  }
  .renovation_worries_list_inner{
    padding: 30px 63px 28px;
  }
  .renovation_worries_list1{

  }
  .renovation_worries_list2{

  }
  .renovation_worries_list_title{
    margin-top: 17px;
    font-size: 25px;
  }
  .renovation_worries_list_title:after{
    margin-top: 18px;
  }
  .renovation_worries_list_check_context{
    margin-top: 20px;
  }
  .renovation_worries_list_check{
    padding-left: 22px;
  }
  .renovation_worries_list_check:nth-child(n+2){
    margin-top: 10px;
  }
  .renovation_worries_list_img{

  }

  /*その様々なお悩みIFISの改修・リニューアルで解決*/
  .renovation_img_box_content{

  }
  .renovation_img_box{

  }
  .renovation_img.img_fit{

  }
  .renovation_img.img_fit:before{
    padding-top: 705px;
  }
  .renovation_img_box_txt{

  }
  .renovation_img_box_txt_title{
    margin-top: 133px;
    font-size: 50px;
  }
  .renovation_img_box_txt .sec_text{
    margin-top: 27px;
    text-align: center;
  }
  .renovation_img_box_txt_btn_content{
    margin: 53px -15px 0;
  }
  .renovation_img_box_txt_btn{
    width: 380px;
    padding: 0 15px;
  }
  .renovation_img_box_txt_btn a{
    padding: 16px 20px 19px;
  }

  /*改修・リニューアルにおけるIFISの強み*/
  .renovation_feature_wrap{

  }
  .renovation_feature.sec_title_en{

  }
  .renovation_feature.sec_title_ja{
    margin-top: 10px;
  }
  .renovation_feature_item_content{
    margin-top: 77px;
  }
  .renovation_feature_item{
    padding-bottom: 53px;
  }
  .renovation_feature_item:nth-child(n+2){
    margin-top: 53px;
  }
  .renovation_feature_item1{

  }
  .renovation_feature_item2{

  }
  .renovation_feature_item_nbr{
    margin-top: 7px;
    margin-left: -2px;
    font-size: 20px;
  }
  .renovation_feature_item_title{
    font-size: 25px;
  }
  .renovation_feature_item .sec_text{
    margin-top: 20px;
  }

  /*施工内容*/
  .renovation_service_wrap{

  }
  .renovation_service.sec_title_en{

  }
  .renovation_service.sec_title_ja{
    margin-top: 8px;
  }
  .renovation_service_item_content{
    margin-top: 57px;
  }
  .renovation_service_item{
    padding-bottom: 120px;
  }
  .renovation_service_item:nth-child(n+2){
    padding-top: 109px;
    padding-bottom: 120px;
  }
  .renovation_service_item:nth-child(2):before,
  .renovation_service_item:nth-child(4):before{
    width: 127%;
  }
  .renovation_service_item1{

  }
  .renovation_service_item2{

  }
  .renovation_service_item3{

  }
  .renovation_service_item_title{
    font-size: 35px;
  }
  .renovation_service_item_title:after{
    margin-top: 20px;
  }
  .renovation_service_item .sec_text{
    margin-top: 10px;
  }
  .renovation_service_item_img.img_fit{
    margin-top: 11px;
  }
  .renovation_service_item_merit_title{
    margin-top: 50px;
    padding: 10px 22px 7px;
  }
  .renovation_service_item_merit_title_ja{
    font-size: 20px;
  }
  .renovation_service_item_merit_title_en{
    margin-top: 3px;
    font-size: 20px;
  }
  .renovation_service_item_merit_title_en:before{
    margin-left: 13px;
    margin-right: 17px;
  }
  .renovation_service_item_merit_content{
    padding: 25px 67px 30px;
  }
  .renovation_service_item_merit{
    padding-left: 20px;
  }
  .renovation_service_item_merit:nth-child(n+3){
    margin-top: 17px;
  }

  /*改修・リニューアルの目的*/
  .renovation_purpose_wrap{

  }
  .renovation_purpose.sec_title_en{

  }
  .renovation_purpose.sec_title_ja{
    margin-top: 9px;
  }
  .renovation_purpose.sec_text{
    margin-top: 29px;
  }
  .renovation_purpose.business_service_item{

  }
  .renovation_purpose.business_service_item_box_content{
    margin-top: 63px;
  }
  .renovation_purpose.business_service_item_box{

  }
  .renovation_purpose.business_service_item_box:nth-child(odd){

  }
  .renovation_purpose.business_service_item_box:nth-child(even){

  }
  .renovation_purpose.business_service_item_box:nth-child(n+3){

  }
  .renovation_purpose.business_service_item_box_inner{

  }
  .renovation_purpose.business_service_item_box_title{

  }
  .renovation_purpose.business_service_item_box .sec_text{

  }
  .renovation_purpose.business_service_item .read_more{
    margin-top: 67px;
  }

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

  /*使い続けたい空間をより快適で機能的に*/
  .renovation_suggest_box_img1:after{
    top: 10%;
    left: -40%;
    width: 350px;
  }

  /*施工内容*/
  .renovation_service_item:nth-child(2):before,
  .renovation_service_item:nth-child(4):before{
    width: 100%;
  }
  .renovation_service_item:nth-child(2):before{
    margin-left: calc(555px - 50vw);
  }
  .renovation_service_item:nth-child(4):before{
    margin-right: calc(555px - 50vw);
  }

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

  /*使い続けたい空間をより快適で機能的に*/
  .renovation_suggest_box_img1:after{
    top: 45px;
    left: -45.5%;
    width: 350px;
  }

  /*施工内容*/
  .renovation_service_item:nth-child(2):before,
  .renovation_service_item:nth-child(4):before{
    width: 122.5%;
  }

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

  /*施工内容*/
  .renovation_service_item:nth-child(2):before,
  .renovation_service_item:nth-child(4):before{
    width: 163.96%;
  }

}


/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0px;
}
.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: #73674c;
  color: #FFF;
  padding: 11px 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 13px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #777777;
}

/* 詳細 */
.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;
}


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}

/* コピー用 */
@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: 0px;
  }
  .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: 133px;
  }

  /* 詳細 */
  .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: 0px;
  }

}


/*******************************
*　新着情報
********************************/

/*一覧*/
.news_list{

}
.news_list .webgene-blog{

}
.news_list .webgene-item{
  padding: 15px 0;
  border-bottom: 1px solid #2e2e2e;
  position: relative;
  z-index: 1;
  transition: all 0.2s;
}
.news_list .webgene-item:after{
  content: "→";
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  aspect-ratio: 1 / 1;
  color: #fff;
  background-color: transparent;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 1px solid #73674c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 1.5%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.news_list .webgene-item:hover:after{
  background-color: #73674c;
  margin-right: -5px;
}
.news_list .webgene-item:first-child{
  border-top: 1px solid #2e2e2e;
}
.news_list .webgene-item a{
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
}
.news_list .webgene-item .date,
.news_list .webgene-item .category,
.news_list .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
.news_list .webgene-item .date{
  font-size: 14px;
}
.news_list .webgene-item .category{
  margin: 0px 10px;
  padding: 2px 0 1px;
  display: inline-block;
  font-size: 13px;
  text-align: center;
  border: 1px solid #777777;
  width: 95px;
  transition: 0.2s all;
}
.news_list .webgene-item a:hover .category{
  border-color: currentColor;
}
.news_list .webgene-item .title{
  margin-top: 15px;
  width: 100%;
  font-size: 14px;
  padding-right: 30px;
}

.pg_home .news_list .webgene-item .title{
  padding-right: 0;
}

/* 詳細 */
.news_detail{

}
.news_detail .webgene-blog{

}
.news_detail .webgene-item{

}
.news_detail .webgene-item .meta{
  display: flex;
  align-content: center;
  align-items: center;
}
.news_detail .webgene-item .date,
.news_detail .webgene-item .category,
.news_detail .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
}
.news_detail .webgene-item .date{
  padding-right: 15px;
  border-right: 1px solid;
  font-size: 16px;
  line-height: 1;
}
.news_detail .webgene-item .category{
  margin: 0px 15px;
  padding: 2px 0;
  display: inline-block;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  border: 1px solid #777777;
  width: 95px;
}
.news_detail .webgene-item .title{
  margin-top: 10px;
  padding-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #2e2e2e;
}
.news_detail .webgene-item .post_content{
  padding-bottom: 20px;
  border-bottom: 1px solid #2e2e2e;
}
.news_detail .webgene-item .thumb{
  margin-top: 20px;
}
.news_detail .webgene-item .txt{
  margin-top: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1.5;
}

@media (max-width:374px){

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

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

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

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    padding: 20px 0;
  }
  .news_list .webgene-item:after{
    right: 2%;
    width: 30px;
    height: 30px;
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{
    margin: 0px 15px;
    padding: 2px 0 1px;
  }
  .news_list .webgene-item .title{
    width: calc(100% - 215px);
    margin-top: 15px;
  }

  /* 詳細 */
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{
    padding-right: 20px;
  }
  .news_detail .webgene-item .category{
    margin: 0px 20px ;
    padding: 5px 0;
  }
  .news_detail .webgene-item .title{
    margin-top: 10px;
    padding-bottom: 10px;
  }
  .news_detail .webgene-item .post_content{
    padding-bottom: 30px;
  }
  .news_detail .webgene-item .thumb{
    margin-top: 30px;
  }
  .news_detail .webgene-item .txt{
    margin-top: 20px;
    line-height: 2.428;
  }

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

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{
    padding: 30px 0 28.5px;
  }
  .news_list .webgene-item:after{
    right: 3%;
    width: 40px;
    height: 40px;
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{
    margin: -3px 18px 0 24px;
    padding: 2px 0 1px;
  }
  .news_list .webgene-item .title{
    margin-top: -5px;
    width: calc(100% - 255px);
  }
  .news_list .webgene-pagination{
    margin-top: 80px;
  }

  /* 詳細 */
  .news_detail{

  }
  .news_detail .webgene-blog{

  }
  .news_detail .webgene-item{

  }
  .news_detail .webgene-item .meta{

  }
  .news_detail .webgene-item .date{
    padding-right: 25px;
  }
  .news_detail .webgene-item .category{
    margin: -5px 48px 0;
    padding: 4px 0 4px;
    width: 126px;
  }
  .news_detail .webgene-item .title{
    margin-top: 10px;
    padding-bottom: 12px;
  }
  .news_detail .webgene-item .post_content{
    padding-bottom: 69px;
  }
  .news_detail .webgene-item .thumb{
    margin-top: 50px;
  }
  .news_detail .webgene-item .txt{
    margin-top: 21px;
  }
  .news_detail .read_more{
    margin-top: 95px;
  }

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


}


/*******************************
*　施工事例
********************************/
.pg_works{

}

/*カテゴリー*/
.works_category{

}
.works_category .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.works_category .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_category .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.works_category .webgene-item a{
  display: block;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #777777;
  background: transparent;
  /* border-radius: 27px; */
  color: #FFF;
  padding: 16px 10px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.works_category .webgene-item a:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 2px;
  width: 17px;
  height: 16px;
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250610113112990459.png) no-repeat center center / contain;
}
.works_category .webgene-item a.on,
.works_category .webgene-item a:hover{
  color: #1c1b1a;
  background: #fff;
}
.works_category .webgene-item a.on:after,
.works_category .webgene-item a:hover:after{
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png)no-repeat center center / contain;
}

/*一覧*/
.works_list{
  margin-top: 50px;
}
.works_list .webgene-blog{
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.works_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.works_list .webgene-item .img.img_fit{
  overflow: hidden;
}
.works_list .webgene-item .img.img_fit:before{
  padding-top: 71.42%;
}
.works_list .webgene-item .category,
.works_list .webgene-item .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
.works_list .webgene-item .category{
  margin-top: 15px;
  padding: 0 17px;
  display: inline-block;
  font-size: 14px;
  text-align: center;
  border: 1px solid #777777;
  transition: 0.2s all;
  width: auto;
}
.works_list .webgene-item .inner:hover .category{
  border-color: #8a691e;
}
.works_list .webgene-item .title{
  margin-top: 20px;
  font-size: 16px;
}
.works_list .webgene-pagination{

}
.works_list .webgene-pagination li{
  background: transparent;
  border: 1px solid #73674c;
  color: #fff;
}
.works_list .webgene-pagination li.selected{
  background: #73674c;
  background: #8a691e;
}
.works_list .webgene-pagination li:hover{
  background-color: #8a691e;
  color: #FFF;
}
.works_list .webgene-pagination li:hover a{
  color: #FFF;
}

/* 詳細 */
.works_detail{

}
.works_detail .webgene-blog{

}
.works_detail .webgene-item{

}
.works_detail .webgene-item .title_outer,
.works_detail .webgene-item .title{
  position: relative;
  z-index: 1;
}
.works_detail .webgene-item .title_outer{
  padding: 20px 15px 20px;
  border-top: 1px solid #555555;
  border-bottom: 1px solid #555555;
}
.works_detail .webgene-item .title{
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  text-align: justify;
}
.works_detail .webgene-item .title_outer:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 5px 0 5px 0;
  background: #212121;
}
.works_detail .webgene-item .post_content{
  margin-top: 0px;
  padding: 25px 20px;
  border: 1px solid #555555;
  position: relative;
  z-index: 1;
}
.works_detail .webgene-item .post_content:after{
  content: "";
  border: 1px solid #555555;
  position: absolute;
  z-index: 1;
  inset: 5px;
  pointer-events: none;
}
.works_detail .webgene-item .post_txt .text,
.works_detail .webgene-item .post_txt .title{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1.5;
  text-align: justify;
}
.works_detail .webgene-item .post_txt{

}
.works_detail .webgene-item .post_txt .title{

}
.works_detail .webgene-item .post_txt .text{

}
.works_detail .webgene-item .post_txt + .post_txt{
  margin-top: 15px;
}

@media (max-width:374px){

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

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

  .works_list .webgene-item .category{
    padding-left: 10px;
    padding-right: 10px;
  }
  
}
@media (min-width:768px){

  /*カテゴリー*/
  .works_category{

  }
  .works_category .webgene-blog{
    margin: 0 -10px 0;
  }
  .works_category .webgene-item{
    width: 33.33%;
    padding: 0 10px;
  }
  .works_category .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .works_category .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_category .webgene-item a{
    padding: 16px 20px;
  }
  .works_category .webgene-item a:after{

  }
  .works_category .webgene-item a:hover{

  }
  .works_category .webgene-item a:hover:after{

  }

  /*一覧*/
  .works_list{
    margin-top: 70px;
  }
  .works_list .webgene-blog{
    margin: 0 -10px;
  }
  .works_list .webgene-item{
    width: 33.33%;
    padding: 0 10px;
  }
  .works_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .category{
    margin-top: 15px;
    padding: 0 17px;
  }
  .works_list .webgene-item .title{
    margin-top: 20px;
  }
  .works_list .webgene-pagination{

  }

  /* 詳細 */
  .works_detail{

  }
  .works_detail .webgene-blog{

  }
  .works_detail .webgene-item{

  }
  .works_detail .webgene-item .title_outer{
    padding: 20px 0 20px;
  }
  .works_detail .webgene-item .title{
    font-size: 20px;
    text-align: center;
  }
  .works_detail .webgene-item .post_content{
    margin-top: 0px;
    padding: 30px 25px;
  }
  .works_detail .webgene-item .post_txt .text,
  .works_detail .webgene-item .post_txt .title{
    line-height: 2.125;
  }
  .works_detail .webgene-item .post_txt{

  }
  .works_detail .webgene-item .post_txt .title{

  }
  .works_detail .webgene-item .post_txt .text{

  }
  .works_detail .webgene-item .post_txt + .post_txt{

  }


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

  /*カテゴリー*/
  .works_category{

  }
  .works_category .webgene-blog{
    margin: 0 -15px 0;
  }
  .works_category .webgene-item{
    width: 25%;
    padding: 0 15px;
  }
  .works_category .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .works_category .webgene-item:nth-child(n+5){
    margin-top: 27px;
  }
  .works_category .webgene-item a{
    padding: 16px 20px 17px;
  }
  .works_category .webgene-item a:after{

  }
  .works_category .webgene-item a:hover{

  }
  .works_category .webgene-item a:hover:after{

  }

  /*一覧*/
  .works_list{
    margin-top: 100px;
  }
  .works_list .webgene-blog{
    margin: 0 -15px;
  }
  .works_list .webgene-item{
    width: 33.33%;
    padding: 0 15px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 75px;
  }
  .works_list .webgene-item .img.img_fit{

  }
  .works_list .webgene-item .category{
    margin-top: 17px;
    padding: 0 17px;
  }
  .works_list .webgene-item .title{
    margin-top: 21px;
  }
  .works_list .webgene-pagination{
    margin-top: 96px;
  }

  /* 詳細 */
  .works_detail{

  }
  .works_detail .webgene-blog{

  }
  .works_detail .webgene-item{

  }
  .works_detail .webgene-item .title_outer{
    padding: 20px 0 20px;
  }
  .works_detail .webgene-item .title{
    font-size: 20px;
  }
  .works_detail .webgene-item .post_content{
    margin-top: 48px;
    padding: 32px 62px 32px 64px;
  }
  .works_detail .webgene-item .post_txt{

  }
  .works_detail .webgene-item .post_txt .title{

  }
  .works_detail .webgene-item .post_txt .text{

  }
  .works_detail .webgene-item .post_txt + .post_txt{
    margin-top: 34px;
  }
  .works_detail .read_more{
    margin-top: 76px;
  }


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


}


/*******************************
*　ギャラリー（サムネ縦ver）
********************************/

/* スライド */
.gallery_wrap{
  margin-top: 30px;
  padding: 30px 0;
  border-top: 1px solid #8a691e;
  border-bottom: 1px solid #1a1a1a;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 82.88%;
  position: relative;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{
  margin-top: 10px;
}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img.img_fit img{

}

/* 詳細 */
.gallery_detail{
  border: 1px solid #3a3a3a;
  padding: 16px 16px;
  margin-top: 30px;
}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #3a3a3a;

  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  letter-spacing: 0.085em;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2.31em;
  ;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}
.gallery_slide_prev i,
.gallery_slide_next i{
  display: none;
}
.gallery_slide_prev,
.gallery_slide_next{
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: var(--main-color);
  font-size: 22px;
  cursor: pointer;
  height: 25px;
}
.fa-chevron-circle-left:before,.fa-chevron-circle-right:before{
  display: none;
}
.works_detail .gallery_slide_next:after,
.works_detail .gallery_slide_prev:before{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 14px;
  border-radius: 50%;
  display: block;
  width:25px;
  height: 25px;
  aspect-ratio:1 / 1;
  color: #fff;
  background-color: #8a691e;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
}
.works_detail .gallery_slide_prev{
  left:-5.9%;
}
.works_detail .gallery_slide_prev:before{
  content: "←";
}
.works_detail .gallery_slide_next:after{
  content: "→";
}
.works_detail .gallery_slide_prev{
  left: -10%;
}
.works_detail .gallery_slide_next{
  right: -10%;
}
/* コピー用 */
@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;
  }

  /* 詳細 */
  .gallery_wrap{
    margin-top: 45px;
    padding: 45px 0;
  }
  .gallery_box1{
    width: 82.88%;
  }
  .gallery_box2{
    width: 82.88%;
    margin-top: 0;
  }

  /* サムネ */
  .gallery_thumb{
    width: 100%;
    height: auto;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{

  }

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 70px;
    padding: 27px 20px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    margin-top: 20px;
  }

  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
  .works_detail .gallery_slide_prev{
    left: -6%;
  }
  .works_detail .gallery_slide_next{
    right: -6%;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_wrap{
    margin-top: 60px;
    padding: 60px 0;
  }
  .gallery_detail{
    width: 100%;
    margin-top: 100px;
    padding: 27px 62px 32px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
  .gallery_detail .meta .title{
    font-size: 23px;
  }
  .gallery_detail .meta .price{
    font-size: 20px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }

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


}


/*******************************
*　会社概要
********************************/
.pg_company{

}
.pg_company .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}

/*会社概要*/
.company_tbl{

}
.company_tbl .table_rows_tr{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  background: transparent;
  border: transparent;
  border-bottom: 1px solid #404040;
}
.company_tbl .table_rows_th{
  padding: 10px 0 10px 10px;
  width: 100px;
}
.company_tbl .table_rows_td{
  padding: 10px 10px 10px 0;
}

/*地図*/
.company_map{
  margin-top: 30px;
}
.company_map iframe{
  width: 100%;
  border: none;
  height: 200px;
}

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

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

}
@media (max-width:767px){
  /*  .company_tbl .table_rows_th,
    .company_tbl .table_rows_td{
      display: block;
      width: 100%;
    }*/

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

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*会社概要*/
  .company_tbl{

  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 0 20px 15px;
  }
  .company_tbl .table_rows_th{
    width: 160px;
  }
  .company_tbl .table_rows_td{
    padding-left: 0;
  }

  /*地図*/
  .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 300px;
  }

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

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*会社概要*/
  .company_tbl{
    margin-top: 152px;
  }
  .company_tbl .table_rows_tr{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 16px 0 17px;
  }
  .company_tbl .table_rows_th{
    width: 190px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .company_map{
    margin-top: 83px;
  }
  .company_map iframe{
    height: 400px;
  }

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


}


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

.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;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid transparent;
  border-bottom: 1px solid #404040;
  background: transparent;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #404040;
}
.pg_contact .formTh {
  padding: 26px 0px 0px;
  background: transparent;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.12em;
  padding: 3px 11.1px;
  margin-top: 0px;
  float: right;
  background: #982121;
  color: #ffffff;
}
.d-inline-block.requiredText.un_requiredText{
  border: 1px solid #b80000;
  background: #ffffff;
  color: #b80000;
  padding: 1px 11.1px;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 18.5px 0 17px 6.6%;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 463px;
  height: 41px;
  width: 100%;
  padding: 5px 10px;
  background: transparent;
  border: 1px solid #404040;
  border-radius: 0;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #ababab;
}
.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="type"],
.pg_contact .formTd select[name="pref"]{
  width: 100%;
  padding: 8px 8px 9px;
  border: 1px solid #404040;
  background: none;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #ababab;
  
}
.pg_contact .formTd select[name="type"]{
  max-width: 322px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 228px;
}

.pg_contact .formTd select{
  /*color: #ababab;*/
  /*background: #FFF;*/
}
.pg_contact .formTd select option{
  color: #181818;
  background: none;
}

.pg_contact .formTd input[name="city"],
.pg_contact .formTd input[name="add"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  font-family: "Shippori Mincho", serif;
  width: 77px;
}
.pg_contact .formTd textarea{
  width: 106.3%;
  height: 283px;
  padding: 8px 10px;
  border: 1px solid #404040;
  border-radius: 0;
  background: transparent;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.16em;
  color: #ababab;
}
.pg_contact .formWrap .text-center{
  padding-top: 37px;
}
.pg_contact input[name="privacy"]{
  margin-right: 10px;
  margin-left: 10px;
}
.pg_contact .privacyLabel{
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #586dc8;
}
.pg_contact .formBtn.formSend {
  max-width: 250px;
  width: 100%;
  padding: 16px 20px 19px;
  margin: 47px auto 0;
  background: transparent;
  color: #ffffff;
  font-family: "Shippori Mincho", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  color: #FFF;
  border: 1px solid #777777;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  color: #1c1b1a;
  background: #fff;
}
.pg_contact .formBtn.formSend:after{
  content: "";
  position: absolute;
  z-index: 1;
  right: 2px;
  bottom: 2px;
  width: 17px;
  height: 16px;
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250610113112990459.png) no-repeat center center / contain;
}
.pg_contact .formBtn.formSend:hover:after{
  background: url(https://ifis-corp.co.jp/system_panel/uploads/images/20250612150841992631.png)no-repeat center center / contain;
}
.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: 8.3px 4px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  color: #545454;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.ios_select_design{
  display: inline-block;
  position: relative;
  z-index: 1;
}
.ios_select_design select{
  
}


.ios_select_design::after {
  content: "\f078";
  content: "\f107";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  pointer-events: none;
  color: white; /* 矢印の色 */
}
.ios_select_design select {
  appearance: none;
  -webkit-appearance: none;
  background-color: black;
  color: white;
  padding-right: 20px !important; /* 矢印の分余白を確保 */
}

@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 23%;
    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%;
  }
}

@media only screen and (min-width: 1440px){
  .pg_contact .formTh{
    flex: 0 0 19.1%;
  }

}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 130px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 50px;
  padding-left: 35px;
  font-family: "Shippori Mincho", serif;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1.2;
}
.privacy_item_box{
  padding: 32px 43px 30px 29px;
  height: 397px;
  overflow: auto;
  border: 1px solid #404040;
  margin-top: 0;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-family: "Shippori Mincho", serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 7px 15px 7px;
  margin-bottom: 12px;
  border-left: 6px solid #73674c;
}
.privacy_txt{
  font-family: "Shippori Mincho", serif;
  font-size: 16px;
  font-weight: 400;
  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;
  }
  .pg_contact .formTd textarea{
    width: 100%;
  }

}

@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: 15px 10px 0;
  }
  .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: 185px;
  }
  .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: 9.5px 4px;
    margin: 0;
  }
  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 .formTd textarea{
    width: 100%;
  }


  .pg_contact .section.sec1 {
    padding: 0 0 25px;
  }
  .contact_info_bg {
    padding: 18px 10px;
  }
  .privacy_item_box{
    padding: 30px 20px;
  }
  .pg_contact .section.sec2{
    padding: 65px 0 30px;
  }
  .pg_contact .section.sec2 .contact_tt{
    font-size: 20px;
    padding-left: 0;
  }

  .privacy_ttl {
    font-size: 15px;
    padding-left: 10px;
  }
}
@media (min-width:1920px){
  label.label.zipcode_i {
    margin-top: 3px;
    padding: 6.5px 4px;
  }
}

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

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


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


}
