@charset "UTF-8";

:root {
  --main-color: #443380;
  --sub-color: #f8b500;
}
#root{
  overflow: hidden;
}

/* 基本フォント: ゴシック */
body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #181818;

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

  /* 画面端までの余白 */
  /*  --margin-for-device-side: -15px;*/
}

@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 - 55vw);
  }
}
@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}


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

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

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

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

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

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

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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

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

.header_left_txt{
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 5px;
}
.header_left_txt p{
  letter-spacing: 0.015em;
}

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

  .header_right_top{
    display: none;
  }


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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 130px;
  }
  .header{
    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px 16px;
    /*    transition: all .2s;*/
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
    padding: 20px 16px 10px 16px;
  }

  /* TELボタン */
  .hdr_tel{

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

  .header_left{

  }
  .header_right{

  }
  .header_right_top{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;

  }
  .header_right_tel{

  }
  .header_right_tel1{
    font-size: 30px;
    font-weight: 500;
    font-family: "Oswald", sans-serif;
    letter-spacing: 0.2em;
    line-height: 1;
  }
  .header_right_tel2{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    margin-top: 8px;
  }
  .header_right_tel2 strong{
    display: none;
  }
  .hdr_contact_btn{
    width:120px;
    background: #443380;
    color: #fff;
    transition: all .2s;
    padding: 5px;
    margin-left: 15px;
  }
  .hdr_contact_btn:hover{
    background: var(--sub-color);
  }
  .hdr_contact_btn_inner{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #fff;
    font-size: 14px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    line-height: 1;
    padding: 13px 0 9px;
    position: relative;
  }
  .hdr_contact_btn_inner:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent #fff transparent;
    border-width: 0px 0px 10px 10px;
    position: absolute;
    bottom: 0;
    right: 0;
  }
  .header_right_btm{

  }

  .header_left_txt{
    margin-bottom: 14px;
  }
}
@media (min-width:1024px){

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

  /* ヘッダースリム */
  .header{
    padding: 20px 20px 0 30px;
  }
  .header.slim{

  }

  /* TELボタン */
  .hdr_tel{

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

  .header_left{

  }
  .header_right{

  }
  .header_right_top{

  }
  .header_right_tel{

  }
  .header_right_tel1{
    font-size: 24px;
  }
  .header_right_tel2{

  }
  .hdr_contact_btn{
    width: 225px;
  }
  .hdr_contact_btn_inner{

  }
  .header_right_btm{

  }
  .header_left_txt{
    font-size: 11px;
  }
}
@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

  /* ヘッダースリム */
  .header{
    padding: 20px 50px 20px 31px;
  }
  .header.slim{

  }

  .header_left{

  }
  .header_right{

  }
  .header_right_top{

  }
  .header_right_tel{

  }
  .header_right_tel1{
    font-size: 30px;
  }
  .header_right_tel2{

  }
  .hdr_contact_btn{

  }
  .hdr_contact_btn_inner{

  }
  .header_right_btm{
    margin-top: 16px;
  }


}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 46.87%;;
}

/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 30px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

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

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

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

/*MVリンク*/
.mv_pos{
  position: absolute;
  z-index: 2;
}
.mv_pos img{
  transition: all .2s;
}
.mv_pos:hover img{
  transform: scale(1.08);
}
.mv_pos.pos1{
  width: 12.65%;
  aspect-ratio:243 / 113;
  left: 9.2%;
  top: 27.7%;
}
.mv_pos.pos2{
  width: 11.3%;
  aspect-ratio:217 / 128;
  left:23.17%;
  top: 52.22%;
}
.mv_pos.pos3{
  width: 7.23%;
  aspect-ratio:139 / 60;
  left: 47.2%;
  top:54.44%;
}
.mv_pos.pos4{
  width: 12.44%;
  aspect-ratio:239 / 120;
  right: 19.79%;
  top: 57.777%;
}
.mv_pos.pos5{
  width: 6.25%;
  aspect-ratio:120 / 109;
  right: 18.8%;
  top: 19.6%;
}

@media (max-width:767px){
  /*  .mv_img.img_fit:before{
      padding-top: 200px;
    }
    .mv_pos.pos1{
      width: 50px;
      aspect-ratio: 243 / 113;
      left: 16px;
      top: 53px;
    }*/

  .mv_img.img_fit:before {
    padding-top: 51.87%;
  }
  .mv_pos.pos1 {
    width: 12.65%;
    aspect-ratio: 243 / 113;
    left: 6.2%;
    top: 26.7%;
  }
  .mv_pos.pos2{
    left: 21.17%;
  }
  .mv_pos.pos3{
    top: 51.44%;
  }
  .mv_pos.pos3{

  }
  .mv_pos.pos4{
    right: 16.79%;
    top: 56.777%;
  }
  .mv_pos.pos5{
    width: 6.25%;
    aspect-ratio:120 / 109;
    right: 16%;
    top: 17.9%;
  }
}
@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 46.87%;;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    /*    padding-top: calc(100vh - 130px);*/
    padding-top: 46.87%;;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    /*    padding-top: calc(100vh - 130px);*/
    padding-top: 46.87%;;
  }

  /* MVテキスト */
  .mv_txt{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt_p1{

  }
  .mv_txt_p2{

  }

}


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

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

}
.pg_header_mv_img.img_fit:before{
  padding-top: 200px;
}
.pg_header_txt{
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 15px;
  transform: translateX(-50%);
  width: 79.5%;
  color: #fff;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.pg_header_txt_en{
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1;
}
.pg_header_txt_ja{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  border-bottom: 1px solid #fff;
  margin-top: 7px;
  padding-bottom: 7px;
  line-height: 1.5;
}



@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv{
    /*height: 350px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_txt{
    bottom: 49px;
    width: 79.5%;
    padding-bottom: 30px;
  }
  .pg_header_txt_en{
    font-size: 75px;
  }
  .pg_header_txt_ja{
    font-size: 24px;
    margin-top: 7px;
    padding-bottom: 15px;
  }

}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 152px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 500px;
  }
  .pg_header_txt{
    bottom: 49px;
    width: 80%;
  }
  .pg_header_txt_en{
    font-size: 95px;
  }
  .pg_header_txt_ja{
    font-size: 26px;
    margin-top: 7px;
    padding-bottom: 24px;
  }

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


}



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

.footer{
  background: #fbfbfb;
  margin-top:0;
  padding-top: 30px;
  padding-bottom: 20px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 5px 0;
  margin-top: 30px;
}
.ftr_copy a:hover{
  color: #fff;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  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: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: var(--main-color);
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.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: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}


.ftr_contact_wrap{
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 17px;
  margin-top: 0;
  background: #fbfbfb;
  padding-top: 80px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1_tt{

}
.ftr_contact_box1_en{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box1_ja{
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
  margin-top: 7px;
}
.ftr_contact_box2{
  width: 100%;
}
.ftr_contact_box2 .read_more{
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}
.ftr_contact_box2 .read_more a{
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.ftr_contact_box2_tel{
  margin-top: 30px;
}
.ftr_contact_box2_tel1{
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 12px;
}
.ftr_contact_box2_tel2{
  font-size: 30px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  padding-top: 10px;
}

.ftr_contact_nav{

}
.ftr_links{

}
.ftr_link{

}

.ftr_1{
  text-align: center;
}
.ftr_logo{

}
.ftr_add{
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 2em;
  margin-top: 21px;
}
.ftr_2{

}
.ftr_2_tt{
  font-size: 14px;
  font-weight: 500;
}
.ftr_2 .ftr_links{

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

}
@media (max-width:767px){
  .pg_header_txt{
    width: 90%;
  }


  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_contact_box{
    text-align: center;
  }
  .ftr_contact_box2{
    margin-top: 30px;
  }
  .ftr_contact_nav,
  .ftr_2{
    display: none;
  }
  .ftr_add p{
    letter-spacing: 0;
    /*   font-size: 14px;*/
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 50px;
  }

  .ftr_contact_wrap{
    padding-top: 100px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 48.64%;
  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_en{
    font-size: 70px;
  }
  .ftr_contact_box1_ja{
    font-size: 22px;
  }
  .ftr_contact_box2{
    width: 48.64%;
    padding-top: 15px;
  }
  .ftr_contact_box2 .read_more a{
    font-size: 18px;
    width: 100%; 
    max-width: 100%;

  }
  .ftr_contact_box2 .read_more p{
    padding: 23px 0;
  }
  .ftr_contact_box2_tel{
    margin-top: 48px;
  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 28px;

  }

  .ftr_contact_nav{
    margin-top: 50px;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .ftr_link{
    font-size: 14px;
    font-weight: 500;
    font-family: "Noto Sans JP", sans-serif;
    padding: 0 10px;
    position: relative;
  }
  .ftr_contact_nav .ftr_link{
    padding: 0 15px;
  }
  .ftr_link:after{
    content: "／";
    position: absolute;
    top: 50%;
    right: -6px;
    transform: translateY(-50%);
  }
  .ftr_link:hover:after{
    color: #181818;
  }
  .ftr_link:last-child:after{
    display: none;
  }


  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_2{
    margin-top: 30px;
  }
  .ftr_2_tt{

  }
  .ftr_2 .ftr_links{
    margin-top: 12px;
  }

  .ftr_copy{
    margin-top: 46px;
  }

  .ftr_links.en{

  }
  .ftr_links.en .ftr_link{
    width: 33.333%;
    text-align:center;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ftr_links.en .ftr_link:nth-child(n+4){
    margin-top: 10px;
  }

  .ftr_links.top_links .ftr_link{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 25%;
    padding: 0 14px;
  }
}



@media (min-width:1024px){
  .footer{
    margin-top: 0;
    padding-top: 50px;
  }

  .body_home .ftr_contact_wrap{
    padding-top: 190px;
  }
  .ftr_contact_wrap{
    padding-top: 200px;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1_tt{

  }
  .ftr_contact_box1_en{
    font-size: 95px;
  }
  .ftr_contact_box1_ja{
    font-size: 26px;
  }
  .ftr_contact_box2{

  }
  .ftr_contact_box2 .read_more{

  }
  .ftr_contact_box2_tel{

  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 34px;
  }

  .ftr_contact_nav{
    margin-top: 100px;
  }
  .ftr_links{

  }
  .ftr_link{
    padding: 0 22px;
  }
  .ftr_contact_nav .ftr_link{
    padding: 0 22px;
  }

  .ftr_1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_2{

  }
  .ftr_2_tt{

  }
  .ftr_2 .ftr_links{

  }
  .ftr_links.top_links .ftr_link{
    width: auto;
    text-align: left;
  }

}
@media (min-width:1200px){
  .ftr_links.top_links .ftr_link{
    padding: 0 22px;
  }
}


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


/* テーブル用 */
.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: #443380;
}
.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: 100%;
  max-width: 255px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: #fff;
  /*border-radius: 27px;*/
  color: #181818;
  padding: 3px 3px;
  position: relative;
  z-index: 2;
  transition: 0.2s all;
  background: url(/system_panel/uploads/images/20250530171006117249.jpg)no-repeat center center/cover;
}
.read_more.lg a{
  background: url(/system_panel/uploads/images/btn_bg2.jpg)no-repeat center center/cover;
}
.read_more a:before{
  /*  content: "";
    position: absolute;
    z-index: 0;
    inset: 3px;
    background: #fff;*/
}
.read_more a p{
  /*letter-spacing: 0;*/
  position: relative;
  background: #fff;
  padding: 12px;
  z-index: 2;
  transition: all .2s;
}
.read_more a p: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: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_inner p{

}
a:hover{
  color: #fd9026;
}
/*.read_more a:hover{
  color: #fff;
}
.read_more a:hover p{
  background: #181818;
}
.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;
}



.section:last-child:not( .pg_home .section:last-child) {
  padding-bottom: 80px;
}
@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;
  }

  .read_more.lg{
    width: 100%;
  }
  .read_more.lg a{
    width: 100%;
    max-width: 100%;
  }
}
@media (min-width:768px){

  .anchor{
    top: -200px;
  }

  /* ページネーション */
  .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: 255px;
    font-size: 14px;
    padding: 3px 3px;

  }
  .read_more.lg a{
    width: 100%;
    max-width: 395px;
  }  
  .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;
  }

  .section:last-child:not( .pg_home .section:last-child) {
    padding-bottom: 100px;
  }
}
@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;
  }*/

  .read_more a{
    width: 100%;
  }


}
@media (min-width:1200px){
  /* コンテナ */
  .container.wide{
    max-width: 1720px;
    padding-left: 100px;
    padding-right: 100px;
  }

  .section:last-child:not( .pg_home .section:last-child) {
    padding-bottom: 200px;
  }
}



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

}
.pg_home .section.sec1{
  padding-top: 70px;;
  padding-bottom: 50px;
}
.pg_home .section.sec2{
  padding-top: 60px;;
  padding-bottom: 80px;;
  background: #f5f5f5;
}
.pg_home .section.sec3{
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}
.pg_home .section.sec4{
  padding-top: 60px;
}

/*新着*/
.home_news_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_news_box1{
  width: 100%;
}
.home_news_title{

}
.home_news_title_en{
  font-size: 40px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
}
.home_news_title_en:after{
  content: "";
  display: block;
  width: 65px;
  height: 1px;
  background: #ff8400;
  margin: 16px 0;
}
.home_news_title_ja{
  font-size: 16px;
  font-weight: 500;
}
.home_news_wrap .read_more{
  width: 100%;
  justify-content: center;
}
.home_news_box2{
  width: 100%;
  margin-top: 30px;
}
.home_news_wrap .webgene-blog{

}
.home_news_wrap .webgene-item{

}
.home_news_wrap .webgene-item a{

}

/*あゆみ*/
.home_ayumu_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_ayumu_box1{
  width: 100%;
}
.home_ayumu_box1_tt{
  font-size: 60px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 0.97em;
  letter-spacing: 0;
  color: var(--main-color);
}
.home_ayumu_box1_tt p{
  letter-spacing: 0;
}
.sub_title{
  font-size: 18px;
  font-weight: 900;
  margin-top: 20px;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}
.home_ayumu_box2{
  width: 100%;
  margin-top: 30px;
}
.home_ayumu_box2_items{

}
.home_ayumu_box2_item{
  width: 87.91%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: relative;
}
.home_ayumu_box2_item:nth-child(n+2){
  margin-top: -10px
}
.home_ayumu_box2_item:nth-child(1){
  z-index: 2;
}

.home_ayumu_box2_item:nth-child(2){
  left: 6.7%;;
  z-index: 1;
}
.home_ayumu_box2_item:nth-child(3){
  margin-left: auto;
  z-index: 0;
}
.home_ayumu_box2_item_txt{
  width: 4.5%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: flex-end;
  line-height: 1;
  margin-bottom: -6px;
}
.home_ayumu_box2_item_img{
  width: calc(100% - 6.5%);
}
.home_ayumu_box2_item_img:before{
  padding-top: 44.78%;
}
.home_ayumu_box2_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position:absolute;
  left: 0;
  bottom: -5px
}
.home_ayumu_box2_item:nth-child(1) .home_ayumu_box2_item_img:after{
  background: var(--main-color);
}
.home_ayumu_box2_item:nth-child(2) .home_ayumu_box2_item_img:after{
  background: #ff8400;
}
.home_ayumu_box2_item:nth-child(3) .home_ayumu_box2_item_img:after{
  background: var(--sub-color);
}


/*サービス*/
.home_service_img{

}
.home_service_img:before{
  padding-top: 200px;
}
.home_service_contents{
  position: relative;
  top: -30px;
}
.home_service_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-15px;
}
.home_service_item{
  width: 100%;
  padding: 0 15px;
}
.home_service_item:nth-child(n+2){
  margin-top: 30px;
}
.home_service_item_inner{
  position: relative;
  display: block;
}
.home_service_item_inner:after{
  content: "";
  display: block;
  width: 2px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
.home_service_item.pur .home_service_item_inner:after{
  background: var(--main-color);
}
.home_service_item.or .home_service_item_inner:after{
  background: #ff8400;
}
.home_service_item.ye .home_service_item_inner:after{
  background:var(--sub-color);
}
.home_service_item_inner:hover .home_service_item_img img{
  transform: scale(1.05);
}


.home_service_item_en{
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 32px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  text-shadow    : 
    2px  2px 1px #ffffff,
    -2px  2px 1px #ffffff,
    2px -2px 1px #ffffff,
    -2px -2px 1px #ffffff,
    2px  0px 1px #ffffff,
    0px  2px 1px #ffffff,
    -2px  0px 1px #ffffff,
    0px -2px 1px #ffffff;
  position: absolute;
  top: -5px;
  left: 0;
  z-index: 2;
}
.home_service_item.pur .home_service_item_en{
  color: var(--main-color);
}
.home_service_item.or .home_service_item_en{
  color: #ff8400;
}
.home_service_item.ye .home_service_item_en{
  color: var(--sub-color);

}
.home_service_item_right{
  position: relative;
  width: 98.91%;
}

.home_service_item_img{
  overflow: hidden;
}
.home_service_item_img:before{
  padding-top: 81.09%; 
}
.home_service_item_img img{
  transition: all .2s;
}
.home_service_item_tt{
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  background:rgba(255,255,255,0.9);
  position: absolute;
  bottom: 8.13%;
  left: 0;
  z-index: 1;
  padding: 16px;
}
.home_service_item_tt:after{
  content: "";
  display: block;
  width: 14.34%;
  aspect-ratio:65 / 4;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.home_service_item.pur .home_service_item_tt:after{
  background-image: url(/system_panel/uploads/images/blue_arr.png);
}
.home_service_item.or .home_service_item_tt:after{
  background-image: url(/system_panel/uploads/images/arr_or.png);
}
.home_service_item.ye .home_service_item_tt:after{
  background-image: url(/system_panel/uploads/images/arr_ye.png);
}

/*不動産*/
.home_esthete_wrap{
  display: flex;
  flex-wrap: wrap;

}
.home_esthete_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_esthete_box1:after{

}
.home_esthete_box1_img{

}
.home_esthete_box1_img:before{
  padding-top: 87.1%;
}
.home_esthete_box1_img:after{
  content: "";
  display: block;
  width: 100.65%;;
  height: 100.75%;
  background: #fff;
  border-bottom: 2px solid var(--main-color);
  border-right: 2px solid var(--main-color);
  position: absolute;
  bottom: -7px;
  right: -7px;
}
.home_esthete_box2{
  width: 100%;
  position: relative;
  z-index: 0;
  margin-top: 30px;
}
.home_esthete_box2 .sec_title_en{
  color: var(--main-color);
}


/*タイトル*/
.sec_title{

}
.sec_title_en{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.sec_title_btm{
  display: flex;
  align-items: center;
  margin-top: 13px;
}
.sec_title_ja{
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.sec_title_meta{
  font-size: 12px;
  font-weight: 500;
  font-family: "Oswald", sans-serif;

  line-height: 1.25em;
  margin-left: 10px;
}
.sec_title_meta p{
  letter-spacing: 0;
}
.home_esthete_box2 .content_desc{

}
.home_esthete_box2_contents{
  position: relative;
  padding-top: 30px;
  margin-top: 50px;
}
.home_esthete_box2_contents:before{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000000;
  position: absolute;
  top: 0;
}
.home_esthete_box2_contents_tt{
  display: flex;
  align-items: baseline;
}
.home_esthete_box2_contents_ja{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.home_esthete_box2_contents_tt_en{
  font-size: 18px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  display: flex;
  align-items: center;
}
.home_esthete_box2_contents_tt_en:after{
  content: "";
  display: block;
  width: 1px;
  height: 38px;
  background: #e5e5e5;
  transform: rotate(45deg);
  margin: 0 16px;
}
.home_esthete_box2_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-18px;
  margin-top: 30px;
}
.home_esthete_box2_item{
  width: 100%;
  padding: 0 18px;
}
.home_esthete_box2_item:nth-child(n+2){
  margin-top: 20px;
}
.home_esthete_box2_item_inner{
  display: block;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 10px;
}
.home_esthete_box2_item_inner:hover p:after{
  right: -5px;
}
.home_esthete_box2_item_inner p{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_esthete_box2_item_inner p:after{
  content: "";
  display: block;
  width: 25%;
  aspect-ratio:65 / 4;
  background-image: url(/system_panel/uploads/images/arr.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  position:relative;
  right: 0;
}


/*その他サービス*/
.home_other_items{
  position: relative;
  padding: 50px 0;
}
.home_other_items:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  right: auto;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_other_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_other_item:nth-child(n+2) {
  margin-top: 60px;
}
.home_other_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;;
}
.home_other_box1_desc{
  border-top: 1px solid #313131;
  padding-top: 0;
  margin-top: 40px;
}
.home_other_item:nth-child(odd) .sec_title_en{
  color: #ff8400;
}
.home_other_item:nth-child(even) .sec_title_en{
  color:var(--sub-color);
}
.home_other_box1_desc .content_desc{

}
.home_other_box2{
  width: 100%;
  position: relative;
  order: 1;
}
.home_other_box2_txt{
  position: absolute;
  bottom: 0;
  z-index: 3;
}
.home_other_item:nth-child(odd) .home_other_box2_txt{
  width: 25.44%;
  aspect-ratio:173 / 359;
  left: 0;
  z-index: 0;
}
.home_other_item:nth-child(even) .home_other_box2_txt{
  width: 79.31%;
  aspect-ratio:690 / 150;
  left: 0;
  z-index: 0;
}
.home_other_box2_img:before{

}
.home_other_item:nth-child(odd) .home_other_box2_img:before{
  padding-top: 117.6%;
}
.home_other_item:nth-child(even) .home_other_box2_img{
  width: 76.43%;
  margin-left: auto;
}
.home_other_item:nth-child(even) .home_other_box2_img:before{
  padding-top: 139.93%;
}
.home_other_box2_img:after{
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
}
.home_other_item:nth-child(odd) .home_other_box2_img:after{
  width: 101.02%;;
  height: 100.87%;
  border-bottom: 2px solid #ff8400;
  border-left: 2px solid #ff8400;
  position: absolute;
  bottom: -7px;
  left: -7px;
}
.home_other_item:nth-child(even) .home_other_box2_img:after{
  display: none;
}
.home_other_item:nth-child(even) .home_other_box2:after{
  content: "";
  display: block;
  width: 101.37%;;
  height: 100.75%;
  border-bottom: 2px solid var(--sub-color);
  border-right: 2px solid var(--sub-color);
  position: absolute;
  bottom: -7px;
  right: -7px;
}
.home_other_item:nth-child(odd) .home_other_box2{
  width: 87%;
  margin-left: auto;
}
.home_other_item:nth-child(odd) .home_other_box2_txt{
  left: -18%;
}
.home_other_box2_img_inner{
  width: 72.18%;
  aspect-ratio:480 / 148;
  position: absolute;
  bottom: -2px;;
  left: 0;
  z-index: 2;
}
.food_img_inner{
  width: 6.617%;
  aspect-ratio:45 / 359;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

/*会社概要*/
.home_company_wrap{
  display: flex;
  flex-wrap: wrap;
}
.home_company_box1{
  order: 2;
  position: relative;
  padding-top: 50px;
}
.home_company_box1:before{
  content: "";
  display: block;
  width: 100%;
  height: 50px;
  background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.18) 51%, rgba(255, 255, 255, 0) 57%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  top: -49px;
  left: 0;
  z-index: 1;
}
.home_company_box1_en{
  font-size:60px; 
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 0.85em;
  letter-spacing: 0;
  color: var(--main-color);
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_company_box1_en.or{
  color: #ff8400;
}
.home_company_box1_inner{

}
.home_company_box1_inner .sec_title_btm{

}
.home_company_box1_inner .home_other_box1_desc{

}
.home_company_box1_inner .content_desc{

}
.home_company_box1_inner .content_desc p:nth-child(n+2){
  margin-top: 20px;
}
.home_company_box1_inner .home_other_box1_desc_line{
  font-size: 24px; 
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: 0;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}
.btn_items{
  display: flex;
  flex-wrap: wrap;
}
.btn_items .read_more a{
  width: 200px;
  min-width:200px;
}
.home_company_box2{
  width: 100%;
  order: 1;
}
.home_company_box2_img:before{
  padding-top: 250px;
}

.pg_esthe .home_other_box2_img:before,
.home_other_item.food .home_other_box2_img:before{
  padding-top: 72.3%!important;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_home .section.sec5{
    padding-bottom: 0;
  }

  .home_service_item_tt{
    padding: 16px 40px;
  }

  /*会社概要*/
  .home_company_box1_en,
  .home_company_box1 .home_other_box1_desc_line{
    writing-mode: horizontal-tb;
  }
  .home_other_box1_desc{
    display: flex;
    flex-wrap: wrap;
    padding-top: 20px;
  }
  .home_company_box1 .home_other_box1_desc_line{
    font-size: 20px;
    order: 1;
  }
  .home_company_box1_inner .content_desc{
    order: 2; 
  }
  .btn_items .read_more{
    width: 100%;
  }
  .btn_items .read_more a{
    width: 100%;
    max-width: 255px;
  }

  .home_other_item:nth-child(odd) .home_other_box2{
    width: 87%;
    margin-left: auto;
  }
  .home_other_item:nth-child(odd) .home_other_box2_txt{
    left: -19%;
  }
  .home_other_item:nth-child(even) .home_other_box2_txt{
    z-index: -1;
  }

  .manage_ploblem_box .read_more{
    width: 100%; 
  }
  .manage_ploblem_box .read_more a{
    max-width: 100%;
  }

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

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

  .content_desc p{
    letter-spacing: 0;
  }

  /*新着*/
  .home_news_wrap{

  }
  .home_news_box1{

  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 60px;
  }
  .home_news_title_ja{

  }
  .home_news_wrap .read_more{

  }
  .home_news_box2.news_list .webgene-item{
    width: 33.333%;
  }
  .home_news_box2.news_list .webgene-item:nth-child(n+3) {
    margin-top: 0;
  }
  .home_news_wrap .webgene-blog{

  }
  .home_news_wrap .webgene-item{

  }
  .home_news_wrap .webgene-item a{

  }

  /*あゆみ*/
  .home_ayumu_wrap{

  }
  .home_ayumu_box1{

  }
  .home_ayumu_box1_tt{
    font-size: 100px;
  }
  .sub_title{
    font-size: 28px;
    margin-top: 25px;
  }
  .home_ayumu_box1 .content_desc{
    margin-top: 33px;
  }
  .home_ayumu_box2{
    margin-top: 60px;;
  }
  .home_ayumu_box2_items{

  }
  .home_ayumu_box2_item{

  }
  .home_ayumu_box2_item:nth-child(n+2){
    margin-top: -45px
  }
  .home_ayumu_box2_item_txt{

  }
  .home_ayumu_box2_item_img:before{

  }

  /*サービス*/
  .home_service_img{

  }
  .home_service_img:before{
    padding-top: 500px;
  }
  .home_service_contents{
    width: 100%;
    position: absolute;
    top: auto;
    bottom: -28%;
    left: 50%;
    transform:translateX(-50%);
    z-index: 1;
  }
  .home_service_items{
    margin-inline:-10px;
  }
  .home_service_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .home_service_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_service_item_inner{

  }
  .home_service_item_en{
    font-size: 26px;
    left: -10px;
  }
  .home_service_item_right{

  }
  .home_service_item_img:before{
    padding-top: 115%; 
  }
  .home_service_item_tt{
    font-size: 20px;
    padding: 10px;
  }
  .home_service_item_inner:after{
    right: -2px;;
  }

  /*不動産*/
  .home_esthete_wrap{
    display: flex;
    flex-wrap: wrap;

  }
  .home_esthete_box1{

  }
  .home_esthete_box1_img{

  }
  .home_esthete_box1_img:before{
    padding-top: 70%;
  }
  .home_esthete_box2{
    margin-top: 50px;
  }

  /*タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 70px;
  }
  .sec_title_btm{

  }
  .sec_title_ja{
    font-size: 20px;
  }
  .sec_title_meta{

  }
  .home_esthete_box2 .content_desc{
    margin-top: 23px;
  }
  .home_esthete_box2 .read_more{
    margin-top: 45px;
  }
  .home_esthete_box2_contents{
    padding-top: 45px;
    margin-top: 40px;
  }

  .home_esthete_box2_contents_tt{

  }
  .home_esthete_box2_contents_ja{

  }
  .home_esthete_box2_contents_tt_en{
    font-size: 22px;
  }
  .home_esthete_box2_items{
    margin-top: 44px;
  }
  .home_esthete_box2_item{
    width: 50%;
  }
  .home_esthete_box2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_esthete_box2_item:nth-child(n+3){
    margin-top: 28px;
  }
  .home_esthete_box2_item_inner{
    font-size: 18px;
  }

  /*その他サービス*/
  .home_other_items{
    padding: 80px 0;
  }
  .home_other_item{

  }
  .home_other_item:nth-child(n+2) {
    margin-top: 100px;
  }
  .home_other_box1{
    margin-top: 50px;;
  }
  .home_other_box1_desc{
    padding-top:50px;
    margin-top: 60px;
  }
  .home_other_box1_desc .content_desc{

  }
  .home_other_box2{

  }
  .home_other_box2_txt{

  }
  .home_other_item:nth-child(odd) .home_other_box2_txt{

  }
  .home_other_item:nth-child(even) .home_other_box2_txt{

  }
  .home_other_box2_img:before{

  }
  .home_other_box2_img:after{

  }
  .home_other_item:nth-child(odd) .home_other_box2_img:before{
    padding-top: 82.6%;
  }
  .home_other_item:nth-child(even) .home_other_box2_img:before{
    padding-top: 90.93%;
  }

  /*会社概要*/
  .home_company_wrap{

  }
  .home_company_box1{
    display: flex;
    justify-content: space-between;
  }
  .home_company_box1_en{
    width: 11.64%;
    font-size: 90px; 
  }
  .home_company_box1_inner{
    width: 82.05%;
  }
  .home_company_box1_inner .sec_title_btm{

  }
  .home_company_box1_inner .home_other_box1_desc{
    display: flex;
    justify-content: space-between;
  }
  .home_company_box1_inner .content_desc{
    width: 76.06%;
    margin-top: 0;
  }
  .home_company_box1_inner .home_other_box1_desc_line{
    width: 16.666%;
    font-size: 28px;
    margin-right: -8px;
  }
  .btn_items{

  }
  .btn_items .read_more{
    margin-right: 16px;
  }

  .home_company_box2{
    width: 100%;
  }
  .home_company_box2_img:before{
    padding-top: 400px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 140px;;
    padding-bottom: 150px;
  }
  .pg_home .section.sec2{
    padding-top: 135px;;
    padding-bottom: 165px;;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 410px;
  }
  .pg_home .section.sec5{
    margin-top: 30px;
  }
  .pg_home .section.sec6{
    padding-bottom:0;
  }

  .content_desc p{
    letter-spacing: 0.075em;
  }

  /*新着*/
  .home_news_wrap{

  }
  .home_news_box1{
    width: 17.11%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .home_news_title{

  }
  .home_news_title_en{
    font-size: 90px;
  }
  .home_news_title_ja{

  }
  .home_news_wrap .read_more{
    justify-content: flex-start;
  }
  .home_news_box2{
    width: 74.32%;
    padding-top: 9px;
    margin-top: 0;
  }
  .home_news_wrap .webgene-blog{

  }
  .home_news_wrap .webgene-item{

  }
  .home_news_wrap .webgene-item a{

  }

  /*あゆみ*/
  .home_ayumu_wrap{

  }
  .home_ayumu_box1{
    width: 49.01%;
  }
  .home_ayumu_box1_tt{
    font-size:80px;
  }
  .sub_title{
    font-size: 22px;
  }
  .content_desc{

  }
  .content_desc.center{
    text-align: center;
  }
  .home_ayumu_box2{
    width: 49.01%;
    padding-top: 18px;
    margin-top: 0;
  }
  .home_ayumu_box2_items{

  }
  .home_ayumu_box2_item{
    justify-content: flex-start;
  }
  .home_ayumu_box2_item:nth-child(n+2){
    margin-top: -20px
  }
  .home_ayumu_box2_item_txt{

  }
  .home_ayumu_box2_item_img{
    width: calc(100% - 4.5%);
  }
  .home_ayumu_box2_item_img:before{

  }

  /*サービス*/
  .home_service_img{

  }
  .home_service_img:before{
    padding-top: 500px;
  }
  .home_service_contents{

  }
  .home_service_items{
    margin-inline:-15px;
  }
  .home_service_item{
    width: 33.333%;
    padding: 0 15px;
  }
  .home_service_item_inner{

  }
  .home_service_item_en{
    font-size: 32px;
    left: -25px;
  }
  .home_service_item_right{

  }
  .home_service_item_img:before{

  }
  .home_service_item_img:before{
    padding-top: 81.09%; 
  }
  .home_esthete_box1_img{
    margin-left: var(--margin-for-device-side);
  }

  .home_service_item_tt{
    padding: 10px 45px;
  }

  /*不動産*/
  .home_esthete_wrap{

  }
  .home_esthete_box1{
    width: 57.23%;
  }
  .home_esthete_box1_img{

  }
  .home_esthete_box1_img:before{
    padding-top: 87.1%;
  }
  .home_esthete_box2{
    width: 42.76%;
    padding-left: 6.25%;
    padding-top: 0;
    margin-top: 0;
  }
  .home_service_item_inner:after{
    right: 0;
  }

  /*タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 60px;
  }
  .sec_title_btm{

  }
  .sec_title_ja{
    font-size: 20px;
  }
  .sec_title_meta{

  }
  .home_esthete_box2 .content_desc{

  }
  .home_esthete_box2_contents{
    margin-top: 50px;
  }
  .home_esthete_box2_contents:before{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    /* margin-right: calc(50% - 50vw); */
    right: 0;
  }
  .home_esthete_box2_contents_tt{

  }
  .home_esthete_box2_contents_ja{

  }
  .home_esthete_box2_contents_tt_en{
    font-size: 30px;
  }
  .home_esthete_box2_items{

  }
  .home_esthete_box2_item{

  }
  .home_esthete_box2_item_inner{
    font-size: 20px;
  }

  /*その他サービス*/
  .home_other_items{
    position: relative;
    padding: 120px 0 185px;
  }
  .home_other_items:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    right: 19.73%;
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .home_other_item{
    align-items: flex-start;
  }
  .home_other_item:nth-child(n+2) {
    margin-top: 185px;
  }
  .home_other_box1{
    padding-top: 0px;
    margin-top: 0;
  }
  .home_other_item:nth-child(odd) .home_other_box1{
    width: 43.765%;
    order: 1;
  }
  .home_other_item:nth-child(odd) .home_other_box2{
    width: 44.73%;
    order: 2;
  }
  .home_other_item:nth-child(even) .home_other_box1{
    width: 36.51%;
    order: 2;
  }
  .home_other_item:nth-child(even) .home_other_box2{
    width: 57.23%;
    order: 1;
  }
  .home_other_box1 .sec_title_en{
    margin-right: -20px;
  }
  .home_other_box1_desc{
    padding-top:60px;
    margin-top: 86px;
  }
  .home_other_box1_desc .content_desc{

  }
  .home_other_box1 .read_more{
    margin-top: 43px;
  }
  .home_other_box2{

  }
  .home_other_box2_txt{

  }
  .home_other_item:nth-child(odd) .home_other_box2_txt{
    left: -19.11%;
  }
  .home_other_item:nth-child(odd) .home_other_box2_txt{

  }
  .home_other_item:nth-child(even) .home_other_box2_txt{

  }
  .home_other_box2_img:before{

  }
  .home_other_box2_img:after{

  }
  .home_other_item:nth-child(odd) .home_other_box2_img:before{
    padding-top: 117.6%;
  }
  .home_other_item:nth-child(even) .home_other_box2_img:before{
    padding-top: 139.93%;
  }

  /*会社概要*/
  .home_company_wrap{
    display: block;
    position: relative;
  }
  .home_company_box1{
    width: 64.98%;
    position: absolute;
    top: 50%;
    left:0;
    transform: translateY(-50%);
    z-index: 4;
    order: 1;
    padding-top: 0;
  }
  .home_company_box1:before{
    display: none;
  }
  .home_company_box1 .sec_title_ja{
    font-size: 34px;
  }
  .home_company_box1_en{
    width: 16.64%;
    font-size: 100px; 
  }

  .home_company_box1 .sec_title_meta{
    font-size: 18px;
    margin-left: 19px;
  }
  .home_company_box1_inner{
    width: 74.05%;
  }
  .home_company_box1_inner .sec_title_btm{

  }
  .home_company_box1_inner .home_other_box1_desc{
    margin-top: 80px;
    padding-top: 50px;
  }
  .home_company_box1_inner .content_desc{
    margin-top: 20px;
  }
  .home_company_box1_inner .content_desc p:nth-child(n+2){
    margin-top: 34px;
  }
  .home_company_box1_inner .home_other_box1_desc_line{
    font-size: 30px;
    margin-right: -10px;
    padding-top: 22px;
  }
  .btn_items{
    margin-top: 18px;
  }
  .btn_items .read_more{
    margin-right: 35px;
  }
  .btn_items .read_more a{
    min-width:255px;
  }
  .home_company_box2{
    width: 86.51%;
    margin-left: auto;
    position: relative;
    order: 2;
  }
  .home_company_box2:before{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 0.18) 75%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
  }
  .home_company_box2_img:before{
    padding-top: 980px;
  }
  .home_company_box2_img{
    margin-right: var(--margin-for-device-side);
  }
}
@media (min-width:1200px){
  /*あゆみ*/
  .home_ayumu_box2_item:nth-child(n+2){
    margin-top: -45px
  }
  .home_ayumu_box1_tt{
    font-size: 87px;
  }

  /*サービス*/
  .home_service_items{
    margin-inline:-35px;
  }
  .home_service_item{
    width: 33.333%;
    padding: 0 35px;
  }

  /*不動産*/
  .sec_title_en{
    font-size: 60px;
  }
  .sec_title_ja {
    font-size: 22px;
  }
  .home_esthete_box1_img{
    margin-left: var(--margin-for-device-side);
  }

  /*会社概要*/
  .home_company_box1{
    width: 64.98%;
  }
  .home_company_box1_en{
    font-size: 130px; 
    width: 20.64%;
  }
  .home_company_box1_inner{
    width: 74.05%;
  }
  .home_company_box1_inner .home_other_box1_desc_line{
    font-size: 33px;
    margin-right: -14px;
  }
  .home_company_box2:before{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 64%, rgba(255, 255, 255, 0.18) 75%, rgba(255, 255, 255, 0) 83%, rgba(255, 255, 255, 0) 100%);
  }

}
@media (min-width:1540px){
  /*あゆみ*/
  .home_ayumu_box1_tt{
    font-size: 110px;
  }
  .sub_title{
    font-size: 30px;
  }

  /*不動産*/
  .sec_title_ja{
    font-size: 26px;
  }
  .sec_title_en{
    font-size: 85px;
  }
  .home_esthete_box2{
    padding-top: 90px;
  }

  /*その他サービス*/
  .home_other_item{

  }
  .home_other_box1{
    padding-top: 90px;
  }

  /*会社概要*/
  .home_company_box1{
    width: 50.98%;
  }
  .home_company_box1_inner .home_other_box1_desc_line{
    font-size: 42px;
  }
  .home_company_box2:before{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 49%, rgba(255, 255, 255, 0.18) 58%, rgba(255, 255, 255, 0) 62%, rgba(255, 255, 255, 0) 100%);
  }
  .home_company_box1_en{
    font-size: 180px; 
  }

  .home_service_img:before{
    padding-top: 750px;
  }
}
@media (min-width:1740px){
  /*あゆみ*/
  .home_ayumu_box1_tt{
    font-size: 130px;
  }

  .sub_title{
    font-size: 35px;
  }

  /*不動産*/
  .sec_title_en{
    font-size: 95px;
  }

  /*サービス*/
  .home_service_item_en{
    font-size: 50px;
  }

  /*会社概要*/
  .home_company_box2:before{
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 47%, rgba(255, 255, 255, 0.18) 54%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
  }
}



/*******************************
*　不動産
********************************/
.pg_realEstate{

}
.pg_realEstate .section.sec1{
}
.pg_realEstate .section.sec2{
}
.pg_realEstate .section.sec3{
  padding-top: 100px;
}
.pg_realEstate .section.sec4{
  padding-top: 50px;
}

/*見出し*/
.page_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_hdr_wrap.realestate{
  align-items: flex-start;
}
.page_hdr_box1{
  width: 100%;
}
.page_hdr_box1 .home_ayumu_box1_tt{

}
.page_hdr_box1 .sub_title{

}
.page_hdr_box1 .content_desc{

}
.page_hdr_wrap.realestate .page_hdr_box1{

}
.page_hdr_box2{
  width: 100%;
  margin-top: 30px;
}
.page_hdr_wrap.realestate .page_hdr_box2{
  position: relative;
  margin-top: 30px;
}
.page_hdr_wrap.realestate .page_hdr_box2_top{
  width: 69.85%;
  position: absolute;
  top: 0;
  left: 0;
}
.page_hdr_wrap.realestate .page_hdr_box2_top_img:before{
  padding-top: 136.8%;
}
.page_hdr_wrap.realestate .page_hdr_box2_top_img:after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  left: -7px;
  top: 0;
}
.page_hdr_wrap.realestate .page_hdr_box2_btm{
  width: 53.67%;
  margin-left: auto;
  padding-top: 100px;
}
.page_hdr_wrap.realestate .page_hdr_box2_btm_img:before{
  padding-top: 145.2%;
}
.page_hdr_wrap.realestate .page_hdr_box2_btm_img:after{
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  background: var(--main-color);
  position: absolute;
  right: -7px;
  top: 0;
}

/*お悩み*/
.realestate_problem_wrap{
  position: relative;
}
.realestate_problem_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 107.69%;
  background: #f5f5f5;
  position: absolute;
  top: 5.3%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.realestate_problem_tt{
  text-align: center;
}
.realestate_problem_en{
  font-size: 32px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  z-index: 2;
}
.realestate_problem_ja{
  font-size: 17px;
  font-weight: 900;
  margin-top: 13px;
  position: relative;
  z-index: 1;
}
.realestate_problem_items{
  margin-top: 40px;
}
.realestate_problem_item{

}
.realestate_problem_item_inner{
  display: block;
  background-image: url(/system_panel/uploads/images/bg1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 3px;
  position: relative;
  cursor: pointer;
}
/*.realestate_problem_item_inner:hover{
  color: var(--sub-color);
}*/

.realestate_problem_item_outer{
  background: #fff;
  padding: 20px 40px 50px;
}
.realestate_problem_item_tt{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.realestate_problem_item_tt:after{
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: #1a1a1a;
  margin: 15px auto;
}
.realestate_problem_item_list{
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.realestate_problem_item_list p{
  position: relative;
  padding-left: 23px;
}
.realestate_problem_item_list p:nth-child(n+2){
  margin-top: 10px;
}
.realestate_problem_item_list p:before{
  content: "";
  display: block;
  width: 16px;
  min-width: 16px;
  aspect-ratio: 16 / 16;
  background-image: url(/system_panel/uploads/images/check.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 6px;
  left: 0;
}
.realestate_problem_item_btn{
  width: 65px;
  aspect-ratio:1 / 1;
  position: absolute;
  bottom: -10px;
  right: 0;
  transition: all .2s;
}


.realestate_alsok_bn{
  
}
.realestate_alsok_bn a img{
  transition: 0.2s all;
}
.realestate_alsok_bn a:hover img{
  transform: scale(1.02);
}

/*相談してください*/
.realestate_soudan_wrap{
  display: flex;
  flex-wrap: wrap;
}
.realestate_soudan_box1{
  width: 100%;
  background: #f5f5f5;
  padding: 20px 16px 30px;
  order: 2;
  padding-top: 20px;
}
.realestate_soudan_box1_tt{
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5em;

}
.realestate_soudan_box1 .content_desc{

}
.realestate_soudan_box1 .read_more{

}
.realestate_soudan_box2{
  width: 100%;
  display: flex;
  order: 1;
}
.realestate_soudan_box2_img{
  width: 33.333%;
}
.realestate_soudan_box2_img:before{
  padding-top: 200%;
}

.realestate_soudan_links {
  
}
.realestate_soudan_links .read_more{
  
}
.realestate_soudan_links .realestate_alsok_bn{
  
}

/*コンテンツ見出し*/
.contents_hdr_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents_hdr_box1{

}
.contents_hdr_box1 .sec_title{

}
.contents_hdr_box1 .sec_title_en{
  color: var(--main-color);
}
.contents_hdr_box2{

}
.contents_hdr_box2 .content_desc{

}

/*理由*/
.contents_layout_items{
  margin-top: 40px;
  position: relative;
}
.contents_layout_items.bg_gray_right:before{
  content: "";
  display: block;
  width: 100vw;
  height: 54.004%;
  background: #f5f5f5;
  position: absolute;
  left:auto;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.contents_layout_items.type1 {

}
.contents_layout_item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contents_layout_item:nth-child(n+2){
  margin-top: 50px;
}
.contents_layout_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.contents_layout_items.type1 .contents_layout_box1{

}
.contents_layout_box1_tt{
  display: flex;
  align-items: flex-end;
  border-bottom: 1px solid #000000;
  padding-bottom: 20px;
}
.contents_layout_box1_num{
  font-size: 50px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  color: #fff;
  line-height: 1;
  text-shadow    : 
    2px  2px 0px #443380,
    -2px  2px 0px #443380,
    2px -2px 0px #443380,
    -2px -2px 0px #443380,
    2px  0px 0px #443380,
    0px  2px 0px #443380,
    -2px  0px 0px #443380,
    0px -2px 0px #443380; 
  padding-bottom: 8px;
}
.contents_layout_box1_tt .sub_title{
  margin-left: 23px;
}
.contents_layout_box1 .content_desc{

}

.contents_layout_box2{
  width: 100%;
  order: 1;
}
.contents_layout_items.type1 .contents_layout_box2{

}
.contents_layout_box2_img:before{

}
.contents_layout_items.type1 .contents_layout_box2_img:before{
  padding-top: 51.72%;
}
.contents_layout_box2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position:absolute;
  left: 0;
  bottom: -7px;
}
.contents_layout_box2_img_txt{
  font-size: 40px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 0.85em;
  position: absolute;
  z-index: 1;
  color: rgba(255,255,255,0.7);
}
.contents_layout_items.type1 .contents_layout_box2_img_txt{
  bottom: 2px;
}
.contents_layout_items.type1 .contents_layout_item:nth-child(odd) .contents_layout_box2_img_txt{
  right: -6px;

}
.contents_layout_items.type1 .contents_layout_item:nth-child(even) .contents_layout_box2_img_txt{
  left: -6px;
}

.realestate_problem_wrap.manage .realestate_problem_item a{
  pointer-events: none;
}

.link_btn img{
  transition: all .2s;
}
.link_btn:hover img{
  transform: scale(1.05);
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .realestate_problem_wrap:before{
    top: 18px;
    height: 100%;
  }

  .realestate_problem_wrap .swiper{
    overflow: visible;
  }

  .pg_management .section.sec2 .realestate_problem_items .swiper-slide:nth-child(n+2){
    margin-top: 16px;
  }

  .contents_layout_box1_num{
    width: 50px;
  }
}
@media (min-width:768px){
  .pg_realEstate{

  }
  .pg_realEstate .section.sec1{
  }
  .pg_realEstate .section.sec2{
  }
  .pg_realEstate .section.sec3{
    padding-top: 70px;
  }
  .pg_realEstate .section.sec4{
    padding-top: 70px;
  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{

  }
  .page_hdr_box1 .home_ayumu_box1_tt{

  }
  .page_hdr_box1 .sub_title{

  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_wrap.realestate .page_hdr_box1{

  }
  .page_hdr_box2{

  }
  .page_hdr_wrap.realestate .page_hdr_box2{
    margin-top: 50px;
  }
  .page_hdr_wrap.realestate .page_hdr_box2_top{

  }
  .page_hdr_wrap.realestate .page_hdr_box2_btm{
    padding-top: 160px;
  }
  .page_hdr_wrap.realestate .page_hdr_box2_top_img:before{
    padding-top: 95.8%;
  } 
  .page_hdr_wrap.realestate .page_hdr_box2_btm_img:before{
    padding-top: 110.2%;
  }

  /*お悩み*/
  .realestate_problem_wrap{
    padding-bottom: 50px;
  }
  .realestate_problem_wrap:before{
    top: 3.3%;
    height: 100%;
  }
  .realestate_problem_tt{

  }
  .realestate_problem_en{
    font-size: 70px;
  }
  .realestate_problem_ja{
    font-size: 22px;
  }
  .realestate_problem_items{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    margin-inline:-10px;
    margin-top: 70px;
  }
  .realestate_problem_item{
    width: 50%;
    padding: 0 10px;
  }
  .realestate_problem_item:nth-child(n+3){
    margin-top: 50px;
  }
  .realestate_problem_item_inner{
    height: 100%;
  }
  .realestate_problem_item_outer{
    height: 100%;
    padding: 16px 16px;
  }
  .realestate_problem_item_tt{
    font-size: 20px;
  }
  .realestate_problem_item_list{

  }
  .realestate_problem_item_list p{

  }
  .realestate_problem_item_btn{
    right: -10px;
  }
  .realestate_problem_item_inner:hover .realestate_problem_item_btn{
    right: -20px;
  }

  /*相談してください*/
  .realestate_soudan_wrap{

  }
  .realestate_soudan_box1{
    padding: 37px 20px;;
    padding-top: 50px;
  }
  .realestate_soudan_box1_tt{
    font-size: 30px;
  }
  .realestate_soudan_box1 .content_desc{
    margin-top: 30px;
  }
  .realestate_soudan_box1 .read_more{
    margin-top: 44px;
  }
  .realestate_soudan_box2{

  }
  .realestate_soudan_box2_img{

  }
  .realestate_soudan_box2_img:before{

  }
  .contents_layout_items.bg_gray_right:before{
    content: "";
    display: block;
    width: 100vw;
    height: 51.5%;
    background: #f5f5f5;
    position: absolute;
    left:auto;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .realestate_soudan_links {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .realestate_soudan_links .read_more{

  }
  .realestate_soudan_links .realestate_alsok_bn{
    width: 150px;
  }
  .realestate_soudan_links .realestate_alsok_bn{
    
  }

  
  
  /*コンテンツ見出し*/
  .contents_hdr_wrap{

  }
  .contents_hdr_box1{

  }
  .contents_hdr_box1 .sec_title{

  }
  .contents_hdr_box2{

  }
  .contents_hdr_box2 .content_desc{

  }


  .contents_layout_box1_tt .sub_title {
    margin-left: 20px;
  }
  /*理由*/
  .contents_layout_items{
    margin-top: 70px;
  }
  .contents_layout_items.type1 {

  }
  .contents_layout_item {

  }
  .contents_layout_item:nth-child(n+2){
    margin-top: 80px;
  }
  .contents_layout_box1{

  }
  .contents_layout_items.type1 .contents_layout_box1{

  }
  .contents_layout_box1_tt{
    padding-bottom: 30px;
  }
  .contents_layout_box1_num{
    font-size: 70px;
  }
  .contents_layout_box1_tt .sub_title{

  }
  .contents_layout_box1 .content_desc{
    margin-top: 30px;
  }

  .contents_layout_box2{

  }
  .contents_layout_items.type1 .contents_layout_box2{

  }
  .contents_layout_box2_img:before{

  }
  .contents_layout_items.type1 .contents_layout_box2_img:before{

  }
  .contents_layout_box2_img:after{

  }
  .contents_layout_box2_img_txt{
    font-size: 70px;
  }
  .contents_layout_items.type1 .contents_layout_box2_img_txt{

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

  }
  .pg_realEstate .section.sec1{
  }
  .pg_realEstate .section.sec2{
  }
  .pg_realEstate .section.sec3{
    padding-top: 190px;
  }
  .pg_realEstate .section.sec4{
    padding-top: 95px;
  }

  /*見出し*/
  .page_hdr_wrap{

  }
  .page_hdr_box1{

  }
  .page_hdr_box1 .home_ayumu_box1_tt{

  }
  .page_hdr_box1 .sub_title{

  }
  .page_hdr_box1 .content_desc{

  }
  .page_hdr_wrap.realestate .page_hdr_box1{
    width: 49.01%;
  }
  .page_hdr_box2{
    margin-top: 0;
  }
  .page_hdr_wrap.realestate .page_hdr_box2{
    width: 44.73%;
    margin-top: 14px;
  }
  .page_hdr_wrap.realestate .page_hdr_box2_top{

  }
  .page_hdr_wrap.realestate .page_hdr_box2_top_img:before{

  }
  .page_hdr_wrap.realestate .page_hdr_box2_top_img:before{
    padding-top: 136.8%;
  } 
  .page_hdr_wrap.realestate .page_hdr_box2_btm_img:before{
    padding-top: 145.2%;
  }
  .page_hdr_wrap.realestate .page_hdr_box2_btm{
    padding-top: 220px;
  }

  .contents_layout_box1_tt .sub_title {
    margin-left: 23px;
  }
  /*お悩み*/
  .realestate_problem_wrap{
    padding-bottom: 0;
  }
  .realestate_problem_wrap:before{
    top: 5.3%;
    height: 107.69%;
  }
  .realestate_problem_tt{

  }
  .realestate_problem_en{
    font-size: 95px;
  }
  .realestate_problem_ja{
    font-size: 28px;
  }
  .realestate_problem_items{
    margin-inline:-20px;
    margin-top: 95px;
    justify-content: center;
  }
  .realestate_problem_item{
    width: 33.333%;
    padding: 0 20px;
  }
  .realestate_problem_item:nth-child(n+3){
    margin-top: 0;
  }
  .realestate_problem_item:nth-child(n+4){
    margin-top: 62px;
  }
  .realestate_problem_item_inner{

  }
  .realestate_problem_item_outer{
    padding: 16px 10px 50px;;
  }
  .realestate_problem_item_tt{
    font-size: 18px;
  }
  .realestate_problem_item_list{

  }
  .realestate_problem_item_list p{

  }
  .realestate_problem_item_btn{

  }

  /*相談してください*/
  .realestate_soudan_wrap{

  }
  .realestate_soudan_box1{
    width: 44.73%; 
    padding: 37px 32px 37px 40px;
    order: 1;
    margin-top: 0;
  }
  .realestate_soudan_box1_tt{
    font-size: 28px;
  }
  .realestate_soudan_box1 .content_desc{

  }
  .realestate_soudan_box1 .read_more{

  }
  .realestate_soudan_box2{
    width: 55.26%; 
    order: 2;
  }
  .realestate_soudan_box2_img{

  }
  .realestate_soudan_box2_img:before{

  }

  .realestate_soudan_links{
    flex-wrap: wrap;
  }
  .realestate_soudan_links .read_more{
    width: 100%;
  }
  .realestate_soudan_links .realestate_alsok_bn{
    width: 100px;
  }
  
  /*コンテンツ見出し*/
  .contents_hdr_wrap{

  }
  .contents_hdr_box1{
    width: 30.26%;
  }
  .contents_hdr_box1 .sec_title{

  }
  .contents_hdr_box2{
    width: 69.73%;
  }
  .contents_hdr_box2 .content_desc{
    margin-top: 0;
  }

  /*理由*/
  .contents_layout_items{
    margin-top: 90px;
  }
  .contents_layout_items.bg_gray_right:before{
    content: "";
    display: block;
    width: 100vw;
    height: 54.004%;
    background: #f5f5f5;
    position: absolute;
    left: 19.73%;
    top: 49%;
    transform: translateY(-50%);
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .contents_layout_items.type1 {

  }
  .contents_layout_item {

  }
  .contents_layout_item:nth-child(n+2){
    margin-top: 100px;
  }
  .contents_layout_box1{
    margin-top: 0;
  }
  .contents_layout_item:nth-child(odd) .contents_layout_box1{
    order: 1;
  }
  .contents_layout_item:nth-child(odd) .contents_layout_box2{
    order: 2;
  }
  .contents_layout_item:nth-child(even) .contents_layout_box1{
    order: 2;
  }
  .contents_layout_item:nth-child(even) .contents_layout_box2{
    order: 1;
  }
  .contents_layout_items.type1 .contents_layout_box1{
    width: 41.51%;
  }
  .contents_layout_box1_tt{
    padding-bottom: 43px;
  }
  .contents_layout_box1_num{
    font-size: 70px;
    padding-bottom: 3px;
  }
  .contents_layout_box1_tt .sub_title{
    margin-right: -16px;
  }
  .contents_layout_box1 .content_desc{
    margin-top: 40px;
  }

  .contents_layout_box2{

  }
  .contents_layout_items.type1 .contents_layout_box2{
    width: 51.23%;
    padding-top: 35px;
  }
  .contents_layout_box2_img:before{

  }
  .contents_layout_items.type1 .contents_layout_box2_img:before{

  }
  .contents_layout_box2_img:after{

  }
  .contents_layout_box2_img_txt{
    font-size: 95px;
  }
  .contents_layout_items.type1 .contents_layout_box2_img_txt{

  }
}
@media (min-width:1200px){
  .contents_layout_items.bg_gray_right:before{
    left: 19.73%;
    top: 49%;
  }
  .realestate_problem_item_outer{
    padding: 16px 20px 50px;;
  }
  .realestate_problem_item_tt{
    font-size: 20px;
  }
  
  
  
}
@media (min-width:1470px){
  
  .realestate_soudan_links{
    flex-wrap: wrap;
  }
  .realestate_soudan_links .read_more{
    width: 255px;
  }
  .realestate_soudan_links .realestate_alsok_bn{
    width: 100px;
  }
  
}
@media (min-width:1540px){
  /*お悩み*/
  .realestate_problem_item_tt{
    font-size: 21px;
  }
  .realestate_problem_item_outer{
    padding: 16px 52px 26px;
  }

  /*相談してください*/
  .realestate_soudan_box1{
    width: 44.73%; 
    padding: 37px 32px 37px 80px;
  }
  .realestate_soudan_box1_tt{
    font-size: 32px;
  }

  /*理由*/
  .contents_layout_items.bg_gray_right:before{
    left: 19.73%;
    top: 49%;
  }
  .contents_layout_item:nth-child(n+2){
    margin-top: 170px;
  }
  .contents_layout_box1_tt{

  }
  .contents_layout_items.type1 .contents_layout_box1{
    width: 36.51%;
  }
  .contents_layout_items.type1 .contents_layout_box2{
    width: 57.23%;
  }
  .contents_layout_box1_num{
    font-size: 95px;
    padding-bottom: 8px;
  }
  /*理由*/

}
@media (min-width:1740px){
  /*お悩み*/
  .realestate_problem_item_tt{
    font-size: 25px;
  }

  /*相談してください*/
  .realestate_soudan_box1_tt{
    font-size: 42px;
  }

  /*理由*/
  .contents_layout_items.bg_gray_right:before{
    left: 19.73%;
    top: 51%;
  }

  .realestate_problem_item_outer{
    padding: 16px 52px 26px;
  }
}

/*******************************
*　不動産売買
********************************/
.pg_sellandbuy{

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

/*見出し*/
.page_hdr_wrap.sellandbuy{

}
.page_hdr_wrap.sellandbuy .page_hdr_box1{

}
.page_hdr_wrap.sellandbuy .page_hdr_box2{

}
.page_hdr_wrap.sellandbuy .page_hdr_box2_btm{

}
.page_hdr_wrap.sellandbuy .page_hdr_box2_btm_img:before{
  padding-top: 109.55%;
}
.page_hdr_wrap.sellandbuy .page_hdr_box2_btm_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -7px;
}

/*カテゴリ*/
.sellandbuy_cate_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-inline:-15px;
}
.sellandbuy_cate_wrap .read_more{
  width: 100%;
  padding: 0 15px;
  margin: 0;
}
.sellandbuy_cate_wrap .read_more:nth-child(n+2){
  margin-top: 16px;
}
.sellandbuy_cate_wrap .read_more a{
  width: 100%;
  max-width: 100%;
  background-image: url(/system_panel/uploads/images/g.jpg);
}

/*売りたい方*/
.home_company_wrap.sellandbuy{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding: 50px 0;
  margin-top: 50px;
}
.home_company_wrap.sellandbuy:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_company_wrap.sellandbuy .home_company_box1{
  padding-top: 0;
  margin-top: 30px;
}
.home_company_wrap.sellandbuy .home_company_box1:before{
  display: none;
}
.home_company_wrap.sellandbuy .home_company_box2:before{
  display: none;
}
.home_company_wrap.sellandbuy .home_company_box2_img:before{
  padding-top: 71.0059%;
}
.home_company_wrap.sellandbuy .home_company_box1_en{

}
.home_company_wrap.sellandbuy .home_company_box2_img:after{
  content: "";
  display: block;
  width: 100.65%;
  height: 100.75%;
  border-bottom: 1px solid #ff8400;
  border-left: 1px solid #ff8400;
  position: absolute;
  bottom: -7px;
  left: -7px;
}

/*メッセージ*/
.contents_msg_wrap{
  margin-top: 50px;
}
.contents_msg_box{
  position: relative; 
  padding: 25px 16px 30px;
}
.contents_msg_box:before{
  content: "";
  display: block;
  width: 9.009%;;
  aspect-ratio:100 / 40;
  background-image: url(/system_panel/uploads/images/left_bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 0;
}
.contents_msg_box:after{
  content: "";
  display: block;
  width: 9.009%;;
  aspect-ratio:100 / 41;
  background-image: url(/system_panel/uploads/images/right_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.contents_msg_tt{
  font-size:20px;
  font-weight: 900;
  text-align: center;
}
.contents_msg_box .content_desc{

}

/*種類*/
.sellandbuy_sell_items{
  display: flex;
  flex-wrap: wrap;
}
.sellandbuy_sell_item{
  width: 100%;
  position: relative;
}
.sellandbuy_sell_item_img:before{
  padding-top: 500px;
}
.sellandbuy_sell_item_inner{
  width: 87.5%;
  background:rgba(255,255,255,0.8);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  padding: 23px 16px 32px;
}
.sellandbuy_sell_item_tt{
  border-bottom: 1px solid #000000;
  padding-bottom: 10px;
}
.sellandbuy_sell_item_txt{
  font-size: 20px;
  font-weight: 900;
}
.sellandbuy_sell_item .content_desc{

}

/*違い*/
.sellandbuy_chigai_tt{
  text-align: center;
  background: var(--main-color);
  color: #fff;
  position: relative;
  padding: 7px;
}
.sellandbuy_chigai_tt:after{
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: var(--main-color);
  position: absolute;
  left: 0;
  bottom: -5px;
}
.sellandbuy_chigai_txt{
  font-size: 18px;
  font-weight: 700;
}
.sellandbuy_chigai_tbl{
  margin-top: 35px;
  min-width: 1200px;
}

/*おすすめ*/
.sellandbuy_contents_item{

}
.sellandbuy_contents_item:nth-child(n+2){
  margin-top: 50px;
}
.sellandbuy_contents_item_top{

}
.sellandbuy_contents_item_top .contents_layout_box1{

}
.sellandbuy_contents_item_top .contents_layout_box1_tt{

}
.sellandbuy_contents_item_top .sub_title{
  margin: 0;
}
.sellandbuy_contents_item_top .content_desc{

}
.sellandbuy_contents_item_top .read_more{

}
.sellandbuy_contents_item_top .read_more a{
  max-width: 395px;
  background-image: url(/system_panel/uploads/images/btn_bg2.jpg);
}
.sellandbuy_contents_item_top .contents_layout_box2{

}
.sellandbuy_contents_item_top .contents_layout_box2_img{
  width: 99.42%;
}
.sellandbuy_contents_item:nth-child(odd) .contents_layout_box2_img{
  margin-right: auto;
}
.sellandbuy_contents_item:nth-child(even) .contents_layout_box2_img{
  margin-left: auto;
}
.sellandbuy_contents_item_top .contents_layout_box2_img:before{
  padding-top: 54.91%;
}
.sellandbuy_contents_item_top .contents_layout_box2_img:after{
  width: 1px;
  height: 100%;
  bottom: 0;
}
.sellandbuy_contents_item:nth-child(odd) .contents_layout_box2_img:after{
  right: calc(99.42% - 100%);
  left: auto;
  background: #ff8400;
}
.sellandbuy_contents_item:nth-child(even) .contents_layout_box2_img:after{
  right: auto;
  left: calc(99.42% - 100%);
  background: var(--sub-color);
}

/*メリット*/
.sellandbuy_contents_item_btm{
  margin-top: 40px;
}
.sellandbuy_contents_item_btm_tt{
  display: flex;
  align-items: baseline;
  color: #fff;
  padding: 2px 16px;
}
.sellandbuy_contents_item:nth-child(odd) .sellandbuy_contents_item_btm_tt{
  background: #ff8400;
}
.sellandbuy_contents_item:nth-child(even) .sellandbuy_contents_item_btm_tt{
  background: var(--sub-color);
}
.sellandbuy_contents_item_btm.pur .sellandbuy_contents_item_btm_tt{
  background: var(--main-color);
}
.sellandbuy_contents_item_btm_en{
  font-size: 24px;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  display: flex;
  align-items: center;
}
.sellandbuy_contents_item_btm_en:after{
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  background: #fff;
  transform: rotate(45deg);
  margin: 0 20px;
}
.sellandbuy_contents_item_btm_ja{
  font-size: 16px;
  font-weight: 700;
}
.sellandbuy_contents_item_btm_items{

  margin-top: 40px;
}
.sellandbuy_contents_item_btm_items .realestate_problem_item{

}
.sellandbuy_contents_item_btm_items .content_desc{

}

/*買う*/
.home_company_wrap.buy{
  margin-top: 0;
}
.home_company_wrap.buy .home_company_box1_en{
  color: var(--sub-color);
}
.home_company_wrap.buy .home_company_box1{

}
.home_company_wrap.buy .home_company_box2{

}
.home_company_wrap.buy .home_company_box2_img:after{
  border-bottom: 1px solid var(--sub-color);
  border-right: 1px solid var(--sub-color);
  border-left: 0;
  position: absolute;
  bottom: -7px;
  left: auto;
  right: -7px;
}
.link_btn{
  display: block;
  margin-top: 30px;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .pg_sellandbuy .section.sec6{
    padding-top: 0;
  }

  .sellandbuy_contents_item_btm_tt{
    align-items: center;
  }

  /*swiper*/
  .swiper-button-next, .swiper-button-prev{
    color: #fc774c;
  }
}
@media (min-width:768px){
  .pg_sellandbuy{

  }
  .pg_sellandbuy .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_sellandbuy .section.sec2{
    padding-top: 100px;;
    padding-bottom:70px;;
  }
  .pg_sellandbuy .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_sellandbuy .section.sec4{
    padding-top: 110px;
  }


  /*見出し*/
  .page_hdr_wrap.sellandbuy{

  }
  .page_hdr_wrap.sellandbuy .page_hdr_box1{

  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2{

  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2_btm{
    width: 75%;
    margin-inline:auto;
  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2_btm_img:before{
    padding-top: 95%;
  }

  /*カテゴリ*/
  .sellandbuy_cate_wrap{

  }
  .sellandbuy_cate_wrap .read_more{
    width: 50%;
  }
  .sellandbuy_cate_wrap .read_more:nth-child(n+2){
    margin-top: 0;
  }
  .sellandbuy_cate_wrap .read_more a{
    width: 100%;
  }

  /*売りたい方*/
  .home_company_wrap.sellandbuy{
    padding: 50px 0;
    margin-top: 50px;
  }
  .home_company_wrap.sellandbuy .home_company_box1{
    margin-top: 30px;
  }
  .home_company_wrap.sellandbuy .home_company_box2_img:before{
    padding-top: 71.0059%;
  }

  /*メッセージ*/
  .contents_msg_wrap{
    margin-top:70px;
  }
  .contents_msg_box{
    padding: 25px 20px 30px;
  }
  .contents_msg_tt{
    font-size:32px;
  }
  .contents_msg_box .content_desc{
    margin-top: 35px;
  }

  /*種類*/
  .sellandbuy_sell_items{

  }
  .sellandbuy_sell_item{
    width:50%;
  }
  .sellandbuy_sell_item_img:before{
    padding-top: 550px;
  }
  .sellandbuy_sell_item_inner{
    padding: 23px 58px 32px;
  }
  .sellandbuy_sell_item_txt{
    font-size: 30px;
  }
  .sellandbuy_sell_item .content_desc{

  }

  /*違い*/
  .sellandbuy_chigai_tt{

  }
  .sellandbuy_chigai_txt{
    font-size: 20px;
  }
  .sellandbuy_chigai_tbl{
    min-width: 1200px;
  }

  /*おすすめ*/
  .sellandbuy_contents_item{

  }
  .sellandbuy_contents_item:nth-child(n+2){
    margin-top:80px;
  }
  .sellandbuy_contents_item_top{

  }
  .sellandbuy_contents_item_top .contents_layout_box1{

  }
  .sellandbuy_contents_item_top .contents_layout_box1_tt{

  }
  .sellandbuy_contents_item_top .sub_title{

  }
  .sellandbuy_contents_item_top .content_desc{

  }
  .sellandbuy_contents_item_top .read_more{

  }
  .sellandbuy_contents_item_top .read_more a{
    width: 100%;
  }
  .sellandbuy_contents_item_top .contents_layout_box2{

  }
  .sellandbuy_contents_item_top .contents_layout_box2_img:before{

  }
  .sellandbuy_contents_item_top .contents_layout_box2_img:after{

  }

  /*メリット*/
  .sellandbuy_contents_item_btm{
    margin-top: 60px;
  }
  .sellandbuy_contents_item_btm_tt{
    padding: 2px 29px;
  }
  .sellandbuy_contents_item_btm_en{
    font-size: 30px;
  }
  .sellandbuy_contents_item_btm_en:after{
    margin: 0 23px; 
  }
  .sellandbuy_contents_item_btm_ja{
    font-size: 18px;
  }
  .sellandbuy_contents_item_btm_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-20px;
    margin-top: 40px;
  }
  .sellandbuy_contents_item_btm_items .realestate_problem_item{

  }
  .sellandbuy_contents_item_btm_items .content_desc{

  }

  /*買う*/
  .home_company_wrap.buy{
    margin-top: 0;
  }
  .home_company_wrap.buy .home_company_box1_en{
    order: 2;
  }
  .home_company_wrap.buy .home_company_box1_inner{
    order: 1;
  }
  .home_company_wrap.buy .content_desc{
    order: 2;
  }
  .home_company_wrap.buy .home_other_box1_desc_line{
    order: 1;
    width: 12.666%;
  }
  .link_btn{
    display: block;
    margin-top: 40px;
  }
}
@media (min-width:1024px){
  .pg_sellandbuy{

  }
  .pg_sellandbuy .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_sellandbuy .section.sec2{
    padding-top: 145px;;
    padding-bottom: 100px;;
  }
  .pg_sellandbuy .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_sellandbuy .section.sec4{
    padding-top: 110px;
    padding-bottom: 63px;
  }


  /*見出し*/
  .page_hdr_wrap.sellandbuy{

  }
  .page_hdr_wrap.sellandbuy .page_hdr_box1{
    width:49.01%;
    order: 2;
  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2{
    width:44.73%;
    order: 1;
    padding-top: 10px;
  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2_btm{
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
  .page_hdr_wrap.sellandbuy .page_hdr_box2_btm_img:before{
    padding-top: 109.55%;
  }

  /*カテゴリ*/
  .sellandbuy_cate_wrap{

  }
  .sellandbuy_cate_wrap .read_more{

  }
  .sellandbuy_cate_wrap .read_more a{

  }

  /*売りたい方*/
  .home_company_wrap.sellandbuy{
    padding: 105px 0 115px;
    margin-top: 117px;
  }
  .home_company_wrap.sellandbuy:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    right: 19.73%;
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .home_company_wrap.sellandbuy .home_company_box1{
    position: relative;
    transform: none;
    margin-top: 0;
  }
  .home_company_wrap.sellandbuy .home_company_box1_inner{
    width: 77.05%;
  }
  .home_company_wrap.sellandbuy .home_company_box1 .sec_title_ja{
    font-size: 28px;
  }
  .home_company_wrap.sellandbuy .home_company_box2{
    width: 32.76%;
    padding-top: 17px;
  }
  .home_company_wrap.sellandbuy .home_company_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_company_wrap.sellandbuy .home_company_box2_img:before{

  }

  .home_company_wrap.sellandbuy .home_other_box1_desc{
    padding-top: 60px;
  }

  /*メッセージ*/
  .contents_msg_wrap{
    margin-top: 117px;
  }
  .contents_msg_box{
    padding: 25px 0 30px;
  }
  .contents_msg_tt{
    font-size:42px;
  }
  .contents_msg_box .content_desc{

  }

  /*種類*/
  .sellandbuy_sell_items{

  }
  .sellandbuy_sell_item{

  }
  .sellandbuy_sell_item_img:before{
    padding-top: 500px;
  }
  .sellandbuy_sell_item_inner{
    padding: 23px 58px 32px;
  }
  .sellandbuy_sell_item_tt{
    padding-bottom: 27px;
  }
  .sellandbuy_sell_item_txt{
    font-size: 35px;
  }
  .sellandbuy_sell_item .content_desc{
    margin-top: 40px;
  }

  /*違い*/
  .sellandbuy_chigai_tt{

  }
  .sellandbuy_chigai_txt{
    font-size: 25px;
  }
  .sellandbuy_chigai_tbl{
    min-width: inherit;
  }

  /*おすすめ*/
  .sellandbuy_contents_item{

  }
  .sellandbuy_contents_item:nth-child(even) .contents_layout_box1{
    order: 2;
  }
  .sellandbuy_contents_item:nth-child(even) .contents_layout_box2{
    order: 1;
  }
  .sellandbuy_contents_item:nth-child(n+2){
    margin-top: 110px;
  }
  .sellandbuy_contents_item_top{

  }
  .sellandbuy_contents_item_top .contents_layout_box1{
    width: 36.51%;
  }
  .sellandbuy_contents_item_top .contents_layout_box1_tt{

  }
  .sellandbuy_contents_item_top .sub_title{

  }
  .sellandbuy_contents_item_top .content_desc{

  }
  .sellandbuy_contents_item_top .read_more{
    margin-top: 42px;
  }
  .sellandbuy_contents_item_top .contents_layout_box2{
    width: 57.23%;
    padding-top: 10px;;
  }
  .sellandbuy_contents_item_top .contents_layout_box2_img:before{

  }
  .sellandbuy_contents_item_top .contents_layout_box2_img:after{

  }

  /*メリット*/
  .sellandbuy_contents_item_btm{

  }
  .sellandbuy_contents_item_btm_tt{

  }
  .sellandbuy_contents_item_btm_en{
    font-size: 40px;
  }
  .sellandbuy_contents_item_btm_ja{

  }
  .sellandbuy_contents_item_btm_items{
    margin-top: 50px;
  }
  .sellandbuy_contents_item_btm_items .realestate_problem_item{

  }
  .sellandbuy_contents_item_btm_items .content_desc{
    margin-top: 13px;
  }

  /*買う*/
  .home_company_wrap.buy{
    margin-top: 20px;
  }
  .home_company_wrap.buy:before{
    right: auto;
    left: 19.73%;
  }
  .home_company_wrap.buy .home_company_box1{
    order: 2;
  }
  .home_company_wrap.buy .home_company_box2{
    order: 1;
    margin-left: 0;
  }
  .home_company_wrap.buy .home_company_box2_img{
    margin-left: var(--margin-for-device-side);
    margin-right: 0;
  }

  .home_company_wrap.buy .home_other_box1_desc_line{
    order: 1;
    width: 18.666%;
  }
}
@media (min-width:1200px){
  .home_company_wrap.sellandbuy .home_company_box1 .sec_title_ja{
    font-size: 34px;
  }

  /*種類*/
  .sellandbuy_sell_item_img:before{
    padding-top: 450px;
  }
}
@media (min-width:1540px){
  /*売りたい方*/
  .home_company_wrap.sellandbuy .home_company_box2{
    width: 42.76%;
  }
  .home_company_wrap.sellandbuy .home_company_box1_inner{
    width: 74.05%;
  }

  .sellandbuy_contents_item_btm .realestate_problem_item_outer{
    padding: 27px 39px 26px;
  }
  .sellandbuy_contents_item_btm .realestate_problem_item_tt{
    margin:0 -20px;
  }

  /*買う*/
  .home_company_wrap.buy .home_company_box1{
    width: 51.98%
  }
  .home_company_wrap.buy .home_company_box2{
    width: 42.1%;
  }
}
@media (min-width:1740px){
  .sellandbuy_sell_item_img:before{
    padding-top: 378px;
  }
}

/*******************************
*　不動産管理
********************************/
.pg_management{

}
.pg_management .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_management .section.sec2{
  padding-top: 70px;;
  padding-bottom: 0;
}
.pg_management .section.sec3{
  padding-top: 120px;
  padding-bottom: 50px;
}
.pg_management .section.sec4{
  background: #f5f5f5;
  padding: 50px 0;
}
.pg_management .section.sec5{

}
/* .body_management .ftr_contact_wrap{
    margin-top: 0;
  }*/

/*見出し*/
.page_hdr_wrap.manage{

}
.page_hdr_wrap.manage .page_hdr_box1{

}
.page_hdr_wrap.manage .page_hdr_box2{

}
.page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_top{
  width: 88.23%;
  position: relative;
}
.page_hdr_wrap.manage .page_hdr_box2_top_img:before{
  padding-top: 65%;
}
.page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_btm{
  width: 88.23%;
  margin-left:auto;
}
.page_hdr_wrap.manage .page_hdr_box2_btm_img:before{
  padding-top: 59.83%;
}

/*管理*/
.realestate_problem_wrap.manage{

}
.realestate_problem_wrap.manage{

}
.realestate_problem_wrap.manage .realestate_problem_item_outer{
  padding: 14px 24px 14px;
}
.realestate_problem_wrap.manage .realestate_problem_item_list{

}

/*悩み*/
.manage_ploblem_box{
  position: relative;
  margin-top: 36px;
}
.manage_ploblem_box:before{
  content: "";
  display: block;
  width: 1920px;
  aspect-ratio:1920 / 533;
  background-image: url(/system_panel/uploads/images/bg5.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 20px;;
  left: 50%;
  transform:translateX(-50%);
}
.manage_ploblem_box .contents_msg_box{

  margin-top: 40px;
}
.manage_ploblem_box .read_more a{
  background-image: url(/system_panel/uploads/images/btn_bg2.jpg);
}

/*特徴*/
.contents_hdr_wrap.feature{

}
.contents_hdr_wrap.feature .contents_hdr_box1{

}
.contents_hdr_wrap.feature .contents_hdr_box2{
  border-bottom: 1px solid #000000;
}
.contents_layout_items.bg_gray_double{
  position: relative;
}
.contents_layout_items.bg_gray_double:before{
  content: "";
  display: block;
  width: 100vw;
  height: 29.81%;
  background: #f5f5f5;
  position: absolute;
  right: auto;
  top: 9.4%;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.contents_layout_items.bg_gray_double:after{
  content: "";
  display: block;
  width: 100vw;
  height: 29.81%;
  background: #f5f5f5;
  position: absolute;
  left: auto;
  bottom: 4.9%;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.contents_layout_items.type2{

}
.contents_layout_items.type2 .contents_layout_box1{

}
.contents_layout_items.type2 .contents_layout_box2{

}
.contents_layout_items.type2 .contents_layout_box2_img{
  width: 99.42%;
}
.contents_layout_items.type2 .contents_layout_box2_img:before{
  padding-top: 52.02%;
}
.contents_layout_items.type2 .contents_layout_item:nth-child(odd) .contents_layout_box2_img{
  margin-left: auto;
}
.contents_layout_items.type2 .contents_layout_item:nth-child(even) .contents_layout_box2_img{
  margin-right: auto;
}
.contents_layout_items.type2 .sub_title{
  margin: 0 -16px 0 0;;
}

.contents_layout_items.type2 .contents_layout_box2_img_txt{
  letter-spacing: 0;
  bottom: auto;
  top: -4px;
  z-index: 2;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.contents_layout_items.type2 .contents_layout_item:nth-child(odd) .contents_layout_box2_img_txt{
  right: -5px;
}
.contents_layout_items.type2 .contents_layout_item:nth-child(even) .contents_layout_box2_img_txt{
  left: 2px;
}

.contents_layout_items.type2 .contents_layout_box2_img:after{
  width: 1px;
  height: 100%;
  bottom: auto;
  top: 0;
  background: var(--main-color);
}
.contents_layout_items.type2 .contents_layout_item:nth-child(odd) .contents_layout_box2_img:after{
  left: -5px;
  right: auto;
}
.contents_layout_items.type2 .contents_layout_item:nth-child(even) .contents_layout_box2_img:after{
  left: auto;
  right: -5px;
}

/*サービス*/
.realestate_problem_items.service .realestate_problem_item_inner{
  position: relative;
  background: #fff;
  background-image: none;
}
.realestate_problem_items.service .realestate_problem_item_inner:before{
  content: "";
  display: block;
  width: 21.73%;
  aspect-ratio: 100 / 40;
  background-image: url(/system_panel/uploads/images/left_bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  left: -2.17%;
}
.realestate_problem_items.service .realestate_problem_item_inner:after{
  content: "";
  display: block;
  width: 21.73%;
  aspect-ratio: 100 / 41;
  background-image: url(/system_panel/uploads/images/right_top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -10px;
  right: -2.17%;;
}


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

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

}
@media (max-width:767px){
  .realestate_problem_wrap.manage .realestate_problem_item:nth-child(n+2){
    margin-top: 16px;
  }
  .manage_ploblem_box:before{
    width: 1100px;
  }

  /*特徴*/
  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    font-size: 34px;
    top: -3px;
  }
  .contents_layout_items.type2 .contents_layout_item:nth-child(odd) .contents_layout_box2_img_txt{
    right: -1px;

  }
  .contents_layout_items.type2 .contents_layout_item:nth-child(even) .contents_layout_box2_img_txt{
    left: -1px;;

  }

  .contents_layout_items.bg_gray_double:before{
    top: 13.4%;
  }
  .contents_layout_items.bg_gray_double:after{
    bottom: 1.9%;
  }

  .realestate_problem_wrap.manage .realestate_problem_item_outer{
    padding: 14px 46px 14px;
  }
}
@media (min-width:768px){
  .pg_management{

  }
  .pg_management .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_management .section.sec2{
    padding-top: 100px;;
    padding-bottom: 0;
  }
  .pg_management .section.sec3{
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .pg_management .section.sec4{
    padding: 80px 0;
  }
  .pg_management .section.sec5{

  }
  /*   .body_management .ftr_contact_wrap{
      margin-top: 0;
    }*/

  /*見出し*/
  .page_hdr_wrap.manage{

  }
  .page_hdr_wrap.manage .page_hdr_box1{

  }
  .page_hdr_wrap.manage .page_hdr_box2{
    width: 75%;
    margin-inline:auto;
  }
  .page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_top{

  }
  .page_hdr_wrap.manage .page_hdr_box2_top_img:before{

  }
  .page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_btm{

  }
  .page_hdr_wrap.manage .page_hdr_box2_btm_img:before{

  }
  .contents_layout_items.bg_gray_double:before{
    top: 4.4%;
  }
  .contents_layout_items.bg_gray_double:after{
    bottom: 11.9%;
  }
  /*悩み*/
  .manage_ploblem_box{
    margin-top: 56px;
  }
  .manage_ploblem_box:before{
    width: 1700px;
    top: 30px;;
  }
  .manage_ploblem_box .contents_msg_box{
    margin-top: 150px;
  }
  .manage_ploblem_box .read_more{

  }
  .manage_ploblem_box .read_more a{
    width: 100%;
    max-width: 395px;
  }

  /*特徴*/
  .contents_hdr_wrap.feature{

  }
  .contents_hdr_wrap.feature .contents_hdr_box1{

  }
  .contents_hdr_wrap.feature .contents_hdr_box2{

  }
  .contents_layout_items.type2{

  }
  .contents_layout_items.type2 .contents_layout_box1{

  }
  .contents_layout_items.type2 .contents_layout_box2{

  }
  .pg_esthe .section.sec2 .contents_hdr_wrap.rental .contents_hdr_box2{
    width: 46.73%;
  }
  .contents_hdr_wrap.rental .contents_hdr_box2{
    width: 44.73%;
  }
  .realestate_problem_items.service .realestate_problem_item_inner:after{
    top: -9px;
  }
  .realestate_problem_items.service .realestate_problem_item_inner:before{
    bottom: -8px;
  }
}
@media (min-width:1024px){
  .pg_management{

  }
  .pg_management .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_management .section.sec2{
    padding-top: 135px;;
    padding-bottom: 0;
  }
  .pg_management .section.sec3{
    padding-top: 225px;
    padding-bottom: 120px;
  }
  .pg_management .section.sec4{
    padding: 115px 0 200px;
  }
  .pg_management .section.sec5{

  }
  /*  .body_management .ftr_contact_wrap{
      margin-top: 0;
    }*/

  /*見出し*/
  .page_hdr_wrap.manage{

  }

  .page_hdr_wrap.manage .page_hdr_box1{
    width: 49.01%;
  }
  .page_hdr_wrap.manage .page_hdr_box2{
    width: 44.73%;
    padding-top: 16px;
    margin-inline:0;
  }
  .page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_top{

  }
  .page_hdr_wrap.manage .page_hdr_box2_top_img:before{

  }
  .page_hdr_wrap.manage .page_hdr_box2 .page_hdr_box2_btm{

  }
  .page_hdr_wrap.manage .page_hdr_box2_btm_img:before{

  }

  /*管理*/
  .realestate_problem_wrap.manage .realestate_problem_items{
    margin-top: 45px; 
  }
  .realestate_problem_wrap.manage .realestate_problem_item:nth-child(n+4){
    margin-top: 36px;
  }

  /*悩み*/
  .manage_ploblem_box{
    margin-top: 56px;
  }
  .manage_ploblem_box:before{
    width: 1920px;
    top: 20px;;
  }
  .manage_ploblem_box .contents_msg_box{
    max-width: 1110px;
    margin-top: 56px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 0 40px;
    margin-top: 130px;
  }
  .manage_ploblem_box .contents_msg_tt{
    font-size: 35px;
  }
  .manage_ploblem_box .read_more{
    margin-top: 41px;
  }

  /*特徴*/
  .contents_hdr_wrap.feature{

  }
  .contents_hdr_wrap.feature .contents_hdr_box1,
  .contents_hdr_wrap.service .contents_hdr_box1{
    width: 45.26%;
  }
  .pg_esthe .section.sec2 .contents_hdr_wrap.rental .contents_hdr_box2,
  .contents_hdr_wrap.rental .contents_hdr_box2,
  .contents_hdr_wrap.feature .contents_hdr_box2,
  .contents_hdr_wrap.service .contents_hdr_box2{
    width: 54.73%;
  }
  .contents_layout_items.bg_gray_double:before{
    content: "";
    display: block;
    width: 100vw;
    height: 29.81%;
    background: #f5f5f5;
    position: absolute;
    right: 19.73%;
    top: 9.4%;
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .contents_layout_items.bg_gray_double:after{
    content: "";
    display: block;
    width: 100vw;
    height: 29.81%;
    background: #f5f5f5;
    position: absolute;
    left: 19.73%;
    bottom: 8.4%;
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .contents_layout_items.type2{

  }
  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    font-size: 50px;
  }
  .contents_layout_items.type2 .contents_layout_box1{
    width: 39.51%;
  }
  .contents_layout_items.type2 .contents_layout_box2{
    width: 57.23%;
    padding-top: 12px;
  }
  .contents_layout_items.type2 .contents_layout_box1 .content_desc{
    margin-top: 56px;
  }
  .contents_layout_items.type2 .contents_layout_item:nth-child(n+2){
    margin-top: 70px;
  }

  .realestate_problem_items.service{
    margin-inline:-20px;
    margin-top: 105px;
  }
  .realestate_problem_items.service .realestate_problem_item{
    padding: 0 30px;
  }

  .realestate_problem_items.service .realestate_problem_item_inner:before{
    bottom: -7px;
  }
  .realestate_problem_items.service .realestate_problem_item_inner:after{
    top: -7px;
  }
}
@media (min-width:1200px){
  /*特徴*/
  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    font-size: 60px;
  }
  .contents_hdr_wrap.feature .contents_hdr_box1,
  .contents_hdr_wrap.service .contents_hdr_box1{
    width: 41.26%;
  }
  .contents_hdr_wrap.feature .contents_hdr_box2,
  .contents_hdr_wrap.service .contents_hdr_box2{
    width: 57.73%;
  }
  .contents_layout_items.type2 .contents_layout_item:nth-child(n+2){
    margin-top: 108px;
  }

  .realestate_problem_items.service .realestate_problem_item_inner:before{
    bottom: -10px;
  }
  .realestate_problem_items.service .realestate_problem_item_inner:after{
    top: -10px;
  }

  .realestate_problem_wrap.manage .realestate_problem_item_outer{
    padding: 14px 10px 14px;
  }
}
@media (min-width:1540px){
  /*特徴*/
  .contents_hdr_wrap.feature .contents_hdr_box1,
  .contents_hdr_wrap.service .contents_hdr_box1{
    width: 31.26%;
  }
  .contents_hdr_wrap.feature .contents_hdr_box2,
  .contents_hdr_wrap.service .contents_hdr_box2{
    width: 68.73%;
  }

  .contents_layout_items.type2 .contents_layout_item:nth-child(n+2){
    margin-top: 108px;
  }
  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    font-size: 70px;
  }

  .realestate_problem_items.service .realestate_problem_item_outer{
    padding: 22px 33px 22px;
  }

  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    top: -6px;
  }

  .contents_layout_items.type2 .contents_layout_box1{
    width: 36.51%;
  }
}
@media (min-width:1740px){
  /*特徴*/
  /*特徴*/
  .contents_hdr_wrap.feature .contents_hdr_box1,
  .contents_hdr_wrap.service .contents_hdr_box1{
    width: 30.26%;
  }
  .contents_hdr_wrap.feature .contents_hdr_box2,
  .contents_hdr_wrap.service .contents_hdr_box2{
    width: 69.73%;
  }
  .contents_layout_items.type2 .contents_layout_box2_img_txt{
    font-size: 90px;
  }

  .realestate_problem_wrap.manage .realestate_problem_item_outer{
    padding: 14px 24px 14px;
  }
}

/*******************************
*　エステ
********************************/
.pg_esthe{

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


/*見出し*/
.page_hdr_wrap.esthe{

}
.page_hdr_wrap.esthe .home_ayumu_box1_tt{
  color: var(--sub-color);
}
.page_hdr_wrap.esthe .page_hdr_box1{

}
.page_hdr_wrap.esthe .page_hdr_box2{

}
.page_hdr_wrap.esthe .page_hdr_box2_top{
  width: 81.61%;
}
.page_hdr_wrap.esthe .page_hdr_box2_top_img:after{
  display: none;
}
.page_hdr_wrap.esthe .page_hdr_box2_top_img:before{
  padding-top:120.72%;
}
.page_hdr_wrap.esthe .page_hdr_box2_btm{
  width: 55.88%;
}
.page_hdr_wrap.esthe .page_hdr_box2_btm_img:after{
  display: none;
}
.page_hdr_wrap.esthe .page_hdr_box2_btm_img:before{
  padding-top:131.57%;
}
.page_hdr_wrap.esthe .page_hdr_box2_btm{
  padding-top: 160px;
}

.read_more.hp p{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row-reverse;
}

.read_more.hp p:after{
  content: "";
  display: block;
  width: 21px;
  aspect-ratio:1 / 1;
  background-image: url(/system_panel/uploads/images/hp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}


/*特徴*/
.sec_title_en.bk{
  color: #1a1a1a;
}
.esthe_contents_items{
  display: flex;
  flex-wrap: wrap;
  padding-top:50px;
  padding-bottom: 50px;
  position: relative;
}
.esthe_contents_items:before{
  content: "";
  display: block;
  width: 100vw;
  height: 65.53%;
  background: #f5f5f5;
  position: absolute;
  bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
}
.esthe_contents_item{
  width: 100%;

}
.esthe_contents_item:nth-child(n+2){
  margin-top: 50px;
}
.esthe_contents_item_inner{

}
.esthe_contents_item_img:before{
  padding-top: 114.58%;
}
.esthe_contents_item .realestate_problem_item_tt{
  margin-top: 16px;
}
.esthe_contents_item .content_desc{
  margin-top: 10px;
}

/*サービス*/
.esthe_service_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.esthe_service_item{

}
.esthe_service_item:nth-child(n+2){
  margin-top: 40px;
}
.esthe_service_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.esthe_service_item_left{
  width: 100%;
}
.esthe_service_left_img:before{
  padding-top: 260px;
}
.esthe_service_left_tt{
  width: 100%;
  background:rgba(255,255,255,0.8);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  position: absolute;
  left: 0;
  bottom: 12px;
  z-index: 1;
  padding:5px;
}
.esthe_service_item_right{
  width: 100%;
  margin-top: 20px;
}
.esthe_service_item_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.44em;
}
.esthe_service_item_tt:after{
  content: "";
  display: block;
  width: 95px;
  height: 1px;
  background: #1a1a1a;
  margin: 18px 0 0;
}
.esthe_service_item_right.content_desc{
  margin-top: 13px;
}

/*店舗情報*/
.home_other_item.shop{
  position: relative;
  padding: 60px 0;
}
.home_other_item.shop:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_other_item.shop .sec_title_en{
  color: #000;
}
.home_other_item.shop .home_other_box2_img:after{
  display: none;
}

/*テーブル*/
.home_other_item.shop .table_rows_th,
.home_other_item.shop .table_rows_td{
  font-size: 16px;
  font-weight: 400; 
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-bottom: 1px solid #dfdfdf;
}
.home_other_item.shop .table_rows_th{
  background: none;
}
.home_other_item.shop .table_rows_td{
  background: none;
  line-height: 1.875em;
}

/*地図*/
.gmap{

}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .esthe_contents_items:before{
    height: 90%;
  }

  /*テーブル*/
  .home_other_item.shop .table_rows_th,
  .home_other_item.shop .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .home_other_item.shop .table_rows_th{
    background: #e9e9e9
  }
  .home_other_item.shop　.table_rows_td{

  }
  .home_other_item.shop　.table_rows_tr:last-child .table_rows_td{
    border-bottom: 0;
  }
}
@media (min-width:768px){
  .pg_esthe{

  }
  .pg_esthe .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec2{
    padding-top:80px;;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec3{
    padding-top: 80px;;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec4{
    padding-top: 110px;
    padding-bottom: 0;
  }


  /*見出し*/
  .page_hdr_wrap.esthe{

  }
  .page_hdr_wrap.esthe .page_hdr_box1{

  }
  .page_hdr_wrap.esthe .page_hdr_box2{
    width: 75%;
    margin-inline:auto;
  }
  .page_hdr_wrap.esthe .page_hdr_box2_btm{
    padding-top: 388px;
  }
  .read_more.hp a{
    font-size: 18px;
  }

  /*特徴*/
  .esthe_contents_items{
    margin-inline:-10px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .esthe_contents_item{
    width: 33.333%;
    padding: 0 10px;
  }
  .esthe_contents_item:nth-child(n+2){
    margin-top: 30px;
  }
  .esthe_contents_item:nth-child(n+3){
    margin-top: 60px;
  }
  .esthe_contents_item_inner{

  }
  .esthe_contents_item_img:before{

  }
  .esthe_contents_item .realestate_problem_item_tt{
    margin-top: 23px;
  }
  .esthe_contents_item .content_desc{

  }

  /*サービス*/
  .esthe_service_items{
    margin-inline: -15px;
    margin-top: 70px;
  }
  .esthe_service_item{
    width: 50%;
    padding: 0 15px;
  }
  .esthe_service_item:nth-child(n+2){
    margin-top:0;
  }
  .esthe_service_item:nth-child(n+3){
    margin-top:50px;
  }
  .esthe_service_item_inner{

  }
  .esthe_service_item_left{

  }
  .esthe_service_left_img:before{

  }
  .esthe_service_left_tt{
    font-size: 20px;
  }
  .esthe_service_item_right{
    margin-top: 20px;
  }
  .esthe_service_item_tt{
    font-size: 22px;
  }
  .esthe_service_item_right.content_desc{

  }


  /*店舗*/
  .home_other_item.shop{
    padding: 111px 0 100px;
  }
  .home_other_item.shop .home_other_box1_desc{
    padding-top: 80px;
  }
  /*テーブル*/
  .home_other_item.shop .table_rows_th,
  .home_other_item.shop .table_rows_td{
    padding: 16.5px 0 8.5px;
  }
  .home_other_item.shop .table_rows_th{
    width: 145px;
    padding-top: 19px;
  }
  .home_other_item.shop .table_rows_tr:first-child .table_rows_th,
  .home_other_item.shop .table_rows_tr:first-child .table_rows_td{
    padding-top: 0;
  }
  .home_other_item.shop .table_rows_td{
    width: auto;
    padding-right: 0;
  }

  .home_other_item.shop .read_more{
    margin-top: 49px;
  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 400px;
  }
}
@media (min-width:1024px){
  .pg_esthe{

  }
  .pg_esthe .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec2{
    padding-top: 105px;;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec3{
    padding-top: 108px;;
    padding-bottom: 0;
  }
  .pg_esthe .section.sec4{
    padding-top: 110px;
    padding-bottom: 0;
  }

  /*見出し*/
  .page_hdr_wrap.esthe{

  }
  .page_hdr_wrap.esthe .page_hdr_box1{
    order: 2;
    width: 49.01%;
  }
  .page_hdr_wrap.esthe .page_hdr_box1 .content_desc{
    margin-top: 27px;
  }
  .page_hdr_wrap.esthe .page_hdr_box2{
    order: 1;
    width: 44.73%;
    margin-top: 23px;
    margin-inline:0;
  }
  .page_hdr_wrap.esthe .page_hdr_box2_btm{
    padding-top: 388px;
  }
  .read_more.hp a{
    max-width: 422px;
  }
  .read_more.hp p{
    padding: 16px;
  }
  .page_hdr_wrap.esthe .read_more{
    margin-top: 45px;
  }

  /*特徴*/
  .esthe_contents_items{
    margin-inline:-20px;
    padding-top: 100px;
    padding-bottom: 106px;
  }
  .esthe_contents_item{
    padding: 0 20px;
  }
  .esthe_contents_item:nth-child(n+2){
    margin-top: 56px;
  }
  .esthe_contents_item:nth-child(n+3){
    margin-top: 120px;
  }
  .esthe_contents_item_inner{

  }
  .esthe_contents_item_img:before{

  }
  .esthe_contents_item .realestate_problem_item_tt{

  }
  .esthe_contents_item .content_desc{

  }

  /*サービス*/
  .esthe_service_items{
    margin-top: 90px;
  }
  .esthe_service_item{

  }
  .esthe_service_item_inner{

  }
  .esthe_service_item_left{

  }
  .esthe_service_left_img:before{

  }
  .esthe_service_left_tt{

  }
  .esthe_service_item_right{

  }
  .esthe_service_item_tt{
    font-size: 20px;
  }
  .esthe_service_item_right.content_desc{

  }

  /*店舗情報*/
  .home_other_item.shop{
    padding: 111px 0 120px;
  }
  .home_other_item.shop:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    right: 19.73%;
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }
  .home_other_item.shop .sec_title_en{
    color: #000;
  }
  .home_other_item.shop .home_other_box1{
    padding-top: 0;
  }
  .home_other_item.shop .home_other_box2_img{
    margin-right: var(--margin-for-device-side)
  }
  .home_other_item.shop .home_other_box2{
    width: 50.98%;
    padding-top: 10px;
  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 550px;
  }
}
@media (min-width:1200px){


}
@media (min-width:1540px){
  /*サービス*/
  .esthe_service_items{

  }
  .esthe_service_item:nth-child(n+3){
    margin-top:42px;
  }
  .esthe_service_item:nth-child(odd) .esthe_service_item_inner{
    padding-right: 20px;
  }
  .esthe_service_item:nth-child(even) .esthe_service_item_inner{
    padding-left: 20px;
  }
  .esthe_service_item_left{
    width: 45.51%;
    padding-top: 10px;
  }
  .esthe_service_item_right{
    width: 50%;
    margin-top: 0;
  }
  .esthe_service_item_tt{
    font-size: 22px;
  }


}

@media (min-width:1740px){
  .esthe_service_item_tt{
    font-size: 25px;
  }
}

/*******************************
*　飲食
********************************/
.pg_food{

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

/*見出し*/
.page_hdr_wrap.soba{

}
.page_hdr_wrap.soba .page_hdr_box1{

}
.page_hdr_wrap.soba .home_ayumu_box1_tt{
  color: #ff8400;
}
.page_hdr_wrap.soba .page_hdr_box2{

}
.page_hdr_wrap.soba .page_hdr_box2_top{
  width: 86.02%;
  left: auto;
  right: 0;
}
.page_hdr_wrap.soba .page_hdr_box2_top_img:before{
  padding-top: 127.35%;
}
.page_hdr_wrap.soba .page_hdr_box2_top_img:after{
  display: none;
}
.page_hdr_wrap.soba .page_hdr_box2_btm{
  width: 69.85%;
  margin-left: 0;
  margin-right: auto;
}
.page_hdr_wrap.soba .page_hdr_box2_btm_img:before{
  padding-top: 73.68%;
}
.page_hdr_wrap.soba .page_hdr_box2_btm_img:after{
  display: none;
}
.read_more.soba{

}
.read_more_inner{
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.read_more.soba p:after{
  display: none;
}
.read_more.soba p{
  transition: all .2s;
}
/*.read_more a:hover p{
  background: #181818;
}
.read_more a:hover .read_more_inner{
  background: #181818;
}*/
.read_more a:hover .bk{
  display: none;
}
.read_more a .wh{
  display: none;
}
.read_more a:hover .wh{
  display: block;
}

/*こだわり*/
.pg_food .section.sec2 .contents_layout_items.type2 .contents_layout_box2_img:after{
  background: #ff8400;
}

.contents_layout_item.bg_gray_right{
  padding: 80px 0 100px;
  position: relative;
}
.contents_layout_item.bg_gray_right:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f5f5f5;
  position: absolute;
  left: 19.73%;
  top: 49%;
  transform: translateY(-50%);
  z-index: -1;
  margin-left: 0;
  margin-right: 0;
}

/*メニュー*/
.esthe_contents_items.menu{

}
.esthe_contents_items.menu:before{
  height: 72.02%;
}
.esthe_contents_items.menu .esthe_contents_item_img:before{
  padding-top: 72.91%;
}
.esthe_contents_items.menu .read_more{
  width: 100%;
}

/*店舗*/
.home_other_item.food:before{
  display: none;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*見出し*/
  .page_hdr_wrap.soba .page_hdr_box2_btm{
    padding-top: 250px;
  }
  .contents_layout_item.bg_gray_right{
    padding: 50px 0;
  }
  .home_other_item.food{
    padding: 0;
  }

  .esthe_contents_items.menu:before{
    height: 90.02%;
  }
}
@media (min-width:768px){
  .pg_food{

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

  /*見出し*/
  .page_hdr_wrap.soba{

  }
  .page_hdr_wrap.soba .page_hdr_box1{

  }
  .page_hdr_wrap.soba .page_hdr_box2{

  }
  .page_hdr_wrap.soba .page_hdr_box2_top{
    width: 48.02%;
  }
  .page_hdr_wrap.soba .page_hdr_box2_top_img:before{

  }
  .page_hdr_wrap.soba .page_hdr_box2_btm{
    width: 57.85%;
  }
  .page_hdr_wrap.soba .page_hdr_box2_btm_img:before{

  }
  .read_more.soba{
    margin-top: 44px;
  }
  .read_more_inner{

  }
  .read_more.soba p:after{
    display: none;
  }
  .read_more.soba a{
    font-size: 18px;
    max-width: 428px;
  }
  .read_more_inner{
    padding: 5px 0 5px 10px;
  }

  .contents_layout_item.bg_gray_right{
    padding: 80px 0 100px;
  }

  /*メニュー*/
  /*メニュー*/
  .esthe_contents_items.menu:before{
    height: 81.02%;
  }
  .esthe_contents_items.menu .esthe_contents_item:nth-child(n+2){
    margin-top: 0;
  }
  .esthe_contents_items.menu .esthe_contents_item:nth-child(n+3){
    margin-top: 0;
  }

  /*店舗*/
  .home_other_item.food{
    padding: 66px 0 68px;
  }
}
@media (min-width:1024px){
  .pg_food{

  }
  .pg_food .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_food .section.sec2{
    padding-top: 95px;;
    padding-bottom: 0;
  }
  .pg_food .section.sec3{
    padding-top: 105px;
    padding-bottom: 0;
  }

  /*見出し*/
  .page_hdr_wrap.soba{

  }
  .page_hdr_wrap.soba .page_hdr_box1{

  }
  .page_hdr_wrap.soba .page_hdr_box2{

  }
  .page_hdr_wrap.soba .page_hdr_box2_top{
    width: 86.02%;
  }
  .page_hdr_wrap.soba .page_hdr_box2_top_img:before{

  }
  .page_hdr_wrap.soba .page_hdr_box2_btm{
    width: 69.85%;
    padding-top: 350px;
  }

  .page_hdr_wrap.soba .page_hdr_box2_btm_img:before{

  }
  .read_more.soba{

  }
  .read_more_inner{

  }
  .read_more.soba p:after{
    display: none;
  }

  .contents_layout_item{
    position: relative;
  }
  .contents_layout_item.bg_gray_right{
    padding: 80px 0 110px;
  }
  .contents_layout_item.bg_gray_right:before{
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    background: #f5f5f5;
    position: absolute;
    left: 19.73%;
    top: 49%;
    transform: translateY(-50%);
    z-index: -1;
    margin-left: 0;
    margin-right: 0;
  }

  /*店舗*/
  .home_other_item.food{
    padding: 66px 0 68px;
  }

  /*メニュー*/
  .esthe_contents_items.menu:before{
    height: 72.02%;
  }
}
@media (min-width:1200px){


}
@media (min-width:1540px){
  .page_hdr_wrap.soba .page_hdr_box2_btm{
    padding-top: 350px;
  }

}
@media (min-width:1740px){
  .page_hdr_wrap.soba .page_hdr_box2_btm{
    padding-top: 510px;
  }

}

/*******************************
*　スタッフ
********************************/
.pg_staff{

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

.staff_contants_items{
  padding-top: 40px;
}
.staff_contants_item{

}
.staff_contants_item_top{
  display: flex;
  flex-wrap:wrap;
}
.staff_contants_item_top_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.staff_contants_item_top_box1_tt{

}
.satff_logo{

}
.staff_contants_item_name{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  border-bottom: 1px solid #d5d4d4;
  padding-bottom: 20px;
  margin-top: 16px;
}
.staff_contants_item_name1{
  font-size: 18px;
  font-weight: 700;
  width: 100%;
}
.staff_contants_item_name2{
  font-size: 16px;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}
.staff_contants_item_top_box1 .content_desc{

}
.content_block{

}
.content_block:nth-child(n+2){
  margin-top: 16px;
}
.staff_contants_item_top_box2{
  width: 100%;
  order: 1;
}
.staff_contants_item_top_img{
  text-align: center;
}
.staff_contants_item_top_img:before{
  padding-top: 107.57%;
}
.staff_contants_deitail_items{
  margin-top: 60px;
}
.staff_contants_deitail_item{

}
.staff_contants_deitail_item:nth-child(n+2){
  margin-top: 50px;
}
.staff_contants_deitail_item_tt{
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px solid #d5d4d4;
  padding-bottom: 16px;
}
.staff_contants_deitail_item .content_desc{
  margin-top:14px;
}

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

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

}
@media (max-width:767px){
  .thanks_text{
    margin-top: 30px;
  }

  .satff_logo{
    width: 170px;
  }

  .staff_contants_item_top_box2{
    width: 50%;
    margin-inline:auto;
  }
}
@media (min-width:768px){
  .pg_staff{

  }
  .pg_staff .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_staff .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_staff .section.sec3{
    padding-top:80px;;
    padding-bottom: 0;
  }

  .staff_contants_items{
    padding-top: 60px;
  }
  .staff_contants_item{

  }
  .staff_contants_item_top{
    display: block;
    position: relative;
  }
  .staff_contants_item_top_box1{

  }
  .staff_contants_item_top_box1_tt{

  }
  .satff_logo{

  }
  .staff_contants_item_name{
    margin-top: 23px;
    padding-bottom: 30px;
  }
  .staff_contants_item_name1{
    font-size: 20px;

  }
  .staff_contants_item_name2{

  }
  .staff_contants_item_top_box1 .content_desc{
    width: 44.73%;
    margin-top: 30px;
  }
  .content_block{

  }
  .content_block:nth-child(n+2){
    margin-top: 35px;
  }
  .staff_contants_item_top_box2{
    width: 30.73%;
    position: absolute;
    right: 0;
    top: 0;
  }

  .staff_contants_item_top_img:before{

  }
  .staff_contants_deitail_items{
    margin-top: 80px;
  }
  .staff_contants_deitail_item{

  }
  .staff_contants_deitail_item:nth-child(n+2){
    margin-top: 80px;
  }
  .staff_contants_deitail_item_tt{
    font-size: 20px;
  }
  .staff_contants_deitail_item .content_desc{

  }
}
@media (min-width:1024px){
  .thanks_text{
    text-align: center;
  }

  .pg_staff{

  }
  .pg_staff .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_staff .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_staff .section.sec3{
    padding-top: 128px;;
    padding-bottom: 0;
  }

  .staff_contants_items{
    padding-top: 80px;
  }
  .staff_contants_item{

  }
  .staff_contants_item_top{

  }
  .staff_contants_item_top_box1{

  }
  .staff_contants_item_top_box1_tt{

  }
  .satff_logo{

  }
  .staff_contants_item_name{
    padding-bottom: 45px;
  }
  .staff_contants_item_name1{
    width: auto;
  }
  .staff_contants_item_name2{
    margin-left: 20px;
  }
  .staff_contants_item_name2:before{
    content: "／";
    margin-right: 5px;
  }
  .staff_contants_item_top_box1 .content_desc{
    margin-top: 40px;
  }
  .content_block{

  }
  .staff_contants_item_top_box2{
    width: 44.73%;
    top: -28px;
  }
  .staff_contants_item_top_img:before{

  }
  .staff_contants_item_top_img{
    width: 69.85%;  
  }
  .staff_contants_deitail_items{
    margin-top: 102px;
  }
  .staff_contants_deitail_item{

  }
  .staff_contants_deitail_item_tt{

  }
  .staff_contants_deitail_item .content_desc{

  }
}
@media (min-width:1200px){
  .staff_contants_deitail_items{
    margin-top: 175px;
  }

}

/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{

}
.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: #443380;
  color: #FFF;
  padding: 11px 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0px;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 12px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
  color: #f8b500;
}

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

  }
  .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: 134px;
  }

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

  }

}



/*******************************
*　ギャラリー（サムネ横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){
  .swiper{
    overflow: visible;
  }
}
@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){


}


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

}
.pg_news .section.sec1{
  padding-top: 0;
  padding-bottom: 0;
}
.posts_layout.news{
  margin-top: 30px;
}

/*一覧*/
.news_list{

}
.news_list .webgene-blog{
  margin: 0px -5px;
  display: flex;
  flex-wrap: wrap;
}
.news_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 20px;
}
.news_list .webgene-item .inner{
  /*  background: #fff;
    border:1px solid #f5f5f5;*/
}
.news_list .webgene-item .box1{
  border:1px solid #f5f5f5;
  border-bottom: none;
}
.news_list .webgene-item .box2{
  padding: 5px 10px;
  border:1px solid #f5f5f5;
  border-top: none;
}
.news_list .webgene-item .img.img_fit{
  overflow: hidden;
  margin: 10px 10px 0;
}
.news_list .webgene-item .img.img_fit:before{
  padding-top: 70.21%;
}
.news_list .webgene-item .img.img_fit img{
}
.news_list .webgene-item .meta{
  display: flex;
  justify-content: space-between;
  align-content: center;
  align-items: center;
}
.news_list .webgene-item .category,
.news_list .webgene-item .date,
.news_list .webgene-item .title{
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.075em;
}
.news_list .webgene-item .category{
  padding: 0 5px;
  font-weight: 500;
  font-size: 13px;
  background: #f8b500;
}
.news_list .webgene-item .category span{

}
.news_list .webgene-item .date{
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}
.news_list .webgene-item .title{
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0em;
  line-height: 1.5;
}
.webgene-pagination{

}
.webgene-pagination li{
  padding: 2px 12px;
  background: transparent;
  border: 1px solid #443380;
}
.webgene-pagination li.selected{
  color: #fff;
  background: #443380;
  border: 1px solid transparent;
}

/* 詳細 */
.newsdetail{

}
.newsdetail .webgene-blog{

}
.newsdetail .webgene-item{

}
.newsdetail .webgene-item .meta{
  display: flex;
  align-content: center;
  align-items: center;
}
.newsdetail .webgene-item .date,
.newsdetail .webgene-item .category,
.newsdetail .webgene-item .title,
.newsdetail .webgene-item .txt{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.newsdetail .webgene-item .date{
  font-size: 16px;
}
.newsdetail .webgene-item .category{
  margin: 0 10px;
  padding: 1.5px 20px;
  font-size: 14px;
  background: #f8b500;
}
.newsdetail .webgene-item .category span{

}
.newsdetail .webgene-item .title{
  font-size: 18px;
  padding-bottom: 5px;
  border-bottom: 1px solid;
}
.newsdetail .webgene-item .post_content{
  margin-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid;
}
.newsdetail .webgene-item .thumb{

}
.newsdetail .webgene-item .thumb img{

}
.newsdetail .webgene-item .txt{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 10px;
}


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

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

}
@media (max-width:767px){
  .news_list .webgene-item .meta{
    display: block;
  }
  .news_list .webgene-item .category{
    display: inline-block;
    margin-top: 5px;
  }
}
@media (min-width:768px){
  .pg_news{

  }
  .pg_news .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .posts_layout.news{
    margin-top: 40px;
  }

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin: 0 -10px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding: 0 10px;
  }

  .news_list .webgene-item .inner{

  }
  .news_list .webgene-item .box1{

  }
  .news_list .webgene-item .box2{
    padding: 10px 15px;
  }
  .news_list .webgene-item .img.img_fit{

  }
  .news_list .webgene-item .meta{
    margin-top: -2px;
  }
  .news_list .webgene-item .category{
    padding: 0 9px 1px;
  }
  .news_list .webgene-item .category span{
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .title{
    margin-top: 7px;
    line-height: 1.75;
  }
  .webgene-pagination{

  }

  /* 詳細 */
  .newsdetail{

  }
  .newsdetail .webgene-blog{

  }
  .newsdetail .webgene-item{

  }
  .newsdetail .webgene-item .meta{

  }
  .newsdetail .webgene-item .date{

  }
  .newsdetail .webgene-item .category{
    margin: 0 20px;
    padding: 1.5px 30px;
  }
  .newsdetail .webgene-item .category span{

  }
  .newsdetail .webgene-item .title{
    margin-top: 14px;
    padding-bottom: 10px;
  }
  .newsdetail .webgene-item .post_content{
    margin-top: 40px;
    padding-bottom: 50px;
  }
  .newsdetail .webgene-item .thumb{

  }
  .newsdetail .webgene-item .txt{
    line-height: 2.125;
    margin-top: 15px;
  }


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

  }
  .pg_news .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .posts_layout.news{
    margin-top: 52px;
  }

  /*一覧*/
  .news_list{

  }
  .news_list .webgene-blog{
    margin: 0 -15px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding: 0 15px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0px;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 40px;
  }
  .news_list .webgene-item .inner{

  }
  .news_list .webgene-item .box1{

  }
  .news_list .webgene-item .box2{
    padding: 17px 13px 23px 10px;
  }
  .news_list .webgene-item .img.img_fit{

  }
  .news_list .webgene-item .meta{
    padding-bottom: 13px;
  }
  .news_list .webgene-item .category{
    padding: 2px 19.5px;
  }
  .news_list .webgene-item .category span{
  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .title{
    margin-top: -5px;
  }
  .webgene-pagination{
    margin-top: 61px;
  }

  /* 詳細 */
  .newsdetail{

  }
  .newsdetail .webgene-blog{

  }
  .newsdetail .webgene-item{

  }
  .newsdetail .webgene-item .meta{

  }
  .newsdetail .webgene-item .date{

  }
  .newsdetail .webgene-item .category{
    margin: 0 27px;
    padding: 1.5px 48px;
  }
  .newsdetail .webgene-item .category span{

  }
  .newsdetail .webgene-item .title{

  }
  .newsdetail .webgene-item .post_content{
    margin-top: 50px;
    padding-bottom: 70px;
  }
  .newsdetail .webgene-item .thumb{

  }
  .newsdetail .webgene-item .txt{
    margin-top: 20px;
  }
  .newsdetail .read_more{
    margin-top: 55px;
  }


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


}


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

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

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

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  padding: 10px 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  border-color: #181818;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
}
.company_tbl .table_rows_td{
  background: #fff;
}

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

/*ギャラリー*/
.company_gallery_items{
  margin: 30px -5px 0;
}
.company_gallery_item{
  padding: 0 5px;
}
.company_gallery_item{

}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img.img_fit{

}
.company_gallery_item_img.img_fit:before{
  padding-top: 80%;
}


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

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

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

  /*会社概要*/
  .table_rows_th,
  .table_rows_td{
    display: block;
    width: 100%;
    border: 1px solid #181818;
    border-bottom: none;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td {
    border-bottom: 1px solid #181818;
  }


  .contents_layout_items.bg_gray_double:before{
    top: 50px;
    height: 700px;
  }
  .contents_layout_items.bg_gray_double:after{
    bottom: 400px;
    height: 640px;
  }
}
@media (min-width:768px){
  .pg_company{

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

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

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 20px 15px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{

  }

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

  /*ギャラリー*/
  .company_gallery_items{
    margin: 40px -10px 0;
  }
  .company_gallery_item{
    padding: 0 10px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0px;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 20px;
  }
  .company_gallery_item_img.img_fit{

  }


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

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

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

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

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

  /*ギャラリー*/
  .company_gallery_items{
    margin: 55px -15px 0;
  }
  .company_gallery_item{
    padding: 0 15px;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 25px;
  }
  .company_gallery_item_img.img_fit{

  }


}
@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-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #181818;
  background: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #181818;
}
.pg_contact .formTh {
  font-size: 16px;
  font-weight: 400;
  padding: 16px 15px 14px 20px;
  background: #ededed;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  border: 1px solid #b80000;
  color: #b80000;;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 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"],
.pg_contact .formTd select[name="structure"],
.pg_contact .formTd select[name="time1"],
.pg_contact .formTd select[name="time2"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd select[name="time1"],
.pg_contact .formTd select[name="time2"]{
  max-width: 110px;
  padding: 5px 24px 5.5px 24px;
  margin-left: 21px;
}
.pg_contact .formTd input[name="situation"],
.pg_contact .formTd input[name="area"],
.pg_contact .formTd input[name="build"]{
  max-width: 135px;
}
.pg_contact .formTd input[name="day_1"],
.pg_contact .formTd input[name="day_2"]{
  max-width: 150px;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact label.after_label{
  margin-left: 10px;
  font-size: 15px;
  letter-spacing: 0.16em;
}
.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{
  font-family: "Noto Sans JP", sans-serif;
  color: var(--main-color);
  font-weight: 400;
}
.pg_contact .formBtn.formSend {
  max-width: 255px;
  width: 100%;
  font-size: 14px;
  padding: 13px;
  margin: 46px auto 0;
  border: 0;
  background: url(/system_panel/uploads/images/contact_btn_bg.jpg) no-repeat center center / cover;
  color: #181818;
  letter-spacing: 0.075em;
  display: block;
  font-weight: 500;
  cursor: pointer;
  position: relative;
}
.pg_contact .formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
/*.pg_contact .formBtn.formSend:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}*/
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0.08em;;
  line-height: 2em;
  font-size: 16px;
  font-weight: 400;
}
.radioArea .d-inline-block{
  margin-right: 29px;
}
.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.812em;
}
.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: 80px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 45px;
  padding-left: 10px;
}
.privacy_item {
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 28px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #443380;
}
.privacy_txt{
  letter-spacing: 0.04em;
  line-height: 1.875;
  text-align: justify;
}

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

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

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

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

.privacy_item_box {
  padding: 30px 64px 30px 29px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 0;
}

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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

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

/*******************************
*　お問い合わせ送信完了
********************************/
.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;
  }
  .addArea .d-block{
    display: inline-block!important;
  }
  label.label.zipcode_i{
    line-height: 1.74em;
  }
}


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

.lg_btn{
  margin-bottom: 30px;
}
.lg_btn p{
  position: relative;
  display: flex;
  align-items: center;
}
.lg_btn p:before{
  content: "";
  display: block;
  width: 24px;
  height: 18px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 10px;
}
.lg_btn.ja p:before{
  background-image: url(/system_panel/uploads/images/ntf_131.png);
}
.lg_btn.en p:before{
  background-image: url(/system_panel/uploads/images/ntf_401.png);
}
.body_foodEn h2,
.body_foodEn h3,
.body_foodEn p{
  letter-spacing: 0;
}

.body_foodEn .content_desc{
  text-align: left;
}
.body_foodEn p.ftr_contact_box2_tel2{
  letter-spacing: 0.2em!important;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .thanks_text{
    margin-top: 30px;
  }
  .pg_vacant .section.sec2 .realestate_problem_item_outer,
  .pg_management .section.sec2 .realestate_problem_item_outer{
    padding: 14px 24px 14px;
  }
}
@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;
  }

  .pg_food .section.sec4 .home_other_box2,
  .pg_esthe .section.sec4 .home_other_box2{
    width: 100%;
  }

  .lg_btn{
    margin-bottom: 50px;
  }
}
@media (min-width:1024px){
  .thanks_text{
    text-align: center;
  }
  .pg_food .section.sec4 .home_other_box2,
  .pg_esthe .section.sec4 .home_other_box2{
    width: 50.98%;
  }
}
@media (min-width:1200px){


}
