@charset "UTF-8";

:root {
  --main-color: #2b6796;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}

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

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

  /* 画面端までの余白 */

}

@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:0 2.3%;
  transition: 0.2s all;
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

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

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }
  .header{
    padding: 10px;
  }

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

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 111px;
  }
  .header{
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 23px 2.3%;
  }

  .hdr1{
    padding: 0 15px 0;
  }

  .hdr_menubtn_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_menubtn_outer p{
    font-size: 16px;
    font-weight: 500;
    font-family: "Outfit", sans-serif;
    line-height: 1;

  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }

  /* TELボタン */
  .hdr_tel{

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


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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

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

  body{
    padding-top: 70px;
  }
  .header{
    padding: 10px 2.3%;
  }
  .hdr_logo img{
    width: 180px;
  }
  
  /* ロゴ */
  .hdr_logo{

  }

  /* ヘッダースリム */
  .header.slim{
    
  }
  .header.slim .hdr_logo img{ 
    width: 130px;
  }

}

@media (min-width:1720px){
  
}
@media (min-width:1720px){
  body{
    padding-top: 111px;
  }
  .header{
    padding: 23px 2.3%;
  }
  .hdr_logo img{
    width: 252px;
  }
  
  /* ヘッダースリム */
  .header.slim{
    padding: 10px 2.3%;
  }
  .header.slim .hdr_logo img{ 
    width: 200px;
  }
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding: 0 2.3%;
}
.mv_inner{
  position: relative;
}
.mv_inner:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  pointer-events: none;
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_item_img:before{
  padding-top: calc(100vh - 54px - 44px);
}
.mv_item_img img{
  border-radius: 20px;
}

/* MVテキスト */
.mv_txt_box{
  width: 100%;
  position: absolute;
  z-index: 1;
  bottom: 13.38%;
  left: 0;
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  z-index: 3;
}
.mv_text1{
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  font-family: "Outfit", sans-serif;
}
.mv_text2{
  font-size: 30px;
  font-weight: 900;
  line-height: 1.58em;
}

.mv_pos{
  width: 15.57%;
  aspect-ratio:299 / 331;
  background-image: url(/system_panel/uploads/images/mv_iluust1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  bottom: -21.15%;
  z-index: 2;
}
.mv_pos.pos2{
  width: 10.36%;
  aspect-ratio:199 / 236;
  background-image: url(/system_panel/uploads/images/fg.png);
  top: -100px;
  bottom: auto;
}
.mv_pos.pos3{
  width: 15.62%;
  aspect-ratio:300 / 342;
  background-image: url(/system_panel/uploads/images/pos3.png);
  top: -100px;
  bottom: auto;
  right: auto;
  left: 0;
}
.mv_pos.pos4{
  width: 17.23%;
  aspect-ratio:331 / 346;
  background-image: url(/system_panel/uploads/images/pos4.png);
  top: -42px;
  bottom: auto;
}

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

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

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

@media (min-width:768px){

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_item_img:before{
    padding-top: 400px;
  }

  /* MVテキスト */
  .mv_text1{
    font-size: 16px;
  }
  .mv_text2{
    font-size: 40px;
  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_item_img:before{
    padding-top: 500px;
  }

  /* MVテキスト */
  .mv_text1{
    font-size: 18px;
  }
  .mv_text2{
    font-size: 50px;
  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_item_img:before{
    padding-top: 600px;
    padding-top: calc(100vh - 80px);
  }

  /* MVテキスト */
  .mv_text1{
    font-size: 20px;
  }
  .mv_text2{
    font-size: 70px;
  }

}

@media (min-width:1450px){
  
}
@media (min-width:1720px){
 
  .mv_item_img:before{
    padding-top: 780px;
  }

  
}


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

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

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


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

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

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


}



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

.footer{
  margin-top: 50px;
}

.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: #fff;
  padding: 6px;
  color: #181818;
  margin-top: 30px;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid var(--main-color);
}
.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: 10;
}
.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{
  position: relative;
}
.ftr_contact_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 4;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .content_desc{
  font-weight: 500;
}
.ftr_contact_box2{
  width: 100%;
}
.link_1{
  display: block;
  width: 100%;
  background: #82c1c7;
  color: #fff;
  border-radius: 38px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 23px;
  margin-top: 30px;
  border: 1px solid transparent;
}
.link_1:before{
  content:"\f0e0";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  left: 68px;
  transform: translateY(-50%);
  font-size: 23px;
}
.link_1:hover{
  background: #fff;
  color:#82c1c7;
  border: 1px solid #82c1c7;
}
.ftr_contact_box2_tel{
  text-align: center;
  margin-top: 30px;
}
.ftr_contact_box2_tel1{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
}
.ftr_contact_box2_tel2{
  font-size: 28px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  border-top: 1px solid #fff;
  padding-top: 15px;
  margin-top: 11px;
}
.ftr_contact_img:before{
  padding-top: 600px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

.ftr_1{
  background: #82c1c7;
  color: #fff;
  padding-top: 53px;
  padding-bottom: 20px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_1_add{
  font-size: 16px;
  font-weight: 700;
  line-height: 2em;
  margin-top: 30px;
}
.ftr_sns{
  margin-top: 15px;
}
.ftr_sns_item img{
  transition: all .2s;
}
.ftr_sns_item:hover img{
  transform: scale(1.05);
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}
.ftr_link:hover{
  color: #181818;
}
@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .link_1:before{
    left: 19px;
  }

  .ftr_1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_inner{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_inner .ftr_contact_box1 .tt2{
    text-align: center;
  }
  .ftr_contact_box1 .content_desc{
    text-align: center;
  }
  .ftr_contact_box2{
    width: 100%;
  }
  .link_1{
    width: 75%;
    font-size: 18px;
    margin: 50px auto 0;
  }
  .ftr_contact_box2_tel{
    margin-top: 50px;
  }
  .ftr_contact_box2_tel1{
    font-size: 18px;
  }
  .ftr_contact_box2_tel2{
    font-size: 30px;
  }
  .ftr_1_add a:hover,
  .ftr_contact_box2_tel2 a:hover{
    color: #8e8e8e;
  }
  .ftr_contact_img:before{
    padding-top: 650px;
  }

  .ftr_copy{
    margin-top: 80px;
  }

  .ftr_1{
    padding-top: 53px;
    padding-bottom: 46px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 48.64%;
  }
  .ftr_logo{

  }
  .ftr_1_add{
    margin-top: 30px;
  }
  .ftr_sns{

  }
  .ftr_1_box2{
    width: 46.03%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_link{
    width: 50%;
    font-size: 15px;
    font-weight: 700;
  }
  .ftr_link{

  }
  .ftr_link:nth-child(n+3){
    margin-top: 16px;;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_copy{
    margin-top:107px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_inner{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 55.26%;
  }
  .ftr_contact_inner .ftr_contact_box1 .tt2{
    text-align: left;
    margin-bottom: 40px;
  }
  .ftr_contact_box1 .content_desc{
    text-align: left;
  }
  .ftr_contact_box1 .tt2_ja{
    font-size:30px;
  }
  .ftr_contact_box2{
    width: 42.51%;
    padding-top: 14px;
  }
  .link_1{
    width: 100%;
    font-size: 20px;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
  }
  .link_1:before{
    left: 10px;
  }
  .ftr_contact_box2_tel{
    text-align: left;
  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 38px;
  }
  .ftr_contact_img:before{
    padding-top: 514px;
  }

  .ftr_1{
    padding-top: 53px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_1_add{
    font-size: 17px;
  }
  .ftr_sns{

  }
  .ftr_1_box2{

  }
  .ftr_links{

  }
  .ftr_link{
    font-size: 17px;
    width: 50%;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 16px;;
  }

}
@media (min-width:1200px){
  .ftr_contact_box1 .tt2_ja{
    font-size: 40px;
  }
  .ftr_contact_box2{
    width: 36.51%;
  }
  .link_1:before{
    left: 68px;
  }
  .ftr_link{
    width: 153px;
    font-size: 17px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
  .ftr_link:nth-child(n+4){
    margin-top: 22px;
  }
  .ftr_link:nth-child(3n-1){
    width: 221px;
  }
  .ftr_link:nth-child(3n){
    width: 136px;
  }
}


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


/* テーブル用 */
.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;
}
.news_list .webgene-pagination li.number,
.prop_list .webgene-pagination li{
  padding: 4px 13px;
  margin: 0 4px;  
  border: 1px solid #82c1c7;;
  background: #ffffff;
  font-weight: 500;
}
.prop_list .webgene-pagination li.number{
  border: 1px solid #82c1c7;;
}
.news_list .webgene-pagination li.selected,
.prop_list .webgene-pagination li.selected{
  border: 0;
  background: #82c1c7;
}  
.webgene-pagination li.prev a,
.webgene-pagination li.next a{
  display: block;
  border-bottom: 2px solid #181818;
}
.webgene-pagination li.next a:after{
  content: "\f054";
  font-family: 'FontAwesome';
  font-size: 10px;
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f053";
  font-family: 'FontAwesome';
  font-size: 10px;
  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{
  display: flex;
  align-items: center;
  width: auto;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  border: none;;
  background:  none;;
  /*border-radius: 27px;*/
  color: #1a1a1a;
  padding: 16px 0;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
  /*  padding-right: 10px;*/
  position: relative;
  left: 0;
}
.read_more.wh a{
  color: #fff;
}
.read_more a:after{
  content:"\f105";
  font-family: "FontAwesome";
  position: relative;
  z-index: 1;
  width: 50px;
  aspect-ratio:1 / 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #82c1c7;
  color: #fff;
  top: auto;
  right:-10px;;
  transform: none;
  transition: 0.2s all;

}
.read_more.wh a:after{
  background: #fff;;
  color: #82c1c7;
}
.read_more a:hover{
  color: #1a1a1a;
  background: none;
}
.read_more a:hover p{
  left: 0;
}
.read_more.wh a:hover{
  color: #fff;
}
.read_more a:hover:after{
  position: relative;
  right: -20px;
}


/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2.left{
  text-align: left;
}
.tt2.wh{
  color: #fff;
}
.tt2_en{
  font-size: 16px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #348fad;
}
.tt2.wh .tt2_en{
  color: #fff;
}
.tt2_ja{
  font-size: 22px;
  font-weight: 900;
  margin-top: 0;
}

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


/*説明*/
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.18em;
  text-align: justify;
}

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

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

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

}


@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 a{
    display: flex;
    align-items: center;
  }
  .read_more a:after{
    position: relative;
    top: auto;
    right: auto;
    transform: none;
  }

}
@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: auto;
    font-size: 15px;
    padding: 16px 20px;
    margin: 5px 5px;
  }

  .read_more a:after{
    content:"\f105";
    font-family: "FontAwesome";
    top:auto;
   right: -18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 18px;
    margin-left: 0;
  }
  .tt2.tate .tt2_en{
    margin-left: 14px;
  }
  .tt2_ja{
    font-size: 32px;
    margin-top: 15px;
  }

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

  /*説明*/
  .content_desc{

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2.tate{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .tt2_en{
    font-size:20px;
  }
  .tt2_ja{
    font-size: 40px;
    margin-top: 15px;
  }
  .tt2.tate .tt2_ja{
    line-height: 2em;
    margin-top: 0;
    text-align: left;
  }


  /*説明*/
  .content_desc{

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


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

  /* コンテナ */
  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1250px + 70px);
    padding-left: 35px;
    padding-right: 35px;
  }

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

  .container.wide{
    /*max-width: calc(1600px + 100px);*/
    max-width: calc(1370px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

}

@media (min-width:1700px){
  .container.wide{
    max-width: calc(1520px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }

}
@media (min-width:768px) and (max-width:1023px){
  .tt2.tate .tt2_en{
    text-align: left;
    margin-left: 0;
  }
}

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

}
.pg_home .section.sec1{
  padding-top: 80px;
  padding-bottom: 0;
}
.pg_home .section.sec2{
  position: relative;
  overflow: hidden;
}
.pg_home .section.sec2:before{
  content: "";
  display: block;
  width: 100%;
  height: 94.04%;
  background: #cce2e7;
  position: absolute;
  top: 320px;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec3{
  position: relative;
  padding: 0;
}
.pg_home .section.sec4{
  background: #82c1c7;
  padding-bottom: 30px;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec6{
  position: relative;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

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

  .pg_home .section.sec1{
    padding-top: 140px;
  }
  .pg_home .section.sec2{
    padding-bottom: 82px;
  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    padding-top: 74px;
    padding-bottom: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 77px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 200px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{

  }
  .pg_home .section.sec4{
    padding-bottom: 70px;
  }
  .pg_home .section.sec5{
    padding-top: 147px;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}



/*メイン*/

/*about*/
.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents1_box1{
  width: 100%;
  order: 2;
}
.home_contents1_img_box{
  margin-left: var(--margin-for-device-side);
}
.home_contents1_img_items{

}
.home_contents1_img_item{

}
.home_contents1_img img{
  border-radius: 20px;
}
.home_contents1_img:before{
  padding-top: 69.23%;
}
.home_contents1_inner{
  width: 93%;
  display: inline-block;
  background: #fff;
  border-radius: 0 20px 0 0;
  margin-top: 0;
  position: relative;
  top: -36px;
  z-index: 2;
  padding: 30px 16px;
}
.home_contents1_inner:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0 20px 0 0;
  background: #fff;
  position: absolute;
  top: 0;
  margin-left: var(--margin-for-device-side);
}
.home_contents1_inner .content_desc{
  position: relative;
  z-index: 2;
}
.home_contents1_inner .read_more{

}
.home_contents1_box2{
  width: 100%;
  order: 1;
}

/*自動スライド*/
.simply-scroll-container{
  position: relative;
}
.simply-scroll-clip{
  position: relative;
  overflow: hidden;
}
.simply-scroll-list{
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.home_contents1_img_item{
  width: 350px;
  margin: 0 7.5px;
  float: left;
}

/*SERVICE*/
.home_contents2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 50px;
}
.home_contents2_box1{
  width:100%;
}
.home_contents2_box1 .tt2.tate{

}
.home_contents2_box2{
  width:100%;
} 
.home_contents2_box2_img{

}
.home_contents2_box2_img img{
  border-radius: 20px 0 0 20px;
}
.home_contents2_box2_img:before{
  padding-top: 53.57%;
}

.home_contents3_wrap{

}
.home_contents3_items{
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
.home_contents3_item{
  width: 100%;
  position: relative;
}
/* ボーダー用 */
.home_contents3_item:before,
.home_contents3_item:after{
  background: #ffffff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.home_contents3_item:before{
  width: 1px;
  height: 100000px;
}
.home_contents3_item:after{
  height: 1px;
}

.home_contents3_item_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents3_item_left{
  width: 100%;
}
.home_contents3_item_img{
  min-height: 172px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_contents3_item_right{
  width: 100%;
}
.home_contents3_item_right_tt{
  font-size: 24px;
  font-weight: 900;
}
.home_contents3_item_right .content_desc{

}
.home_contents3_item_right .read_more{

}
.home_contents3_item_right .read_more a{
  width: auto;
}
.home_contents3_item_right .read_more a:after{
  right: -13px;
}

/*reason*/
.home_contents4_img{

}
.home_contents4_img:before{
  padding-top: 860px;
}
.home_contents4_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents4_box{
  width: 100%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.home_contents4_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.home_contents4_box1{
  width: 100%;
}
.home_contents4_box1_items{

}
.home_contents4_box1_item{

}
.home_contents4_box1_item_img img{
  border-radius:20px;
}
.home_contents4_box1_item_img:before{
  padding-top: 63.63%;
}
.home_contents4_box2{
  width: 100%;
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
}
.home_contents4_box2_left{
  width:100%;
  order: 2;
  display: flex;
  flex-direction: column;
}

.home_contents4_box2_num{
  position: relative;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  order: 2;
}
.home_contents4_box2_tt{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.53em;
  margin-top: 20px;
  order: 3;
}
.home_contents4_box2 .content_desc{
  line-height: 2.25em;
  order: 4;
}
.home_contents4_box2 .home_contents4_box2_right{
  width:100%;
  order: 1;
  margin-top: 30px;
}
.home_contents4_box2 .home_contents4_box2_right .tt2.tate{
  text-align: left;
  margin-bottom: 30px;
}
.home_contents4_box2_pages{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
  order: 1;
}
.gjs-dashed .home_contents4_box1_item_img:before{
  padding-top: 300px;
}

/*スライド*/
.home_contents4_box2_num .swiper-pagination-fraction{
  position: inherit;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
  text-align: left;
}
.home_contents4_box2_pages .swiper-button-next,
.home_contents4_box2_pages .swiper-button-prev{
  position: inherit;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  transform: none;
}
.home_contents4_box2_pages .swiper-button-next:after,
.home_contents4_box2_pages .swiper-button-prev:after{
  display: none;
}
.swiper-button-next:after,
.swiper-button-prev:after{

}
.home_contents4_box2_pages .swiper-button-next,
.home_contents4_box2_pages .swiper-button-prev{
  width: 80px;
  height: auto;
  aspect-ratio:1 / 1;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .2s;
}
.home_contents4_box2_pages .swiper-button-next:hover,
.home_contents4_box2_pages .swiper-button-prev:hover{
  background: #82c1c7;
  color: #fff;
}
.home_contents4_box2_pages .swiper-button-next{
  margin-left: 41px;
}
.home_contents4_box2_pages .swiper-button-prev:before{
  content:"\f053";
  font-family: "fontAwesome";
  font-size: 19px;
}
.home_contents4_box2_pages .swiper-button-next:before{

  content:"\f054";
  font-family: "fontAwesome";
  font-size: 19px;

}
.home_contents1_box2 .tt2.tate .tt2_en,
.home_contents2_box1 .tt2.tate .tt2_en{
  text-align: center;
}

/*about*/
.home_contents5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.home_contents4_box2.home_contents5_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents4_box2.home_contents5_box1 .home_contents4_box2_left{

}
.home_contents4_box2.home_contents5_box1 .home_contents4_box2_right{

}
.home_contents4_box2.home_contents5_box1 .content_desc{
  order: 1;
}
.home_contents4_box2.home_contents5_box1 .read_more{
  order: 2;
}
.home_contents5_box2{
  text-align: center;
  width: 100%;
  order: 1;
}
.home_contents5_box2_img{

}

/*物件*/
.home_contents6_box{

}
.home_contents6_box.prop_list{

}
.prop_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.prop_list .webgene-item{
  width: 100%;
  padding-inline:5px;
}
.home_contents6_box.prop_list .webgene-item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents6_box.prop_list .webgene-item:nth-child(n+3){
  display: none; 
}
.prop_list .webgene-item a{

}
.prop_list .webgene-item .box2{
  margin-top: 16px;
}
.prop_list .webgene-item .img{
  overflow: hidden;
  border-radius: 20px;
}
.prop_list .webgene-item .img:before{
  padding-top: 73.02%;
}
.prop_list .webgene-item .img img{
  border-radius: 20px;
}
.prop_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  margin-top: 8px;
}
.prop_list .webgene-item .prop_add{
  font-size: 16px;
  font-weight: 500;
  margin-top: 9px;
}
.prop_list .webgene-item .price{
  font-size: 18px;
  font-weight: 500;
  border-top: 1px solid #bfbfbf;
  padding-top: 10px;
  margin-top: 12px;
}

/*お知らせr*/
.home_contents7_wrap{

}
.home_contents7_box.news_list{

}
.news_list .webgene-blog{
  display:flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.news_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.news_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.news_list .webgene-item .img img{
  border-radius: 20px;
}
.news_list .webgene-item .img{
  overflow: hidden;
  border-radius: 20px;
}
.news_list .webgene-item .img:before{
  padding-top: 72.22%;
}
.news_list .webgene-item a{

}
.news_list .webgene-item .meta{
  display: flex;
  align-items: center;
}
.news_list .webgene-item .box2{
  margin-top: 18px;
}
.news_list .webgene-item .date{
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
}
.news_list .webgene-item .category{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  background: #82c1c7;
  color: #fff;
  text-align: center;
  width: 120px;
  padding: 3px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*装飾*/
  .mv_pos.pos2{
    top: -24px;
  }

  .home_contents3_item_right .read_more a:after{
    right: 0;
  }


  .home_contents1_img_box{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .home_contents1_inner{
    padding: 30px 16px 0;
  }
  .home_contents1_inner:before{
    margin-left: calc(43% - 50vw);
  }

  .home_contents2_wrap{
    margin-top: 0;
  }
  .home_contents2_box2_img{
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
  .home_contents2_box2_img img{
    border-radius:0;
  }
  .home_contents3_item_img{
    width: 100px;
    margin: 0 auto;
  }

  /* 横 */
  .home_contents3_item{
    border-top: 1px solid #ffffff;
    padding: 30px 0;
  }

  /*スライド*/
  .home_contents4_box2_pages .swiper-button-next,
  .home_contents4_box2_pages .swiper-button-prev{
    width: 48px;
  }
  .home_contents4_box2_pages .swiper-button-prev:before,
  .home_contents4_box2_pages .swiper-button-next:before{
    font-size: 16px;
  }
  .home_contents4_box2_pages .swiper-button-next{
    margin-left: 22px;
  }

  .news_list .webgene-item .meta{
    display: block;
  }
  .news_list .webgene-item .category{
    margin-top: 10px;
  }
}
@media (min-width:768px){

  /*about*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{

  }
  .home_contents1_img_box{

  }
  .home_contents1_img_items{

  }
  .home_contents1_img_item{

  }
  .home_contents1_img img{

  }
  .home_contents1_img:before{

  }
  .home_contents1_inner{
    width: 80.2%;
    padding: 30px 30px 30px 0;
    top: auto;
    margin-top: -116px;
  }
  .home_contents1_inner .content_desc{

  }
  .home_contents1_inner .read_more{

  }
  .home_contents1_box2{

  }

  /*自動スライド*/
  .home_contents1_img_item{
    width: 500px;
  }

  /*SERVICE*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{

  }
  .home_contents2_box1 .tt2.tate{

  }
  .home_contents2_box2{

  } 
  .home_contents2_box2_img{

  }
  .home_contents2_box2_img img{

  }
  .home_contents2_box2_img:before{

  }

  .home_contents3_wrap{
    margin-top:80px;
  }
  .home_contents3_items{
    margin-inline:-15px;
  }
  .home_contents3_item{
    width: 50%;
    padding-inline:15px;
    padding-bottom: 61px;
  }
  .home_contents3_item:nth-child(n+3){
    padding-bottom: 0;
  }


  .home_contents3_item:nth-child(n+3) .home_contents3_item_inner{
    padding-top: 52px;
    padding-bottom: 0;
  }
  /* 縦 */
  .home_contents3_item:nth-child(2):before{
    content: "";
  }
  /* 横 */
  .home_contents3_item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
  .home_contents3_item_inner{

  }
  .home_contents3_item_left{

  }
  .home_contents3_item_img{
    width: 120px;;
    margin: 0 auto;
  }
  .home_contents3_item_right{

  }
  .home_contents3_item_right_tt{
    font-size: 30px;
  }
  .home_contents3_item_right .content_desc{
    margin-top: 16px;
  }
  .home_contents3_item_right .read_more{
    margin-top: 16px;
  }
  .home_contents3_item_right .read_more a{
    padding-left: 0;
  }
  .home_contents3_item_right .read_more a:hover:after{
    right: -20px;
  }

  /*reason*/
  .home_contents4_img{

  }
  .home_contents4_img:before{
    padding-top: 1200px;
  }
  .home_contents4_img:after{

  }
  .home_contents4_box{

  }
  .home_contents4_inner{

  }
  .home_contents4_box1{

  }
  .home_contents4_box1_items{

  }
  .home_contents4_box1_item{

  }
  .home_contents4_box1_item_img img{

  }
  .home_contents4_box1_item_img:before{

  }
  .home_contents4_box2{

  }
  .home_contents4_box2_left{

  }
  .home_contents4_box2_num{
    font-size: 24px;
    text-align: left;
  }
  .home_contents4_box2_tt{
    font-size: 22px;
    margin-top: 34px;
  }
  .home_contents4_box2 .content_desc{
    margin-top: 16px;
  }
  .home_contents4_box2 .home_contents4_box2_right{

  }

  /*about*/
  .home_contents5_wrap{

  }
  .home_contents4_box2.home_contents5_box1{
    margin-top: 30px;
  }
  .home_contents4_box2.home_contents5_box1 .home_contents4_box2_left{

  }
  .home_contents4_box2.home_contents5_box1 .home_contents4_box2_right{

  }
  .home_contents5_box2{

  }
  .home_contents5_box2_img{

  }

  /*物件*/
  .home_contents6_box{

  }
  .home_contents6_box.prop_list{

  }
  .prop_list .webgene-blog{
    margin-inline:-10.5px;
  }
  .prop_list .webgene-item{
    width: 50%;
    padding-inline:10.5px;
  }
  .prop_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .prop_list .webgene-item:nth-child(n+3){
    margin-top: 50px;;
  }
  .home_contents6_box.prop_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }

  .prop_list .webgene-item a{

  }
  .prop_list .webgene-item .box2{
    margin-top: 34px;
  }

  .prop_list .webgene-item .title{
    font-size: 18px;
  }
  .prop_list .webgene-item .price{
    font-size: 21px;
  }

  /*お知らせr*/
  .home_contents7_wrap{

  }
  .home_contents7_box.news_list{

  }
  .home_contents7_box.news_list .webgene-blog{
    margin-inline:-13px;
  }
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents7_box.news_list .webgene-item{
    padding-inline:13px;
  }
  .news_list .webgene-item .img img{

  }
  .news_list .webgene-item .img{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .date{
    margin-right: 28px;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
  .home_contents7_wrap .read_more{
    margin-top: 57px;
  }
}
@media (min-width:1024px){
  /*about*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{
    width: 86.51%;
    order: 1;
  }
  .home_contents1_img_box{

  }
  .home_contents1_img_items{

  }
  .home_contents1_img_item{

  }
  .home_contents1_img img{

  }
  .home_contents1_img:before{

  }
  .home_contents1_inner{
    width: 80.2%;
  }
  .home_contents1_inner .content_desc{

  }
  .home_contents1_inner .read_more{

  }
  .home_contents1_box2{
    width: 10.67%;
    display: flex;
    justify-content: flex-end;
    order: 2;
  }

  /*自動スライド*/
  .home_contents1_img_item{
    width: 650px;
  }

  /*SERVICE*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{
    width: 13.48%;
  }
  .home_contents2_box1 .tt2.tate{

  }
  .home_contents2_box2{
    width: 78.94%;
  } 
  .home_contents2_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents2_box2_img img{

  }
  .home_contents2_box2_img:before{

  }

  .home_contents3_wrap{
    margin-top: 108px;
  }
  .home_contents3_items{

  }
  .home_contents3_item{

  }
  .home_contents3_item:nth-child(odd) .content_desc{
    padding-right: 58px;
  }
  .home_contents3_item_inner{

  }
  .home_contents3_item:nth-child(even) .home_contents3_item_inner{
    padding-left: 50px;
  }
  .home_contents3_item_right{
    width: 74.83%;
  }
  .home_contents3_item:nth-child(even) .home_contents3_item_right{
    width: 72.83%;
  }
  .home_contents3_item_left{
    width: 21.87%;
  }
  .home_contents3_item_img{
    width: auto;
    margin: 0;
  }

  .home_contents3_item_right_tt{
    font-size: 35px;
  }
  .home_contents3_item_right .content_desc{

  }
  .home_contents3_item_right .read_more{
    margin-top: 0px;
  }
  /*reason*/
  .home_contents4_img{

  }
  .home_contents4_img:before{
    padding-top: 860px;
  }
  .gjs-dashed .home_contents4_img:before{
    padding-top: 1300px;
  }
  .home_contents4_img:after{

  }
  .home_contents4_box{

  }
  .home_contents4_inner{

  }
  .home_contents4_box1{
    width: 44.73%;
  }
  .home_contents4_box1_items_outer{
    margin-left: var(--margin-for-device-side);
  }
  .home_contents4_box1_items{

  }
  .home_contents4_box1_item{

  }
  .home_contents4_box1_item_img img{
    border-radius: 0 20px 20px 0;
  }
  .home_contents4_box1_item_img:before{

  }
  .home_contents4_box2{
    width: 50.98%;
  }
  .home_contents4_box2_left{
    width: 73.54%;
    order: 1;
    padding-top: 38px;
  }
  .home_contents4_box2_num{
    font-size: 26px;
    order: 1;
  }
  .home_contents4_box2_tt{
    font-size: 20px;
    order: 2;
  }
  .home_contents4_box2 .content_desc{
    order: 3;
  }
  .home_contents4_box2_pages{
    order: 4;
    justify-content: flex-start;
    margin-top: 57px;
  }
  .home_contents4_box2 .home_contents4_box2_right{
    width: 26.45%;
    display: flex;
    justify-content: flex-end;
    order: 2;
    margin-top: 0;
  }

  /*about*/
  .home_contents5_wrap{

  }
  .home_contents4_box2.home_contents5_box1{
    width: 57.26%;
    padding-top: 72px;
    order: 1;
    margin-top: 0;
  }
  .home_contents4_box2.home_contents5_box1 .home_contents4_box2_left{
    order: 2;
  }
  .home_contents4_box2.home_contents5_box1 .home_contents4_box2_right{
    order: 1;
    justify-content: flex-start;
  }
  .home_contents5_box2{
    width: 38.48%;
    order: 2;
  }
  .home_contents5_box2_img{

  }

  /*物件*/
  .home_contents6_box{

  }
  .home_contents6_box.prop_list{

  }
  .prop_list .webgene-blog{

  }
  .prop_list .webgene-item{

  }
  .home_contents6_box.prop_list .webgene-item:nth-child(n+3){
    display: block; 
  }
  .home_contents6_box.prop_list .webgene-item{
    width: 33.333%;
  }
  .home_contents6_box.prop_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .prop_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .prop_list .webgene-item:nth-child(n+4){
    margin-top: 50px;;
  }
  .prop_list .webgene-item a{

  }
  .prop_list .webgene-item .title{
    font-size: 18px;
  }

  /*お知らせr*/
  .home_contents7_wrap{

  }
  .home_contents7_box.news_list{

  }
  .news_list .webgene-blog{

  }
  .news_list .webgene-item{

  }
  .home_contents7_box.news_list .webgene-item{
    width: 25%;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
  .home_contents7_box.news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .news_list .webgene-item .img img{

  }
  .news_list .webgene-item .img{

  }
  .news_list .webgene-item .img:before{

  }
  .news_list .webgene-item a{

  }
  .news_list .webgene-item .meta{

  }
  .news_list .webgene-item .box2{

  }
  .home_contents7_box.news_list .webgene-item .date{
    margin-top: 0;
  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .title{

  }
}
@media (min-width:1200px){
  .home_contents1_inner{
    width: 62.2%;
  }

}
@media (min-width:1366px){
  .home_contents4_box2_tt{
    font-size: 26px;
  }
  }
@media (min-width:1450px){


}

@media (min-width:1700px){


}
@media (min-width:768px) and (max-width:1023px){
  .home_contents4_box2{
    position: relative;
  }
  .home_contents4_box2_pages{
    width: 100%;
    display: block;
    position: inherit;
    top:auto;
    right: 0;
    display: flex;
    justify-content: flex-end;

  }
  .home_contents4_box2_num{

  }
  .home_contents4_box2_pages .swiper-button-prev {
    margin-right:0;
  }


  .home_contents4_box{
    top: 100px;
    transform:translateX(-50%);
  }
  .home_contents4_box1{
    width: 44.73%;
  }
  .home_contents4_box2{
    width: 50.98%;
  }
  .home_contents4_box2_right .tt2_ja{
    font-size: 23px;
  }
  .home_contents4_box2_tt{
    font-size: 20px;
  }
  .home_contents4_img:before{
    padding-top: 800px;
  }

}



/*******************************
*　いとよしについて
********************************/

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

}
.pg_about .section.sec1{
  position: relative;
  padding-bottom: 40px;
}
.pg_about .section.sec1:before{
  content: "";
  display: block;
  width: 100%;
  height: 529px;
  background: #f2f2f2;
  position: absolute;
  bottom: 0;
  z-index: -1;
}
.pg_about .section.sec2{

}
.pg_about .section.sec3{
  position: relative;
  padding: 0;
}
.pg_about .section.sec4{
  padding: 0;
}

/*イラスト*/
.mv_pos.about_pos1{
  background-image: url(/system_panel/uploads/images/about1.png);
  aspect-ratio:260 / 331;
  width: 13.54%;
  top: 0;
  bottom: auto;
}
.mv_pos.about_pos2{
  background-image: url(/system_panel/uploads/images/about2.png);
  aspect-ratio:276 / 342;
  width: 16.97%;
  top: auto;
  right: auto;
  left: 0;
  bottom: -50px;
}
.mv_pos.about_pos3{
  background-image: url(/system_panel/uploads/images/about3.png);
  aspect-ratio:341 / 358;
  width: 17.76%;
  top: -175px;
  left: 49px;
  bottom: auto;
  right: auto;
}
.mv_pos.about_pos4{
  background-image: url(/system_panel/uploads/images/about4.png);
  aspect-ratio:269 / 262;
  width: 14.01%;
  top: auto;
  left: auto;
  bottom: -57px;
  right: 0;
}
@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_about{

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

  }
  .pg_about .section.sec3{
    margin-top: 105px;
  }

  /*イラスト*/
  .mv_pos.about_pos2{
    left: -50px;
    bottom: -100px;
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_about{

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

  }
  .pg_about .section.sec3{
    margin-top: 105px;
  }

  /*イラスト*/
  .mv_pos.about_pos2{
    left: -50px;
    bottom: -168px;
  }
}
@media (min-width:1200px){


}


/* メイン部分 */
.about_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.about_contents1_box1{
  width: 50%;
  order: 2;
  position: relative;
}
.about_contents1_box1_top{

}
.about_contents1_box1_top_img_outer{
  width: 83.22%;
  margin-right: auto;
}
.about_contents1_box1_top_img{

}
.about_contents1_box1_top_img:before{
  padding-top: 89.62%;
}
.about_contents1_box1_top_img img{
  border-radius: 20px;
}
.about_contents1_box1_btm{

}
.about_contents1_box1_btm_img_outer{
  width: 65%;
  margin-left: auto;;
  margin-top: -35px;
}
.about_contents1_box1_btm_img img{
  border-radius: 20px;
}
.about_contents1_box1_btm_img:before{
  padding-top: 83.333%;
}
.about_contents1_box2{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  order: 1;
  margin-bottom: 30px;;
}
.about_contents1_box2 .content_desc p:nth-child(n+2){
  margin-top: 16px;
}
.about_contents1_box3{
  width: 50%;
  order: 3;
}
.about_contents1_box3_img_outer{
  width: 68.49%;
  margin-left: auto;
}
.about_contents1_box3_img{


}
.about_contents1_box3_img img{
  border-radius: 20px;
}
.about_contents1_box3_img:before{
  padding-top: 99.55%;
}

/*service*/
.about_contents2_items.home_contents3_items{

}
.about_contents2_item.home_contents3_item{

}
.about_contents2_item_inner.home_contents3_item_inner{
  background: #cce2e7;
  border-radius: 20px;
  padding: 20px;
}
.about_contents2_item_inner .home_contents3_item_img{
  min-height: 160px;
}
.about_contents2_item_tt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;

}
.about_contents2_item_tt:after{
  content: "\f105";
  font-family: "FontAwesome";
  display: block;
  width: 50px;
  color: #fff;
  aspect-ratio:1 / 1;
  background: #82c1c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  right: 0;
  transition: all .2s;
}
.about_contents2_item_tt:hover{
  color: #181818;
}
.about_contents2_item_tt:hover:after{
  right: -5px;
}

.about_contents2_item_inner .home_contents3_item_right{
  margin-top: 20px;
}

.about_contents3_wrap{
  margin-top: 60px;
}
.about_contents3_items{

}
.about_contents3_item{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 50px;
}
.about_contents3_item:after{
  content: "";
  display: block;
  width: 100vw;
  height: 300px;
  background: #f2f2f2;
  position: absolute;
  bottom: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  z-index: -1;
  border-radius: 20px;
}
.about_contents3_item:nth-child(n+2){
  margin-top: 30px;
}
.about_contents3_box1{
  width: 100%;
}
.about_contents3_box1_img{

}
.about_contents3_box1_img img{
  border-radius: 20px;
}
.about_contents3_box1_img:before{
  padding-top: 69.44%;
}
.about_contents3_box2{
  width: 100%;
  margin-top: 20px;;
}
.about_contents3_box2_title{
  display: flex;
  align-items: center;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 16px;
}
.about_contents3_box2_title_img{
  width: 50px;
  margin-right: 30px;
}
.about_contents3_box2_tt{
  font-size: 22px;
  font-weight: 900;
}
.about_contents3_box2 .content_desc{
  line-height: 2.25em;
}

/*reason*/
.about_contents4_img{

}
.about_contents4_img:before{
  padding-top: 1000px;
}
.about_contents4_img:after{
  content: "";
  display: block;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.75);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.about_contents4_content{
  width: 100%;
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}
.about_contents4_content .tt2{

}
.about_contents4_content .content_desc{
  color: #fff;
}


.sec4_outer{
  position: relative;
  margin-top: -350px;
  z-index: 5;
}
.about_contents5_wrap{

}
.about_contents5_items{

}
.about_contents5_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px 16px;
  background: #cce2e7;
  border-radius: 20px;
}
.about_contents5_item:nth-child(n+2){
  margin-top: 39px;
}
.about_contents5_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_contents5_box_num{
  display: flex;
  align-items: center;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.2em;
  color: #348fad;
}
.about_contents5_box_num1{
  letter-spacing: 0.2em;
}
.about_contents5_box_num2{
  letter-spacing: 0.2em;
}
.about_contents5_box_tt{
  font-size: 18px;
  font-weight: 900;
  margin-top: 6px;
}
.about_contents5_box1 .content_desc{
  line-height: 2.25em;
  margin-top: 20px;
}
.about_contents5_box2{
  width: 100%;
  order: 1;
}
.about_contents5_box2_img img{
  border-radius: 20px;
}
.about_contents5_box2_img:before{
  padding-top: 74.76%;
}
@media (max-width:767px){
  .mv_pos.about_pos3{
    top: -55px;
    left: 0;
  }
  .mv_pos.about_pos4{
    bottom: -21px;
  }

  .about_contents3_item{
    padding-bottom: 20px;
  }
  .about_contents3_item:after{
    display: none; 
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .about_contents1_wrap{

  }
  .about_contents1_box1{

  }
  .about_contents1_box1_top{

  }
  .about_contents1_box1_top_img{

  }
  .about_contents1_box1_top_img_outer {
    width: 61.22%;
  }
  .about_contents1_box1_btm_img_outer{
    width: 65%;
    margin-left: auto;;
    margin-top: -35px;
  }
  .about_contents1_box1_top_img:before{

  }
  .about_contents1_box1_top_img img{

  }
  .about_contents1_box1_btm{

  }
  .about_contents1_box1_btm_img img{

  }
  .about_contents1_box1_btm_img:before{

  }
  .about_contents1_box2{
    margin-bottom: 40px;;
  }
  .about_contents1_box2 .content_desc p:nth-child(n+2){
    margin-top: 35px;
  }
  .about_contents1_box3{

  }
  .about_contents1_box3_img{

  }
  .about_contents1_box3_img img{

  }
  .about_contents1_box3_img:before{

  }

  /*service*/
  .about_contents3_wrap{
    margin-top: 60px;
  }
  .about_contents2_items.home_contents3_items{

  }
  .about_contents2_item.home_contents3_item{

  }
  .about_contents2_item_inner.home_contents3_item_inner{
    height: 100%;
    padding: 20px;
  }
  .about_contents2_item_tt{
    padding-bottom: 28px;
  }
  .about_contents2_item_inner .content_desc{
    margin-top: 20px;
  }

  .about_contents3_items{

  }
  .about_contents3_item{
    padding-bottom: 100px;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 100px;
  }
  .about_contents3_box1{

  }
  .about_contents3_box1_img{

  }
  .about_contents3_box1_img img{

  }
  .about_contents3_box1_img:before{

  }
  .about_contents3_box2{
    margin-top: 30px;;
  }
  .about_contents3_box2_title{
    padding-bottom: 26px;
  }
  .about_contents3_box2_title_img{
    width: auto;
  }
  .about_contents3_box2_tt{
    font-size: 30px;
  }
  .about_contents3_box2 .content_desc{
    margin-top: 24px;
  }

  /*reason*/
  .about_contents4_img{

  }
  .about_contents4_img:before{
    padding-top: 856px;
  }
  .about_contents4_img:after{

  }
  .about_contents4_content{

  }
  .about_contents4_content .tt2{

  }
  .about_contents4_content .content_desc{

  }

  .sec4_outer{
    margin-top: -285px;
  }
  .about_contents5_wrap{

  }
  .about_contents5_items{

  }
  .about_contents5_item{
    padding: 30px 30px;
  }
  .about_contents5_item:nth-child(n+2){
    margin-top: 39px;
  }
  .about_contents5_box1{
    margin-top: 30px;
  }
  .about_contents5_box_num{

  }
  .about_contents5_box_num1{
    font-size: 18px;
  }
  .about_contents5_box_num2{
    font-size: 30px;
  }
  .about_contents5_box_tt{
    font-size: 24px;
  }
  .about_contents5_box1 .content_desc{
    margin-top: 28px;
  }
  .about_contents5_box2{

  }
  .about_contents5_box2_img img{

  }
  .about_contents5_box2_img:before{

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

  }
  .about_contents1_box1{
    width: 32.23%;
    order: 1;
  }
  .about_contents1_box1_top{

  }
  .about_contents1_box1_top_img{
    margin-left: var(--margin-for-device-side);
  }
  .about_contents1_box1_top_img:before{

  }
  .about_contents1_box1_top_img img{

  }
  .about_contents1_box1_btm{

  }
  .about_contents1_box1_btm_img_outer{
    width: 98%;
    margin-left: -25px;;
    margin-top: -35px;
  }
  .about_contents1_box1_btm_img img{

  }
  .about_contents1_box1_btm_img:before{

  }
  .about_contents1_box2{
    width: 43.75%;
    justify-content: space-between;
    order: 2;
    margin-bottom: 0;
  }
  .about_contents1_box2 .tt2{
    width: 24.06%;
    justify-content: flex-end;
  }
  .about_contents1_box2 .content_desc{
    width: 71.42%;
    padding-right: 20px;
    padding-top: 72px;
    padding-left: 7px;
  }
  .about_contents1_box3{
    width: 24.01%;
    order: 3;
    padding-top: 165px;
  }
  .about_contents1_box3_img{
    margin-right: var(--margin-for-device-side);
  }
  .about_contents1_box3_img img{

  }
  .about_contents1_box3_img:before{

  }

  /*service*/
  .about_contents2_wrap .tt2{
    margin-bottom: 92px;
  }
  .about_contents2_items.home_contents3_items{

  }
  .about_contents2_item.home_contents3_item{

  }
  .about_contents2_item:nth-child(even) .home_contents3_item_right{
    width: 69.83%;
  }
  .about_contents2_item_inner.home_contents3_item_inner{
    padding: 41px 42px 54px;
  }
  .about_contents2_item_tt{

  }
  .about_contents2_item_inner .home_contents3_item_left{
    width:  24.73%;
  }
  .about_contents2_item_inner .home_contents3_item_right{
    width: 68.96%;
    margin-top: 0;
  }

  .about_contents3_wrap{
    margin-top: 60px;
  }
  .about_contents3_items{

  }
  .about_contents3_item{
    padding-bottom: 100px;
  }
  .about_contents3_item:nth-child(odd):after{
    right:13.09%;
    margin-right: auto;
  }
  .about_contents3_item:nth-child(even):after{
    left:13.09%;
    margin-left: auto;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 100px;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box1{
    order: 1;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box2{
    order: 2;
    padding-left: 4px;

  }
  .about_contents3_item:nth-child(even) .about_contents3_box1{
    order: 2;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box2{
    order: 1;
    padding-right: 4px;
  }
  .about_contents3_box1{
    width: 29.73%;
  }
  .about_contents3_box1_img{

  }
  .about_contents3_item:nth-child(odd) .about_contents3_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box1_img img{
    border-radius: 0 20px 20px 0;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box1_img{
    margin-right: var(--margin-for-device-side);
  }
  .about_contents3_item:nth-child(even) .about_contents3_box1_img img{
    border-radius: 20px 0 0 20px;
  }
  .about_contents3_box1_img img{

  }
  .about_contents3_box1_img:before{

  }
  .about_contents3_box2{
    width: 66.44%;
    padding-top: 15px;
    margin-top: 0;
  }
  .about_contents3_box2_title{

  }
  .about_contents3_box2_title_img{

  }
  .about_contents3_box2_tt{
    font-size: 35px;
  }
  .about_contents3_box2 .content_desc{

  }

  /*reason*/
  .about_contents4_content .tt2{
    margin-bottom: 70px;
  }
  .about_contents4_img{

  }
  .about_contents4_img:before{

  }
  .about_contents4_img:after{

  }
  .about_contents4_content{

  }
  .about_contents4_content .tt2{

  }
  .about_contents4_content .content_desc{

  }

  .sec4_outer{

  }
  .about_contents5_wrap{

  }
  .about_contents5_items{

  }
  .about_contents5_item{
    padding: 57px 60px;
  }
  .about_contents5_item:nth-child(n+2){
    margin-top: 39px;
  }
  .about_contents5_item:nth-child(odd) .about_contents5_box1{
    order: 1;
  }
  .about_contents5_item:nth-child(odd) .about_contents5_box2{
    order: 2;
  }
  .about_contents5_item:nth-child(even) .about_contents5_box1{
    order: 2;
  }
  .about_contents5_item:nth-child(even) .about_contents5_box2{
    order: 1;
  }
  .about_contents5_box1{
    width: 57.85%;
    margin-top: 0;
  }
  .about_contents5_box_num{

  }
  .about_contents5_box_num1{

  }
  .about_contents5_box_num2{

  }
  .about_contents5_box_tt{

  }
  .about_contents5_box1 .content_desc{

  }
  .about_contents5_box2{
    width: 38.57%;
  }
  .about_contents5_box2_img img{

  }
  .about_contents5_box2_img:before{

  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .about_contents1_box1_btm_img_outer{
    width: 98%;
    margin-left: -30px;;
    margin-top: -35px;
  }

  /*reason*/
  .about_contents4_content .content_desc{
    max-width: 1110px;
    margin: 0 auto;
  }
}

@media (min-width:1366px){
  /* メイン部分 */
  .about_contents1_box1_btm_img_outer{
    width: 98%;
    margin-left: -40px;;
    margin-top: -35px;
  }
}
@media (min-width:1450px){
  /* メイン部分 */
  .about_contents1_box1_btm_img_outer{
    width: 98%;
    margin-left: 0;;
    margin-top: -35px;
  }

}

@media (min-width:1700px){
  /* メイン部分 */
  .about_contents1_box1_btm_img_outer{
    width: 98%;
    margin-left: -50px;;
    margin-top: -35px;
  }

}
@media (min-width:768px) and (max-width:1023px){
  .about_contents3_item:after{
    border-radius: 0;
  }
}

/*******************************
*　物件一覧
********************************/

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

}
.pg_property .section.sec1{

}
.pg_property .section.sec2{

}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_property{

  }
  .pg_property .section.sec1{

  }
  .pg_property .section.sec2{
    padding-top: 95px;
  }

}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_property{

  }
  .pg_property .section.sec1{

  }
  .pg_property .section.sec2{
    padding-top: 95px;
  }

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


}

/* メイン部分 */
/*検索*/
.property_search_box{

}
.search-area-title{

}
.search-area-check-items{

}
.search-area-fields-item{

}
.meta_item.madori{
  width: 120px;
  border: 1px solid #3a3a3a;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
@media (max-width:767px){

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

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


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


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

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


}

@media (min-width:1700px){


}






/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

}
@media (min-width:768px){
  /* セクション設定 */
  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


}

/* メイン部分 */

/*テーブル*/
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #bfbfbf;
  padding: 16.7px 15px;
}
.company_tbl .table_rows_th p,
.company_tbl .table_rows_td p{
  letter-spacing: 0.08em;
}
.company_tbl .table_rows_th{
  background: #f2f2f2;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #fff;
  font-weight: 400;
  line-height: 1.611em;
}
.company_tbl .table_rows_td p{
  letter-spacing: 0.16em;
}

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

/*ギャラリー*/
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 40px;
}
.company_gallery_item{
  width: 50%;
  padding-inline:5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img img{
  border-radius: 20px;
}
.company_gallery_item_img:before{
  padding-top: 71.42%;
}
@media (max-width:767px){
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #bfbfbf;;
  }
}
@media (min-width:768px){
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    font-size: 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-right: 0;
  }
  .company_tbl .table_rows_td{
    border-left: 0;
    padding-left: 21px;
  }

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

  }

  /*ギャラリー*/
  .company_gallery_items{
    margin-inline:-15px; 
    margin-top: 75px;
  }
  .company_gallery_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .company_gallery_item:nth-child(n+3){
    margin-top: 0;
  }
  .company_gallery_item:nth-child(n+4){
    margin-top: 30px;;
  }
  .company_gallery_item_img img{

  }
  .company_gallery_item_img:before{

  }
}
@media (min-width:1024px){
  /*テーブル*/
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{

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

  }

  /*地図*/
  .gmap{

  }
  .access_map iframe{
    height: 400px;
  }

  /*ギャラリー*/
  .company_gallery_items{

  }
  .company_gallery_item{

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

  }
  .company_gallery_item_img img{

  }
  .company_gallery_item_img:before{

  }

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


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

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


}

@media (min-width:1700px){


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_town .section.sec2{
  position: relative;
}

* + .town_info_list{
  position: relative;
  z-index: 3;
}
.town_life{
  position: relative;
  z-index: 3;
}
.mv_pos.aboutKurashiki_pos1{
  background-image: url(/system_panel/uploads/images/right_machi.png);
  width: 13.95%;
  aspect-ratio:268 / 333;
  top: -53px;
  bottom: auto;
  right: 0;
  z-index:0;
}
.mv_pos.aboutKurashiki_pos2{
  background-image: url(/system_panel/uploads/images/left_machi.png);
  width: 12.5%;
  aspect-ratio:240 / 342;
  bottom:auto;
  top: 411px;
  left: 0;
}
@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

}
@media (min-width:1024px){
  .town_info_list .webgene-pagination{
    margin-top: 80px;
  }
  .pg_town .section.sec2 .webgene-pagination li.number a{
    color: #fff;
  }

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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


}
@media (min-width:1366px){
  .body_aboutKurashiki .pg_town .section.sec2{
    padding-bottom: 159px;
  }
}
@media (min-width:1450px){


}

@media (min-width:1700px){


}

