@charset "UTF-8";

/* ******************************
   変数設定など
   ****************************** */
:root {

  /* カラー(ボタン背景色など) */
  --main-color: #2b6796;
  --sub-color: #e7161a;
  --txt-color: #181818;

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}
.os{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
}

/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  color: var(--txt-color);

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

#root{
  overflow: hidden;
}


/* ******************************
   コンテナ設定＋画面端までの距離
   ****************************** */
:root {

  /* 画面端までの距離（通常） */
  --margin-for-device-side: -15px;

  /* 画面端までの距離（ワイド） */
  --margin-for-device-side-w: -15px;

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

  /* コンテナサイズ:1286px */
  .container.wide{
    max-width: calc(1286px + 80px);
    padding-left: 40px;
    padding-right: 40px;
  }

  :root {
    --margin-for-device-side-w: calc(643px - 50vw);
  }

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

  /* コンテナサイズ:1370px */
  .container.wide{
    max-width: calc(1370px + 100px);
    padding-left: 50px;
    padding-right: 50px;
  }
  :root {
    --margin-for-device-side-w: calc(685px - 50vw);
  }

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

  /* コンテナサイズ:1520px */
  .container.wide{
    max-width: calc(1520px + 200px);
    padding-left: 100px;
    padding-right: 100px;
  }
  :root {
    --margin-for-device-side-w: calc(760px - 50vw);
  }
}


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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0;
}
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;
  z-index: 1;
  overflow: hidden;
}
.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:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .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{
  --logo-height: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: auto;
  transition: 0.2s all;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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

.gnav_item_en{
  font-family: "Oswald", sans-serif;
}
.gnav_item a{
  font-family: "Noto Sans JP", sans-serif;
}

@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px; 
  }
  .hdr1 {
    justify-content: center;
  }
  .hdr_logo{
    display: block;
    width: 140px;
  }

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

  .hdr_contact_btn{
    display: none;
  }

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

  /* ヘッダー固定 */
  body{
    /* ヘッダーの高さに応じて */
    padding-top: 86px;
  }
  .header{
    --logo-height: 50px;

    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 20px;
  }
  .hdr_contact_btn{
    display: block;
    background: #FFF;
    color: #181818;
    border: 1px solid #181818;
    width: 230px;
    padding: 10px 5px;
    text-align: center;
    transition: 0.2s all;
    border-radius: 28px;
    font-family: "Outfit", sans-serif;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before {
    content: "\f0e0";
    font-family: "fontAwesome";
    margin-right: 20px;
  }
  .hdr_contact_btn:hover{
    background: #181818;
    color: #fff;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }

  /* TELボタン */
  .hdr_tel{

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


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

  .header{
    --logo-height: auto;;
    padding: 7px 46px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

  .header{
    --logo-height: 75px;
  }
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    /*width: 420px;*/
  }

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

  }
  .header.slim .hdr_logo img{
  }

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 2;
  padding-inline:4.16%;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_item_img:before{
  padding-top: 74.5svh;
}
.mv_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.15);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.mv_inner{
  position: relative;
}

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

}
.mv_txt1{

  font-size: 30px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  position: absolute;
  bottom: 18%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  background: none;
  padding: 0;
  isolation: isolate;
  mix-blend-mode: destination-out;
}
.mv_txt1 img{
  display: block;
  width: 85%;
}
.mv_txt1 p{
  letter-spacing: 0;
  line-height:1;
  color: #fff; /* 色は何でもOK */
  mix-blend-mode: destination-out;
}
.mv_inner2{
  margin-top: -4em;
  position: relative;
  z-index: 1;
}
.mv_txt2{
  font-size: 24px;
  font-size: clamp(2rem, 1.225rem + 3.88vw, 5.875rem);
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
  line-height: 1.27em;
  color: #dcdcdc;
}
.mv_txt2 p{
  letter-spacing: 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{
    left: 30px;
    font-size: 32px;
  }
  .mv_txt1{

  }
  .mv_inner2{
    margin-top: -9em;
    position: relative;
    z-index: 1;
  }
  .mv_txt2{
    /*    font-size: 50px;*/
  }

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


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

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

  }
  .mv_inner2{

  }
  .mv_txt2{
    /*    font-size: 70px;*/
  }

  .mv_txt1 img{
    display: block;
    width: 80%;
  }
}
@media (min-width:1200px){

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

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

  }
  .mv_txt2{
    /*    font-size: 94px;*/
  }

  .mv_txt1 img{
    display: block;
    width:auto;
  }
}


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

/* サイドバー */
.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: 60px;
  position: relative;
  z-index: 1;
  padding-inline:2.1%;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.pg_header_title{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
.pg_header_title_txt{
  font-size: 32px;
  font-weight: 700;
  color: #FFF;
}


.pg_header_inner{

}
.pg_header_img:before{
  padding-top: 180px;
}
.pg_header_text{
  position: absolute;
  bottom: 0;
  left:0;
  width: 100%;
  z-index: 1;
}
.pg_header_h1{
  font-size: clamp(2.5rem, 1.825rem + 3.38vw, 5.875rem);
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  text-shadow: 0px 0px 6px rgba(62, 62, 62, 0.4);
  line-height: 0.8;
  color: #fff;
}


@media (min-width:768px){
  .pg_header{
    margin-bottom: 100px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_img:before{
    padding-top: 400px;
  }
  .pg_header_text{

  }
  .pg_header_h1{

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

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 200px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title_txt{

  }

  .pg_header_inner{

  }
  .pg_header_img:before{
    padding-top: 480px;
  }
  .pg_header_text{

  }
  .pg_header_h1{

  }
}

@media (min-width:1536px){
  .pg_header{
    padding-inline:80px;
  }
}

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

.footer{
  margin-top: 50px;
  padding-bottom: 30px;
}

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #181818;
  color: #fff;
  padding: 8px;
  margin-top: 50px
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #181818;
  text-decoration: none;
  line-height: 1.2;
  color: #fff;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  z-index: 5;
  right: 10px;
  bottom: 60px;
  z-index: 3;
}
.pagetop a{
  display: block;
  font-size: 0;
  width: 42px;
  height: 42px;
  text-align: center;
  color: #4682b4;
}
.pagetop a i{
  font-size: 40px;
}

.ftr_contact_wrap{

}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
  padding: 30px 0;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box_en{
  font-size: 30px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.ftr_contact_box1 .content_desc{

}
.ftr_contact_box2{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.ftr_contact_box2_item{
  width: 100%;
}
.ftr_contact_box2_item_head{
  text-align: center;
}
.ftr_contact_box2_item_head_tt{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_contact_box2_item_head_tt:before{
  content: "";
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-inline:auto;
  min-height: 24px;
  margin-bottom: 19px;
}
.ftr_contact_box2_item.mail .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/mail.png);
  width: 25px;
  aspect-ratio:25 / 18;
}
.ftr_contact_box2_item.tel .ftr_contact_box2_item_head_tt:before{
  background-image: url(/system_panel/uploads/images/tel.png);
  width: 25px;
  aspect-ratio:25 / 24;
}
.ftr_contact_box2_item_head_tt:after{
  content: "";
  display: block;
  width: 60px;
  height: 1px;
  background: #a39c92;
  margin: 20px auto 31px;
}
.ftr_contact_box2_item_box{

}
.ftr_contact_box2_item_tel{
  text-align: center; 
}
.ftr_contact_box2_item_tel1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.075em;;
  line-height: 1;
}
.ftr_contact_box2_item_tel1 a:hover{
  color: #c1c1c1;
}
.ftr_contact_box2_item_tel2{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.075em;;
  margin-top: 7px;
}
.link_1{
  text-align: center;
  display: block;
  font-size: 15px;
  font-weight: 500;
  background: #181818;
  color: #fff;
  width: 100%;
  max-width: 202px;
  margin-inline:auto;
  border: 1px solid #181818;
  transition: all .2s;
  border-radius: 5px;
  padding: 12px;
}
.link_1:hover{
  background: #fff;
  color: #181818;
}

.ftr_1{
  margin-top: 40px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_addr{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875em;
  margin-top: 32px;
}
.ftr_tel{
  font-size: 16px;
  font-weight: 400;
  margin-top: 32px;
}
.ftr_tel a:hover{
  color: #c1c1c1;
}
.ftr_1_box2{
  width: 100%;
}
.ftr_links{

}
.ftr_link{

}

@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .footer_fix{
    display: flex;
    transform: translateY(100%);
    transition: 0.2s all;
  }
  .footer_fix.show{
    transform: translateY(0);
  }

  #chatbot-btn{
    transform: translateX(100%);
    transition: 0.2s all;
  }
  #chatbot-btn.show{
    transform: translateX(0);
  }

  .ftr_contact_box{
    padding-bottom: 0;
  }
  .ftr_contact_box2_item{
    border-top: 1px solid #bfbfbf;
    padding: 30px 0;
  }
  .ftr_contact_box2_item:first-child{
    margin-top: 30px;
  }

  .ftr_logo{
    display: block;
    width: 180px;
    margin-inline: auto;
  }
  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }
  .ftr_copy{
    margin-top: 115px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box_en{
    font-size: 36px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    margin-top: 40px;;
  }
  .ftr_contact_box2_item{
    width: 50%;
    border-left: 1px solid #bfbfbf;
    padding: 20px 0;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 1px solid #bfbfbf;
  }

  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_head_tt:before{

  }
  .ftr_contact_box2_item_head_tt:after{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 28px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

  .ftr_1{
    margin-top: 80px;
  }
  .ftr_1_box{

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

  }
  .ftr_addr{

  }
  .ftr_tel{

  }
  .ftr_1_box2{
    width: 55.01%;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
  }
  .ftr_link{
    width: 100%;
    font-size: 16px;
    font-weight: 400;
  }
  .ftr_link:hover{
    color: #b0b0b0
  }
  .ftr_link p{
    letter-spacing: 0;
  }
  .ftr_link{
    position: relative;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 36px;
  }
  .ftr_link:nth-child(odd){
    width: 47.31%;
  }
  .ftr_link:nth-child(odd):after{
    content: "";
    display: block;
    width: 1px;
    height: 16px;
    background: #a7a7a7;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .ftr_link:nth-child(even){
    width: 50.23%;
    padding-left: 69px;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .ftr_1_box1{
    width: 25.98%;
  }
  .ftr_1_box2{
    width: 40.01%;
    padding-top: 115px;
  }
  .ftr_contact_box2_item:last-child{
    border-right: 0;
  }

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

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 49.01%;
  }
  .ftr_contact_box_en{
    font-size: 42px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 50.98%;
    margin-top: 0;
  }
  .ftr_contact_box2_item{
    padding: 43px 0;
  }
  .ftr_contact_box2_item_head{

  }
  .ftr_contact_box2_item_head_tt{

  }
  .ftr_contact_box2_item_head_tt:before{

  }
  .ftr_contact_box2_item_head_tt:after{

  }
  .ftr_contact_box2_item_box{

  }
  .ftr_contact_box2_item_tel{

  }
  .ftr_contact_box2_item_tel1{
    font-size: 30px;
  }
  .ftr_contact_box2_item_tel2{

  }
  .link_1{

  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_addr{

  }
  .ftr_tel{

  }
  .ftr_1_box2{

  }
  .ftr_links{

  }
  .ftr_link{

  }
}

@media (min-width:1720px){
  .ftr_1_box2{
    width: 24.01%;
  } 
}


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


/* テーブル用 */
.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: #f3f1f1;
}
.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;
}

.home_contents5_wrap.topics_box .webgene-pagination{
  border-top: 1px solid #181818;
  margin-top: 40px;
  padding-top: 40px;
}
.pg_news .webgene-pagination{
  border-top: 1px solid #181818;
  margin-top: 40px;
  padding-top: 40px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid currentColor;
  background: #181818;
  color: #fff;
  border-radius: 30px;
  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{
  font-size: 12px;
  content: "〉";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 34px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  width: 26px;
  aspect-ratio:1;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 3px;
}
.read_more a:hover{
  color: #181818;
  background: #fff;
  border: 1px solid #181818;
}
.read_more a:hover:after{
  border: 1px solid #181818;
  color: #181818;
}
.read_more a:hover:after{
  margin-right: -5px;
}
.read_more.wh a{
  background: #fff;
  color: #181818;
}
.read_more.wh a:after{
  border: 1px solid #181818;
}
.read_more.wh a:hover{
  background: #181818;
  border: 1px solid #fff;
  color: #fff;
}
.read_more.wh a:hover:after{
  border: 1px solid #fff;
  color: #fff;
}




/* 見出し */
.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: 24px;
  font-weight: 900;
  margin-top: 5px;
  letter-spacing: 0.075em;
}
.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;
}

.tt2_sub{
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.tt2_sub p{
  display: inline-block;
  letter-spacing: 0.075em;
  background: #000000;
  color: #fff;
  padding: 2px 20px;
  white-space: nowrap;
}



/* セクション */
.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_sub_tt{
  font-size:18px;
  font-weight: 900;
  line-height: 1.78em;
}
.sec_sub_tt strong{
  font-size: 36px;
  font-weight: 900;
}
.sec_tt_lg{
  font-size: 24px;
  font-weight: 900;
  line-height: 1.42em;
}


.content_desc{
  font-size:16px;
  font-weight: 400;
  line-height: 2.25em;
  text-align: justify;
  margin-top: 20px;
}
@media (max-width:374px){

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

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

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

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

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

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

  .anchor{
    top: -100px;
  }

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

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

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

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

  .tt2_sub{

  }
  .tt2_sub p{
    width: 285px;
    padding: 4px 30px;
  }

  .sec_sub_tt{
    font-size: 28px;
  }
  .sec_sub_tt strong{
    font-size: 40px;
  }

  .sec_tt_lg{
    font-size: 42px;
  }

  .content_desc{

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

  .home_contents5_wrap.topics_box .webgene-pagination{
    margin-top: 81px;
    padding-top: 81px;
  }
  .pg_news .webgene-pagination{
    margin-top: 61px;
    padding-top: 60px;
  }
}
@media (min-width:1200px){
  .sec_sub_tt{
    font-size: 46px;
  }
  .sec_sub_tt strong{
    font-size: 56px;
  }

  .sec_tt_lg{
    font-size:42px;
  }

  .tt2_sub{

  }
  .tt2_sub p{

  }

  .content_desc{

  }

}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 15px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 40px;
  }

  .sec_tt_lg{
    font-size: 52px;
  }

}
@media (min-width:1720px){
  .tt2_ja{
    font-size: 52px;
  }
}
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



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

}
.pg_home .section.sec1{

}
.pg_home .section.sec2{
  background: #181818;
}
.pg_home .section.sec3{

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

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

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

  .pg_home .section.sec1{
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding: 100px 0;
  }
  .pg_home .section.sec3{
    padding-bottom:80px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding: 100px 0 0;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 100px;;
    padding-bottom: 100px;
  }
  .pg_home .section.sec2{
    padding: 100px 0;
  }
  .pg_home .section.sec3{
    padding-top: 0px;
    padding-bottom: 121px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{
    padding: 121px 0 0;
  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

}
@media (min-width:1470px){
  .pg_home .section.sec1{
    padding-top: 100px;;
  }

}
@media (min-width:1720px){
  .pg_home .section.sec1{
    padding-top: 0;
  }

}

/*メイン*/
.home_contents1_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents1_box1{
  width: 100%; 
  margin-top:30px;
  order: 2;
  position: relative;

}
.home_contents1_box1:before{
  content: "";
  display: block;
  width: 83.82%;
  height: 85.65%;
  background: #f6f5f5;
  position: absolute;
  top: -1em;
  right: -27.94%;
}
.home_contents1_box1_top{
  width: 60.29%;
  margin-left: auto;
}
.home_contents1_box1_top_img{

}
.home_contents1_box1_top_img:before{
  padding-top: 133.36%;
}
.home_contents1_box1_btm{
  width: 50.73%;
  margin-top: -5.2em;
}
.home_contents1_box1_btm_img:before{
  padding-top: 133%;
}
.home_contents1_box2{
  width: 100%; 
  order: 1;
  z-index: 1;
}
.home_contents1_box2 .content_desc{

}
.home_contents1_box2 .read_more{

}


/*正しく知れば、投資はもっとやさしい。*/
.home_contents2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  color: #fff;
}
.home_contents2_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_contents2_box1_top{

}
.home_contents2_box1_top_txt1{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7em;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #fff;
  padding-bottom: 14px;
}
.home_contents2_box1_top_txt1 .l75{
  letter-spacing: 0.075em;
}
.home_contents2_box1_top_txt1 p{
  letter-spacing: 0.075em;
}
.home_contents2_box1_top_txt2{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.075em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  margin-top: 16px;
}
.home_contents2_box1_btm{
  color: #fff;
  margin-top: 30px;
}
.home_contents2_box2{
  width: 100%;
  order: 1;
}
.home_contents2_box2_inner{

}
.home_contents2_box2_img{

}
.home_contents2_box2_img:before{
  padding-top: 58.86%;
}

/*私たちの提供するサービス*/
.home_contents3_wrap{

}
.cover_tt{
  text-align: center;
  position: relative;
}
.cover_tt_en{
  font-size: clamp(2.875rem, 1.575rem + 6.5vw, 9.375rem);
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  color: #f6f6f6;
}
.cover_tt_ja{
  width: 100%;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.075em;
  position: absolute;
  top: 64%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.home_contents3_items{

}
.home_contents3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  padding-bottom: 30px;
}
.home_contents3_item:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #f6f5f5;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents3_item:nth-child(n+2){
  margin-top: 5px;
}
.home_contents3_item_box1{
  width: 100%;
  position: relative;
}
.home_contents3_item_box1_inner{
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents3_item_box1_img{

}

.home_contents3_item_box1_img:before{
  /*  padding-top: 500px;*/
  padding-top: 250px;
}
.home_contents3_item_box1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.2);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents3_item_box1_en{
  width: 49.62%;
  width: auto;
  position: absolute;
  left: 0;
  bottom: 0;
  background: #f0f0f0;
  font-size: 20px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  line-height: 1;
  z-index: 1;
  padding: 13px 26px;
}
.home_contents3_item_box2{
  width: 100%;
  margin-top: 20px;;
}
.home_contents3_item_box2_inner{
  position: relative;
}
.home_contents3_item_box2_cate{
  text-align: center;
  width: 190px;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.2em;
  background: #181818;
  color: #fff;
  padding: 3px;
}
.home_contents3_item_box2_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 16px;
}
.home_contents3_item_box2 .content_desc{

}
.home_contents3_item_box2 .read_more{

}

/*topics*/

.home_contents4_wrap{
  position: relative;
  padding: 50px 0;
}
.home_contents4_wrap:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #181818;
  position: absolute;
  top: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: absolute;
}
.posts_list_head{
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 30px;
}
.posts_list_head_en{
  font-size: 32px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  position: relative;
  padding-right: 37px;
  margin-right: 50px;
}
.posts_list_head_en:after{
  content: "";
  display: block;
  width: 2px;
  height: 42px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #fff;
}
.posts_list_head_ja{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  position: relative;
  z-index: 2;
  margin-top: 16px;;
}
.news_list {
  overflow: hidden;
  position: relative;
  z-index: 3;
}
.news_list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
  margin-inline: -5px;
}
.news_list .webgene-item {
  width: 50%;
  padding-inline: 5px;
  border-bottom: 0;
  border-top: 0;
  padding: 0 5px 10px;
}
.news_list .webgene-item {
  border-bottom: 0;
  position: relative;
}
.news_list .webgene-item a {
  border-bottom: 0;
  border-top: 0;
}
.news_list .webgene-item:before {
  width: 1px;
  height: 100000px;
}
.news_list .webgene-item:before,
.news_list .webgene-item:after {
  background: #ffffff;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}
.news_list .webgene-item:before,
.news_list .webgene-item:after {
  background: #ffffff;
}
.news_list .webgene-item:after {
  height: 1px;
}
.news_list .webgene-item .box2{
  margin-top: 16px;
}

.news_list .webgene-item .category{
  background: #fff;
  color: #181818;
  width: 138px;
  text-align: center;
  font-size:14px;
  font-weight: 700;
  letter-spacing: 0;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  color: #fff;
  margin-top: 18px;
}
.news_list .webgene-item .img:before{
  padding-top: 80%;
}

/*news*/
.home_contents5_wrap{

}
.home_contents5_wrap .posts_list_head{
  color: #181818;
}
.home_contents5_wrap .posts_list_head_en:after{
  background: #181818;
}
.home_contents5_wrap .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_contents5_wrap .meta .date{
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Oswald", sans-serif;
}
.home_contents5_wrap .meta .category{
  background: #fff;
  border: 1px solid #181818;
  width: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 3px;
}
.home_contents5_wrap .webgene-item .title{
  color: #181818;
  margin-top: 13px;
}
.home_contents5_wrap .webgene-item .box2{
  margin-top: 9px;
}
.home_contents5_wrap .webgene-item .img:before{
  padding-top: 75.71%;
}
.home_contents5_wrap .news_list .webgene-item:before,
.home_contents5_wrap .news_list .webgene-item:after{
  background: #181818;
}
@media (max-width:374px){

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

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

  .news_list .webgene-item:nth-last-child(n+2) {
    padding-bottom: 20px;
  }
  .news_list .webgene-item:nth-child(n+3) {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .news_list .webgene-item:nth-child(2):before,
  .news_list .webgene-item:nth-child(3):before,
  .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .news_list .webgene-item:nth-child(2n+1):not(:first-child):after{
    content: "";
    width: 200%;
  }
}
@media (min-width:768px){
  /*メイン*/
  .home_contents1_wrap{

  }
  .home_contents1_box1{
    width: 75%;
    margin-inline:auto;
    margin-top: 40px;
  }
  .home_contents1_box1_top{

  }
  .home_contents1_box1_top_img{

  }
  .home_contents1_box1_top_img:before{

  }
  .home_contents1_box1_btm{
    margin-top: -15.2em;
  }
  .home_contents1_box1_btm_img:before{

  }
  .home_contents1_box2{
    margin-top: 50px;;
  }
  .home_contents1_box2 .content_desc{

  }
  .home_contents1_box2 .read_more{

  }

  /*正しく知れば、投資はもっとやさしい。*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{
    margin-top: 50px;
  }
  .home_contents2_box1_top{
    width: 53.67%;
  }
  .home_contents2_box1_top_txt1{
    font-size: 20px;
  }
  .home_contents2_box1_top_txt2{
    font-size: 22px;
  }
  .home_contents2_box1_btm{
    background: #181818;
    margin-top: 50px;
  }
  .home_contents2_box2{
    width: 100%;
  }
  .home_contents2_box2_inner{

  }
  .home_contents2_box2_img{

  }
  .home_contents2_box2_img:before{

  }

  /*私たちの提供するサービス*/
  .home_contents3_wrap{

  }
  .cover_tt{

  }
  .cover_tt_en{

  }
  .cover_tt_ja{
    font-size: 22px;
  }
  .home_contents3_items{

  }
  .home_contents3_item{

  }
  .home_contents3_item_box1{

  }
  .home_contents3_item_box1_inner{

  }
  .home_contents3_item_box1_inner{

  }
  .home_contents3_item_box1_img:before{
    padding-top: 500px;
  }
  .home_contents3_item_box1_en{
    font-size: 28px;
    width: 470px;
  }
  .home_contents3_item_box2{
    margin-top: 40px;;
  }
  .home_contents3_item_box2_inner{

  }
  .home_contents3_item_box2_cate{
    font-size: 18px;
  }
  .home_contents3_item_box2_tt{
    font-size: 20px;
    margin-top: 29px;
  }
  .home_contents3_item_box2 .content_desc{

  }
  .home_contents3_item_box2 .read_more{
    margin-top: 7px;
  }

  /*topics*/
  .home_contents4_wrap{
    padding: 50px 0 71px;
  }
  .posts_list_head{
    margin-bottom: 40px;
  }
  .posts_list_head_en{
    font-size: 36px;
  }
  .posts_list_head_ja{
    font-size: 20px;
    margin-top: 0;
  }
  .home_contents4_wrap .read_more{
    margin-top: 58px;
  }
  .news_list .webgene-blog {
    margin-inline: -15px;
  }
  .news_list .webgene-item:nth-child(n+3) {
    padding-top: 30px;
    padding-bottom: 0;
  }

  /*news*/
  .home_contents5_wrap{

  }
  .home_contents5_wrap .posts_list_head{
    color: #181818;
  }
  .home_contents5_wrap .meta{

  }
  .home_contents5_wrap .meta .date{

  }
  .home_contents5_wrap .meta .category{

  }
  .home_contents5_wrap .webgene-item .title{

  }
}
@media (min-width:1024px){
  /*正しく知れば、投資はもっとやさしい。*/
  .home_contents2_box1_btm{
    margin-top: 75px;
  }

  /*topics*/
  .posts_list_head{
    margin-bottom: 50px;
  }
  .posts_list_head_en{
    font-size: 42px;
  }
  .posts_list_head_ja{
    font-size: 24px;
  }
  .news_list .webgene-blog {
    margin-inline: -15px;
  }
  .news_list .webgene-item {
    width: 25%;
    padding: 0 20px 40px;
  }
  .news_list .webgene-item:nth-child(n+3) {
    padding-top: 0;
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+5) {
    padding-top: 49px;
    padding-bottom: 0;
  }
  .news_list .webgene-item:nth-child(2):before,
  .news_list .webgene-item:nth-child(3):before,
  .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .news_list .webgene-item:nth-child(4n+1):not(:first-child):after{
    content: "";
    width: 400%;
  }
}
@media (min-width:1200px){
  /*メイン*/
    .news_list .webgene-blog {
    margin-inline: -20px;
  }
  .home_contents1_wrap{
    margin-top: -16em;
  }
  .home_contents1_box1{
    width: 44.73%;
    padding-top: 76px;
    margin-inline:0;
    margin-top: 0;
    order: 1;
  }
  .home_contents1_box1_top{

  }
  .home_contents1_box1_top_img{

  }
  .home_contents1_box1_top_img:before{

  }
  .home_contents1_box1_btm{

  }
  .home_contents1_box1_btm_img:before{

  }
  .home_contents1_box2{
    width: 50.98%;
    order: 2;
    margin-top: 0;
  }
  .home_contents1_box2 .sec_sub_tt p{
    margin-right: -16px;
  }
  .home_contents1_box2 .content_desc{
    margin-top: 40px;
  }
  .home_contents1_box2 .read_more{

  }


  /*正しく知れば、投資はもっとやさしい。*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{
    width: 44.73%;
    position: absolute;
    left: 0;
    bottom: -2em;
    z-index: 2;
    order: 1;
    margin-top: 0;
  }
  .home_contents2_box1_top{

  }
  .home_contents2_box1_top_txt1{
    font-size: 22px;
  }
  .home_contents2_box1_top_txt2{
    font-size: 24px;
  }
  .home_contents2_box1_btm{
    margin-top: 145px;
  }
  .home_contents2_box2{
    width: 74.01%;
    order: 2;
  }
  .home_contents2_box1 .content_desc{
    margin-top: 40px;
    padding-right: 36px;
  }
  .home_contents2_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_contents2_box2_img{

  }
  .home_contents2_box2_img:before{
    padding-top: 900px;
  }

  /*私たちの提供するサービス*/
  .home_contents3_wrap{

  }
  .cover_tt{

  }
  .cover_tt_en{

  }
  .cover_tt_ja{
    font-size: 26px;
  }
  .home_contents3_items{

  }
  .home_contents3_item{
    padding-bottom: 0;
  }
  .home_contents3_item:before{
    left: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .home_contents3_item_box1_img:after{

  }
  .home_contents3_item_box1_img{

    margin-left: 0;
    margin-right:0;
  }
  .home_contents3_item_box1{
    width: 50.98%;
    border-right: 1px solid #181818;
    padding-right: 20px;
  }
  .home_contents3_item_box1_inner{
    width: auto;
    margin-left:var(--margin-for-device-side-w);
    margin-right:0;
  }
  .home_contents3_item_box1_img:before{
    padding-top: 580px;
  }
  .home_contents3_item_box1_en{
    font-size: 30px;
    width: 470px;
  }
  .home_contents3_item_box2{
    width: 49.01%;
    border-left: 1px solid #181818;
    padding-left: 66px;
    padding-top: 20px;
    margin-top: 0;
  }
  .home_contents3_item_box2_inner{

  }
  .home_contents3_item_box2_cate{
    font-size: 20px;
  }
  .home_contents3_item_box2_tt{
    font-size: 21px;
  }
  .home_contents3_item_box2 .content_desc{

  }
  .home_contents3_item_box2 .read_more{

  }

  /*topics*/
  .home_contents4_wrap:before{
    top: 0;
    left: -3.9%;;
    margin-left:0;
    margin-right: 0;
  }

  /*news*/
  .home_contents5_wrap{

  }
  .home_contents5_wrap .posts_list_head{
    color: #181818;
  }
  .home_contents5_wrap .meta{

  }
  .home_contents5_wrap .meta .date{

  }
  .home_contents5_wrap .meta .category{

  }
  .home_contents5_wrap .webgene-item .title{

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

  .home_contents2_box2_img:before{
    padding-top: 800px;
  }

  /*私たちの提供するサービス*/
  .home_contents3_item_box1_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1720px){
  .home_contents2_box2_img:before{
    padding-top: 780px;
  }

}
@media (min-width: 768px) and (max-width: 1023px) {
  .news_list .webgene-item:nth-child(2):before,
  .news_list .webgene-item:nth-child(3):before,
  .news_list .webgene-item:nth-child(4):before {
    content: "";
  }
  .news_list .webgene-item:nth-child(2n+1):not(:first-child):after {
    content: "";
    width: 200%;
  }
}



/*******************************
*　about
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  background: #181818;
}
.pg_about .section.sec3{

}


@media (max-width:374px){

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding: 80px 0;
  }
  .pg_about .section.sec3{
    padding: 100px 0;
  }

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


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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding: 110px 0 120px;
  }
  .pg_about .section.sec3{
    padding: 175px 0 158px;
  }

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


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


}

/* メイン部分 */
/*見出し*/


.about_contents1_wrap{

}
.page_hdr_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page_hdr_box1{
  width: 100%;
  order: 2;
  margin-top: 40px;
}
.page_hdr_box1_img{

}
.page_hdr_box1_img:before{
  padding-top: 73.84%; 
}
.page_hdr_box2{
  width: 100%;
  order: 1;
}
.page_hdr_box2 .content_desc{
  margin-top: 0;
}
.content_block{

}
.content_block:nth-child(n+2){
  margin-top: 20px; 
}

/*特徴*/
.contents_tt{
  text-align: center;
  color: #fff;
}
.contents_tt.bg_wh{
  color: #181818;
}
.contents_tt_h2{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #fff;
  padding-bottom: 13px;
}
.contents_tt_h2 strong{
  font-size: 24px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.contents_tt.bg_wh .contents_tt_h2{
  border-bottom: 1px solid #181818;
}
.contents_tt_en{
  font-size: 18px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.075em;
  line-height: 1;
  margin-top: 16px;
}

.about_contents2_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.about_contents2_item{
  width: 100%;
}
.about_contents2_item:nth-child(n+2){
  margin-top: 30px;;
}
.about_contents2_item_inner{
  padding: 16px;
  background: #fff;
  color: #181818;
}
.about_contents2_item_img{

}
.about_contents2_item_img:before{
  padding-top: 68.18%;
}
.about_contents2_item_box2{
  margin-top: 24px;
}
.about_contents2_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.about_contents2_item_box2 .content_desc{
  line-height: 2;
  margin-top: 15px;
}
.about_contents2_item_box2 .content_desc p{
  letter-spacing: 0.075em; 
}

/*スターヴィアが選ばれる5つの理由*/
.about_contents3_items{
  margin-top: 40px;
}
.about_contents3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents3_item:nth-child(n+2){
  margin-top: 50px;
}
.about_contents3_box1{
  width: 100%; 
  order: 1;
}
.about_contents3_box1_img{

}
.about_contents3_box1_img:before{

}
.about_contents3_box2{
  width: 100%; 
  order: 2;
  margin-top: 20px;
}
.about_contents3_box2_num{
  font-size: 20px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  color: #bdbdbd;
}
.about_contents3_box2_num strong{
  font-size: 30px;
  font-weight: 500;
  line-height: 1;
  color: #181818;
}
.about_contents3_box2_tt{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: 20px;
}
.about_contents3_box2 .content_desc{

}

/*挨拶*/
.about_contents4_wrap{
  border-top: 1px solid #000000;
  padding-top: 50px;
}
.about_contents4_wrap .page_hdr_box1{
  width: 75%;
  margin-inline:auto;
  order: 1;
  margin-top: 0;
}
.about_contents4_wrap .page_hdr_box2{
  order: 2;
  margin-top: 20px;
}
.about_contents4_wrap .page_hdr_box1_img:before{
  padding-top: 113.5%;
}
.page_hdr_box1_txt{
  text-align: center;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  margin-top: 10px;
}
.page_hdr_box1_txt p{

}

.about_contents4_sub{
  border: 1px solid #181818;
  position: relative;
  padding: 36px 0 28px;
  margin-top: 80px;
}
.about_contents4_sub_tt{
  position: absolute;
  top: -1.5em;
  left: 50%;
  transform:translateX(-50%);
  background: #fff;
  border: 1px solid #181818;
  border-radius: 24px;
  padding: 12px 20px;
}
.about_contents4_sub_txt{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.about_contents4_sub .content_desc{

}
.about_contents4_sub .content_desc p{
  letter-spacing: 0.05em;
}
@media (max-width:767px){
  .about_contents4_sub_tt{

  }
  .about_contents4_sub_tt{
    border-radius: 52px;
    top: -3em;
    width: 75%;
    text-align: center;
    margin-inline:auto;
  }
}
@media (min-width:768px){
  /*見出し*/


  .about_contents1_wrap{

  }
  .page_hdr_box{

  }
  .page_hdr_box1{
    margin-top: 40px;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img:before{

  }
  .page_hdr_box2{

  }
  .page_hdr_box2 .content_desc{

  }
  .content_block:nth-child(n+2){
    margin-top: 35px; 
  }

  /*特徴*/
  .contents_tt{

  }
  .contents_tt_h2{
    font-size: 28px;
  }
  .contents_tt_h2 strong{
    font-size: 32px;
  }
  .contents_tt_en{
    font-size: 20px;
  }

  .about_contents2_items{
    margin-inline:-12.5px;
    margin-top: 56px;
  }
  .about_contents2_item{
    width: 50%;
    padding-inline:12.5px;
  }
  .about_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .about_contents2_item:nth-child(n+3){
    margin-top: 30px;;
  }
  .about_contents2_item_inner{
    height: 100%;
    padding: 26px 26px 61px;
  }
  .about_contents2_item_img{

  }
  .about_contents2_item_img:before{

  }
  .about_contents2_item_box2{

  }
  .about_contents2_item_tt{
    font-size: 20px;
  }
  .about_contents2_item_box2 .content_desc{
    padding-inline: 5px;
  }

  /*スターヴィアが選ばれる5つの理由*/
  .about_contents3_items{
    margin-top: 60px;
  }
  .about_contents3_item{

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

  }
  .about_contents3_box1_img{

  }
  .about_contents3_box1_img:before{
    padding-top: 75%;
  }
  .about_contents3_box2{
    margin-top: 40px;
  }
  .about_contents3_box2_num{

  }
  .about_contents3_box2_num strong{

  }
  .about_contents3_box2_tt{
    font-size: 26px;
    margin-top: 30px;
  }
  .about_contents3_box2 .content_desc{
    margin-top: 30px;
  }

  /*挨拶*/
  .about_contents4_wrap{
    padding-top: 100px;
  }
  .about_contents4_wrap .page_hdr_box1{
    margin-top:0;
  }
  .about_contents4_wrap .page_hdr_box2{
    margin-top: 40px;
  }
  .about_contents4_wrap .page_hdr_box1_img:before{

  }

  .about_contents4_sub{
    margin-top: 70px;
  }
  .about_contents4_sub_tt{
    padding: 12px 40px;
  }
  .about_contents4_sub_txt{
    white-space: nowrap;
  }
  .about_contents4_sub .content_desc{

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


}
@media (min-width:1200px){
  /*見出し*/


  .about_contents1_wrap{

  }
  .about_contents1_wrap .tt2{
    margin-bottom: 62px;
  }
  .page_hdr_box{

  }
  .page_hdr_box1{
    width: 42.76%;
    padding-top: 10px;
    order: 1;
    margin-top: 0;
  }
  .page_hdr_box1_img{

  }
  .page_hdr_box1_img:before{

  }
  .page_hdr_box2{
    width: 49.01%;
    order: 2;
  }
  .page_hdr_box2 .content_desc{
    margin-top: 0;
  }

  /*特徴*/
  .contents_tt{

  }
  .contents_tt_h2{
    font-size: 30px;
  }
  .contents_tt_h2 strong{
    font-size: 55px;
  }
  .contents_tt_en{
    font-size: 24px;
  }

  .about_contents2_items{

  }
  .about_contents2_item{
    width: 33.333%;
  }
  .about_contents2_item:nth-child(n+3){
    margin-top: 0;;
  }
  .about_contents2_item_inner{

  }
  .about_contents2_item_img{

  }
  .about_contents2_item_img:before{

  }
  .about_contents2_item_box2{

  }
  .about_contents2_item_tt{

  }
  .about_contents2_item_box2 .content_desc{

  }

  /*スターヴィアが選ばれる5つの理由*/
  .about_contents3_items{
    margin-top: 80px;
  }
  .about_contents3_item{
    align-items: flex-end;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 121px;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box1{
    order: 1;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box2{
    order: 2;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box1{
    order: 2;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box2{
    order: 1;
  }
  .about_contents3_box1{
    width: 30.26%;
  }
  .about_contents3_box1_img{

  }
  .about_contents3_box1_img:before{
    padding-top: 147.82%;
  }
  .about_contents3_box2{
    width: 61.51%;
    margin-top: 0;
    position: relative;
    bottom: -16px;
  }
  .about_contents3_box2_num{

  }
  .about_contents3_box2_num strong{

  }
  .about_contents3_box2_tt{
    font-size: 28px;
    margin-top: 34px;
  }
  .about_contents3_box2 .content_desc{
    margin-top: 43px;
  }

  /*挨拶*/
  .about_contents4_wrap{
    padding-top: 121px;
  }
  .about_contents4_wrap .tt2{
    margin-bottom: 60px;
  }
  .about_contents4_wrap .page_hdr_box1{
    width: 38.41%;
    order: 2;
    margin-left: 0;
    margin-right: 0;
  }
  .about_contents4_wrap .page_hdr_box2{
    width: 55.26%;
    order: 1;
    margin-top: 0;
  }
  .about_contents4_wrap .page_hdr_box1_img:before{

  }

  .about_contents4_sub{
    margin-top: 90px;
  }
  .about_contents4_sub_tt{
    padding: 12px 61px;
  }
  .about_contents4_sub_txt{

  }
  .about_contents4_sub .content_desc{

  }
}
@media (min-width:1470px){
  .about_contents3_box2_tt{
    font-size: 32px;
  }

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


}



/*******************************
*　収益物件について
********************************/

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

}
.pg_incomeproperty .section.sec1{

}
.pg_incomeproperty .section.sec2{

}


@media (max-width:374px){

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

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

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

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

  }
  .pg_incomeproperty .section.sec1{

  }
  .pg_incomeproperty .section.sec2{
    padding-top: 100px;
  }
  .pg_incomeproperty .section.sec3{
    padding-top: 50px;
  }

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


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

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

  }
  .pg_incomeproperty .section.sec1{

  }
  .pg_incomeproperty .section.sec2{
    padding-top: 153px;
  }
  .pg_incomeproperty .section.sec3{
    padding-top: 100px;
  }
}
@media (min-width:1470px){


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


}

/* メイン部分 */
.tt2.left{

}
.tt2.left .tt2_sub p{
  width: 206px;
}
.property_contents1_wrap{

}
.property_contents1_wrap .page_hdr_box1{

}
.property_contents1_wrap .page_hdr_box2{

}
.property_contents1_wrap .page_hdr_box1_inner{

}
.property_contents1_wrap .page_hdr_box1_inner .top{
  width: 60.76%;
  margin-left: auto;
}
.property_contents1_wrap .page_hdr_box1_inner .top .page_hdr_box1_img:before{
  padding-top: 123.79%;
}
.property_contents1_wrap .page_hdr_box1_inner .btm{
  width: 53.84%;
  position: relative;
  margin-top: -5em;
}
.property_contents1_wrap .page_hdr_box1_inner .btm:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%) scale(1.05);
  z-index: 1;
}
.property_contents1_wrap .page_hdr_box1_inner .btm .page_hdr_box1_img:before{
  padding-top: 122.85%;
}

/*あなたの投資を成功へ導く、3つの安心ポイント*/
.property_contents2_wrap .tt2_ja{
  letter-spacing: 0;
}
.property_contents2_items{

}
.property_contents2_item{
  border-top: 1px solid #181818;
  padding: 20px 0;
}
.property_contents2_item:last-child{
  border-bottom: 1px solid #181818;
}
.property_contents2_item_inner{
  background: #f6f5f5;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.property_contents2_item_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.property_contents2_item_tag{
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  background: #181818;
  color: #fff;
  display: inline-block;
  padding: 2px 31px;
}
.property_contents2_item_tag strong{
  font-family: "Oswald", sans-serif;
  line-height: 1;
}
.property_contents2_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 16px;
}
.property_contents2_item_box1 .content_desc{

}
.property_contents2_item_box2{
  width: 100%;
  order: 1;
}
.property_contents2_item_box2_img:before{
  padding-top: 71.21%; 
}

/*投資の不安を希望に変える、私たちのサポート*/
.property_contents3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.property_contents3_item:nth-child(n+2){
  margin-top: 40px;
}
.property_contents3_item_box1{
  width: 100%;
}
.property_contents3_item_box1_img:before{
  padding-top: 76.31%;
}
.property_contents3_item_box2{
  width: 100%;
  margin-top:20px;
}
.property_contents3_item_box2 .about_contents3_box2_num{

}
.property_contents3_item_box2 .about_contents3_box2_tt{

}
.property_contents3_item_box2 .content_desc{

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

}
@media (min-width:768px){
  /* メイン部分 */
  .tt2.left{
    text-align: left;
  }
  .tt2.left .tt2_sub{
    text-align: left;
  }
  .tt2.left .tt2_sub p{
    text-align: center;
    margin-left: 0;
  }
  .property_contents1_wrap{

  }
  .property_contents1_wrap .page_hdr_box1{

  }
  .property_contents1_wrap .page_hdr_box2{

  }
  .property_contents1_wrap .page_hdr_box1_inner{

  }
  .property_contents1_wrap .page_hdr_box1_inner .top{

  }
  .property_contents1_wrap .page_hdr_box1_inner .btm{
    margin-top: -14em;
  }

  /*あなたの投資を成功へ導く、3つの安心ポイント*/
  .property_contents2_items{

  }
  .property_contents2_item{

  }
  .property_contents2_item_inner{
    padding: 17px 20px;
  }
  .property_contents2_item_box1{
    margin-top: 40px;
  }
  .property_contents2_item_tag{
    font-size: 20px;
  }
  .property_contents2_item_tag strong{

  }
  .property_contents2_item_tt{
    font-size: 28px;
    margin-top: 23px;
  }
  .property_contents2_item_box1 .content_desc{
    margin-top: 36px;
  }
  .property_contents2_item_box2{

  }
  .property_contents2_item_box2_img:before{

  }

  /*投資の不安を希望に変える、私たちのサポート*/
  .property_contents3_item{

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

  }
  .property_contents3_item_box1_img:before{
    padding-top: 500px;
  }
  .property_contents3_item_box2{
    margin-top: 40px;
  }
  .property_contents3_item_box2 .about_contents3_box2_num{

  }
  .property_contents3_item_box2 .about_contents3_box2_tt{

  }
  .property_contents3_item_box2 .content_desc{

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

  .property_contents3_item_box1_img:before{
    padding-top: 500px;
  }
}
@media (min-width:1200px){
  /* メイン部分 */
  .tt2.left{

  }
  .tt2.left .tt2_sub{
    margin-left: 0;
  }
  .property_contents1_wrap{

  }
  .property_contents1_wrap .tt2{
    margin-bottom: 61px;
  }
  .property_contents1_wrap .page_hdr_box1{
    width:42.76%;
    order: 2;
    padding-top: 0;
  }
  .property_contents1_wrap .page_hdr_box2{
    width: 49.01%;
    order: 1;
  }
  .property_contents1_wrap .page_hdr_box1_inner{

  }
  .property_contents1_wrap .page_hdr_box1_inner .top{

  }
  .property_contents1_wrap .page_hdr_box1_inner .btm{

  }

  /*あなたの投資を成功へ導く、3つの安心ポイント*/
  .property_contents2_wrap .tt2{
    margin-bottom: 68px;
  }
  .property_contents2_items{

  }
  .property_contents2_item{

  }
  .property_contents2_item_inner{

  }
  .property_contents2_item_box1{
    width: 55.4%;
    order: 1;
    margin-top: 0;
  }
  .property_contents2_item_tag{

  }
  .property_contents2_item_tag strong{

  }
  .property_contents2_item_tt{
    font-size: 28px;
  }
  .property_contents2_item_box1 .content_desc{

  }
  .property_contents2_item_box2{
    width: 36.08%;
    order: 2;
  }
  .property_contents2_item_box2_img:before{

  }

  /*投資の不安を希望に変える、私たちのサポート*/
  .property_contents3_item{

  }
  .property_contents3_item_box1{

  }
  .property_contents3_item_box1_img:before{

  }
  .property_contents3_item_box2{

  }
  .property_contents3_item_box2 .about_contents3_box2_num{

  }
  .property_contents3_item_box2 .about_contents3_box2_tt{

  }
  .property_contents3_item_box2 .content_desc{

  }
  /*投資の不安を希望に変える、私たちのサポート*/
  .property_contents3_wrap .tt2{
    margin-bottom: 66px;
  }
  .property_contents3_wrap .tt2_ja{
    letter-spacing: 0;
  }
  .property_contents3_item{

  }
  .property_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .property_contents3_item:nth-child(odd) .property_contents3_item_box1{
    order: 1;
  }
  .property_contents3_item:nth-child(odd) .property_contents3_item_box2{
    order: 2;
  }
  .property_contents3_item:nth-child(even) .property_contents3_item_box1{
    order: 2;
  }
  .property_contents3_item:nth-child(even) .property_contents3_item_box2{
    order: 1;
  }
  .property_contents3_item_box1{
    width: 50%;
  }
  .property_contents3_item_box1_img:before{
    padding-top: 580px;
  }
  .property_contents3_item_box2{
    width: 44.73%;
    padding-top: 57px;
    margin-top: 0;
  }
  .property_contents3_item_box2 .about_contents3_box2_num{

  }
  .property_contents3_item_box2 .about_contents3_box2_tt{
    line-height: 1.7em;
  }
  .property_contents3_item_box2 .about_contents3_box2_tt p{
    letter-spacing: 0.075em;
  }
  .property_contents3_item_box2 .content_desc{
    margin-top: 15px;
  }
}
@media (min-width:1470px){


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


}







/*******************************
*　事業内容
********************************/

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{

}


@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

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


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

  }
  .pg_service .section.sec1{

  }
  .pg_service .section.sec2{

  }

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


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


}

/* メイン部分 */
.service_contents_item{
  border-bottom: 1px solid #181818;
  padding-bottom: 30px;
}
.service_contents_item:last-child{
  border-bottom: none;
  padding-bottom: 0;
}
.service_contents_item:nth-child(n+2){
  padding-top: 30px;
}
.service_contents_item .page_hdr_box{

}
.service_contents_item .page_hdr_box1{

}
.service_contents_item .page_hdr_box2{

}
.service_contents_item .page_hdr_box1_img:before{
  padding-top: 77.41%;
}
.service_tt_outer{
  display: flex;
}
.service_tt{
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-bottom: 1px solid #181818;
  padding-bottom: 5px;
}
.service_tt_en{
  font-size: 28px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  border-bottom: 1px solid #181818;
  padding-bottom: 16px;
}
.service_tt_ja{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 5px;
}
.service_tt_sub{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  margin-top: 20px;
}
.service_contents_item .page_hdr_box2 .content_desc{
  margin-top: 30px;
}
.service_contents_item .page_hdr_box2 .read_more{

}

.service_contents_item_sub{
  margin-top: 40px;
}
.service_contents_item_sub_tt{
  text-align: center;
  border: 1px solid #181818;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}
.service_contents_item_sub_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service_contents_item_sub_item{
  width: 100%;
  padding-bottom: 30px;
  border-bottom: 1px solid #181818;
}
.service_contents_item_sub_item:last-child{
  border-bottom: none;
}
.service_contents_item_sub_item:nth-child(n+2){
  padding-top: 30px; 
}
.service_contents_item_sub_item_inner{

}
.service_contents_item_sub_item_tt{
  font-size: 17px;
  font-weight: 700;
  background: #181818;
  color: #fff;
  text-align: center;
  padding: 11px;
}
.service_contents_item_sub_item .content_desc{

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

}
@media (min-width:768px){
  /* メイン部分 */
  .service_contents_item{
    padding-bottom: 100px;
  }
  .service_contents_item:nth-child(n+2){
    padding-top: 100px;
  }
  .service_contents_item .page_hdr_box{

  }
  .service_contents_item .page_hdr_box1{

  }
  .service_contents_item .page_hdr_box2{

  }
  .service_contents_item .page_hdr_box1_img:before{

  }
  .service_tt{

  }
  .service_tt_en{
    font-size: 30px;
  }
  .service_tt_ja{
    font-size: 21px;
  }
  .service_tt_sub{
    font-size: 20px;
    margin-top: 30px;
  }
  .service_contents_item .page_hdr_box2 .content_desc{
    margin-top: 32px;
  }
  .service_contents_item .page_hdr_box2 .read_more{

  }

  .service_contents_item_sub{
    margin-top: 60px;
  }
  .service_contents_item_sub_tt{
    font-size: 22px;
  }
  .service_contents_item_sub_items{
    margin-top: 50px;
  }
  .service_contents_item_sub_item{

  }
  .service_contents_item_sub_item:nth-child(n+2){
    padding-top: 30px; 
  }
  .service_contents_item_sub_item_inner{
    height: 100%;
  }
  .service_contents_item_sub_item_tt{

  }
  .service_contents_item_sub_item .content_desc{

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


}
@media (min-width:1200px){
  /* メイン部分 */
  .service_contents_item{
    padding-bottom: 150px;
  }
  .service_contents_item:nth-child(n+2){
    padding-top: 150px;
  }
  .service_contents_item .page_hdr_box{

  }
  .service_contents_item .page_hdr_box1{
    width: 50.98%;
    order: 2;
  }
  .service_contents_item .page_hdr_box2{
    width: 42.76%;
    order: 1;
  }
  .service_contents_item .page_hdr_box1_img:before{

  }
  .service_tt{

  }
  .service_tt_en{
    font-size: 38px;
  }
  .service_tt_ja{

  }
  .service_tt_sub{
    font-size: 24px;
    margin-top: 44px;
  }
  .service_contents_item .page_hdr_box2 .content_desc{

  }
  .service_contents_item .page_hdr_box2 .read_more{

  }

  .service_contents_item_sub{
    margin-top: 80px;
  }
  .service_contents_item_sub_tt{
    font-size: 26px;
  }
  .service_contents_item_sub_items{
    margin-inline:-20px;
  }
  .service_contents_item_sub_item{
    width: 33.333%;
    padding-inline:20px;
    position: relative;
    padding-bottom: 0;
    border-bottom: 0;
  }
  .service_contents_item_sub_item:nth-child(n+2){
    padding-top: 0; 
  }
  .service_contents_item_sub_item:after{
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    background: #181818;
    position: absolute;
    top: 0;
    right: 0;
  }
  .service_contents_item_sub_item:last-child:after{
    display: none;
  }
  .service_contents_item_sub_item_inner{

  }
  .service_contents_item_sub_item_tt{

  }
  .service_contents_item_sub_item .content_desc{
    margin-top: 25px;
  }
}
@media (min-width:1470px){


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl p{
  letter-spacing: 0.05em;
}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #9e9c9c;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #f5f5f5;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
  font-weight: 500;
}

/* マップ */
.company_map{

}
* + .company_map{
  margin-top: 50px;
}
.company_map iframe{
  border: 0;
  width: 100%;
  height: 250px;
}
.gmap{
  margin-top: 40px;
}
.access_map iframe{
  width: 100%;
  height: 250px;
  border: none;
}

/* ギャラリー */
.company_gallery_items{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
* + .company_gallery_items{
  margin-top: 30px;
}
.company_gallery_item{
  width: 50%;
  padding: 0 5px;
}
.company_gallery_item:nth-child(n+3){
  margin-top: 10px;
}
.company_gallery_item_img{

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

.contact_h2{
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-bottom: 28px;
}

.contact_sub_tt {
  text-align: center;
  border: 1px solid #181818;
  padding: 10px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
}

.faq_items{
  margin-top: 49px;
}
.faq_item:nth-child(n+2){
  margin-top: 20px;
}
.faq_item_box{
  padding: 16px;
}
.faq_item_box.top{
  background: #181818;
  color: #fff;
}
.faq_item_box .right{
  font-weight: 500;
  padding-left: 16px;
}
.faq_item_box.top .right{
  font-size: 18px;
  font-weight: 500;
}
.faq_item_box.btm{
  background: #f5f5f5;
}
.faq_item_tt{

}
.faq_item_tt,
.faq_item_desc{
  display: flex;
  flex-wrap:nowrap;
}
.faq_item_box .left{
  font-size: 22px;
  font-weight: 900;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
.faq_item_box .right{

}
.faq_item_box.btm .content_desc{
  line-height: 1.875em;
  font-weight: 400;
}
@media (max-width:767px){
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .company_tbl .table_rows_th{
    border-right: 1px solid #9e9c9c;
  }
  .company_tbl .table_rows_td{
    border-left: 1px solid #9e9c9c;
  }
  .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #9e9c9c;
  }

  .faq_item_box.btm .content_desc{
    margin-top: 0;
  }
}
@media (min-width:768px){

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 200px;
    border-left: 0;
  }
  .company_tbl .table_rows_td{
    border-right: 0;
  }

  /* マップ */
  .company_map{

  }
  * + .company_map{
    margin-top: 50px;
  }
  .company_map iframe{
    height: 400px;
  }
  .gmap{
    margin-top: 58px;
  }
  .access_map iframe{
    height: 400px;
  }


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

  .contact_h2{
    font-size: 30px;
  }

  .contact_sub_tt{
    font-size: 24px;
  }

  .faq_items{
    margin-top: 49px;
  }
  .faq_item{

  }
  .faq_item:nth-child(n+2){
    margin-top: 20px;
  }
  .faq_item_box{

    padding: 19px 39px;
  }
  .faq_item_box .right{
    padding-left: 14px;
  }
  .faq_item_box.top{
    background: #181818;
    color: #fff;
  }
  .faq_item_box.top .right{

  }
  .faq_item_box.btm{
    padding-top: 28px;
  }
  .faq_item_tt{

  }
  .faq_item_tt,
  .faq_item_desc{
    display: flex;
    flex-wrap:nowrap;
  }
  .faq_item_box .left{
    font-size: 24px;
  }
  .faq_item_box .right{

  }
  .faq_item_box .content_desc{
    margin-top: 0;
  }
}
@media (min-width:1024px){
  .thanks_text{
    text-align: center;
  }

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

  /* 会社概要 */
  .company_tbl{

  }
  .company_tbl .table_rows_th,
  .company_tbl .table_rows_td{
    padding: 17px 30px 18px;
  }
  .company_tbl .table_rows_th{
    width: 300px;
  }
  .company_tbl .table_rows_td{
  }

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

  .gmap{

  }
  .access_map iframe{
    height: 450px;
  }

  .contact_h2{
    font-size: 38px;
  }

  .contact_sub_tt{
    font-size: 26px;
  }

  .faq_item{

  }
  .faq_item_box{

  }
  .faq_item_tt{

  }
  .faq_item_box .left{
    font-size: 30px;
  }
  .faq_item_box .right{

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


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


}



/* カテゴリNav */
.cmn_cat_nav{

}
.cmn_cat_nav .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.cmn_cat_nav .webgene-item{
  width: 50%;
  padding: 0 5px;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1.4285;
}
.cmn_cat_nav .webgene-item a{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 50px;
  padding: 2px 10px 3px;
  font-family: var(--font-gothic);
  color: var(--main-color);
  border: 1px solid var(--main-color);
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}

.cmn_cat_nav .webgene-item a:after{
  content: "→";
  font-size: 10px;
  font-family: var(--font-mincho);
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.cmn_cat_nav .webgene-item.on a,
.cmn_cat_nav .webgene-item a:hover{
  background: var(--main-color);
  color: #FFF;
}
.cmn_cat_nav .webgene-item a:hover:after{
  margin-right: -2px;
}

.cmn_cat_nav.color2 .webgene-item a{
  background: #b8d200;
  border-color: #b8d200;
  color: #FFF;
}
.cmn_cat_nav.color2 .webgene-item a:hover{
  background: var(--main-color);
  border-color: var(--main-color);
}
.cmn_cat_nav.color2 .webgene-item a:before{
  content: "";
  position: absolute;
  z-index: 1;
  border: 2px solid #FFF;
  inset: 0;
}

@media (max-width:767px){

  .cmn_cat_nav.col1_sp .webgene-item{
    width: 100%;
  }
  .cmn_cat_nav.col2_sp .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3_sp .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4_sp .webgene-item{
    width: 25%;
  }

  .cmn_cat_nav.txt_sm_sp .webgene-item{
    font-size: 10px;
  }

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    width: 50%;
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav .webgene-item a:after{
    font-size: 14px;
    right: 10px;
  }
  .cmn_cat_nav .webgene-item a:hover:after{
    margin-right: -5px;
  }
}
@media (min-width:1024px){

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

  .cmn_cat_nav{
    margin-left: -15px;
    margin-right: -15px;
  }
  .cmn_cat_nav .webgene-item{
    padding: 0 15px;
    margin: 12.5px 0;
    font-size: 14px;
  }
  .cmn_cat_nav .webgene-item a{

  }

  .cmn_cat_nav.col2 .webgene-item{
    width: 50%;
  }
  .cmn_cat_nav.col3 .webgene-item{
    width: 33.333%;
  }
  .cmn_cat_nav.col4 .webgene-item{
    width: 25%;
  }
  .cmn_cat_nav.col5 .webgene-item{
    width: 20%;
  }

}


/*******************************
*　記事一覧
********************************/

/* 一覧（サムネあり） */
.news_list_thumb{

}
* + .news_list_thumb{
  margin-top: 50px;
}
.posts_category_sp + .news_list_thumb{
  margin-top: 0;
}
.news_list_thumb .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
.news_list_thumb .webgene-item{
  width: 50%;
  padding: 0 5px;
}
.news_list_thumb .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.news_list_thumb .webgene-item{

}
.news_list_thumb .webgene-item .inner{
  display: block;
  position: relative;
  z-index: 1;
  color: #000;
  background: #e6e6e6;
}
.news_list_thumb .webgene-item .box1{

}
.news_list_thumb .webgene-item .box2{
  padding: 10px 10px;
}
.news_list_thumb .webgene-item .img{
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.news_list_thumb .webgene-item .img.img_fit:before{
  padding-top: 75%;
  padding-top: 67.92%;
}
.news_list_thumb .webgene-item .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5px;
}
.news_list_thumb .webgene-item .meta .category{
  font-size: 13px;
  font-weight: 500;
  background: #2850a1;
  color: #FFF;
  padding: 3px 8px;
  margin: 5px 0;
  margin-right: 10px;
}
.news_list_thumb .webgene-item .meta .date{
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-en);
  margin: 5px 0;
  /*margin-right: 10px;*/
}
.news_list_thumb .webgene-item .title{
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}


.news_list_thumb.col3{

}
.news_list_thumb.col4{

}

/*カテゴリ*/
.topics_cate{

}
.topics_cate .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.topics_cate .webgene-item{
  width: 100%;
}
.topics_cate .webgene-item a{

}
.topics_cate .webgene-item a.on{
  background: #f5f5f5; 
}

.home_contents5_wrap.topics_box{
  margin-top: 40px;
}
.home_contents5_wrap.topics_box .img:before{
  padding-top: 80%;
}
.home_contents5_wrap.topics_box .webgene-item .box2{
  margin-top: 13px;
}
.home_contents5_wrap.topics_box .category{
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  width: 138px;
  background: #181818;
  color: #fff;
  padding: 3px;
}
.home_contents5_wrap.topics_box .webgene-item .title{
  margin-top: 18px;
}

.home_contents5_wrap.topics_box .webgene-item:before{
  height: 100%;
}
.home_contents5_wrap.topics_box .webgene-item:nth-child(n+3){
  padding-top: 30px;
  margin-top: 30px;
}
.news_list .webgene-item:nth-child(n+3):before{
  content: "";
  height: calc(100% - 30px);
  top: 30px;
}

/*新着*/
.pg_news .news_list .webgene-item{
}
.pg_news .news_list .webgene-item:before{
  height: 100%;
}
@media (max-width:767px){
  .topics_cate{
    display: none;
  }

  .pg_news .news_list .webgene-item:nth-child(n+3):before{
    content: "";
    display: block;
    height: calc(100% - 20px);
    top: 20px;
  }
  .pg_news .news_list .webgene-item:nth-child(n+3){
    padding-top: 20px;
    margin-top: 20px;
  }
}
@media (min-width:768px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    width: 50%;
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item:nth-child(n+3){
    margin-top: 15px;
  }
  .news_list_thumb .webgene-item{

  }
  .news_list_thumb .webgene-item .inner{
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 10px;
  }
  .news_list_thumb .webgene-item .meta{
    margin-bottom: 5px;
  }
  .news_list_thumb .webgene-item .meta .category{
    font-size: 13px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .meta .date{
    font-size: 15px;
    /*margin-right: 10px;*/
  }
  .news_list_thumb .webgene-item .title{

  }


  /*カテゴリ*/
  .topics_cate{

  }
  .topics_box .news_list .webgene-item:before{
    height: 100%;
  }
  .topics_cate .webgene-blog{
    margin-inline:-13.5px;
  }
  .topics_cate .webgene-item{
    width: 50%;
    padding-inline:13.5px;
  }
  .topics_cate .webgene-item:nth-child(n+3){
    margin-top: 16px;
  }
  .topics_cate .webgene-item a{
    display: block;
    border: 1px solid #181818;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    position: relative;
    padding: 16px 25px;
  }
  .topics_cate .webgene-item a:hover{
    color: #b0b0b0;
  }
  .topics_cate .webgene-item a:after{
    content: "〉";
    display: block;
    width: 16px;
    height: 100%;
    background: #181818;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    padding-left: 6px;
  }

  .home_contents5_wrap.topics_box .webgene-item:nth-child(n+3){
    padding-top: 40px;
    margin-top: 40px;
  }
  .news_list .webgene-item:nth-child(n+3):before{
    content: "";
    height: calc(100% - 40px);
    top: 40px;
  }

  .pg_news .news_list .webgene-item:nth-child(n+3):before{
    content: "";
    display: block;
    height: calc(100% - 59px);
    top: 59px;
  }
  .pg_news .news_list .webgene-item:nth-child(n+3){
    padding-top: 59px;
    margin-top: 61px;
  }

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

  /* 一覧（サムネあり） */


  /* 3カラム */
  .news_list_thumb.col3 .webgene-item{
    width: 33.333%;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col3 .webgene-item:nth-child(n+4){
    margin-top: 15px;
  }

  /* 4カラム */
  .news_list_thumb.col4 .webgene-item{
    width: 25%;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list_thumb.col4 .webgene-item:nth-child(n+5){
    margin-top: 15px;
  }

  .home_contents5_wrap.topics_box{
    margin-top: 80px;
  }

  .home_contents5_wrap.topics_box .webgene-item:nth-child(n+3){
    padding-top: 0;
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+3):before{
    display: block;
    top: 0;
    height: 100%;
  }
  .news_list .webgene-item:nth-child(n+5):before{
    content: "";
    display: block;
    height: calc(100% - 83px);
    top: 83px;
  }
  .home_contents5_wrap.topics_box .webgene-item:nth-child(n+5){
    padding-top: 83px;
    margin-top: 79px;
  }

  /*新着*/
  .pg_news .news_list .webgene-item{
    width: 33.33%;
    padding: 0 20px 21px;
  }
  .pg_news .news_list .webgene-item:before{
    height: 100%;
  }
  .pg_news .news_list .webgene-item:nth-child(n+3):before{
    content: "";
    display: block;
    height: 100%;
    top: 0;
  }
  .pg_news .news_list .webgene-item:nth-child(n+4):before{
    content: "";
    display: block;
    height: calc(100% - 59px);
    top: 59px;
  }

  .pg_news .news_list .webgene-item:nth-child(n+3){
    padding-top: 0;
    margin-top:0;
  }
  .pg_news .news_list .webgene-item:nth-child(n+4){
    padding-top: 59px;
    margin-top: 61px;
  }
  .pg_news .news_list .webgene-item:nth-child(3n+1):not(:first-child):after{
    content: "";
    width: 400%;
  }
}
@media (min-width:1200px){

  /* 一覧（サムネあり） */
  .news_list_thumb{

  }
  * + .news_list_thumb{
    margin-top: 50px;
  }
  .news_list_thumb .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .news_list_thumb .webgene-item{
    padding: 0 7.5px;
  }
  .news_list_thumb .webgene-item .box1{

  }
  .news_list_thumb .webgene-item .box2{
    padding: 20px 25px;
  }

  .news_list_thumb .webgene-item .title{
    font-size: 16px;
    line-height: 1.875;
  }

  /*カテゴリ*/
  .topics_cate{

  }
  .topics_cate .webgene-blog{

  }
  .topics_cate .webgene-item{
    width: 25%;
  }
  .topics_cate .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .topics_cate .webgene-item a{

  }

  .home_contents5_wrap.topics_box{
    margin-top: 115px;
  }

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


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


}
@media (min-width:768px) and  (max-width:1024px){
  .news_list .webgene-item{
    padding-inline:15px;
  }
}

/*******************************
*　記事一覧(2カラム)
********************************/
.pg_news{
  padding-top: 0;
}
.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: #181818;
  color: #FFF;
  padding: 13px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

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

/* 詳細 */
.posts_detail{
  border: none;
  border-bottom: 1px solid #181818;
  padding: 0 0 30px;;
}
.posts_detail .webgene-item{

}
.posts_detail .meta{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom:none;
  padding-bottom: 5px;
  margin-bottom: 15px;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
  margin-right: 16px;
}
.posts_detail .meta .category{
  width: auto;
  background: #fff;
  border: 1px solid #181818;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  padding: 3px 16px;
}
.posts_detail .meta .date{
  font-size: 16px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
.posts_detail .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 11px;
}
.posts_detail .post_content{
  line-height: 2.25em;;
  letter-spacing: 0.065em;
  text-align: justify;
  word-break: break-all;
}
.posts_detail .thumb{
  margin-bottom: 10px;
}

.posts_back_list{

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

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


/* 動画 */
.post_video{

}
.post_video .responsive_video{
  margin-top: 15px;
}
.post_video .responsive_video:empty{
  display: none;
}


/*ぶろまるタイトル*/
.posts_detail .post_content h2 {
  font-size: 17px;
  color: #fff;
  font-weight: 500;
  background: #181818;
  padding: 9px 14px 20px;
  /* margin-bottom: 15px; */
  position: relative;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}
.posts_detail .post_content h2:after{
  content: "";
  display: block;
  width: 99.11%;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 0.5em;;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
/* コピー用 */
@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: 0;
  }
  .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: 0 0 71px;
  }
  .posts_detail .webgene-item{

  }
  .posts_detail .meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 0;
    margin-bottom: 13px;
  }
  .posts_detail .meta .category{
    width: auto;
    padding: 3px 27px;
    margin-right: 21px;
  }
  .posts_detail .meta .category span{
    font-size: 13px;
    padding: 2px 5px;
  }
  .posts_detail .meta .date{
    width: auto;
    font-size: 16px;
  }
  .posts_detail .title{
    font-size: 20px;
  }
  .posts_detail .post_content{
    padding: 0;
  }
  .posts_detail .thumb{
    margin-bottom: 20px;
  }

  .pg_topicsDetail .read_more{
    margin-top: 74px;
  }
  .pg_news .read_more{
    margin-top: 55px;
  }
}
@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: 0;
  }

  .posts_layout_box1{
    width: 74.01%;
  }
  .posts_layout_box2{
    width: 19.73%;
    margin-top: 0;
  }

}



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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

.contact_info_wrap{
  background: #EEE;
  color: #FFF;
  padding: 30px 25px 20px;
  margin-bottom: 45px;
}
.contact_info_tt{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-align: center;
  margin-bottom: 15px;
  color: #111;
}
.contact_info_box{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: #FFF;
  color: #181818;
  padding: 25px 10px 25px 30px;
}
.contact_info_tel{
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact_info_tel_icon{
  background: #b1c274;
  color: #FFF;
  border-radius: 5px;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 16px;
  margin-right: 20px;
}
.contact_info_tel_link{
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
}
.contact_info_txt{
  font-weight: 700;
  margin-left: 0;
  letter-spacing: 0.16em;
}

@media (max-width:1023px){

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
  .contact_info_tt {
    font-size: 18px;
  }
  .contact_info_tel_link{
    font-size: 30px;
  }
}
@media (max-width:767px){

  .contact_info_wrap{
    margin-bottom: 50px;
    padding: 15px 10px;
  }
  .contact_info_box{
    padding: 20px 10px;
  }
  .contact_info_tt {
    font-size: 16px;
  }
  .contact_info_tel_icon{
    font-size: 14px;
    margin-right:5px;
  }
  .contact_info_tel_link{
    font-size: 24px;
  }
  .contact_info_txt{
    margin-left:0;
    margin-top: 5px;
    font-size: 10px;
  }

  .contact_info_box{
    flex-wrap: wrap;
  }
  .contact_info_tel{
    width: 100%;
  }
}


.contact_tt {
  font-size: 26px;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 0.16em;
}
.contact_tt.privacy{
  font-size: 21px;
  letter-spacing: 0.2em;
  font-family: "Noto Sans JP";
  font-weight: 500;
}

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 16px 15px 16px 20px;
  background: #f5f5f5;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: #181818;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #ffffff;
  color: #d36060;
  border: 1px solid #181818;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 34px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  font-weight: 500;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #aba197;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-align: left;
  border: 1px solid currentColor;
  background: #181818;
  color: #fff;
  border-radius: 30px;
  padding: 21px 31px;
  margin: 4px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
}
.pg_contact .formBtn.formSend:hover{
  background: #fff;
  color: #181818;
  border: 1px solid #181818;
}
.pg_contact .formBtn.formSend:after{
  content: "〉";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 34px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  width: 26px;
  aspect-ratio: 1;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all .2s;
}
.pg_contact .formBtn.formSend:hover:after{
  border: 1px solid #181818;
}

.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 31px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

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


/* プライバシー */
.pg_contact .section.sec2{
  padding: 120px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #181818;
}
.privacy_txt{

  line-height: 1.875;
  text-align: justify;
}
privacy_txt p{
  letter-spacing: 0.04em;
}

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

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

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

.contact_tt.privacy {
  margin-bottom: 46px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .d-inline-block {
  vertical-align: middle;
}
.privacy_item_box {
  padding: 30px 43px 30px 24px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #bfbfbf;
  margin-top: 0;
  color: #000000;
  margin-top: 55px;
  margin-bottom: 20px;
}



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


  .privacy_ttl{
    font-size: 18px;
  }

}

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

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

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

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


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

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

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

  .privacy_item_box{
    padding: 20px 10px;
  }
}

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

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


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@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{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}
