@charset "UTF-8";

:root {
  --main-color: #121f39;
  /*  --sub-color: #;*/
}

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

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



/* 管理画面の余白調整 */
.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: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{
  background: var(--main-color);
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  background: transparent;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 100px;
}

/* メニュー全般 */
.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: 0px;
}
.hdr_contact a{
  background: #FFF;
  width: 40px;
  height: 40px;
  text-align: center;
  transition: 0.2s all;
  border: 1px solid transparent;
  border-radius: 50%;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.hdr_contact a:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  font-size: 20px;
  color: #121f39;
}
.hdr_contact a:hover{
  background: #121f39;
  background: #0e2e6d;
}
.hdr_contact a:hover:before{
  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;
}


@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

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

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

  .hdr1{
    padding: 10px 15px;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: var(--main-color);
  }
  .header.slim .hdr1{

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  .hdr_contact a{
    width: 50px;
    height: 50px;
  }
  .hdr_contact a:before{
    font-size: 20px;
  }

}
@media (min-width:1024px){
  .hdr1{
    padding: 11px 45px 11px 55px;
  }

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

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

  }
  .header.slim .hdr1{
    padding: 11px 45px 11px 55px;
  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 26.5px;
  }
  .hdr_contact a{
    width: 50px;
    height: 50px;
  }
  .hdr_contact a:before{
    font-size: 20px;
  }
}

@media (min-width:1200px){

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 120px;
  }

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

  }
  
  
  .hdr_contact{
    margin-left: 50px;
  }
  .hdr_contact a{
    width: 77.55px;
    height: 77.55px;
  }
  .hdr_contact a:before{
    font-size: 30px;
  }

}
@media (min-width:1470px){
  
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

  
}

@media (min-width:1720px){
  
  .hdr_contact{
    margin-left: 440px;
  }
  
}


/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  /*padding: 15px;*/
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  padding-top: 250px;
}
.mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.302;
  pointer-events: none;
}



/* MVテキスト */
.mv_txt{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  padding: 15px;
}
.mv_txt_p1{

}
.mv_txt_p2{

}

.mv_txt img,
.mv_txt svg{
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw 3s ease forwards;
}

.mv_txt{
  display: flex;
  justify-content: center;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

/* スライダーの場合 */
.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_img.img_fit:before{
    padding-top: 400px;
  }

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

  }
  .mv_txt_p2{

  }
  .mv_txt img{
    width: 70%;
  }
}
@media (min-width:1024px){


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

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

  }
  .mv_txt_p2{

  }

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

  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 930px;
  }

  /* MVテキスト */
  .mv_txt{
    font-size: 32px;
  }
  .mv_txt img{
    width: auto;
  }
  .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: 30px;
  position: relative;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img.img_fit:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgb(0, 0, 0);
  opacity: 0.302;
  pointer-events: none;
}


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

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

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


}




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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 220px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid var(--main-color);
  border-radius: 41.5px;
  background: #fff;
  /*border-radius: 27px;*/
  color: var(--main-color);
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  width: 25px;
  height: 6px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background: url(https://swc-8.co.jp/system_panel/uploads/images/20250519175129925284.png)no-repeat center center/contain;
}
.read_more a:hover{
  background: var(--sub-color);
  background: var(--main-color);
  color: #FFF;
}
.read_more a:hover:after{
  margin-right: -5px;
  background: url(https://swc-8.co.jp/system_panel/uploads/images/read_more_arr_wh.png)no-repeat center center/contain;
}


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


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

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

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

}

/*各タイトル*/
.sec_title{
  position: relative;
  z-index: 1;
}
.sec_title_en{
  font-family: "Bellefair", serif;
  font-weight: 400;
  font-size: 70px;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  opacity: 0.38;
  color: #e0e0e0;
  width: 100vw;
  position: relative;
  z-index: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.sec_title_ja{
font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 22px;
  text-align: center;
  color: #083061;
  color: #121f39;
  position: absolute;
  z-index: 1;
  top: 60%;
  width: 100%;
  left: 0;
  transform: translateY(-50%);
}
.sec_title_ja2{
  font-family: "Shippori Mincho B1", serif;
  font-weight: 600;
  font-size: 20px;
  text-align: justify;
  color: #121f39;
}
.sec_title_ja2.cmn_main{
  text-align: center;
}

/*文章*/
.content_desc{
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  text-align: justify;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
.content_desc.cmn_main{
  margin-top: 15px;
}



@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -150px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }
  .read_more a{
    width: 220px;
    padding: 16px 20px;
    margin: 5px 5px;
  }
  .read_more a:after{
    content: "";
    top: 50%;
    right: 18px;
  }
  .read_more a:hover:after{
    margin-right: -5px;
  }

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

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

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

  }

  /*各タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 120px;
  }
  .sec_title_ja{
    font-size: 30px;
  }
  .sec_title_ja2{
    font-size: 24px;
  }
  .sec_title_ja2.cmn_main{
    margin-top: 57px;
  }

  /*文章*/
  .content_desc{

  }
  .content_desc.cmn_main{
    line-height: 2.125;
  }

  .content_desc.cmn_main{

  }

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

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

  /*各タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 150px;
  }
  .sec_title_ja{
    font-size: 40px;
  }
  .sec_title_ja2{
    font-size: 30px;
  }
  .sec_title_ja2.cmn_main{

  }

  /*文章*/
  .content_desc{
    line-height: 2.125;
  }
  .content_desc.cmn_main{
    text-align: center;
    margin-top: 34px;
  }

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

  /*各タイトル*/
  .sec_title{

  }
  .sec_title_en{
    font-size: 150px;
  }
  .sec_title_ja{
    font-size: 40px;
  }
  .sec_title_ja.cmn_main.about{
    top: 42.5%;
  }
  .sec_title_ja2{

  }
  .sec_title_ja2.cmn_main{

  }

  /*文章*/
  .content_desc{

  }

}
@media (min-width:1470px){
  .sec_title_en{
    font-size: 150px;
  }
}
@media (min-width:1720px){
  .sec_title_en{
    font-size: 220px;
  }
}


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

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

.pg_home .section.sec4 .sec_title,
.pg_home .section.sec5 .sec_title{
  margin-bottom: 15px;
}

/* 私たちについて */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  min-height: 616px;
  padding-bottom: 40px;
  /*padding-top: 12px;*/
}
.home_about_box1{
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
  
}
.home_about_box2{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 3;
}
.home_about_title1{
  font-size: 26px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #121f39;
  filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
  margin-top: -55px;
}
.home_about_title2{
  
}
.home_about_title_en{
  font-size: 62px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 0.85;
  letter-spacing: 0;
  color: #e0e0e0;
  opacity: 0.38;
  position: absolute;
  z-index: 1;
  top: -30px;
  left: -10px;
}
.home_about_txt1{
  font-size: 18px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.666;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
  margin-top: -25px;
  margin-right: 15px;
}
.home_about_txt1 p{
  
}
.home_about_txt2{
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.125;
  text-align: justify;
  filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
  padding-left: 5px;
}
.home_about_img{
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}
.home_about_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_about_img.img_fit:after{
  content: "";
  background: rgba(0,0,0,0.1);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  
}

/* Important */
.home_important{
  position: relative;
  z-index: 1;
}
.home_important_head_ja{
  font-size: 20px;
  font-weight: 600; 
  font-family: "Shippori Mincho B1", serif;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 10px 2px;
  position: absolute;
  z-index: 2;
  top: -150px;
  left: 5px;
  background: #FFF;
  border-radius: 5px;
}
.home_important_head_en{
  font-size: 52px;
  font-weight: 400;
  font-family: "Bellefair", serif;
  line-height: 0.85;
  letter-spacing: 0;
  color: #e0e0e0;
  opacity: 0.38;
  position: absolute;
  z-index: 0;
  top: -35px;
  right: 0;
}

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

.home_important_item_inner{
  position: absolute;
  z-index: 2;
  bottom: 32px;
  width: auto;
}
.home_important_item:nth-child(odd) .home_important_item_inner{
  left: 15px;
  right: 15px;
}
.home_important_item:nth-child(even) .home_important_item_inner{
  left: 15px;
  right: 15px;
}

.home_important_item_title{
  font-size: 19px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.5;
  color: #FFF;
  margin-bottom: 15px;
}
.home_important_item_txt{
  font-size: 15px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2.125;
  line-height: 1.875;
  /*line-height: 1.666;*/
  text-align: justify;
  color: #FFF;
}
.home_important_item_img{
  position: relative;
  z-index: 0;
  margin-left: -5px;
  margin-right: -5px;
  overflow: hidden;
}
.home_important_item:first-child .home_important_item_img{
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.home_important_item:last-child .home_important_item_img{
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.home_important_item_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  transition: 0.2s all;
}
.home_important_item_img.img_fit:before{
  padding-top: 600px;
}

.home_important_item img{
  transition: 0.2s all;
}
.home_important_item:hover img{
  transform: scale(1.02);
}
.home_important_item:hover .home_important_item_img:after{
  background: rgba(0, 0, 0, 0.5)
}

.home_service_item_img{
  overflow: hidden;
}
.home_service_item_img img{
  transition: 0.2s all;
}
.home_service_item:hover img{
  transform: scale(1.02);
}

.home_service_item_img:after{
  transition: 0.2s all;
}
.home_service_item:hover .home_service_item_img:after{
  background: rgba(0, 0, 0, 0.5)
}

/* サービス内容 */
.home_service{
  display: flex;
  flex-wrap: wrap;
}
* + .home_service{
  margin-top: 30px;
}
.home_service_item{
  width: 100%;
  min-height: 700px;
  position: relative;
  z-index: 1;
  padding: 50px 30px 30px 60px;
}
.home_service_item_inner{
  /*position: relative;*/
  /*z-index: 1;*/
}
.home_service_item_title1{
  display: flex;
  position: absolute;
  z-index: 1;
  top: -16px;
  left: 10px;
  min-height: 150px;
  background: #121f39;
  padding: 20px 10px;
  border-radius: 5px 0 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
.home_service_item_title1_txt{
  font-size: 18px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1;
  color: #FFF;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.home_service_item_title2{
  font-size: 20px;
  font-weight: 600;
  font-family: "Shippori Mincho B1", serif;
  line-height: 1.4;
  color: #FFF;
  margin-bottom: 20px;
  
}
.home_service_item_title2:after{
  content: "";
  display: block;
  width: auto;
  height: 1px;
  background: #FFF;
  margin-top: 15px;
}
.home_service_item_txt{
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.75;
  text-align: justify;
  color: #FFF;
}
.home_service_item_img{
  position: absolute;
  z-index: -1;
  inset: 0;
}
.home_service_item_img.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_service_item_img:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: rgba(0,0,0,0.24);
}

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

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

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

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

  .pg_home .section.sec1{
    padding-top: 135px;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 235px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 90px;
    padding-bottom: 0;
  }
  .pg_home .section.sec5{
    padding-top: 90px;
    padding-bottom: 0;
  }
  
  /* 私たちについて */
  .home_about{
    min-height: 450px;
  }
  .home_about_box1{
    width: 25.67%;
    order: 2;
  }
  .home_about_box2{
    width: 68.46%;
    margin-top: 40px;
    order: 1;
  }

  .home_about_title1{
    font-size: 36px;
    filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
    margin-top: -70px;
  }
  .home_about_title2{

  }
  .home_about_title_en{
    font-size: 100px;
    top: -50px;
    left: -30px;
  }
  .home_about_txt1{
    font-size: 22px;
    filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
    margin-top: -38px;
    margin-right: 20px;
  }
  .home_about_txt2{
    font-size: 16px;
    line-height: 2.125;
    filter: drop-shadow(0px 0px 4px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 2px #FFF) drop-shadow(0px 0px 1px #FFF) drop-shadow(0px 0px 1px #FFF);
  }


  /* Important */
  .home_important{

  }
  .home_important_head_ja{
    font-size: 30px;
    padding: 10px 2px;
    top: -200px;
    left: 0px;
  }
  .home_important_head_en{
    font-size: 100px;
    top: -65px;
    right: 0;
  }
  .home_important_item{
  }

  .home_important_item_inner{
    bottom: 32px;
    width: 80%;
  }
  .home_important_item:nth-child(odd) .home_important_item_inner{
    left: auto;
    right: 20px;
  }
  .home_important_item:nth-child(even) .home_important_item_inner{
    left: 20px;
    right: auto;
  }

  .home_important_item_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .home_important_item_txt{
    font-size: 16px;
    line-height: 2.125;
  }
  .home_important_item_img{
    margin-left: -10px;
    margin-right: -10px;
  }
  
  .home_important_item_img.img_fit:before{
    padding-top: 650px;
  }
  
  /* サービス内容 */
  .home_service{
  }
  * + .home_service{
    margin-top: 62px;
  }
  .home_service_item{
    width: 100%;
    min-height: 700px;
    padding: 90px 50px 90px 110px;
  }
  .home_service_item_inner{
  }
  .home_service_item_title1{
    top: -16px;
    left: 30px;
    padding: 20px 12px;
    min-height: 220px;
  }
  .home_service_item_title1_txt{
    font-size: 30px;
  }
  .home_service_item_title2{
    font-size: 25px;
    margin-bottom: 30px;
  }
  .home_service_item_title2:after{
    width: 370px;
    margin-top: 25px;
  }
  .home_service_item_txt{
    font-size: 16px;
  }
  
  
  
  
}
@media (min-width:1024px){

  .pg_home .section.sec1{
    padding-top: 235px;
    padding-bottom: 0;
  }
  .pg_home .section.sec2{
    padding-top: 335px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec3{
    padding-top: 68px;
    padding-bottom: 0;
  }
  .pg_home .section.sec4{
    padding-top: 155px;
    padding-bottom: 0;
  }
  .pg_home .section.sec5{
    padding-top: 155px;
    padding-bottom: 0;
  }
  
  
  
   /* Important */
  .home_important{

  }
  .home_important_item{
  }

  .home_important_item_inner{
    width: 65%;
  }

  /* サービス内容 */
  .home_service{
  }
  .home_service_item{
    width: 50%;
    min-height: 700px;
    /*padding: 90px 175px 90px 195px;*/
  }
  
}
@media (min-width:1200px){

  /* 私たちについて */
  .home_about{
    min-height: 616px;
  }
  .home_about_box1{
    width: 25.67%;
  }
  .home_about_box2{
    width: 68.46%;
    margin-top: 40px;
  }

  .home_about_title1{
    font-size: 46px;
    margin-top: -95px;
  }
  .home_about_title2{

  }
  .home_about_title_en{
    font-size: 220px;
    top: -100px;
    left: -108px;
  }
  .home_about_txt1{
    font-size: 30px;
    margin-top: -53px;
    margin-right: 58px;
  }
  .home_about_txt2{
    font-size: 16px;
  }
  
  /* Important */
  .home_important{

  }
  .home_important_head_ja{
    font-size: 35px;
    top: -200px;
    left: 0;
  }
  .home_important_head_en{
    font-size: 150px;
    top: -105px;
    right: 0;
  }
  .home_important_item{
  }

  .home_important_item_inner{
    bottom: 32px;
    width: 61.71%;
  }
  .home_important_item:nth-child(odd) .home_important_item_inner{
    right: 20px;
  }
  .home_important_item:nth-child(even) .home_important_item_inner{
    left: 20px;
  }

  .home_important_item_title{
    font-size: 30px;
    margin-bottom: 20px;
  }
  .home_important_item_txt{
  }
  .home_important_item_img{
    margin-left: -30px;
    margin-right: -30px;
  }
  .home_important_item_img.img_fit:before{
    padding-top: 750px;
  }

  
  
}

@media (min-width:1470px){
  
  .home_important_head_ja{
    /*font-size: 40px;*/
    top: -200px;
    left: -65px;
  }
  .home_important_head_en{
    /*font-size: 220px;*/
    /*top: -145px;*/
    right: -100px;
  }
  
  .home_important_item_img{
    margin-left: -120px;
    margin-right: -120px;
  }
  .home_important_item:nth-child(odd) .home_important_item_inner{
    right: -50px;
  }
  .home_important_item:nth-child(even) .home_important_item_inner{
    left: -50px;
  }
}
@media (min-width:1536px){
  
  
}
@media (min-width:1720px){
  
}
@media (min-width:1720px){
  
  /* Important */
  
  .home_important_head_ja{
    font-size: 40px;
    top: -240px;
    left: -235px;
  }
  .home_important_head_en{
    font-size: 220px;
    top: -145px;
    right: -265px;
  }
  
  .home_important_item:nth-child(odd) .home_important_item_inner{
    right: -220px;
  }
  .home_important_item:nth-child(even) .home_important_item_inner{
    left: -180px;
  }
  .home_important_item_img{
    margin-left: -280px;
    margin-right: -280px;
  }
  
  /* サービス内容 */
  .home_service{
  }
  .home_service_item{
    width: 50%;
    min-height: 700px;
    padding: 90px 175px 90px 195px;
  }
  .home_service_item_inner{
  }
  .home_service_item_title1{
    top: -16px;
    left: 85px;
    padding: 20px 10px;
    min-height: 295px;
  }
  .home_service_item_title1_txt{
    font-size: 40px;
  }
  .home_service_item_title2{
    font-size: 30px;
    margin-bottom: 45px;
  }
  .home_service_item_title2:after{
    width: 370px;
    margin-top: 25px;
  }
  .home_service_item_txt{
  }
}







/*******************************
*　
********************************/
.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_property .sec_title{
  margin-bottom: 20px;
}

.pg_property + .pg_contact{
  margin-top: 50px;
}
.pg_property + .pg_contact .sec_title{
  margin-bottom: 30px;
}

/* 検索 */
.property_search_tt{
  font-size: 17px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #e6e6e6;
  color: #121f39;
  padding: 5px 10px;
  margin-bottom: 20px;
}
.property_search{
  margin-bottom: 20px;
}
.property_search_form{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.property_search_form .item{
  width: 50%;
  padding: 0 5px;
}
.property_search_form .item:nth-child(n+3){
  margin-top: 10px;
}
.property_search_form .item a{
  display: block;
  border: 1px solid #083061;
  border-radius: 27px;
  padding: 5px 5px 6px;
  
  font-size: 15px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: center;
  
  background: #083061;
  color: #FFF;
  
  position: relative;
  z-index: 1;
}


.property_search_form .item a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  width: 25px;
  height: 6px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  background: url(https://swc-8.co.jp/system_panel/uploads/images/20250519175129925284.png) no-repeat center center / contain;
  background-image: url(https://swc-8.co.jp/system_panel/uploads/images/read_more_arr_wh.png);

}
.property_search_form .item a.on,
.property_search_form .item a:hover{
  background: #FFF;
  color: #181818;
  color: #083061;
}

.property_search_form .item a.on:after,
.property_search_form .item a:hover:after{
  margin-right: -5px;
  background-image: url(https://swc-8.co.jp/system_panel/uploads/images/20250519175129925284.png);
}

/* 一覧 */
.property_list{
  
}
.property_list .webgene-blog{
  
}
.property_list .webgene-item{
  
}
.property_list.news_list .webgene-item .img.img_fit{
  border-radius: 20px;
}
.property_list.news_list .webgene-item .img.img_fit:before{
  padding-top: 103.92%;
}
.property_list.news_list .webgene-item .meta{
  margin-bottom: 8px;
}

.property_list.news_list .webgene-item .category span{
  white-space: nowrap;
}

@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec2{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_xxx .section.sec3{
    padding-top: 0;
    padding-bottom: 0;
  }
  
  .pg_property .sec_title{
    margin-bottom: 30px;
  }
  
  .pg_property + .pg_contact{
    margin-top: 100px;
  }

  /* 検索 */
  .property_search_tt{
    font-size: 17px;
    padding: 10px 25px;
    margin-bottom: 20px;
  }
  .property_search{
    margin-bottom: 20px;
  }
  .property_search_form{
    margin: 0 -10px;
  }
  .property_search_form .item{
    width: 33.333%;
    padding: 0 10px;
  }
  .property_search_form .item:nth-child(n+3){
    margin-top: 0;
  }
  .property_search_form .item:nth-child(n+4){
    margin-top: 10px;
  }
  .property_search_form .item a{
    border-radius: 27px;
    padding: 13px 10px 14px;
    font-size: 17px;
  }
  
  /* 一覧 */
  .property_list{

  }
  .property_list .webgene-blog{
    
  }
  .property_list .webgene-item{
    
  }

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

  /* 検索 */
  .property_search_tt{
    font-size: 17px;
    margin-bottom: 30px;
  }
  .property_search{
    margin-bottom: 50px;
  }
  .property_search_form{
    margin: 0 -15px;
  }
  .property_search_form .item{
    width: 25%;
    padding: 0 15px;
  }
  .property_search_form .item:nth-child(n+4){
    margin-top: 0;
  }
  .property_search_form .item:nth-child(n+5){
    margin-top: 15px;
  }
  
  /* 一覧 */
  .property_list{

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

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

  .pg_property .sec_title{
    margin-bottom: 56px;
  }
  
  /* 検索 */
  .property_search_tt{
    margin-bottom: 45px;
  }
  .property_search{
    margin-bottom: 100px;
  }

}


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

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

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

/* メイン */
.gallery_main{
  
}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  /*padding-top: 105.79%;*/
  padding-top: 94.52%;
}
.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 #121f39;
  margin-top: 20px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  
}
.gallery_detail .meta .madori{
  width: 100%;
  margin-bottom: 12px;
}
.gallery_detail .meta .madori span{
  display: inline-block;
  min-width: 120px;
  padding: 1px 5px 2px  ;
  background: #121f39;
  color: #FFF;
  border-radius: 13px;
  text-align: center;
  
}
.gallery_detail .meta .title{
  width: 100%;
  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;
  border: 1px solid #121f39;
  padding: 25px 15px;
  margin-top: 30px;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


/* 詳細 */
.property_tbl{
  width: 100%;
  table-layout: fixed;
  border: 1px solid #121f39;
  margin-top: 30px;
}
.property_tbl + .property_tbl{
  margin-top: 30px;
}
.property_tbl tr{
  
}
.property_tbl tr+tr{
  border-top: 1px solid #121f39;
}
.property_tbl th,
.property_tbl td{
  border: 0;
  padding: 10px 10px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}
.property_tbl th{
  background: #e6e6e6;
}
.property_tbl td{
  
}

.property_addr{
  display: flex;
  flex-wrap: wrap;
}
.property_addr p{
  margin-right: 10px;
}
.property_addr a{
  display: inline-block;
  width: 180px;
  background: var(--main-color);
  color: #FFF;
  text-align: center;
  position: relative;
  z-index: 1;
}
.property_addr a[href=""]{
  display: none;
}
.property_addr a:after{
  content: "→";
    /* font-size: 24px; */
    position: absolute;
    top: 50%;
    right: 10px;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    transition: 0.2s all;
}
.property_addr a:hover{
  background: var(--main-color);
  color: #FFF;
}
.property_addr a:hover:after{
  margin-right: -5px;
}

/**/
[name="property_name"],
[name="property_price"]{
  border: 0 !important;
  pointer-events: none;
}



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

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

}
@media (max-width:767px){
  .property_tbl{
    display: block;
  }
  .property_tbl tbody{
    display: block;
  }
  .property_tbl tr{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .property_tbl th,
  .property_tbl td{
    display: block;
    /*display: flex;*/
  }
  .property_tbl th{
    width: 100px;
  }
  .property_tbl td{
    width: calc(100% - 100px);
  }
  .property_tbl th:nth-child(n+3),
  .property_tbl td:nth-child(n+3){
    border-top: 1px solid #121f39;
  }
}
@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-wrapper{
    margin: 0;
  }
  .gallery_thumb .swiper-slide {
    overflow: hidden;
  }
  .gallery_thumb .img{
    height: 100%;
  }
  .gallery_thumb .img.img_fit:before{
    
  }

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 30px;
    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;
  }
  
  
  /* 詳細 */
  .property_tbl{
    margin-top: 50px;
  }
  .property_tbl + .property_tbl{
    margin-top: 50px;
  }
  .property_tbl tr{

  }
  .property_tbl th,
  .property_tbl td{
    font-size: 16px;
    line-height: 2;
    padding: 10px 10px;
  }
  .property_tbl th{
    width: 140px;
  }
  .property_tbl td + th{
    border-left: 1px solid #121f39;
  }
  .property_tbl td{
    padding-left: 10px;
  }
  
  /* 詳細 */
  .property_tbl{
    margin-top: 115px;
  }
  
  .property_detail .read_more{
    
  }
}
@media (min-width:1024px){

  /* 詳細 */
  .gallery_detail{
    width: 100%;
    margin-top: 30px;
  }
  .gallery_detail .meta{
    margin-top: 10px;
    margin-bottom: 50px;
    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.25;
    margin-top: 60px;
    padding: 25px 25px;
  }
  .gallery_detail .read_more{
    margin-top: 95px;
  }
  .gallery_detail .read_more a{
    /*width: 410px;*/
  }
  
  .pg_property2 + .pg_contact{
    margin-top: 30px;
  }
  
  .gallery_detail .post_content + .read_more{
    margin-top: 55px;
  }
  
}
@media (min-width:1200px){

  
  .property_tbl th,
  .property_tbl td{
    padding: 13px 15px;
  }
  .property_tbl th{
    width: 255px;
  }
  .property_tbl td{
    padding-left: 20px;
  }
}


label.label.zipcode_i{
  height: 40px;
}

.pg_contact .no_requiredText{
  background: #FFF!important;
  color: #b80000!important;
  border: 1px solid #b80000;
}
.pg_contact .formTbl{
  border-color: #181818 !important;
}
.pg_contact .formRow + .formRow{
  border-color: #181818 !important;
}
.pg_contact .formTh{
  background-color: #e6e6e6 !important;
}

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

* + .news_list.slim{
  margin-top: 20px;
}

.news_list.slim .webgene-item .img.img_fit{
  border-radius: 20px;
}
.news_list.slim .webgene-item .img.img_fit:before{
  padding-top: 68.57%;
}

.news_list.slim .webgene-item .category{
  text-align: center;
}


  
@media (max-width:374px){

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

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

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

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


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


  .news_list.slim .webgene-item .category{
    min-width: 103px;
  }
  
}
@media (min-width:1200px){


}
