@charset "UTF-8";

#root{
  overflow: hidden;
}
:root {
  --main-color: #556fb5;
  --sub-color: #0075a9;
}
@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
  }
}

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

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

text{
  font-weight: 400;
  font-size: 18px;
}


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

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

.mincho{
  font-family: 'Noto Serif JP', serif;
}
p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

.img_fit{
  position: relative;
}
.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;
}

@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
/* 指定デバイスのみで表示する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: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{
  display: none;
  text-align: center;
}
.hdr_tel_txt1{
  font-size: 20px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}
.hdr_tel_txt1 p{
  letter-spacing: 0.2em;
}
.hdr_tel_txt2{
  font-size: 12px;
  font-weight: 500;
}
.hdr_tel_txt2 p{
  letter-spacing: 0em;
}
.hdr_tel_link{

}
.hdr_tel_link p{

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


/* お問い合わせボタン */
.hdr_contact{
  display: flex;
  align-items: center;
  margin-left: 20px;
}
.hdr_contact a{
  background: #556fb5;
  color: #FFF;
  width:150px;
  padding: 10px 5px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid transparent;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  cursor: pointer;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: #262835;
  color: #FFF;
}
.hdr_contact p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  padding-right: 5px;
}

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

/*サイドボタン*/
.hdr_side_btn{
  position: fixed;
  z-index: 5;
  right: 0;
  top: 145px;
  width: auto;
  height: auto;
}
.hdr_side_btn a{
  padding: 10px 0;
  background: #f6f1f1;
  border: 1px solid #333333;
  border-radius: 14px 0 0 14px;
  display: flex;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  font-weight: 400;
  font-size: 13px;
  white-space: nowrap;
  width: auto;
  height: auto;
  border-right: 0;
}
.hdr_side_btn p{
  letter-spacing: 0.075em;
}
.hdr_side_btn a:after{
  content: "\f138";
  font-family: "fontAwesome";
  padding-top: 5px;
  font-size: 15px;
}
.hdr_side_btn a:hover{
  background: #262835;
  color: #fff;
}


@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;
  }
  .hdr_side_btn{
    position: fixed;
    z-index: 5;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    height: 34px;
  }
  .hdr_side_btn a{
    width: 100%;
    height: 34px;
    padding: 10px 0px;
    font-size: 12px;
    writing-mode: initial;
    border: 1px solid transparent;
    border-radius: 0;
    background: #262835;
    color: #fff;
  }
  .hdr_side_btn a p{
    line-height: 1.2em;
  }
  .hdr_side_btn a:after{
    padding-top: 5px;
    padding-left: 15px;
  }
}
@media (min-width:768px){

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

  .hdr1{
    padding: 0 15px 0;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{
    display: block;
  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }

  .hdr_side_btn a{
    font-size: 14px;
    width: 48px;
    height: 334px;
  }
  .hdr_side_btn a:after{
    content: "\f138";
    font-family: "fontAwesome";
    padding-top: 15px;
    font-size: 15px;
  }

}
@media (min-width:1024px){
  .hdr_logo a{
    display: block;
    width: 170px;
    transition: all 0.2s;
  }
  .header.slim .hdr_logo a{
    width: 160px;
  }
  /* ヘッダー固定 */
  .hdr1{
    padding: 10px 30px 0 25px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{

  }
  .hdr_tel_txt2{
    margin-top: -7px;
  }

  /* お問い合わせボタン */
  .hdr_contact{
    margin-left: 20px;
  }

}
@media (min-width:1200px){
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 103px;
  }
  /* ヘッダー固定 */
  .hdr1{
    padding: 10px 30px 0 25px;
  }

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 300px;
  }

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

  }
  .header.slim .hdr_logo img{width: 250px;}

  /* TELボタン */
  .hdr_tel{
    margin-left: 30px;
    white-space: nowrap;
    padding: 10px 0 15px;
  }
  .hdr_tel_txt1{
    font-size:26px;
  }

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

    margin-left: 20px;
  }
  .hdr_contact a{
    width:170px;
  }
}
@media (min-width:1540px){
  .hdr_logo a{
    width: auto;
  }

  /* TELボタン */
  .hdr_tel{
    margin-left: 67px;
  }
  .hdr_tel_txt1{
    font-size: 30px;
  }
  /* お問い合わせボタン */
  .hdr_contact{

    margin-left: 41px;
  }
  .hdr_contact a{
    width: 200px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  margin-bottom: 50px;
}
.mv_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.mv_content,
.mv_content > *{
  position: relative;
  z-index: 2;
}
.mv_box1,
.mv_box2{
  width: 100%;
}
.mv_box1{
  order: 2;
  position: relative;
  z-index: 2;
}
.mv_box2{
  order: 1;
  width: 80%;
  margin-inline:auto;
  padding-top: 36px;
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}

/* MVテキスト */
.mv_title{
  margin-top: 30px;
}
.mv_title_h{
  font-weight: 900;
  font-size: 25px;
  letter-spacing: 0em;
  line-height: 1.415;
  text-align: center;
  white-space: nowrap;
}
.mv_sub_title{
  margin-top: 5px;
  font-weight: 700;
  font-size: 17px;
  text-align: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.mv_sub_title:before,
.mv_sub_title:after{
  content: "～";
}
.mv_text{
  margin-top: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}

@media (min-width:375px){
  .mv_sub_title{
    font-size: 16px;
  }
}

@media (min-width:768px){

  /* MV */
  .mv{
    margin-bottom: 70px;
  }
  .mv_img{
  }
  /*  .mv_img.img_fit:before{
      padding-top: 400px;
    }*/
  .mv_box1{
    order: 1;
    width: 57.51%;
  }
  .mv_box2{
    order: 2;
    width: 41.51%;
    padding-top: 55px;
    margin-inline:0;
  }

  /* MVテキスト */
  .mv_title{
    margin-top: 20%;
  }
  .mv_title_h{
    font-size: 30px;
    text-align: justify;
  }
  .mv_sub_title{
    margin-top: 10px;
    font-size: 14px;
  }
  .mv_text{
    margin-top: 15px;
    font-size: 18px;
  }

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


  /* MV */
  .mv{
    margin-bottom: 100px;
  }
  .mv_img{
  }
  /*  .mv_img.img_fit:before{
      padding-top: 500px;
    }*/
  .mv_box1{
    width: 46.51%;
  }
  .mv_box2{
    width: 50.51%;
    padding-top: 0;
  }

  /* MVテキスト */
  .mv_title{
    margin-top: 22%;
  }
  .mv_title_h{
    font-size: 45px;
  }
  .mv_sub_title{
    margin-top: 17px;
    font-size: 15px;
  }
  .mv_text{
    margin-top: 21px;
    font-size: 17px;
  }

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

  /* MVテキスト */
  .mv_title{
    margin-top: 43%;
  }
  .mv_box1{
    width: 42.51%;
  }
  .mv_box2{
    width: 54.51%;
  }
}
@media (min-width:1450px){

  /* MV */
  .mv{
    margin-bottom: 25px;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }


  /* MVテキスト */
  .mv_title{
    margin-top: 43%;
  }
  .mv_title_h{
    font-size: 60px;
  }
  .mv_sub_title{
    justify-content: flex-start;
    text-align: justify;
    font-size: 18px;
  }
  .mv_text{
    font-size: 20px;
  }


}
@media (min-width:1550px){
  /*  .mv_box1{
      width: 36.51%;
    }
    .mv_box2{
      width: 61.51%;
    }*/
}
@media (min-width:1600px){
  .mv_box1{
    width: 36.51%;
  }
  .mv_box2{
    width: 61.51%;
  }
}
@media (min-width:1600px){

  /* MVテキスト */
  .mv_title_h{
    font-size: 65px;
  }
}


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

/* サイドバー */
.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: 50px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

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


@media (min-width:768px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

}
@media (min-width:1200px){
  .pg_header{
    margin-bottom: 120px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 700px;
  }

}



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

.footer{
  margin-top: 80px;
}

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

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

}
.ftr1_box2{

}
.ftr1_img{
  order: 2;
  margin-top: 0px;
}
.ftr1_text{
  position: relative;
  z-index: 1;
  order: 1;
  aspect-ratio:1040 / 291;
  padding: 20px;
}
/*.ftr1_text_inner{
  height: 100%;
  overflow: auto;
}*/
.ftr1_text_inner {
  height: auto;
  overflow: auto;
  position: absolute;
  z-index: 1;
  inset: 15px 10px 10px 60px;
  font-size: 18px;
}

.ftr1_text p{
  font-weight: 500;
  line-height: 2.25;
  padding: 0;
  font-size: 14px;
}
.ftr1_text:before{
  content: "";
  display: block;
  background: url(/system_panel/uploads/images/20250403155946313727.png)no-repeat center center/contain;
  position: absolute;
  z-index: 1;
  inset: 0;
  aspect-ratio:1040 / 291;
  pointer-events: none;
}
.ftr1_contact_box{
  margin-top: 50px;
  order: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ftr_tel_box{
  width: 100%;
  text-align: center;
}
.ftr_tel_box1{
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 30px;
  line-height: 1;
  color: #f6850d;
}
.ftr_tel_box1 p{
  letter-spacing: 0.2em;
}
.ftr_tel_box2{
  margin-top: 20px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
}
.ftr_tel_box2 em{
  display: block;
  font-style: normal;
}
.ftr_tel_box2 strong{
  display: none;
  font-weight: 500;
}
.ftr_btn_box{
}
.ftr_btn_box .read_more{
}
.ftr_btn_box .read_more a{
  font-weight: 700;
}
.ftr_btn_box .read_more a p:before{
  content: "\f0e0";
  font-family: "fontAwesome";
  padding-right: 5px;
}

.ftr_logo{
  margin-top: 30px;
  margin-bottom: 25px;
}
.ftr_name{
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.075em;
  margin-top: 31px;
  margin-bottom: 25px;
}
.ftr_addr{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  margin-bottom: 19px;
}
.ftr2{
  margin-top: 50px;
  text-align: center;
}
.ftr2_box_content{
  margin-top: 27px;
}
.ftr2_box{
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
}
.ftr2_box:nth-child(n+2){
  margin-top: 14px;
}
.ftr2_box1,
.ftr2_box2{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: justify;
}
.ftr2_box1{
  width: 75px;
}
.ftr2_box2{
  padding-left: 27px;
  width: 161px;
  border-left: 1px solid #181818;
}
.ftr2_img{
  position: relative;
  z-index: 1;
  margin-bottom: 50px;
}
.ftr2_img:after{
  content: "";
  position: absolute;
  z-index: 1;
  border-bottom: 3px solid #bfd21b;
  width: 100vw;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.ftr_links{
  margin-top: 20px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
  padding: 5px 0;
  display: none;
}
.ftr_link{
  border-left: 1px solid;
  padding: 0 15px;
}
.ftr_link:first-child{
  border-left: none;
}
.ftr_link a{
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  line-height: 1;
  transition: all 0.2s;
}
.ftr_link a:hover{
  color: var(--main-color);
}
.ftr_link a p{
  letter-spacing: 0.2em;
}


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  margin-top:0;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  padding: 16px 0 30px;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 34px;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
  border-top: 1px solid #fff;
}
.footer_fix > a{
  font-size: 10px;
  text-align: center;
  display: block;
  padding: 5px 5px 5px;
  color: #fff;
  background: var(--sub-color);
  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%;
  color: #fff;
  background: var(--sub-color);
}
.footer_fix > a i{
  font-size: 15px;
  margin-bottom: 3px;
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}
.fa-chevron-circle-up:before{
  color: var(--main-color);
}



@media (min-width:375px){
  .ftr1_text p{
    padding:0;
    font-size: 16px;
  }
  .ftr1_text:before{
  }
}
@media (min-width:425px){
  .ftr1_text p{
    padding: 0;
  }
}
@media (max-width:767px){

  body{
    padding-bottom: 57px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr1_img{
    width: 160px;
    margin: 0 auto;
  }
  .ftr_logo{
    display: block;
    width: 50%;
    margin-inline: auto;
  }

  .ftr1_text{
    width: 320px;
    padding: 24px 16px;
    aspect-ratio:650 / 1270;
    margin-inline:auto;
  }
  .ftr1_text:before{
    background: url(/system_panel/uploads/images/20250404122735807383.png) no-repeat center center / contain;
    aspect-ratio:650 / 1270;
  }
  .ftr1_text p{

  }
  .ftr1_text_inner{
    height: auto;
    inset: 30px 16px 10px 16px;
  }

  .footer .tt2_ja{
    font-size: 22px;
  }


  .pagetop{
    bottom: 85px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr1{
    margin-top: 50px;
  }
  .ftr1>.container{
  }
  .ftr1_box1,
  .ftr1_box2{
    display: block;
  }
  .ftr1_box1{
    width: 37.51%;
    order: 1;
  }
  .ftr1_box2{
    width: 61.51%;
    order: 2;
  }
  .ftr1_img{
    margin-top: 0px;

  }
  .ftr2_img{
    margin-bottom: 84px;
  }
  .ftr1_text{
    padding: 20px 30px 20px 65px;
    line-height: 1.2;
    width: 100%;
    height: auto;
  }
  .ftr1_text_inner{
    overflow: inherit;
  }
  .ftr1_text:before{
    background: url(/system_panel/uploads/images/20250416110225651529.png)no-repeat center center/contain;
    width: 100%;
    right: 0;
    left: auto;
    height: auto;
  }
  .ftr1_text p{
    padding: 9px;
    font-size: 13px;
  }
  .ftr1_contact_box{
    justify-content: space-between;
  }
  .ftr_tel_box{
    text-align: justify;
    width: 50%;
  }
  .ftr_tel_box1{
    font-size: 24px;
  }
  .ftr_tel_box2{
    margin-top: 0px;
    font-size: 14px;
  }
  .ftr_tel_box2 em{
    display: inline-block;
    font-style: normal;
  }
  .ftr_tel_box2 strong{
    display:inline-block;
    font-weight: 500;
  }

  .ftr_btn_box{
    width: 47%;
  }

  .ftr_logo{
    margin-top: 50px;
  }

  .ftr2{
    margin-top: 100px;
  }
  .ftr2_box{
  }
  .ftr2_box1{
  }
  .ftr2_box2{

  }

  .ftr_links{
    margin-top: 40px;
    padding: 15px;
    display: flex;
  }
  .ftr_link{
    padding: 0px 20.5px;
  }
  .ftr_link a{

  }

  .ftr_copy{
    margin-top: 0;
    padding: 24px 0;
  }

  /* .ftr1_text_inner{
    overflow-y: scroll;
  } */
  .ftr1_text_inner::-webkit-scrollbar {
    width: 8px;
    background-color: var(--main-color);
  }
  .ftr1_text_inner::-webkit-scrollbar-thumb {
    background: #f6f1f1;
    width: 6px;
    border-radius: 5px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 203px;
  }

  .ftr1{
    margin-top: 0;
    padding: 37px 0;
  }

  .ftr1>.container{
  }
  .ftr1_box1{

  }
  .ftr1_box2{

  }
  .ftr1_text{
    padding: 20px 30px 20px 75px;
  }
  .ftr1_text:before{
    background: url(/system_panel/uploads/images/20250403155946313727.png)no-repeat center center/contain;
  }
  .ftr1_text p{
    padding:0;
    font-size: 9px;
  }
  .ftr1_text:before{
    background: url(/system_panel/uploads/images/20250403155946313727.png)no-repeat center center/contain;
    width: 100%;
    height: 100%;
    height: auto;
    top: 0;
    left: 0;
    transform: none;
  }
  .ftr1_contact_box{
    margin-top:24px;
  }
  .ftr_tel_box{

  }
  .ftr_tel_box1{
    padding-left: 25px;
    font-size: 30px;
  }
  .ftr_tel_box2{
    padding-top: 5px;
    font-size: 10px;
  }
  .ftr_btn_box{

  }

  .ftr_logo{
    margin-top: 83px;
  }

  .ftr2{
    margin-top: 180px;
  }
  .ftr2_box{
  }
  .ftr2_box1{
  }
  .ftr2_box2{

  }

  .ftr_links{
    margin-top: 60px;
    padding: 24px 0 26px;
  }
  .ftr_link{
    padding: 0px 47.5px;
  }
  .ftr_link a{

  }

  .ftr_copy{
    margin-top: 0;
  }

  .ftr1_text_inner {
    height: auto;
    overflow-y: hidden;
    position: absolute;
    z-index: 1;
    inset: 20px 20px 10px 85px;
    /* overflow-y: scroll; */
  }
}
@media (min-width:1200px){
  .ftr1_text{
    padding: 39px 50px 0 50px;
  }
  .ftr1_text p{
    padding: 0;
    font-size: 11px;
  }
  .ftr1_text:before{
    width: auto;
    left: -11.5%;
  }
  /*  .ftr1_text_inner{
      height:100%;
    }*/
  .ftr1_text_inner {
    inset: 20px 20px 10px 55px;
    overflow-y: hidden;
  }
  .ftr_tel_box1{
    font-size: 34px;
  }
  .ftr_tel_box2{
    margin-left: 8px;
    padding-top: 5px;
    font-size: 9px;
  }
}
@media (min-width:1250px){
  .ftr1_text_inner {
    inset: 25px 20px 10px 50px;
    overflow-y: hidden;
  }
}
@media (min-width:1410px){
  .ftr1_text_inner {
    inset: 30px 20px 10px 55px;
    overflow-y: hidden;
  }
  .ftr1_text p{
    padding: 0;
    font-size: 13px;
  }
}
@media (min-width:1450px){
  .ftr1_text{
    padding: 32px 30px 0 73px;
  }
  .ftr1_text p{
    padding: 0;
    font-size: 15px;
    line-height: 1.875;
  }
  .ftr1_text:before{
    left: -11.5%;
  }

  .ftr_tel_box{
    width: 55%;
    padding-left: 25px;
  }
  .ftr_btn_box{
    margin-top: 47px;
    width: 45%;
    margin-right: -10px;
  }
  .ftr_btn_box .read_more a{
    padding: 28px 0;
    width: 100%;
    font-size: 20px;
    border-radius: 41.5px;
  }
  .ftr1_contact_box .read_more{
    margin-top: 5px;
    width: 45%;
  }
  .ftr1_contact_box .read_more{
    width: 100%;
  }

  .ftr1_text_inner {
    inset: 20px 15px 0px 60px;
    /* overflow-y: scroll; */
  }
}
@media (min-width:1540px){
  .ftr_tel_box1{
    font-size: 45.91px;
  }
  .ftr_tel_box2{
    margin-left: 8px;
    padding-top: 5px;
    font-size: 20.77px;
  }

  .ftr1_text_inner{
    /* overflow-y: auto; */
    inset: 28px 10px 5px 60px;
  }
  .ftr1_text_inner::-webkit-scrollbar {
    background: none;
  }
  .ftr1_text_inner::-webkit-scrollbar-thumb {
    background: none;
  }
}
@media (min-width:1700px){
  .ftr_tel_box{
    width: 53%;
  }
  .ftr_tel_box1{
    font-size: 51.91px;
  }
  .ftr1_text_inner{
    /* overflow-y: auto; */
  }
  .ftr1_text p{
    padding: 0;
    font-size: 18px;
    line-height: 1.875;
  }
}
/*******************************
*　共通パーツ
********************************/

/* 色 */
.green{
  background: #acd598;
}
.cyaan{
  background: #84ccc9;
}
.blue{
  background: #88abda;
}
.purple{
  background: #c490bf;
}
.pink{
  background: #f29c9f;
}
.orange{
  background: #f6b37f;
}

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

/* テーブル用 */
.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 #c0c0c0;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #e5e5e5;
}
.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-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 24px;
  background: var(--main-color);
  /*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: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: #FFF;
  background: #262835;
}
.read_more a:hover:after{
  margin-right: -5px;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.tt2:before{
  content: "";
  background: url(/system_panel/uploads/images/20250402162335952919.png) no-repeat center center;
  margin-bottom: 50px;
  width: 86px;
  height: 37px;
  display: block;
  margin: 0 auto;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_ja{
  font-size: 18px;
  font-weight: 700;
  margin-top: 5px;
  line-height: 1.25;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 700;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.tt2_img{
  position: absolute;
  z-index: 1;
  top: 48%;
  right: 0;
  transform: translateY(-50%);
  width: 15.72%;
  aspect-ratio:239 / 173;
}


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

/*共通メイン*/
.cmn_box{

}
.cmn_title{
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  text-align: center;
}
.cmn_text{
  margin-top: 10px;
  line-height: 2.25;
  font-size: 18px;
  text-align: justify;
}
.cmn_text p{
  letter-spacing: 0;
}

/*共通item*/
.cmn_item_content{
  margin-top: 30px;
}
.cmn_item{
  padding: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_item,
.cmn_item > *{
  position: relative;
  z-index: 1;
}
.cmn_item:before{
  content: "";
  background: #fbf6ed;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100vw;
  border-radius: 5px;
}
.cmn_item1,
.cmn_item2{
  width: 100%;
}
.cmn_item1{

}
.cmn_item2{
  margin-top: 30px;
}
.cmn_item_img.img_fit{
  border-radius: 5px;
}
.cmn_item:nth-child(n+2){
  margin-top: 30px;
}
.cmn_item:nth-child(odd) .cmn_item_img.img_fit{
  box-shadow: 5px 5px var(--sub-color);
  border-radius: 5px 5px 50px 5px;
}
.cmn_item:nth-child(even) .cmn_item_img.img_fit{
  box-shadow: -5px 5px var(--sub-color);
  border-radius: 5px 5px 5px 50px;
}
.cmn_item_img.img_fit:before{
  padding-top: 65.47%;
}
.cmn_item_img.img_fit img{
  border-radius: 5px;
}
.cmn_item:nth-child(odd) .cmn_item_img.img_fit img{
  border-radius: 5px 5px 50px 5px;
}
.cmn_item:nth-child(even) .cmn_item_img.img_fit img{
  border-radius: 5px 5px 5px 50px;
}
.cmn_item_nbr{
  color: var(--sub-color);
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
}
.cmn_item_title{
  margin-top: 15px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.cmn_item_title p{
  letter-spacing: 0;
}
.cmn_item_text{
  margin-top: 15px;
  line-height: 1.875;
  font-size: 18px;
  text-align: justify;
}
.cmn_item_content.torikumi .cmn_item_title{
  line-height: 1.33em;
}

.sdgs_logo{
  aspect-ratio:1 / 1;
  position: absolute;
  top: 0;
  z-index: 2;
}
.sdgs_logo.pos1,
.sdgs_logo.pos2{
  width: 80px;
}
.sdgs_logo.pos2{
  width: 113px;
}
.sdgs_logo img{
  border-radius: 0;
}
.cmn_item:nth-child(odd) .sdgs_logo{
  right: 0;
}
.cmn_item:nth-child(odd) .cmn_item_img.img_fit .sdgs_logo img{
  border-radius: 0;
}
.cmn_item:nth-child(even) .cmn_item_img.img_fit .sdgs_logo img{
  border-radius: 0;
}

.sdgs_outer{
  width: 170px;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
}
.sdgs_outer .sdgs_logo{
  position: relative;
}
.cmn_item:nth-child(even) .cmn_item_img.img_fit .sdgs_logo:first-child img{
  border-radius: 5px 0 0 0;
}
.cmn_item:nth-child(even) .cmn_item_img.img_fit .sdgs_logo:last-child{
  left: -2px;
}
@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: -100px;
  }

  /* ページネーション */
  .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: 300px;
    font-weight: 400;
    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: 0px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-weight: 700;
    font-size: 24px;
  }

  .tt2_ja2{
    font-size: 20px;
    margin-top: 0px;
  }
  .tt2_ja2 strong{
    font-size: 18px;
  }
  .tt2_img{
    top: 60%;
  }

  /*共通メイン*/
  .cmn_box{

  }
  .cmn_title{
    margin-top: 15px;
    font-size: 20px;
  }
  .cmn_text{
    margin-top: 15px;
  }

  /*共通item*/
  .cmn_item_content{
    margin-top: 40px;
  }
  .cmn_item{
    padding: 50px 0;
  }
  .cmn_item:before{
    width: 92.69%;
    transform: none;
  }
  .cmn_item:nth-child(n+2){
    margin-top: 40px;
  }
  .cmn_item:nth-child(odd):before{
    left: auto;
    right: 0;
  }
  .cmn_item:nth-child(even):before{
    left: 0;
  }
  .cmn_item:nth-child(odd) .cmn_item1,
  .cmn_item:nth-child(even) .cmn_item2{
    order: 1;
  }
  .cmn_item:nth-child(odd) .cmn_item2,
  .cmn_item:nth-child(even) .cmn_item1{
    order: 2;
  }
  .cmn_item1{
    width: 38.48%;
  }
  .cmn_item2{
    margin-top: 0;
    width: 61.51%;
  }
  .cmn_item:nth-child(odd) .cmn_item2{
    padding: 0 65px;
  }
  .cmn_item:nth-child(even) .cmn_item2{
    padding: 0 60px;
  }
  .cmn_item_img.img_fit{

  }
  .cmn_item_nbr{
    font-size: 18px;
  }
  .cmn_item_title{
    margin-top: 20px;
    font-size: 21px;
  }
  .cmn_item_title p{
    letter-spacing: 0.075em;
  }
  .cmn_item_text{
    margin-top: 20px;
  }

  .sdgs_logo.pos1,
  .sdgs_logo.pos2{
    width: 80px;
  }
  .sdgs_logo.pos2{
    width: 113px;
  }
}
@media (min-width:1024px){

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  .tt2_ja{
    font-size: 16px;
    margin-top: 15px;
  }*/
  .tt2_ja{
    margin-top: 5px;
    font-size: 38px;
  }
  .tt2_ja2{
    margin-top: 6px;
    font-size: 24px;
  }
  .tt2_img{
    top: 60%;
  }

  /*共通メイン*/
  .cmn_box{

  }
  .cmn_title{
    margin-top: 26px;
    font-size: 30px;
  }
  .cmn_text{
    margin-top: 22px;
    font-size: 17px;
    text-align: center;
  }

  /*共通item*/
  .cmn_item_content{
    margin-top: 57px;
  }
  .cmn_item{
    padding: 70px 0;
  }
  .cmn_item:nth-child(n+2){
    margin-top: 52px;
  }
  .cmn_item1{

  }
  .cmn_item2{
  }
  .cmn_item:nth-child(odd) .cmn_item2{
    padding: 0 58px 0 65px;
  }
  .cmn_item:nth-child(even) .cmn_item2{
    padding: 0 71px 0 70px;
  }
  .cmn_item_img.img_fit{

  }
  .cmn_item_nbr{
    margin-top: 5px;
    font-size: 25px;
  }

  .pg_professional .cmn_item_nbr{

  }
  .cmn_item_title{
    margin-top: 7px;
    font-size: 30px;
  }
  .cmn_item_text{
    margin-top: 25px;
  }
  .cmn_item_content.torikumi .cmn_item2{
    margin-top: -5px;
  }
  .cmn_item_content.torikumi .cmn_item{
    padding: 70px 0 107px;
  }

  .sdgs_outer{
    width: 228px;
  }
  .sdgs_logo.pos1,
  .sdgs_logo.pos2{
    width: 114px;
  }
}
@media (min-width:1200px){

  /* コンテナ */
  .container.wide{
    max-width: 1720px;
    padding-right: 100px;
    padding-left: 100px;
  }

  /* 見出し */
  .tt2_ja{
    margin-top: 7px;
    font-size: 48px;
  }
  .tt2_img{
    top: 66%;
    /*    width: 239px;
        height: 173px;*/
  }

  /*共通メイン*/
  .cmn_box{

  }
  .cmn_title{

  }
  .cmn_text{
    font-size: 18px;
  }
  .cmn_text p{
    letter-spacing: 0.075em;
  }

  /*共通item*/
  .cmn_item_content{

  }
  .cmn_item{

  }
  .cmn_item1{

  }
  .cmn_item2{

  }
  .cmn_item_img.img_fit{

  }
  .cmn_item_nbr{

  }
  .cmn_item_title{

  }
  .cmn_item_text{

  }

}
@media (min-width:1540px){
  .tt2_img{
    top: 40%;
  }
}


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

}
.pg_home .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  padding-top: 50px;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  padding-top: 50px;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
}

/*不動産の悩み、すぐに解決！
あなたの街の頼れる不動産相談窓口*/
.home_about_wrap{

}
.home_about_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_content,
.home_about_content > *{
  position: relative;
  z-index: 1;
}
.home_about_content:before{
  content: "";
  position: absolute;
  z-index: 1;
  background: #fbf6ed;
  width: 100vw;
  height: 1000px;
  top: -23.5%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 50px 0px;
}
.home_about_box1,
.home_about_box2{
  width: 100%;
}
.home_about_box1{

}
.home_about_box2{
  margin-top: 30px;
}
.home_about_img{
  box-shadow: 5px 5px #0075a9;
  border-radius: 50px;
}
.home_about_img img{
  border-radius: 50px;
}
.home_about_title{
  font-weight: 700;
  font-size: 20px;
  line-height: 1.533;
}
.home_about_text{
  margin-top: 10px;
  line-height: 2.25;
  text-align: justify;
}

/*不動産のお悩み相談*/
.home_business_wrap{

}
.home_business_content{
  margin: 50px -15px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_business_item{
  width: 100%;
  padding: 0 15px;
}
.home_business_item:nth-child(n+2){
  margin-top: 15px;
}
.home_business_item_inner{
  border-radius: 20px;
  background: #faf8f4;
  box-shadow: 0px 0px 5px 0px rgba(22, 22, 22, 0.35);
  height: 100%;
}
.pg_home .section.sec2 .home_business_item_inner{
  box-shadow:none;
}
.home_business_title{
  text-align: center;
  border-radius: 20px 20px 0 0;
  background: var(--sub-color);
  color: #fff;
}
.home_business_title.home{
  border-radius: 20px;
  padding: 5px 0;
}
.home_business_title1{
  padding: 10px 0;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
}
.home_business_title2{
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}
.home_business_text{
  padding: 10px 15px;
  font-size: 18px;
  line-height: 1.875;
}
.home_business_text p{
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}

/*不動産のお悩み、まるごとご相談ください*/
.home_business_box_content{
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_business_box_content,
.home_business_box_content > *{
  position: relative;
  z-index: 1;
}
.home_business_box_content:before{
  content: "";
  position: absolute;
  z-index: 1;
  background: #fbf6ed;
  width: 100vw;
  height: 1000px;
  top: 55.5%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50px 0 0px 0px;
}
.home_business_box1,
.home_business_box2{
  width: 100%;
}
.home_business_box1{
  order: 2;
  margin-top: 30px;
}
.home_business_box2{
  order: 1;
  margin-top: 30px;
}
.home_business_box_img.img_fit{
  border-radius: 50px;
  box-shadow: -5px 5px #0075a9;
}
.home_business_box_img.img_fit:before{
  padding-top: 99.14%;
}
.home_business_box_img.img_fit img{
  border-radius: 50px;
}
.home_business_box_content .read_more{

}

/*○○様へ*/
.home_item_content_wrap{

}
.home_item_content{

}
.home_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  border-radius: 30px;
}
.home_item1,
.home_item2{
  width: 100%;
}
.home_item:nth-child(n+2){
  margin-top: 30px;
}
.home_item1{
  order: 2;
  color: #fff;
  background: #0075a9;
  border-radius: 0 0 30px 30px;
  padding: 20px 15px;
}
.home_item2{
  order: 1;
  border-radius: 30px 30px 0 0;
}
.home_item_title{
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}
.home_item_sub_title{
  margin-top: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
}
.home_item_text{
  margin-top: 10px;
  font-size: 18px;
  line-height: 2.25;
  text-align: justify;
}
.home_item_img.img_fit{
  height: 100%;
  border-radius: 30px 30px 0 0;
}
.home_item_img.img_fit:before{
  padding-top: 62.03%;
}
.home_item_img.img_fit img{
  border-radius: 30px 30px 0 0;
}
.home_item .read_more a{
  color: #181818;
  background: #fff;
}
.home_item .read_more a:hover{
  background: #262835;
  color: #fff;
}
.home_section_img{
  width: 150px;
  padding-left: 15.5%;
}
.home_item .read_more a{
  border: 1px solid transparent;
}



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

}
@media (min-width:375px){
  .home_business_title1{
    font-size: 14px;
  }
}
@media (max-width:767px){

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

  }
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 70px;
    padding-bottom: 0;
  }

  /*不動産の悩み、すぐに解決！
  あなたの街の頼れる不動産相談窓口*/
  .home_about_wrap{

  }
  .home_about_content{

  }
  .home_about_content:before{
    top: -15%;
  }
  .home_about_box1,
  .home_about_box2{

  }
  .home_about_box1{
    width: 38.48%;
  }
  .home_about_box2{
    width: 55.26%;
  }
  .home_about_img{

  }
  .home_about_title{
    font-size: 22px;
  }
  .home_about_text{
    margin-top: 30px;
    font-size: 18px;
  }

  /*不動産のお悩み相談*/
  .home_business_wrap{

  }
  .home_business_content{
    margin: 40px -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: 20px;
  }
  .home_business_item_inner{

  }
  .home_business_title{
    padding: 5px 0;
  }
  .home_business_title1{
    font-size: 15px;
  }
  .home_business_title2{
    font-size: 14px;
  }
  .home_business_text{
    padding: 20px 15px;
  }

  /*不動産のお悩み、まるごとご相談ください*/
  .home_business_box_content{
    margin-top: 50px;
  }
  .home_business_box_content:before{
    top: 30%;
  }
  .home_business_box1{
    margin-top: 0;
    order: 1;
    width: 57.23%;
  }
  .home_business_box2{
    margin-top: 0;
    order: 2;
    width: 38.48%;
  }
  .home_business_box_img.img_fit{

  }
  .home_business_box_content .read_more{
    justify-content: flex-start;
  }
  .home_business_title.home{
    padding: 24px 0;
  }

  /*○○様へ*/
  .home_item_content_wrap{

  }
  .home_item_content{

  }
  .home_item{

  }
  .home_item:nth-child(n+2){
    margin-top: 15px;
  }
  .home_item1{

  }
  .home_item2{

  }
  .home_item_title{
    font-size: 26px;
  }
  .home_item_sub_title{
    margin-top: 5px
  }
  .home_item_text{
    margin-top: 20px;
  }
  .home_item_img.img_fit{

  }
  .home_section_img{
    width: 250px;
    padding-left: 15.5%;
  }


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

  }
  .pg_home .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 107px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }

  /*不動産の悩み、すぐに解決！
  あなたの街の頼れる不動産相談窓口*/
  .home_about_wrap{

  }
  .home_about_content{
  }
  .home_about_content:before{
    top: -25%;
    left: auto;
    right: 0;
    transform: none;
    height: 785px;
  }
  .home_about_box1,
  .home_about_box2{

  }
  .home_about_box1{

  }
  .home_about_box2{

  }
  .home_about_img{

  }
  .home_about_title{
    font-size: 28px;
  }
  .home_about_text{
    margin-top: 40px;
    font-size: 18px;
    padding-right: 10px;
  }

  /*不動産のお悩み相談*/
  .home_business_wrap{

  }
  .home_business_content{
    margin: 50px -15px 0;
  }
  .home_business_item{

  }
  .home_business_item:nth-child(n+3){
    margin-top: 33px;
  }
  .home_business_item_inner{

  }
  .home_business_title{
    padding: 7px 0;
  }
  .home_business_title1{
    font-size: 20px;
  }
  .home_business_title2{
    margin-top: 3px;
    font-size: 18px;
  }
  .home_business_text{
    padding: 20px 15px;
  }

  /*不動産のお悩み、まるごとご相談ください*/
  .home_business_box_content{
    margin-top: 153px;
  }
  .home_business_box_content:before{
    left: -45px;
    transform: none;
    top: 35.53%;
    height: 785px;
    margin-right: -15px;
  }
  .home_business_box1{
    margin-top: 32px;
  }
  .home_business_box2{

  }
  .home_business_box_img.img_fit{

  }
  .home_business_box_content .read_more{

  }

  /*○○様へ*/
  .home_item_content_wrap{

  }
  .home_item_content{

  }
  .home_item{

  }
  .home_item:nth-child(n+2){
    margin-top: 20px;
  }
  .home_item:nth-child(odd) .home_item1,
  .home_item:nth-child(even) .home_item2{
    order: 1;
    border-radius: 30px 0 0 30px;
  }
  .home_item:nth-child(odd) .home_item2,
  .home_item:nth-child(even) .home_item1{
    order: 2;
    border-radius: 0 30px 30px 0;
  }
  .home_item1{
    width: 38.48%;
  }
  .home_item2{
    width: 61.51%;
  }
  .home_item_title{
    font-size: 30px;
  }
  .home_item_sub_title{
    margin-top: 9px;
    font-size: 18px;
  }
  .home_item_text{
    margin-top: 33px;
  }
  .home_item_img.img_fit{

  }
  .home_item_img.img_fit:before{
    padding-top: 108.03%;
  }
  .home_item:nth-child(odd) .home_item_img.img_fit img{
    border-radius: 0 30px 30px 0;
  }
  .home_item:nth-child(even) .home_item_img.img_fit img{
    border-radius: 30px 0 0 30px;
  }
  .home_section_img{
    width: auto;
  }


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

  /*不動産の悩み、すぐに解決！
  あなたの街の頼れる不動産相談窓口*/
  .home_about_wrap{

  }
  .home_about_content{

  }
  .home_about_content:before{
    top: -25%;
    height: 785px;
  }
  .home_business_box_content:before{
    top: 42.53%;
  }
  .home_about_box1,
  .home_about_box2{

  }
  .home_about_box1{

  }
  .home_about_box2{

  }
  .home_about_img{

  }
  .home_about_title{
    font-size: 30px;
  }
  .home_about_text{
    padding-right: 20px;
  }

  /*不動産のお悩み相談*/
  .home_business_wrap{

  }
  .home_business_content{

  }
  .home_business_item{
    padding: 0 15px;
  }
  .home_business_item_inner{

  }
  .home_business_title{

  }
  .home_business_title1{
    font-size: 22px;
  }
  .home_business_title2{

  }
  .home_business_text{
    padding: 21px 37px 40px;
  }

  /*不動産のお悩み、まるごとご相談ください*/
  .home_business_box_content{

  }
  .home_business_box1{

  }
  .home_business_box2{

  }

  .home_business_box_img.img_fit{

  }

  /*○○様へ*/
  .home_item_content_wrap{

  }
  .home_item_content{

  }
  .home_item{

  }
  .home_item:nth-child(n+2){
    margin-top: 15px;
  }
  .home_item:nth-child(odd) .home_item1{
    padding: 37px 35px;
  }
  .home_item:nth-child(even) .home_item1 {
    padding: 35px 37px 35px 30px;
  }
  .home_item1{
  }
  .home_item2{

  }
  .home_item_title{
    font-size: 30px;
  }
  .home_item_sub_title{
    font-size: 20px;
  }
  .home_item_text{

  }
  .home_item_img.img_fit{

  }
  .home_item_img.img_fit:before{
    padding-top: 86.03%;
  }
  .home_section_img{
    padding-left: 26.5%;
  }


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

  /*不動産の悩み、すぐに解決！
  あなたの街の頼れる不動産相談窓口*/
  .home_about_wrap{

  }
  .home_about_content{

  }
  .home_about_content:before{
    top: -43%;
  }
  .home_about_box1,
  .home_about_box2{

  }
  .home_about_box1{

  }
  .home_about_box2{

  }
  .home_about_img{
    margin-top: 70px;
  }
  .home_about_title{

  }
  .home_about_text{

  }

  /*不動産のお悩み相談*/
  .home_business_wrap{

  }
  .home_business_content{

  }
  .home_business_item{

  }
  .home_business_item_inner{

  }
  .home_business_title{

  }
  .home_business_title1{
    padding: 0;
  }
  .home_business_title2{

  }
  .home_business_text{

  }

  /*不動産のお悩み、まるごとご相談ください*/
  .home_business_box_content{

  }
  .home_business_box_content:before{
    width: 116.11%;
    left: -45px;
    top: 45%;
  }
  .home_business_box1{

  }
  .home_business_box2{

  }
  .home_business_box_img.img_fit{

  }

  /*○○様へ*/
  .home_item_content_wrap{

  }
  .home_item_content{

  }
  .home_item{

  }
  .home_item1{

  }
  .home_item2{

  }
  .home_item_title{

  }
  .home_item_sub_title{
    font-size: 24px;
  }
  .home_item_text{

  }
  .home_item_img.img_fit{

  }
  .home_item_img.img_fit:before{
    padding-top: 62.03%;
  }


}





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

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

@media (max-width:374px){

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

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

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

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


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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

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

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

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

.posts_back_list{

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

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



/*******************************
*　ギャラリー（サムネ横ver）
********************************/
.pg_xxx{

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

/* スライド */
.gallery_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.gallery_box1{
  width: 100%;
}
.gallery_box2{
  width: 100%;
  margin-top: 15px;
}

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.34%;
}
.gallery_main .img.img_fit img{
  object-fit: contain;
  object-position: center;
}
/* サムネ */
.gallery_thumb{

}
.gallery_thumb .img{
  width: 100%;
  background: #EEE;
  overflow: hidden;
}
.gallery_thumb .img.img_fit:before{
  padding-top: 76.47%;
}
.gallery_thumb .img.img_fit img{

}


/* 詳細 */
.gallery_detail{

}
.gallery_detail .meta{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border-bottom: 1px solid #e5e5e5;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;

}
.gallery_detail .meta .title{
  font-size: 18px;
  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;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* コピー用 */
@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{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
  }

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

  }

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 18px;
  }
  .gallery_detail .meta .price{
    font-size: 18px;
  }
  .gallery_detail .post_content{
    font-size: 16px;
    line-height: 2;
  }
  .gallery_detail .read_more{
    margin-top: 50px;
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 65.76%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
  .gallery_detail .meta .title{
    font-size: 20px;
  }
  .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){


}





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

.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-size: 21px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #d2d2d2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #d2d2d2;
}
.pg_contact .formTh {
  padding: 12px 15px 16px 20px;
  background: #fbf6ed;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid currentColor;
  border-radius: 24px;
  background: var(--main-color);
  /* border-radius: 27px; */
  color: #FFF;
  padding: 14px 20px;
  margin: 43px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  background: #262835;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  font-size: 16px;
  line-height: 2.25em;
  letter-spacing: 0.08em;;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 150px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 26px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #556fb5;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

.privacy_txt_type1{
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.privacy_txt_type1_b{
  text-indent: -1em;
  padding-left: 1em;
}
.privacy_txt_type1_c{
  text-indent: -3em;
  padding-left: 3em;
}
.privacy_txt_type2{

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

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

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


@media only screen and (max-width: 1023px){
  .radioArea {
    padding: 0 5px;
  }
  .radioArea .d-inline-block .label {
    margin-left: 11px;
  }


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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


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

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


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

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

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

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

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


/*******************************
*　不動産事業について/仕業の先生方
********************************/
.pg_realEstateBusiness{

}
.pg_realEstateBusiness .section.sec1{
  padding-top: 0;
  padding-bottom: 80px;
  position: relative;
}
.pg_realEstateBusiness .section.sec1:before{
  content: "";
  display: block;
  width: 29.47%;
  aspect-ratio: 572 / 566;
  background-image: url(/system_panel/uploads/images/img4.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -9%;
  left: 0;
  z-index: 2;
}
.pg_realEstateBusiness .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_realEstateBusiness .section.sec3{
  padding-top:  50px;
  padding-bottom: 0;
}
.pg_realEstateBusiness .section.sec4{
  padding-top: 100px;
  padding-bottom: 0;
}
.pg_professional{

}
.pg_professional .section.sec1{
  padding-top: 0;
  padding-bottom: 0px;
  position: relative;
}
.pg_professional .section.sec1:before{
  content: "";
  display: block;
  width: 24.47%;
  aspect-ratio: 470 / 414;
  background-image: url(/system_panel/uploads/images/img3.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: auto;
  left: 0;
}
.pg_professional .section.sec2{
  padding-top: 50px;
  padding-bottom: 0;
}

/*背景*/
.haikei{
  position: relative;
  z-index: 1;
}
.realEstateBusiness_right_img,
.realEstateBusiness_left_img,
.professional_right_img,
.professional_left_img{
  position: absolute;
  z-index: 1;
}
.realEstateBusiness_right_img{
  width: 18.38%;
  top: 0;
  right: 0;
}
.realEstateBusiness_left_img{
  width: 29.79%;
  top: 7.7%;
  left: 0;
}
.professional_right_img{
  width: 13.08%;
  top: 0;
  right: 10%;
}
.professional_left_img{
  width: 27.47%;
  top: 0;
  left: 0;
}
.blue_mark{
  background: #dcebf2;
  position: relative;
  z-index: 1;
}
.blue_mark:after{
  content: "";
  background: url(/system_panel/uploads/images/20250404151502155930.png)no-repeat center center/contain;
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -22px;
  transform: translateX(-50%);
  width: 100%;
  height: 23px;

}

/*SHITAUNE不動産コンシェルジュが解決します！*/
.fukidashi_content{
  position: relative;
  z-index: 1;
}
.fukidashi_text:before{
  background: url(/system_panel/uploads/images/20250404215611432250.png)no-repeat center center/contain;
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.fukidashi_text p{
  padding: 40px 30px 90px;
  font-weight: 700;
  line-height: 1.875;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.fukidashi_text,
.fukidashi_text > *{
  position: relative;
  z-index: 2;
}
.fukidashi_img{
  width: 100%;
  display: flex;
  justify-content: end;
  right: 0;
  position: relative;
  z-index: 2;
}

.cmn_text .br{
  margin-top: 20px;
}
/* コピー用 */
@media (max-width:374px){

}
@media (min-width:375px){
  .realEstateBusiness_left_img{
    top: 7%;
  }

}
@media (max-width:767px){
  .fukidashi_text{
    width: 345px;
    margin-inline:auto;
  }
  .fukidashi_text:before{
    aspect-ratio: 650 / 1060;
  }
}
@media (min-width:768px){
  .pg_realEstateBusiness{

  }
  .pg_realEstateBusiness .section.sec1{
    padding-top: 0;
    padding-bottom: 70px;
  }
  .pg_realEstateBusiness .section.sec1:before{
    width: 21.47%;
    bottom: -20%;
    top:auto;
  }
  .pg_realEstateBusiness .section.sec2{
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .pg_realEstateBusiness .section.sec3{
    padding-top:  70px;
    padding-bottom: 0;
  }
  .pg_realEstateBusiness .section.sec4{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .pg_professional{

  }
  .pg_professional .section.sec1{
    padding-top: 0;
    padding-bottom: 0px;
  }
  .pg_professional .section.sec1:before{
    width: 25.47%;
    bottom:auto;
    top:-20px;
  }
  .pg_professional .section.sec2{
    padding-top: 70px;
    padding-bottom: 0;
  }

  /*背景*/
  .haikei{
  }
  .realEstateBusiness_right_img{

  }
  .realEstateBusiness_left_img{
    top: 6%;
  }
  .professional_right_img{
    width: 7.08%;
    right: 20%;
  }
  .professional_left_img{
    width: 24.47%;
  }

  /*SHITAUNE不動産コンシェルジュが解決します！*/
  .fukidashi_content{
    margin-top: 30px;
  }
  .fukidashi_text:before{
    background: url(/system_panel/uploads/images/20250404120856564111.png)no-repeat center center/contain;
  }
  .fukidashi_text p{
    margin: 0 auto;
    padding: 50px 120px 70px;
    font-size: 11px;
  }
  .fukidashi_img{
    width: 15.39%;
    position: absolute;
    z-index: 2;
    top: 27%;
    right: 5%;
  }

  .cmn_text .br{
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .pg_realEstateBusiness{

  }
  .pg_realEstateBusiness .section.sec1{
    padding-top: 0;
    padding-bottom: 111px;
  }
  .pg_realEstateBusiness .section.sec1:before{
    width: 27.47%;
    bottom: -20%;
    top: auto;
  }
  .pg_realEstateBusiness .section.sec2{
    padding-top: 59px;
    padding-bottom: 100px;
  }
  .pg_realEstateBusiness .section.sec3{
    padding-top: 140px;
    padding-bottom: 0;
  }
  .pg_realEstateBusiness .section.sec4{
    padding-top: 135px;
    padding-bottom: 0;
  }
  .pg_professional{

  }
  .pg_professional .section.sec1{
    padding-top: 0;
    padding-bottom: 23px;
  }
  .pg_professional .section.sec1:before{
    width: 18.47%;
    bottom: 46%;
    top: auto;
  }
  .pg_professional .section.sec2{
    padding-top: 58px;
    padding-bottom: 0;
  }

  /*背景*/
  .haikei{
  }
  .realEstateBusiness_right_img{
    top: -10px;
  }
  .realEstateBusiness_left_img{
    top: 5.7%;
  }
  .professional_right_img{

  }
  .professional_left_img{

  }

  .home_business_content.realEstateBusiness{
    margin-top: 86px;
  }

  /*SHITAUNE不動産コンシェルジュが解決します！*/
  .fukidashi_content{
    margin-top: 40px;
  }
  .fukidashi_text:before{
  }
  .fukidashi_text p{
    width: 810px;
    font-size: 14px;
  }
  .fukidashi_img{
    top: 25%;
    right: 5.7%;
  }

}
@media (min-width:1200px){
  .pg_realEstateBusiness .section.sec1:before{
    width: 27.47%;
    bottom: -20%;
  }

  .pg_professional .section.sec1:before{
    width: 16.47%;
    bottom: 50%;
  }


  /*背景*/
  .haikei{
  }
  .realEstateBusiness_right_img{

  }
  .realEstateBusiness_left_img{
    top: 2.7%;
  }
  .professional_right_img{
    right: 21.3%;
  }
  .professional_left_img{
    top: 5.6%;
  }

  /*SHITAUNE不動産コンシェルジュが解決します！*/
  .fukidashi_content{
    margin-top: 55px;
  }
  .fukidashi_text p{
    padding: 65px 0 105px;
    font-size: 18px;
  }
  .fukidashi_text{

  }
  .fukidashi_img{
    top: 25.5%;
    right: 7%;
  }

}

@media (min-width:1800px){
  .pg_realEstateBusiness .section.sec1:before{
    width: 29.79%;
    bottom: -21.48%;;
  }

  .pg_professional .section.sec1:before{
    width: 22.47%;
    bottom: 0;
  }

  .fukidashi_img{
    right: 10%;
  }
}
/*******************************
*　提携会社
********************************/
.pg_partner{

}
.pg_partner .section.sec1{
  padding-top: 0;
  padding-bottom: 50px;
}
.pg_partner .section.sec2{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_partner .section.sec3{
  padding-top: 50px;
  padding-bottom: 0;
}
.pg_partner .section.sec1 .cmn_text{
  line-height: 1.875em;
}

/*背景*/
.partner_right_img,
.partner_left_img{
  position: absolute;
  z-index: 1;
  bottom: 0;
}
.partner_right_img{
  width: 9.06%;
  right: 10.5%;
}
.partner_left_img{
  width: 29.06%;
  left: 0;
}

/*ご入居者様やご遺族様が抱えるこんなお悩みはございませんか？*/
.partner_item_content{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.partner_item{
  width: 100%;
}
.partner_item:nth-child(n+2){
  margin-top:16px;
}
.partner_item_inner{
  background: #faf8f4;
  border: 3px solid var(--sub-color);
  border-radius: 20px;
}
.partner_item_text{
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.36em;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner_item_text p{
  letter-spacing: 0;
}

/*SHITAUNE不動産コンシェルジュでは、ご入居様やご遺族様からのご要望や状況に応じて、柔軟かつ丁寧に対応します。*/
.partner_box_content{
  margin: 36px -5px 0;
}
.partner_box{
  padding: 0 5px;
}
.partner_box:nth-child(n+3){
  margin-top: 16px;
}
.partner_box_inner{
  border-radius: 20px;
  box-shadow: 0px 0px 4px 0px rgba(0,0,0,0.4);
  border-radius: 20px;
}
.partner_box_img.img_fit:before{
  padding-top: 84.2%;
}
.partner_box_img.img_fit{
  border-radius: 20px 20px 0 0;
}
.partner_box_img.img_fit img{
  border-radius: 20px 20px 0 0;
}
.partner_box_title{
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: var(--sub-color);
  border-radius: 0 0 20px 20px;
  font-size: 15px;
  font-weight: 700;
}

.cmn_title.partner{
  position: relative;
}
.cmn_title.partner:before,
.cmn_title.partner:after{
  content: "";
  display: block;
  width: 4.67%;
  aspect-ratio:71 / 61 ;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cmn_title.partner:before{
  background-image: url(/system_panel/uploads/images/left_img.png);
  left: 0;
}
.cmn_title.partner:after{
  background-image: url(/system_panel/uploads/images/right_img.png); 
  right: 0;
}

.cmn_text.center{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4em;
}
.partner_box_text.cmn_text{
  margin-top: 36px;
  font-size: 18px;
}
.pg_partner .section.sec3 .cmn_title{
  font-size: 17px;
}

/*取り組み*/
.cmn_item_content.torikumi{

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

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

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

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

  }
  .pg_partner .section.sec1{
    padding-top: 0;
    padding-bottom: 100px;
  }
  .pg_partner .section.sec2{
    padding-top: 30px;
    padding-bottom: 70px;
  }
  .pg_partner .section.sec3{
    padding-top: 70px;
    padding-bottom: 0;
  }

  /*背景*/
  .partner_right_img,
  .partner_left_img{
  }
  .partner_right_img{
    right: 10.41%;
  }
  .partner_left_img{
    left: 0;
  }

  /*ご入居者様やご遺族様が抱えるこんなお悩みはございませんか？*/
  .partner_item_content{
    margin: 40px -10px 0;
  }

  .partner_item_inner{
    height: 100%;
  }
  .partner_item_text{
    font-size: 20px;
    padding: 22px 0;
  }

  /*SHITAUNE不動産コンシェルジュでは、ご入居様やご遺族様からのご要望や状況に応じて、柔軟かつ丁寧に対応します。*/
  .partner_box_content{
    margin-top: 40px;
  }
  .partner_box{

  }
  .partner_box:nth-child(n+3){
    margin-top: 0;
  }
  .partner_box:nth-child(n+3){
    margin-top: 10px;
  }
  .partner_box_img.img_fit{

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

  .cmn_text.center{
    text-align: center;
    font-size: 18px;
  }

  .pg_partner .section.sec3 .partner_box_content{
    margin-top: 27px;
  }
  .partner_box_text.cmn_text{
    margin-top: 40px;
  }

  .cmn_title.partner:before{
    background-image: url(/system_panel/uploads/images/left_img.png);
    left: calc(50% - 250px);
  }
  .cmn_title.partner:after{
    background-image: url(/system_panel/uploads/images/right_img.png); 
    right: calc(50% - 250px);
  }
  .pg_partner .section.sec3 .cmn_title{
    font-size: 22px;
  }

  /*取り組み*/
  .cmn_item_content.torikumi .cmn_item:before{
    width:94.14%; 
  }
  .cmn_item_content.torikumi{

  }
  .cmn_item_content.torikumi .cmn_item:nth-child(odd) .cmn_item2{
    padding: 0 65px 0 0;
  }
  .cmn_item_content.torikumi .cmn_item:nth-child(even) .cmn_item2{
    padding: 0 0 0 65px;
  }
  .cmn_item_content.torikumi .cmn_item1{
    width: 42.79%;
  }
  .cmn_item_content.torikumi .cmn_item2{
    width: 51.35%;
  }
}
@media (min-width:1024px){
  .pg_partner{

  }
  .pg_partner .section.sec1{
    padding-top: 0;
    padding-bottom: 114px;
  }
  .pg_partner .section.sec2{
    padding: 27px 0 77px;
  }
  .pg_partner .section.sec3{
    padding: 100px 0 0;
  }

  /*背景*/
  .partner_right_img,
  .partner_left_img{
  }
  .partner_right_img{
    right: 10.41%;;
  }
  .partner_left_img{
    left: 0;
  }


  .cmn_title.partner:before{
    background-image: url(/system_panel/uploads/images/left_img.png);
    left: calc(50% - 350px);
  }
  .cmn_title.partner:after{
    background-image: url(/system_panel/uploads/images/right_img.png); 
    right: calc(50% - 350px);
  }

  /*ご入居者様やご遺族様が抱えるこんなお悩みはございませんか？*/
  .partner_item_content{
    margin: 55px -5px 0;
  }

  .partner_item{
    width: 50%;
    padding: 0 10px;
  }
  .partner_item:nth-child(n+2){
    margin-top:0;
  }
  .partner_item:nth-child(n+3){
    margin-top: 20px;
  }
  .partner_item_inner{

  }
  .partner_item_text{
    font-size: 16px;
  }

  /*SHITAUNE不動産コンシェルジュでは、ご入居様やご遺族様からのご要望や状況に応じて、柔軟かつ丁寧に対応します。*/
  .partner_box_content{
    margin-top: 55px;
  }
  .partner_box{

  }
  .partner_box:nth-child(n+3){
    margin-top: 0;
  }
  .partner_box:nth-child(n+4){
    margin-top: 40px;
  }
  .partner_box_img.img_fit{

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

  .cmn_text.center{
    font-size: 20px;
    margin-top: 36px;
  }

  .pg_partner .section.sec3 .partner_box_content{
    margin-top: 35px;
  }
  .partner_box_text.cmn_text{
    margin-top: 50px;
  }
  .pg_partner .section.sec3 .cmn_title{
    font-size: 30px;
  }

  /*取り組み*/
  .cmn_item_content.torikumi .cmn_item:nth-child(odd) .cmn_item2{

  }
  .cmn_item_content.torikumi .cmn_item:nth-child(even) .cmn_item2{

  }
}
@media (min-width:1200px){
  .cmn_title.partner:before{
    background-image: url(/system_panel/uploads/images/left_img.png);
    left: calc(50% - 550px);
  }
  .cmn_title.partner:after{
    background-image: url(/system_panel/uploads/images/right_img.png); 
    right: calc(50% - 550px);
  }

  .partner_item_text{
    font-size: 15px;
  }
  .partner_item{
    width: 33.33%;
    padding: 0 5px;
  }
  .partner_item:nth-child(n+3){
    margin-top: 0;
  }
  .partner_item:nth-child(n+4){
    margin-top: 31px;
  }



}
@media (min-width:1500px){
  .partner_item_text{
    font-size: 18px;
  }

  .partner_box_title{
    font-size: 22px;
  }
}
@media (min-width:1700px){
  .partner_item_text{
    font-size: 22px;
  }

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

}
.pg_company .section.sec1{
  padding-top: 0;
  padding-bottom:50px;
}
.pg_company .section.sec2{
  padding-top: 40px;
  padding-bottom: 40px;
  background: #fbf6ed;
}
.pg_company .section.sec3{
  padding-top:60px;
  padding-bottom: 0;
}
.pg_company .section.sec4{
  padding-top: 70px;
}
.pg_company .section.sec5{
  padding-top: 20px;
}
.pg_company .section.sec6{
  padding-top: 26px;
}

/*テーブル*/
.company_tbl{
  margin-top: 36px;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  border: 1px solid #d2d2d2;
  font-size: 16px;
  font-weight: 400;
}
.company_tbl .table_rows_th{
  background: #fbf6ed;
}
.company_tbl .table_rows_td{
  background: #fff;
}

/*地図*/
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}

/*取り組み*/
.cmn_title.torikumi .tt2{
  margin-bottom: 23px;
}

/*共通*/
.cmn_text.torikumi{
  line-height: 2em;
  margin-bottom: 30px;
}

/*問い合わせ*/
.illust_title{
  position: relative;
}
.illust_title:before{
  content: "";
  display: block;
  width: 12.79%;;
  aspect-ratio: 142 / 164;
  background-image: url(/system_panel/uploads/images/illust.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 48%;
  left:0;
  transform: translateY(-50%);
}
.illust_title .cmn_title.torikumi{
  margin-top: 20px;
}

.pg_contact.sec5 .illust_title:before{
  display: none;
}

.privacy_item_box {
  padding: 30px 63px 30px 30px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 0;
}
/* コピー用 */
@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%;
    border-bottom: 0;
  }
  .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #d2d2d2;
  }

  .privacy_item_box{
    padding: 30px 16px;
  }
}
@media (min-width:768px){
  .pg_company{

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 80px;
  }
  .pg_company .section.sec2{
    padding-top: 57px;
    padding-bottom: 60px;
  }
  .pg_company .section.sec3{
    padding-top: 100px;
    padding-bottom: 0;
  }
  .pg_company .section.sec4{
    padding-top: 100px;
  }
  .pg_company .section.sec5{
    padding-top: 36px;
  }
  .pg_company .section.sec6{
    padding-top: 26px;
  }

  /*テーブル*/
  .company_tbl{
    margin-top: 50px;
  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 19.2px 15px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-right:0;
  }
  .company_tbl .table_rows_td{
    border-left:0;
    padding-left: 26px;
  }

  /*地図*/
  .gmap{
    margin-top: 50px;
  }
  .access_map iframe{
    height: 350px;
  }

  /*取り組み*/
  .cmn_title.torikumi .tt2{
    margin-bottom: 23px
  }

  /*共通*/
  .cmn_text.torikumi{
    margin-top: 30px;
    margin-bottom: 43px;
  }
  .cmn_title.torikumi{
    margin-top: 0;
  }

  /*問い合わせ*/
  .illust_title .cmn_title.torikumi{
    margin-top: 23px;
  }
  .pg_contact .cmn_text.torikumi{
    margin-top: 37px;
    margin-bottom: 51px;
  }
}
@media (min-width:1024px){
  .pg_company{

  }
  .pg_company .section.sec1{
    padding-top: 0;
    padding-bottom: 113px;
  }
  .pg_company .section.sec2{
    padding-top: 57px;
    padding-bottom: 78px;
  }
  .pg_company .section.sec3{
    padding-top: 120px;
    padding-bottom: 0;
  }
  .pg_company .section.sec4{
    padding-top: 120px;
  }
  .pg_company .section.sec5{
    padding-top: 36px;
  }
  .pg_company .section.sec6{
    padding-top: 26px;
  }

  /*テーブル*/
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

  }
  .company_tbl .table_rows_th{
    width: 284px;
  }
  .company_tbl .table_rows_td{

  }
  /*地図*/
  .gmap{
    margin-top: 70px;
  }
  .access_map iframe{
    height: 400px;
  }

  /*共通*/
  .cmn_text.torikumi{
    margin-top: 44px;
  }
  .cmn_title.torikumi{
    margin-top: 0;
  }
}
@media (min-width:1200px){


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

.illust_title.no_illust:before{
  display: none;
}

.thanks_text{
  margin-top: 30px;
}
/* コピー用 */
@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;
  }

  .illust_title.no_illust .cmn_title.torikumi{
    font-size: 21px;
  }

}

@media (min-width:768px){
  .ftr1_text{
    aspect-ratio:1223 / 963;
  }
  .ftr1_text:before{
    aspect-ratio:1223 / 963;
  }
}
@media (min-width:991px){
  .ftr1_text p{
    padding: 30px;
  }
}
@media (min-width:1024px){
  .thanks_text{
    text-align: center;
    margin-top: 30px;
  }
  .ftr1_text{
    aspect-ratio: 1040 / 291;
  }
  .ftr1_text:before{
    aspect-ratio: 1040 / 291;
  }
  .ftr1_text p{
    padding: 0;
  }
}
@media (min-width:1200px){


}

