@charset "UTF-8";

:root {
  /*--main-color: #2b6796;*/
  /*--sub-color: #e7161a;*/
  --main-color: #097d9e;
  --sub-color: #006036;
  --bg-beige: #edeae6;
  --bg-blue: #d5dfe5;

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

@media (min-width:768px){
  :root {
    --margin-for-device-side: calc(345px - 50vw);
  }
}
@media (min-width:992px){
  :root {
    --margin-for-device-side: calc(465px - 50vw);
  }
}
@media (min-width:1200px){
  :root {
    --margin-for-device-side: calc(555px - 50vw);
  }
}
@media (min-width:1536px){
  :root {
    --margin-for-device-side: calc(668px - 50vw);
  }
}
@media (min-width:1720px){
  :root {
    --margin-for-device-side: calc(760px - 50vw);
  }
}

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



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

@media (max-width:767px){
  #chatbot-btn {
    bottom: 0!important;
    /* height: 110px!important; */
    z-index: 9999;
  }
}

.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;
  font-family: "Zen Old Mincho", san-serif;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
  color: var(--sub-color);
}
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:1536px){*/
@media (min-width:1540px){
  .lg_nobr br{
    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{
  position: fixed;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 120px;
}

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

/* TELボタン */
.hdr_tel{
  margin-left: 20px;
}
.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;
  border-radius: 25px;
  font-family: "Zen Old Mincho", san-serif;
  font-weight: 400;
  text-align: center;
  transition: 0.2s all;
}
.hdr_contact a.email p:before{
  content:"\f0e0";
  font-family: "fontAwesome";
  margin-right: 10px;
}
.hdr_contact a:hover{
  background: var(--sub-color);
  color: #FFF;
}

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

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    background: #e3dfda;
  }

  .hdr1 {
  }

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

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

  /* ヘッダー固定 */
  body{
  }
  .header{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
  }

  .hdr1{
    padding: 0 0 0 15px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }
  .hdr_tel img{
    width: 190px;
    width: auto;
  }

  .hdr_contact a{
    width: 200px;
    font-size: 14px;
  }



  .gnav .hdr_sns{
    padding: 10px;
  }
  .gnav .hdr_sns a{
    margin: 0;
    display: block;
  }
  .gnav .hdr_sns a + a{

    margin-top: 10px;
  }

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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_sns.pos1 img{
    width: 120px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: 220px;
  }

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

  }

  .hdr_sns.pos1 img{
    width: 140px;
  }

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

  .hdr1{
    padding-left: 30px;
  }
  .hdr_logo img {
    width: auto;
  }
  .hdr_contact{
    margin-left: 28px;
  }
  .hdr_contact a{
    width: 280px;
    font-size: 16px;
  }
  .hdr_tel img {
    width: auto;
  }
  .hdr_sns.pos1 img {
    width: auto;
  }
}
@media (min-width:1720px){

  .hdr_contact a{
    width: 355px;
    font-size: 17px;
    letter-spacing: 0.2em;
  }


}


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

.mv_imgs_wrap{
  display: flex;
  flex-wrap: wrap;
  height: calc(100vh - 70px);
}
.mv_imgs{
  width: 100%;
}
.mv_imgs_item{
  position: relative;
  z-index: 1;
}
.mv_imgs_item.img_fit:before{
  padding-top: 50vh;
}
.mv_imgs_item:after{
  content: "";
  background: rgba(55,51,21, 0.2);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  /*display: none;*/
}


/* MVテキスト */
.mv_catch{
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 15px;
  right: 15px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #FFF;
  text-align: center;
}
.mv_catch_txt1{
  /* #4f4732 */
  font-size: 24px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.5;
  letter-spacing: 0.09em;
  text-align: center;
  filter: drop-shadow(0 0 9px #4f4732);
}
.mv_catch_txt2{
  display: inline-block;
  background: rgba(255,255,255,0.8);
  text-align: center;
  padding: 5px 15px;
  margin-top: 15px;
}
.mv_catch_txt2_p{
  font-size: 16px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.5;
  color: #181818
}


/* スライダーの場合 */
.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_imgs_wrap{
    height: auto;
  }
  .mv_imgs{
    width: 100%;
    height: 50vh;
  }
  .mv_imgs_item{

  }
  .mv_imgs_item.img_fit:before{
    padding-top: 50vh;
  }

  /* MVテキスト */
  .mv_catch{
    top: 50%;
    left: 15px;
    right: 15px;
  }
  .mv_catch_txt1{
    font-size: 48px;
  }
  .mv_catch_txt2{
    padding-left: 25px;
    padding-right: 25px;
  }
  .mv_catch_txt2_p{
    font-size: 20px;
  }

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


  /* MV */
  .mv{
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 500px;
  }
  .mv_imgs{
    width: 50%;
    height: 100vh;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 100vh;
  }

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

  }
  .mv_txt_p2{

  }

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

  /* MV */
  .mv{
  }
  .mv_imgs{
    width: 50%;
    height: 100vh;
  }
  .mv_img{
  }
  .mv_img.img_fit:before{
    padding-top: 820px;
  }
  .mv_imgs_item.img_fit:before{
    padding-top: 100vh;
  }
  

  /* MVテキスト */
  .mv_catch{
  }
  .mv_catch_txt1{
    font-size: 60px;
  }
  .mv_catch_txt2{
  }
  .mv_catch_txt2{
    padding-left: 40px;
    padding-right: 30px;
  }
  .mv_catch_txt2_p{
    font-size: 24px;
  }

}


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

/* サイドバー */
.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:after{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: rgba(99,99,99,0.2);
  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: 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){


}




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


/* テーブル用 */
.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;
  color: #636363;
  border: 1px solid currentColor;
  background: none;;
  font-weight: 500;

}
.webgene-pagination li.selected{
  border: 0;
  background: #636363;
  color: #FFF;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

.works_list .webgene-pagination li{
  /*color: var(--main-color);*/
  border-color: var(--main-color);
}
.works_list .webgene-pagination li.selected{
  background: var(--main-color);
  color: #FFF;
}

/* アンカー */
.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{
  min-width: 250px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.2;
  text-align: center;
  border: 0;
  border-radius: 27px;
  background: #FFF;
  color: var(--main-color);
  padding: 10px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more a.blue{
  background: var(--main-color);
  color: #FFF;
}
.read_more a.blue:hover{
  background: var(--sub-color);
  color: #FFF;
}
.read_more a.green{
  background: var(--sub-color) !important;
  color: #FFF !important;
}
.read_more a.green:hover{
  background: var(--main-color) !important;
  color: #FFF !important;
}
.read_more a em{
  font-weight: inherit;
  font-style: normal;
}


/* 見出し */
.tt2{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 20px;
}
.tt2.left{
  align-items: center;
}
.tt2.left:after{
  display: none;
  content: "";
  width: 30px;
  height: 1px;
  background: var(--main-color);
  margin-left: 10px;
}
.tt2.center{
  justify-content: center;
}
.tt2.center:after{
  content: "";
  width: 1px;
  height: 30px;
  background: var(--main-color);
  margin-top: 10px;
}
.tt2.center .tt2_ja{
  width: 100%;
}

.tt2_ja{
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.09em;
  color: var(--main-color);
  margin-top: 0;
}
.tt2_en{
  font-size: 32px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  color: #565656;
}
.tt2_sub{
  font-size: 18px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  text-align: justify;
  line-height: 1.666;
  margin-top: 10px;
}

.tt2.halfUp{
  position: relative;
  z-index: 1;
  top: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

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

/* 背景色用 */
.section.beige{
  background-color: var(--bg-beige);
}
.section.beige2{
  padding-top: 0;
}
.section.beige2:before{
  content: "";
  width: 100%;
  height:210px;
  height:18%;
  background-color: var(--bg-beige);
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

.section.blue{
  background-color: var(--bg-blue);
}
.section.blue2{
  padding-bottom: 100px;
}
.section.blue2:before{
  content: "";
  width: 100%;
  /*height:18%;*/
  height:290px;
  background-color: var(--bg-blue);
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}

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

}

/* バナー */
.cmn_banner{

}
* + .cmn_banner{
  margin-top: 30px;
}
.cmn_banner img{
  transition: 0.2s all;
}
.cmn_banner:hover img{
  transform: scale(1.02);
}

/* コンテンツ1 */
.cmn_contents1{

}
* + .cmn_contents1{
  margin-top: 30px;
}
.cmn_contents1_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents1_row + .cmn_contents1_row{
  margin-top: 50px;
}
.cmn_contents1_row .anchor{
  width: 100%;
}
.cmn_contents1_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn_contents1_box2{
  width: 100%;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.cmn_contents1_box2:after{
  content: "";
  background: var(--bg-blue);
  position: absolute;
  z-index: -1;
  /*top: 170px;
  bottom: 0;
  right: var(--margin-for-device-side);
  left: 56.15%;
  left: 43.85%;*/
}

.cmn_contents1_img{

}
.cmn_contents1_img.img_fit:before{
  padding-top: 82.21%;
}
.cmn_contents1.reform .cmn_contents1_img.img_fit:before{
  padding-top: 66.80%;
}

.cmn_contents1.reform .tt2_ja{
  text-align: left;
  line-height: 1.3;
}

.cmn_contents1_title{
  font-size: 18px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
}
.cmn_contents1_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.cmn_contents1_title + .cmn_contents1_txt{
  margin-top: 10px;
}
.cmn_contents1_txt + .read_more{
  margin-top: 30px;
}

/* コンテンツ2 */
.cmn_contents2{

}
* + .cmn_contents2{
  margin-top: 30px;
}
.cmn_contents2_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents2_row + .cmn_contents2_row{
  margin-top: 50px;
}
.cmn_contents2_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn_contents2_box2{
  width: 100%;
  margin-top: 0;
  padding: 25px 15px;
  background: #edeae6;
  position: relative;
  z-index: 1;
}
.cmn_contents2_img{

}
.cmn_contents2_img.img_fit:before{
  padding-top: 82.21%;
  padding-top: 77.94%;
}

.cmn_contents2_box2 .tt2{
  margin-bottom: 10px;
}
.cmn_contents2_num{
  font-size: 30px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
}
.cmn_contents2_title1{
  font-size: 20px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
  color: var(--main-color);
  margin-bottom: 10px;
}
.cmn_contents2_title2{
  font-size: 18px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
  margin-bottom: 10px;
}
.cmn_contents2_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}
.cmn_contents2_title + .cmn_contents2_txt{
  margin-top: 10px;
}
.cmn_contents2_txt + .read_more{
  margin-top: 30px;
}

/* コンテンツ3 */
.cmn_contents3{

}
* + .cmn_contents3{
  margin-top: 30px;
}
.cmn_contents3_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.cmn_contents3_row + .cmn_contents3_row{
  margin-top: 50px;
}
.cmn_contents3_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.cmn_contents3_box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: -15px;
  padding: 25px 15px;
  background: #FFF;
  position: relative;
  z-index: 2;
}
.cmn_contents3_box2_l{
  width: 100%;
}
.cmn_contents3_box2_r{
  width: 100%;
}
.cmn_contents3_imgs{
  display: flex;
  margin-left: var(--margin-for-device-side);
  margin-right: var(--margin-for-device-side);
}
.cmn_contents3_img{
  width: 50%;
}
.cmn_contents3_img.img_fit:before{
  padding-top: 69.76%;
  padding-top: 85%;
}
.cmn_contents3_img.col3.img_fit:before{
  padding-top: 104.71%;
}

.cmn_contents3_title{
  font-size: 20px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
  color: var(--main-color);
  margin-bottom: 10px;
}
.cmn_contents3_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/*.cmn_contents3_row:nth-child(odd) .cmn_contents3_imgs{
  margin-right: var(--margin-for-device-side);
}
.cmn_contents3_row:nth-child(even) .cmn_contents3_imgs{
  margin-left: var(--margin-for-device-side);
}*/

@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.o .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.large{
    min-width: 90%;
  }
  .read_more a em{
    font-size: 12px;
  }

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


  /* 背景色用 */
  .section.beige2{
    padding-top: 0;
  }
  .section.beige2:before{
    height:95px;
  }
  .section.blue2{
    /*padding-bottom: 300px;*/
    padding-bottom: 150px;
  }
  .section.blue2:before{
    /*height:565px;*/
    height:450px;
  }

  .anchor{
    top: -100px;
  }

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

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

  .read_more a.mini{
    min-width: 160px;
  }
  .read_more a.large{
    min-width: 500px;
  }

  /* 見出し */
  .tt2{
    margin-bottom: 23px;
  }
  .tt2.left{
    justify-content: flex-start;
    text-align: left;
  }
  .tt2.left:after{
    display: none;
    content: "";
    width: 50px;
    margin-left: 10px;
  }
  .tt2.center:after{
    height: 50px;
  }
  .tt2.center:after{
    margin-top: 22px;
  }
  .tt2_ja{
    font-size: 32px;
  }
  .tt2_en{
  }
  .tt2_sub{
    font-size: 20px;
    text-align: justify;
    margin-top: 10px;
  }



  /* コンテンツ1 */
  .cmn_contents1{

  }
  * + .cmn_contents1{
    margin-top: 50px;
  }
  .cmn_contents1_row{
  }
  .cmn_contents1_row + .cmn_contents1_row{
    margin-top: 100px;
  }
  .cmn_contents1_box1{
    width: 100%;
    /*width: 50.9868%;*/
  }
  .cmn_contents1_box2{
    width: 100%;
    /*width: 42.7631%;*/
  }
  .cmn_contents1_title{
    font-size: 24px;
  }
  .cmn_contents1_txt{
    font-size: 18px;
    line-height: 2.222;
  }
  .cmn_contents1_title + .cmn_contents1_txt{
    margin-top: 20px;
  }
  .cmn_contents1_title + .cmn_contents1_txt.mt_s{
    margin-top: 15px;
  }
  .cmn_contents1_txt + .read_more{
    margin-top: 62px;
    justify-content: center;
  }

  .cmn_contents1.reform .tt2{
    margin-bottom: 30px;
  }
  .cmn_contents1.reform .tt2_ja{
    text-align: left;
    margin-right: -1.3em;
  }

  /* コンテンツ2 */
  .cmn_contents2{

  }
  * + .cmn_contents2{
    margin-top: 30px;
  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    margin-top: 50px;
  }
  .cmn_contents2_box1{
    width: 100%;
    /*width: 50.9868%;*/
  }
  .cmn_contents2_box2{
    width: 100%;
    /*width: 42.7631%;*/
    padding: 30px 30px;
  }
  .cmn_contents2_num{
    font-size: 40px;
  }
  .cmn_contents2_title1{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .cmn_contents2_title2{
    font-size: 20px;
    margin-bottom: 10px;
  }
  .cmn_contents2_txt{
    font-size: 16px;
    line-height: 2.222;
  }
  .cmn_contents2_title + .cmn_contents2_txt{
    margin-top: 58px;
  }
  .cmn_contents2_txt + .read_more{
    margin-top: 62px;
  }



  /* コンテンツ3 */
  .cmn_contents3{

  }
  * + .cmn_contents3{
    margin-top: 30px;
  }
  .cmn_contents3_row{
  }
  .cmn_contents3_row + .cmn_contents3_row{
    margin-top: 50px;
  }
  .cmn_contents3_box1{
    width: 100%;
  }
  .cmn_contents3_box2{
    align-items: flex-end;
    width: 67.76%;  
    width: 85%;  
    margin-top: -30px;
    padding: 25px 15px;
  }
  .cmn_contents3_box2_l{
    width: calc(100% - 180px);
  }
  .cmn_contents3_box2_r{
    width: 180px;
  }
  .cmn_contents3_box2_r .read_more{
    margin-top: 0;
  }
  .cmn_contents3_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .cmn_contents3_txt{
    font-size: 16px;
    line-height: 2.222;
  }

  .cmn_contents3_box2 .read_more a{
    /*width: 200px;*/
  }

  .cmn_contents3_imgs{
    margin-left: 0;
    margin-right: 0;
  }
  .cmn_contents3_img.img_fit:before{
    padding-top: 69.76%;
  }
  .cmn_contents3_row:nth-child(odd) .cmn_contents3_imgs{
    margin-right: var(--margin-for-device-side);
  }
  .cmn_contents3_row:nth-child(even) .cmn_contents3_imgs{
    margin-left: var(--margin-for-device-side);
  }

  .cmn_contents3_box2:after{
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    background: #FFF;
  }
  .cmn_contents3_row:nth-child(odd) .cmn_contents3_box2{
    padding-left: 0;
  }
  .cmn_contents3_row:nth-child(even) .cmn_contents3_box2{
    margin-left: auto;
    padding-right: 0;
  }
  .cmn_contents3_row:nth-child(odd) .cmn_contents3_box2:after{
    left: var(--margin-for-device-side);
    right: 100%;
  }
  .cmn_contents3_row:nth-child(even) .cmn_contents3_box2:after{
    left: 100%;
    right: var(--margin-for-device-side);
  }

  * + .cmn_banner{
    margin-top: 50px;
  }

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

  /* 背景色用 */
  .section.beige2:before{
    height:130px;
  }
  .section.blue2:before{
    /*height:565px;*/
    height:400px;
  }

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

  /* 見出し */
  /*.tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 46px;
  }
  */
  .tt2{
    margin-bottom: 23px;
  }
  .tt2_ja{
    font-size: 32px;
  }
  .tt2_sub{
    font-size: 24px;
    text-align: center;
    /*text-align: justify;*/
    /*margin-top: 10px;*/
  }

  /* コンテンツ1 */
  .cmn_contents1{

  }
  .cmn_contents1_row{
  }
  .cmn_contents1_row + .cmn_contents1_row{
    margin-top: 80px;
  }
  .cmn_contents1_box1{
    width: 50.9868%;
    width: 50%;
  }
  .cmn_contents1_box2{
    width: 42.7631%;
    width: 47%;
    padding-top: 40px;
    padding-bottom: 30px;
  }
  .cmn_contents1_box2:after{
    top: 170px;
    bottom: 0;
  }


  .cmn_contents1.reform .cmn_contents1_box1{

  }
  .cmn_contents1.reform .cmn_contents1_box2{
    min-height: 670px;
    padding-bottom: 50px;
  }


  .cmn_contents1_head{
    display: flex;
    justify-content:flex-start;
  }
  .cmn_contents1_title{
    font-size: 24px;
  }
  .cmn_contents1_txt{
    font-size: 18px;
  }
  .cmn_contents1_title + .cmn_contents1_txt{
    margin-top: 30px;
  }
  .cmn_contents1_title + .cmn_contents1_txt.mt_s{
    margin-top: 25px;
  }
  .cmn_contents1_txt + .read_more{
    margin-top: 62px;
  }

  .cmn_contents1_txt + .read_more.left{
    justify-content: flex-start;
  }


  .cmn_contents1_row:nth-child(odd) .cmn_contents1_box1{
    order: 1;
  }
  .cmn_contents1_row:nth-child(odd) .cmn_contents1_box2{
    order: 2;
  }
  .cmn_contents1_row:nth-child(even) .cmn_contents1_box1{
    order: 2;
  }
  .cmn_contents1_row:nth-child(even) .cmn_contents1_box2{
    order: 1;
  }

  .cmn_contents1_row:nth-child(odd) .cmn_contents1_img{
    margin-left: var(--margin-for-device-side);
  }
  .cmn_contents1_row:nth-child(even) .cmn_contents1_img{
    margin-right: var(--margin-for-device-side);
  }
  .cmn_contents1_row:nth-child(odd) .cmn_contents1_box2:after{
    left: 43.85%;
    right: var(--margin-for-device-side);
  }
  .cmn_contents1_row:nth-child(even) .cmn_contents1_box2:after{
    left: var(--margin-for-device-side);
    right: 43.85%;
  }

  .cmn_contents1.reform .cmn_contents1_row:nth-child(odd) .cmn_contents1_box2:after{
    /*left: 45.85%;*/
    left: 25%;
  }
  .cmn_contents1.reform .cmn_contents1_row:nth-child(even) .cmn_contents1_box2:after{
    /*right: 46.85%;*/
    right: 25%;
  }


  /* コンテンツ2 */
  .cmn_contents2{

  }
  * + .cmn_contents2{
    margin-top: 65px;
  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    margin-top: 50px;
  }
  .cmn_contents2_box1{
    width: 50.9868%;
  }
  .cmn_contents2_box2{
    width: 49.01%;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .cmn_contents2_num{
    font-size: 60px;
  }
  .cmn_contents2_title1{
    font-size: 28px;
    margin-bottom: 30px;
  }
  .cmn_contents2_title2{
    font-size: 23px;
    margin-bottom: 20px;
  }
  .cmn_contents2_txt{
    font-size: 18px;
  }
  .cmn_contents2_title + .cmn_contents2_txt{
    margin-top: 58px;
  }
  .cmn_contents2_txt + .read_more{
    margin-top: 62px;
  }

  .cmn_contents2_row:nth-child(odd) .cmn_contents2_box1{
    order: 1;
  }
  .cmn_contents2_row:nth-child(odd) .cmn_contents2_box2{
    order: 2;
  }
  .cmn_contents2_row:nth-child(even) .cmn_contents2_box1{
    order: 2;
  }
  .cmn_contents2_row:nth-child(even) .cmn_contents2_box2{
    order: 1;
  }

  .cmn_contents2_row:nth-child(odd) .cmn_contents2_img{
    margin-left: var(--margin-for-device-side);
  }
  .cmn_contents2_row:nth-child(even) .cmn_contents2_img{
    margin-right: var(--margin-for-device-side);
  }
  .cmn_contents2_row:nth-child(odd) .cmn_contents2_box2:after{
    left: 43.85%;
    right: var(--margin-for-device-side);
  }
  .cmn_contents2_row:nth-child(even) .cmn_contents2_box2:after{
    left: var(--margin-for-device-side);
    right: 43.85%;
  }

  /* コンテンツ3 */
  .cmn_contents3{

  }
  * + .cmn_contents3{
    margin-top: 50px;
  }
  .cmn_contents3_row{
  }
  .cmn_contents3_row + .cmn_contents3_row{
    margin-top: 80px;
  }
  .cmn_contents3_box1{
  }
  .cmn_contents3_box2{
    width: 85%;  
    /*margin-top: 0;*/
    padding: 25px 15px;
  }
  .cmn_contents3_box2_l{

  }
  .cmn_contents3_box2_r{

  }
  .cmn_contents3_title{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .cmn_contents3_txt{
    font-size: 18px;
  }

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

  /* 背景色用 */
  .section.beige2:before{
    height:210px;
    height:155px;
  }
  .section.blue2:before{
    /*height:565px;*/
    height:375px;
  }

  .tt2_ja{
    font-size: 36px;
  }

  .read_more a.mini{
    min-width: 200px;
  }
  .read_more a.large{
    min-width: 622px;
  }


  /**/
  * + .cmn_contents1{
    margin-top: 80px;
  }
  .cmn_contents1_row + .cmn_contents1_row{
    margin-top: 80px;
  }
  .cmn_contents1_box1{
    width: 50.9868%;
  }
  .cmn_contents1_box2{
    /*width: 42.7631%;*/
    width: 45%;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .cmn_contents1.reform .cmn_contents1_box1{

  }
  .cmn_contents1.reform .cmn_contents1_box2{
    width: 44.7631%;
    min-height: 725px;
    padding-bottom: 85px;
  }
  .cmn_contents1.reform .cmn_contents1_row:nth-child(odd) .cmn_contents1_box2{
    width: 42.5%;
  }
  .cmn_contents1.reform .cmn_contents1_row:nth-child(odd) .cmn_contents1_box2:after{
    left: 45.85%;
  }
  .cmn_contents1.reform .cmn_contents1_row:nth-child(even) .cmn_contents1_box2:after{
    right: 46.85%;
  }

  .cmn_contents1_title{
    font-size: 30px;
  }
  .cmn_contents1_title + .cmn_contents1_txt{
    margin-top: 58px;
  }
  .cmn_contents1_title + .cmn_contents1_txt.mt_s{
    margin-top: 25px;
  }

  /**/
  .cmn_contents2_title1{
    font-size: 32px;
    margin-bottom: 30px;
  }

  /**/
  .cmn_contents3_box2{
    width: 67.76%;  
    padding: 38px 0 40px;
    margin-top: -80px;
  }
  .cmn_contents3_box2_l{
    width: calc(100% - 220px);
  }
  .cmn_contents3_box2_r{
    width: 220px;
  }
  .cmn_contents3_title{
    font-size: 30px;
    margin-bottom: 10px;
  }
  .cmn_contents3_row:nth-child(odd) .cmn_contents3_box2{
    padding-right: 65px;
  }
  .cmn_contents3_row:nth-child(even) .cmn_contents3_box2{
    padding-left: 65px;
  }


  * + .cmn_banner{
    margin-top: 75px;
  }

}

@media (min-width:1536px){

  /* 背景色用 */
  .section.beige2:before{
    height:180px;
  }

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

  .tt2_ja{
    font-size: 42px;
  }

  /**/
  .cmn_contents1_box1{
    width: 50.9868%;
  }
  .cmn_contents1_box2{
    width: 42.7631%;
    padding-top: 40px;
    padding-bottom: 30px;
  }

  /**/
  .cmn_contents2_title1{
    font-size: 40px;
    margin-bottom: 30px;
  }

  /**/
  .cmn_contents3_box2{
    width: 67.76%;  
    margin-top: -115px;
    /*padding: 25px 15px;*/
  }
  .cmn_contents3_title{
    font-size: 35px;
    margin-bottom: 10px;
  }

  * + .cmn_contents3{
    margin-top: 80px;
  }

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


  .tt2_ja{
    font-size: 50px;
  }
  .tt2_sub{
    font-size: 30px;
    /*text-align: justify;*/
    /*margin-top: 10px;*/
  }

  /* 背景色用 */
  .section.beige2:before{
    height:210px;
  }

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

  /* コンテンツ2 */
  .cmn_contents2{

  }
  .cmn_contents2_row{
  }
  .cmn_contents2_row + .cmn_contents2_row{
    margin-top: 80px;
  }
  .cmn_contents2_box1{
    /*width: 50.9868%;*/
  }
  .cmn_contents2_box2{
    /*width: 49.01%;*/
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .cmn_contents2_num{
    font-size: 60px;
  }

  .cmn_contents2_row:nth-child(odd) .cmn_contents2_box2{
    padding-left: 95px;
    padding-right: 80px;
  }
  .cmn_contents2_row:nth-child(even) .cmn_contents2_box2{
    padding-left: 80px;
    padding-right: 95px;
  }

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

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

}


/*******************************
*　HOME
********************************/
.pg_home{
  overflow: hidden;
}
.pg_home .section.sec1{
  padding-top: 30px;
}
.pg_home .section.sec2{

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

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}
.pg_home .section.sec9{

}
.pg_home .section.sec10{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec11{

}

/* コンセプト */
.home_concept{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_concept_box1{
  width: 49%;
  position: relative;
  z-index: 1;
  order: 1;
  padding-top: 30px;
}
.home_concept_box2{
  width: 100%;
  order: 3;
  padding-top: 30px;
}
.home_concept_box3{
  width: 49%;
  position: relative;
  z-index: 1;
  order: 2;
}
.home_concept_img{

}
.home_concept_img.img_fit:before{
  padding-top: 134.45%;
}
.home_concept_title{
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.666;
  text-align: center;
}
.home_concept_txt{
  font-size: 16px;
  line-height: 2.222;
  line-height: 1.875;
  text-align: justify;
  margin-top: 20px;
}
.tt2_sub + .home_concept_txt{
  margin-top: 30px !important;
}

/* 動画 */
.home_videos{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
  position: relative;
  z-index: 1;
}
.home_videos_item{
  width: 100%;
  padding: 0 5px;
}
.home_videos_item:nth-child(n+2){
  margin-top: 20px;
}
.home_videos_item_video{

}
.home_videos_item_video iframe{
  border: 0;
}
.home_videos_item_title{
  font-size: 16px;
  line-height: 1.5;
  margin-top: 5px;
}

.home_videos{

}



/* リンク */
.home_links1{
  display: flex;
  flex-wrap: wrap;
}
.home_links1_item{
  width: 100%;
  position: relative;
  z-index: 1;
}
.home_links1_item:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  transition: 0.2s all;
  pointer-events: none;
}
.home_links1_item_img{
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.home_links1_item_img img{
  transition: 0.2s all;
}
.home_links1_item_img.img_fit:before{
  /*padding-top: 134.44%;*/
  padding-top: 104.16%;
}
.home_links1_item_meta{
  color: #FFF;
  padding: 20px 15px 40px;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
}
.home_links1_item_meta:after{
  content: "→";
  width: 30px;
  aspect-ratio: 1 / 1;
  background: #FFF;
  border-radius: 50%;
  padding-top: 2px;

  font-size: 16px;
  font-weight: 900;
  font-family: "Zen Old Mincho", san-serif;
  letter-spacing: 0;
  text-align: center;
  color: #636363;

  position: absolute;
  z-index: 1;
  bottom: 10px;
  right: 10px;
  transition: 0.2s all;
}
.home_links1_item_title{
  font-size: 24px;
  font-weight: 600;
  line-height: 1.19;
  text-align: center;
}
.home_links1_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
  margin-top: 10px;
}

.home_links1_item:hover:before{
  opacity: 0;
}
.home_links1_item:hover .home_links1_item_meta:after{
  margin-right: -5px;
}
.home_links1_item:hover .home_links1_item_img img{
  transform: scale(1.05);
}

.home_links1_item.color1:before{
  background: rgba(9,125,158,0.3);
}
.home_links1_item.color1 .home_links1_item_meta{
  background: rgba(9,125,158,0.6);
}
.home_links1_item.color2:before{
  background: rgba(30,41,66,0.3);
}
.home_links1_item.color2 .home_links1_item_meta{
  background: rgba(30,41,66,0.6);
}

/* リンク2 */
.home_links2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_links2_box1{
  width: 100%;
}
.home_links2_box2{
  width: 100%;
  margin-top: 20px;
}
.home_links2_banner{
  display: block;
}
.home_links2_banner img{
  width: 100%;
}
.home_links2_title{
  font-size: 16px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;

  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 10px;
  margin-bottom: 10px;
}


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

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

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

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

  }
  .pg_home .section.sec4{
    padding-top: 0;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{
    padding-top: 0;
  }
  .pg_home .section.sec9{
    padding-top: 0;
  }
  .pg_home .section.sec10{
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec11{

  }

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

  .pg_home .section.sec1{
    padding-top: 50px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-bottom: 70px;
  }
  .pg_home .section.sec4{
    padding-bottom: 45px;
  }
  .pg_home .section.sec5{
    padding-top: 60px;
    padding-bottom: 90px;
  }
  .pg_home .section.sec6{
    padding-bottom: 60px;
  }
  .pg_home .section.sec7{
    padding-top: 50px;
  }
  .pg_home .section.sec8{
    padding-top: 70px;
  }
  .pg_home .section.sec9{
    padding-top: 40px;
  }
  .pg_home .section.sec10{

  }
  .pg_home .section.sec11{
    padding-top: 60px;
  }

  /* コンセプト(pc) */
  .home_concept{
  }
  .home_concept_box1{
    padding-top: 50px;
  }
  .home_concept_box2{
    padding-top: 30px;
  }
  .home_concept_box3{

  }

  .home_concept_title{
    font-size: 25px;
    text-align: center;
  }
  .home_concept_txt{
    line-height: 2.222;
    margin-top: 30px;
  }
  .tt2_sub + .home_concept_txt{
    margin-top: 30px !important;
  }
  .home_concept .tt2_sub{
    text-align: center;
  }

  /* 動画 */
  .home_videos{
    margin: 0 -10px;
  }
  .home_videos_item{
    width: 50%;
    padding: 0 10px;
  }
  .home_videos_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_videos_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_videos_item_video{

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

  /* リンク */
  .home_links1{
  }
  .home_links1_item{
    width: 50%;
  }
  .home_links1_item_meta{
    padding: 28px 15px 40px;
  }
  .home_links1_item_meta:after{
    width: 30px;
    bottom: 15px;
    right: 15px;
  }
  .home_links1_item_title{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;

  }
  .home_links1_item_txt{
    font-size: 16px;
    line-height: 2.5;
    /*text-align: center;*/
    margin-top: 15px;
  }

  /* リンク2 */
  .home_links2{
  }
  .home_links2_box1{
    width: 100%;
  }
  .home_links2_box2{
    width: 100%;
    margin-top: 20px;;
  }
  .home_links2_banner{
    display: block;
  }
  .home_links2_title{
    font-size: 25px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .home_links2 .read_more{
    margin-top: 20px;
  }

}
@media (min-width:992px){
  /* 930 */

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



  /* コンセプト(pc) */
  .home_concept{
  }
  .home_concept_box1{
    padding-top: 50px;
  }
  .home_concept_box2{
    padding-top: 30px;
  }
  .home_concept_box3{

  }

  .home_concept_title{
    /*font-size: 30px;*/
  }
  .home_concept_txt{
    margin-top: 30px;
  }

  /* 動画 */
  .home_videos{
    margin: 0 -15px;
  }
  .home_videos_item{
    width: 50%;
    padding: 0 15px;
  }
  .home_videos_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_videos_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_videos_item_video{

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



  /* リンク1 */
  .home_links1_item_txt{
    margin-top: 25px;
    text-align: center;
  }


  /* リンク2 */
  .home_links2{
  }
  .home_links2_box1{
    width: 42.76%;
  }
  .home_links2_box2{
    width: 55.26%;
    margin-top: 0;
  }
  .home_links2_banner{
  }
  .home_links2_title{
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

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



  /* コンセプト(pc) */
  .home_concept{
  }
  .home_concept_box1{
    width: 25.98%;
    width: 25%;
    padding-top: 85px;
    order: 1;
  }
  .home_concept_box2{
    width: 45%;
    padding-top: 60px;
    order: 2;
  }
  .home_concept_box3{
    width: 25.98%;
    width: 25%;
    order: 3;
  }
  .home_concept_box1 .home_concept_img{
    /*margin-left: var(--margin-for-device-side);*/
  }
  .home_concept_box3 .home_concept_img{
    /*margin-right: var(--margin-for-device-side);*/
  }
  .home_concept_box1 .concept_slider{
    margin-left: var(--margin-for-device-side);
  }
  .home_concept_box3 .concept_slider{
    margin-right: var(--margin-for-device-side);
  }


  .home_concept_title{
    /*font-size: 30px;*/
  }
  .home_concept_txt{
    text-align: center;
    margin-top: 55px;
  }
  .tt2_sub + .home_concept_txt{
    margin-top: 55px !important;
  }

  /* リンク2 */
  .home_links2{
  }
  .home_links2_box1{
    width: 42.76%;
  }
  .home_links2_box2{
    width: 55.26%;
  }
  .home_links2_banner{
  }
  .home_links2_title{
    font-size: 25px;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }
  .home_links2 .read_more{
    margin-top: 25px;
  }


}
@media (min-width:1536px){
  /* 1336 */

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{

  }
  .pg_home .section.sec3{
    padding-bottom: 135px;
  }
  .pg_home .section.sec4{
    padding-bottom: 90px;
  }
  .pg_home .section.sec5{
    padding-top: 125px;
    padding-bottom: 185px;
  }
  .pg_home .section.sec6{
    padding-bottom: 125px;
  }
  .pg_home .section.sec7{
    padding-top: 100px;
  }
  .pg_home .section.sec8{
    padding-top: 145px;
  }
  .pg_home .section.sec9{
    padding-top: 80px;
  }
  .pg_home .section.sec10{

  }
  .pg_home .section.sec11{
    padding-top: 130px;
  }


  .home_concept_title{
    font-size: 30px;
  }
  .home_concept_txt{
    font-size: 18px;
    margin-top: 55px;
  }

  /* リンク */
  .home_links1{
  }
  .home_links1_item_meta{
    padding: 28px 15px 50px;
  }
  .home_links1_item_meta:after{
    bottom: 10px;
    right: 20px;
  }
  .home_links1_item_title{
    font-size: 42px;
  }
}
@media (min-width:1720px){
  /* 1520 */
  /* コンセプト(pc) */
  .home_concept{
  }
  .home_concept_box1{
    width: 25.98%;
  }
  .home_concept_box2{
    width: 39.47%;
  }
  .home_concept_box3{
    width: 25.98%;
  }


  /* リンク */
  .home_links1{
  }
  .home_links1_item_meta{
    padding: 28px 15px 40px;
  }
  .home_links1_item_meta:after{
    bottom: 50px;
    right: 50px;
  }
  .home_links1_item_title{
    font-size: 42px;
  }

  .home_links2 .read_more{

  }
  .home_links2 .read_more a{
    width: calc(50% - 10px);
  }
}






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

.news_slider_wrap{

  position: relative;
  z-index: 1;
}
* + .news_slider_wrap{
  margin-top: 20px;
}
.halfUp + .news_slider_wrap{
  margin-top: 0px;
}
.news_slider_wrap + .read_more{
  margin-top: 20px;
}
.news_slider{

}
.news_slider .webgene-blog{
  display: flex;
  margin: 0 -10px;
}
.news_slider .webgene-item{
  width: 25%;
  padding: 0 10px;
}
.slider_post{
  display: flex;
}
.slider_post .inner{

}
.slider_post .box1{

}
.slider_post .box2{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}
.slider_post .img{
  overflow: hidden;
}
.slider_post .img.img_fit:before{
  padding-top: 77.777%;
}
.slider_post .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--main-color);
}
.slider_post .date{
  font-size: 14px;
  letter-spacing: 0.075em;
  line-height: 1.1;
  margin-left: 6px;
  padding-left: 6px;
  border-left: 1px solid;
}
.slider_post .title{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.75;
  margin-top: 10px;
}


.slider_post .category,
.slider_post .date{
  width: 100%;
}
.slider_post .category{
  /*order: 2;*/
}
.slider_post .date{
  /*order: 1;*/
  border: 0;
  margin: 0;
  margin-top: 3px;
  padding: 0;
}

.swiper-button-next, 
.swiper-button-prev{
  width: auto;
  height: auto;
  top: 43%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.swiper-button-next{
  right: -38px;
}
.swiper-button-prev{
  left: -38px;
}
.swiper-button-next:after,
.swiper-button-prev:after{
  display: block;
  background: var(--main-color);
  color: #FFF;
  width: 30px;
  aspect-ratio: 1 / 1;
  font-size: 16px;
  font-family: "Zen Old Mincho", san-serif;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  border-radius: 50%;
  margin: 0;
  padding: 0;
  padding-top: 6px;
} 
.swiper-button-next:after{
  content: "→";
} 
.swiper-button-prev:after{
  content: "←";
}

@media (max-width:374px){

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

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

  .news_slider_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .news_slider{
    width: 100%;
  }
  .news_slider_wrap .swiper-button-next,
  .news_slider_wrap .swiper-button-prev{
    position: static;
    transform: none;
    margin: 10px 5px 0;
  }
  .news_slider_wrap .swiper-button-next{

  }
  .news_slider_wrap .swiper-button-prev{

  }

  .slider_post .category,
  .slider_post .date{
    width: 100%;
  }
  .slider_post .category{
    /*order: 2;*/
  }
  .slider_post .date{
    /*order: 1;*/
    border: 0;
    margin: 0;
    margin-top: 3px;
    padding: 0;
  }
  .slider_post .title{
    /*order: 3;*/
  }

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

  * + .news_slider_wrap{
    margin-top: 32px;
  }
  .halfUp + .news_slider_wrap{
    margin-top: 0;
  }
  .news_slider_wrap + .read_more{
    margin-top: 32px;
  }
  .swiper-button-next{
    right: -35px;
  }
  .swiper-button-prev{
    left: -35px;
  }


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

  * + .news_slider_wrap{
    margin-top: 68px;
  }
  .halfUp + .news_slider_wrap{
    margin-top: 32px;
  }
  .news_slider_wrap + .read_more{
    margin-top: 68px;
  }

  .swiper-button-next{
    right: -38px;
  }
  .swiper-button-prev{
    left: -38px;
  }

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

  .news_slider_wrap{
    margin-left: 0;
    margin-right: 0;
  }

  .slider_post .category{
    width: calc(100% - 130px);
    font-size: 14px;
  }
  .slider_post .date{
    width: 102px;
    font-size: 14px;
    border-left: 1px solid;
    margin-left: 6px;
    padding-left: 6px;
  }

  .swiper-button-next{
    right: -40px;
  }
  .swiper-button-prev{
    left: -40px;
  }

  .news_list .webgene-item .box2{
    /*justify-content: flex-start !important;*/
  }

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

  .slider_post .date{
    margin-left: 22px;
    padding-left: 22px;
  }

  .swiper-button-next{
    right: -60px;
  }
  .swiper-button-prev{
    left: -60px;
  }

}



/*******************************
*　初めてのお客様
********************************/
.pg_first{

}
.pg_first .section.sec1{
}
.pg_first .section.sec2{
}
.pg_first .section.sec3{
}

.first_kodawari_msg{
  font-size: 16px;
  font-weight: 600;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.652;
  text-align: justify;
  color: var(--main-color);
  border: 1px solid;
  padding: 15px 15px;
}
* + .first_kodawari_msg{
  margin-top: 30px;
}

@media (max-width:374px){

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

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

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

  }
  .pg_first .section.sec1{
    padding-bottom: 65px;
  }
  .pg_first .section.sec2{
    padding-top: 50px;
    padding-bottom: 75px;
  }
  .pg_first .section.sec3{
    padding-top: 70px;
  }

  .first_kodawari_msg{
    font-size: 18px;
    text-align: center;
    padding: 20px 20px;
  }
  * + .first_kodawari_msg{
    margin-top: 50px;
  }

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

  .pg_first{

  }
  .pg_first .section.sec1{
    padding-bottom: 95px;
  }
  .pg_first .section.sec2{
    padding-top: 100px;
    padding-bottom: 150px;
  }
  .pg_first .section.sec3{
    padding-top: 135px;
  }

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

  .first_kodawari_msg{
    font-size: 25px;
    padding: 25px 20px;
  }
  * + .first_kodawari_msg{
    margin-top: 125px;
  }

}


/*******************************
*　新築
********************************/
.pg_new{

}
.pg_new .section.sec1{
}
.pg_new .section.sec2{
}
.pg_new .section.sec3{

}
.pg_new .section.sec4{
  padding-top: 0;
}
.pg_new .section.sec5{
  padding-top: 0;
}


/* ステップ */
.new_step{

}
* + .new_step{
  margin-top: 30px;
}
.new_step_row{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.new_step_row + .new_step_row{
  margin-top: 100px;
}
.new_step_box1{
  width: 100%;
  position: relative;
  z-index: 1;
}
.new_step_box2{
  width: 100%;
  margin-top: 20px;
}
.new_step_num{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  aspect-ratio: 1 / 1;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 50%;
  font-size: 16px;
  text-align: center;
  width: 8.2em;
  margin: 0 auto;
}
.new_step_num_p1{
  width: 100%;
  font-size: 1em;
  line-height: 1;
}
.new_step_num_p2{
  width: 100%;
  font-size: 3em;
  font-family: "Zen Old Mincho", san-serif;
  font-weight: 600;
  line-height: 1;
}
.new_step_title{
  font-size: 22px;
  font-weight: 700;
  font-family: "Zen Old Mincho", san-serif;
  line-height: 1.5;
  color: var(--main-color);
  border-bottom: 1px solid;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.new_step_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

.new_step_box1:after{
  content: "";
  width: 22px;
  height: 16px;
  background: var(--main-color);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  z-index: 1;
  top: -50px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

/* お問い合わせ */
.new_step_contact{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: #FFF;
  padding: 20px 10px;
}
* + .new_step_contact{
  margin-top: 20px;
}
.new_step_contact_box1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  color: var(--main-color);
}
.new_step_contact_box2{
  width: 100%;
  margin-top: 10px;
}
.new_step_contact_tel1{
  font-size: 16px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  border: 1px solid;
  padding: 5px 10px;
}
.new_step_contact_tel2{
  width: 100%;
  font-size: 38px;
  font-size: 28px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  text-align: center;
}
.new_step_contact .read_more{
  margin-top: 0;
}

/**/
.news_step_msg{
  border: 1px solid var(--main-color);
  padding: 20px 15px;
}
* + .news_step_msg{
  margin-top: 30px;
}
.news_step_msg_title{
  font-size: 30px;
  font-size: 22px;
  font-weight: 700;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 10px;
}
.news_step_msg_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}


/* ツーバイフォー */
.new_2x4{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
* + .new_2x4{
  margin-top: 50px;
}
.new_2x4_item{
  width: 100%;
  padding: 0 5px;
}
.new_2x4_item:nth-child(n+2){
  margin-top: 20px;
}
.new_2x4_item_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  align-content: flex-start;
  justify-content: space-between;
  background: #FFF;
  height: 100%;
}
.new_2x4_item_box1{
  width: 100%;
}
.new_2x4_item_box2{
  width: 100%;
  padding: 20px 15px;
}
.new_2x4_item_img{

}
.new_2x4_item_img.img_fit:before{
  padding-top: 120%;
}
.new_2x4_item_title{
  font-size: 20px;
  font-weight: 600;
  color: var(--main-color);
  line-height: 1.6;
}
.new_2x4_item_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
  margin-top: 20px;
}

.new_2x4_msg{
  color: var(--main-color);
  border: 1px solid;
  padding: 15px 15px;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.75;
  text-align: justify;
}

@media (max-width:374px){

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

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

  .new_step_row:first-child .new_step_box1:after{
    display: none;
  }

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

  }
  .pg_new .section.sec1{
    padding-bottom: 100px;
  }
  .pg_new .section.sec2{
    padding-top: 65px;
    padding-bottom: 75px;
  }
  .pg_new .section.sec3{
    padding-top: 78px;

  }
  .pg_new .section.sec4{
    padding-top: 20px;
  }
  .pg_new .section.sec5{
    padding-top: 40px;
  }


  /* ステップ */
  .new_step{

  }
  * + .new_step{
    margin-top: 80px;
  }
  .new_step_row{
  }
  .new_step_row + .new_step_row{
    margin-top: 80px;
  }
  .new_step_box1{
    width: 150px;
    position: relative;
    z-index: 1;
    padding-top: 10px;
  }
  .new_step_box2{
    font-size: 18px;
    width: calc(100% - 150px - 30px);
    margin-top: 0;
  }
  .new_step_num{
    font-size: 1em;
    /*width: 8.2em;*/
  }
  .new_step_num_p1{
    font-size: 1em;
  }
  .new_step_num_p2{
    font-size: 3em;
  }
  .new_step_title{
    font-size: 25px;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .new_step_txt{
    font-size: 18px;
  }

  .new_step_box1:after{
    width: 22px;
    height: 16px;
    top: calc(50% + 4.2em + 40px);
  }
  .new_step_row:last-child .new_step_box1:after{
    display: none;
  }

  /* お問い合わせ */
  .new_step_contact{
    padding: 20px 10px;
  }
  * + .new_step_contact{
    margin-top: 20px;
  }
  .new_step_contact_box1{
    width: 50%;
    align-items: center;
  }
  .new_step_contact_box2{
    width: 49%;
    margin-top: 0;
  }
  .new_step_contact_tel1{
    font-size: 16px;
    padding: 5px 10px;
  }
  .new_step_contact_tel2{
    width: auto;
    font-size: 38px;
    font-size: 28px;
    text-align: left;
    margin-left: 10px;
  }
  .new_step_contact .read_more{
    margin-top: 0;
  }
  .new_step_contact .read_more a{
    width: 100%;
    min-width: 0;
  }

  /**/
  .news_step_msg{
    padding: 30px 20px;
  }
  * + .news_step_msg{
    margin-top: 50px;
  }
  .news_step_msg_title{
    font-size: 25px;
    margin-bottom: 10px;
  }
  .news_step_msg_txt{
    font-size: 16px;
  }


  /* ツーバイフォー */
  .new_2x4{
    margin: 0 -10px;
  }
  * + .new_2x4{
    margin-top: 50px;
  }
  .new_2x4_item{
    width: 100%;
    padding: 0 10px;
  }
  .new_2x4_item:nth-child(n+2){
    margin-top: 20px;
  }
  .new_2x4_item_box1{
    width: 49%;
  }
  .new_2x4_item_box2{
    width: 51%;
    padding: 20px 15px;
  }
  .new_2x4_item_title{
    font-size: 22px;
  }
  .new_2x4_item_txt{
    font-size: 18px;
    /*line-height: 1.9444;*/
    margin-top: 18px;
  }

  .new_2x4_msg{
    padding: 15px 15px;
    margin-top: 50px;
    font-size: 16px;
    text-align: center;
  }

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





  /* ステップ */
  .new_step{

  }
  .new_step_row{
  }
  .new_step_row + .new_step_row{
    margin-top: 85px;
  }
  .new_step_box1{
    width: 205px;
    font-size: 25px;
  }
  .new_step_box2{
    width: calc(100% - 205px - 65px);
  }
  .new_step_num{

    /*width: 8.2em;*/
  }
  .new_step_title{
    font-size: 30px;
    padding-bottom: 22px;
    margin-bottom: 22px;
  }
  .new_step_txt{
    font-size: 18px;
    line-height: 2.222;
  }

  /*お問い合わせ*/
  .new_step_contact{
    padding: 10px 50px 10px 30px;
  }

  /*  */
  .news_step_msg{
    padding: 30px 55px 50px;
  }
  * + .news_step_msg{
    margin-top: 85px;
  }
  .news_step_msg_title{
    font-size: 30px;
    margin-bottom: 15px;
  }
  .news_step_msg_txt{
    line-height: 2.5;
  }



  /* ツーバイフォー */
  .new_2x4{
    margin: 0 -15px;
  }
  * + .new_2x4{
    margin-top: 50px;
  }
  .new_2x4_item{
    width: 50%;
    padding: 0 15px;
  }
  .new_2x4_item:nth-child(n+2){
    margin-top: 0;
  }
  .new_2x4_item:nth-child(n+3){
    margin-top: 35px;
  }
  .new_2x4_item_box1{
    /*width: 49%;*/
    width: 100%;
  }
  .new_2x4_item_box2{
    /*width: 51%;*/
    width: 100%;
    padding: 30px 30px;
  }
  .new_2x4_item_title{
    font-size: 22px;
  }
  .new_2x4_item_txt{
    font-size: 18px;
    line-height: 1.9444;
    margin-top: 18px;
  }

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



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

  .pg_new{

  }
  .pg_new .section.sec1{
    padding-bottom: 200px;
  }
  .pg_new .section.sec2{
    padding-top: 130px;
    padding-bottom: 150px;
  }
  .pg_new .section.sec3{
    padding-top: 135px;

  }
  .pg_new .section.sec4{
    padding-top: 135px;
  }
  .pg_new .section.sec5{
    padding-top: 80px;
  }

  /* ツーバイフォー */
  .new_2x4{
    margin: 0 -15px;
  }
  * + .new_2x4{
    margin-top: 90px;
  }
  .new_2x4_item{
    width: 50%;
    padding: 0 15px;
  }
  .new_2x4_item:nth-child(n+2){
    margin-top: 0;
  }
  .new_2x4_item:nth-child(n+3){
    margin-top: 35px;
  }
  .new_2x4_item_inner{
    align-items: stretch;
  }
  .new_2x4_item_box1{
    width: 49%;
    height: 100%;
  }
  .new_2x4_item_box2{
    width: 51%;
    padding: 30px 30px;
  }
  .new_2x4_item_img{
    height: 100%;
  }
  .new_2x4_item_title{
  }
  .new_2x4_item_txt{
  }

  /* お問い合わせ */
  .new_step_contact{
    justify-content: space-between;
    padding: 10px 20px ;
  }
  * + .new_step_contact{
    margin-top: 20px;
  }
  .new_step_contact_box1{
    width: 50%;
    justify-content: flex-start;
  }
  .new_step_contact_box2{
    width: 46%;
    margin-top: 0;
  }
  .new_step_contact_tel1{
    font-size: 16px;
    padding: 7px 8px;
    margin-top: 2px;
  }
  .new_step_contact_tel2{
    width: auto;
    font-size: 38px;
    text-align: left;
    margin-left: 20px;
  }
  .new_step_contact .read_more{
  }
  .new_step_contact .read_more a{
  }


  /**/
  .new_2x4_msg{
    padding: 15px 15px;
    margin-top: 75px;
    font-size: 18px;
  }


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

  /* お問い合わせ */
  .new_step_contact{
    padding: 10px 80px;
  }

  /* ツーバイフォー */
  .new_2x4_item_title{
    font-size: 25px;
  }
}

/*******************************
*　リノベーション・リフォーム
********************************/
.pg_reform{

}
.pg_reform .section.sec1{
}
.pg_reform .section.sec2{
}
.pg_reform .section.sec3{
}

@media (max-width:374px){

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

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

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

  }
  .pg_reform .section.sec1{
    padding-bottom: 100px;
  }
  .pg_reform .section.sec2{
    padding-top: 70px;
    padding-bottom: 75px;
  }
  .pg_reform .section.sec3{
    padding-top: 70px;
  }


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

  .pg_reform{

  }
  .pg_reform .section.sec1{
    padding-bottom: 100px;
  }
  .pg_reform .section.sec2{
    padding-top: 135px;
    padding-bottom: 150px;
  }
  .pg_reform .section.sec3{
    padding-top: 135px;
  }

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

  .pg_reform{

  }
  .pg_reform .section.sec1{
    padding-bottom: 215px;
  }
  .pg_reform .section.sec2{
    padding-top: 135px;
    padding-bottom: 150px;
  }
  .pg_reform .section.sec3{
    padding-top: 135px;
  }
}


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

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

@media (max-width:374px){

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

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

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

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


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


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


}



/*******************************
*　施工実績
********************************/
.pg_xxx{

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

/* カテゴリ */
.tt2 + .category_list{
  margin-top: 30px;
}
.category_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.category_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.category_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.category_list .webgene-item a{
  display: block;
  background: var(--sub-color);
  border: 1px solid var(--sub-color);
  color: #FFF;
  padding: 9px 5px;
  padding: 9px 18px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
  position: relative;
  z-index: 1;
}
.category_list .webgene-item a:before{
  content: "→";
  font-size: 12px;
  font-family: "Zen Old Mincho", san-serif;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 7px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.category_list .webgene-item a:hover:before{
  margin-right: -2px;
}
.category_list.blue .webgene-item a{
  background: var(--main-color);

}
.category_list .webgene-item a{

}
.category_list .webgene-item a.on{
  background: #FFF;
  color: var(--sub-color);
}
.category_list.blue .webgene-item a{
  border-color: var(--main-color);
}
.category_list.blue .webgene-item a.on{
  color: var(--main-color);
}
.category_list.blue .webgene-item a:hover{
  background: var(--sub-color);
}



/* 一覧 */
.data_list {
  display: none;
}
.works_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.tt2 + .works_list{
  margin-top: 30px;
}
.works_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.works_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.works_list .webgene-item .inner{
  height: 100%;
}
.works_list .webgene-item .inner:hover{
  color: var(--sub-color);
}
.works_list .webgene-item .img{
  background: #CCC;
  overflow: hidden;
}
.works_list .webgene-item .img.img_fit:before{
  padding-top: 66.46%;
}
.works_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.555;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.works_list .webgene-item .area{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.555;
  letter-spacing: 0.075em;
  margin-top: 3px;
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.works_list .webgene-item .area:before{
  content: "";
  width: 14px;
  height: 18px;
  background-image: url('/system_panel/uploads/images/map-marker-alt-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 5px;
  left: 0;
}

/**/
.works_deital_box{
  border: 1px solid var(--main-color);
  padding: 15px 15px;
}
.gallery_wrap + .works_deital_box{
  margin-top: 50px;
}

#wgc-works .gallery_thumb .img.img_fit:before{
  padding-top: 67.85%;
}
.gallery_thumb .img{
  cursor: pointer;
}


@media (max-width:374px){

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

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

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

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

  /* カテゴリ */
  .tt2 + .category_list{
    margin-top: 45px;
  }
  .category_list .webgene-blog{
    margin: 0 -5px;
  }
  .category_list .webgene-item{
    width: 33.333%;
    padding: 0 5px;
  }
  .category_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .category_list .webgene-item:nth-child(n+4){
    margin-top: 10px;
  }
  .category_list .webgene-item a{
    padding: 9px 5px;
    font-size: 12px;
  }
  .category_list .webgene-item a:before{
    font-size: 16px;
    right: 6px;
  }
  .category_list .webgene-item a:hover:before{
    margin-right: -5px;
  }

  /* tab */
  .works_list{
    margin: 0 -10px;
  }
  .tt2 + .works_list{
    margin-top: 40px;
  }
  .works_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .works_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .works_list .webgene-item .title{
    font-size: 16px;
    margin-top: 10px;
  }
  .works_list .webgene-item .area{
    font-size: 16px;
  }




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

  .category_list .webgene-item a{
    font-size: 14px;
  }
  

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

  /* カテゴリ */
  .tt2 + .category_list{
    margin-top: 58px;
  }

  .category_list .webgene-blog{
    margin: 0 -13px;
  }
  .category_list .webgene-item{
    width: 25%;
    padding: 0 13px;
  }
  .category_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .category_list .webgene-item:nth-child(n+5){
    margin-top: 12px;
  }
  .category_list .webgene-item a{
    font-size: 15px;
    letter-spacing: 0.075em;
  }

  /* pc */
  .works_list{
    margin: 0 -15px;
  }
  .tt2 + .works_list{
    margin-top: 60px;
  }
  .works_list .webgene-item{
    width: 33.333%;
    padding: 0 15px;
  }
  .works_list .webgene-item:nth-child(n+4){
    margin-top: 42px;
  }
  .works_list .webgene-item .title{
    font-size: 18px;
    margin-top: 10px;
  }
  .works_list .webgene-item .area{
    font-size: 18px;
  }

  .works_list + .read_more{
    margin-top: 75px;
  }


  .gallery_wrap + .works_deital_box{
    margin-top: 100px;
  }
  .works_deital_box{
    padding: 40px 50px;
  }

}

@media (min-width:1536px){
  .category_list .webgene-item a{
    font-size: 16px;
  }
}

/*******************************
*　こだわりの家づくり
********************************/
.pg_xxx{

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

.kodawari_title{
  font-size: 20px;
  color: var(--main-color);
  text-align: center;
  margin-bottom: 20px;
}
* + .kodawari_title{
  margin-top: 30px;
}

/* メッセージ */
.kodawari_msg{
  font-size: 16px;
  line-height: 2.222;
  line-height: 1.875;
  text-align: justify;
}
.kodawari_msg + .kodawari_list{
  margin-top: 30px;
}

/* 画像 */
.kodawari_imgs{
  display: flex;
  flex-wrap: wrap;
}
* + .kodawari_imgs{
  margin-top: 30px;
}
.kodawari_imgs_img{
  width: 100%;
}
.kodawari_imgs_img.img_fit:before{
  padding-top: 52.63%;
}

/* 一覧 */
.kodawari_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.kodawari_list .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.kodawari_list .webgene-item:nth-child(n+3){
  margin-top: 30px;
}
.kodawari_list .webgene-item .inner{
  height: 100%;
}
.kodawari_list .webgene-item .inner:hover{
  color: var(--sub-color);
}
.kodawari_list .webgene-item .img{
  background: #CCC;
  overflow: hidden;
}
.kodawari_list .webgene-item .img.img_fit:before{
  padding-top: 77.777%;
}
.kodawari_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  line-height: 1.555;
  letter-spacing: 0.01em;
  min-height: 25px;
  margin-top: 10px;
  padding-right: 20px;
  position: relative;
  z-index: 1;
}
.kodawari_list .webgene-item .title:after{
  content: "→";
  width: 22px;
  aspect-ratio: 1 / 1;
  background: var(--main-color);
  border-radius: 50%;
  padding-top: 3px;

  font-size: 14px;
  font-weight: 900;
  font-family: "Zen Old Mincho", san-serif;
  letter-spacing: 0;
  line-height: 1;
  text-align: center;
  color: #FFF;


  position: absolute;
  z-index: 1;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.kodawari_list .webgene-item .inner:hover .title:after{
  /*margin-right: -5px;*/
  background: var(--sub-color);

}

.kodawari_list .webgene-item .txt{
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.075em;
  margin-top: 10px;
  padding-top: 5px;
  border-top: 1px solid;
  position: relative;
  z-index: 1;
}



@media (max-width:374px){

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

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

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

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


  * + .kodawari_imgs{
    margin-top: 50px;
  }

  .kodawari_title{
    font-size: 23px;
    margin-bottom: 40px;
  }
  * + .kodawari_title{
    margin-top: 50px;
  }

  /* メッセージ */
  .kodawari_msg{
    font-size: 16px;
    line-height: 2.222;
    /*text-align: center;*/
  }
  .kodawari_msg + .kodawari_list{
    margin-top: 50px;
  }

  /* 画像 */
  .kodawari_imgs{
  }
  .kodawari_imgs_img{
    width: 50%;
  }


  /* tab */
  .kodawari_list{
    margin: 0 -10px;
  }
  .kodawari_list .webgene-item{
    width: 33.333%;
    padding: 0 10px;
  }
  .kodawari_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .kodawari_list .webgene-item:nth-child(n+4){
    margin-top: 30px;
  }
  .kodawari_list .webgene-item .title{
    font-size: 16px;
    margin-top: 15px;
  }
  .kodawari_list .webgene-item .title:after{
    width: 30px;
    font-size: 16px;
    padding-top: 5px;
  }
  .kodawari_list .webgene-item .txt{
    font-size: 16px;
    padding-top: 14px;
  }




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

  .kodawari_list .webgene-item .title{
    padding-right: 30px;
  }
  .kodawari_msg{
    text-align: center;
  }


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

  * + .kodawari_imgs{
    margin-top: 70px;
  }

  /* メッセージ */
  .kodawari_msg{
    font-size: 18px;
  }
  .kodawari_msg + .kodawari_list{
    margin-top: 70px;
  }

  /* pc */
  .kodawari_list{
    margin: 0 -13px;
  }
  .kodawari_list .webgene-item{
    width: 25%;
    padding: 0 13px;
  }
  .kodawari_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }
  .kodawari_list .webgene-item:nth-child(n+5  ){
    margin-top: 55px;
  }
  .kodawari_list .webgene-item .title{
    font-size: 20px;
    letter-spacing: -0.05em;
    margin-top: 20px;
  }
  .kodawari_list .webgene-item .txt{
    font-size: 16px;
    /*margin-top: 24px;*/
    /*padding-top: 14px;*/
  }

  .kodawari_list + .read_more{
    margin-top: 75px;
  }

}

@media (min-width:1536px){

  .kodawari_list .webgene-item .title{
    font-size: 23px;
  }
  .kodawari_list .webgene-item .txt{
    margin-top: 24px;
    padding-top: 14px;
  }
}


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

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


.company_hdr_wrap.type1 .home_concept_box1{

}
.company_hdr_wrap.type1 .home_concept_box3{

}
.company_hdr_wrap.type2 .home_concept_box1{

}
.company_hdr_wrap.type2 .home_concept_box3{

}

@media (max-width:374px){

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

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

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

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


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


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

  .company_hdr_wrap.type1 .home_concept_box1{

  }
  .company_hdr_wrap.type1 .home_concept_box3{

  }
  .company_hdr_wrap.type2 .home_concept_box1{
    padding-top: 280px;
  }
  .company_hdr_wrap.type2 .home_concept_box3{
    padding-top: 30px;
  }

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

  .company_hdr_wrap.type1 .home_concept_box1{

  }
  .company_hdr_wrap.type1 .home_concept_box3{

  }
  .company_hdr_wrap.type2 .home_concept_box1{
    padding-top: 280px;
  }
  .company_hdr_wrap.type2 .home_concept_box3{
    padding-top: 30px;
  }

}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

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

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

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

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

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

.posts_back_list{

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

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

}
.gallery_detail .meta .title{
  font-size: 18px;
  line-height: 1.5;
}
.gallery_detail .meta .price{
  font-size: 18px;
  line-height: 1.5;
  margin-left: auto;
}
.gallery_detail .post_content{
  font-size: 16px;
  line-height: 2;
  text-align: justify;
  word-break: break-all;
}
.gallery_detail .read_more{
  margin-top: 50px;
}


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

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

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

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

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

  /* 詳細 */
  .gallery_wrap{
  }
  .gallery_box1{
    width: 65.76%;
  }
  .gallery_box2{
    width: 31.53%;
    margin-top: 0;

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

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

  }

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

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

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


}







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

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


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

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

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

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

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


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


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


}

.top-banner {
  display: flex;
  margin-top: 40px;
  margin-inline: auto;
  padding-inline: 10px;
  max-width: 660px;