@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: "Oswald", sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
body{
  font-family:  'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.075em;
  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.075em;*/
  letter-spacing: inherit;
}
p{

}
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;*/
  color: var(--main-color);
}
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;
}



/*******************************
*　ヘッダー
********************************/
body{
  /* ヘッダーの高さに応じて */
  padding-top: 10px;
}

.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: var(--logo-height);
  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;
}

.tel_popup{
  display: none;
}
.tel_bnr{
  margin-top: 20px;
}
.modaal-outer-wrapper .modaal-container{
  color: #fff;
  background: linear-gradient(90deg, rgba(27, 83, 166, 1) 55%, rgba(27, 109, 171, 1) 86%, rgba(32, 143, 177, 1) 100%);
}

@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 20px 20px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .sns_items,
  .hdr_link_btn{
    display: none;
  }

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

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

    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 30px;
  }
  .header_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
    padding: 26px 0 20px;
  }

  .hdr1{
    padding: 0 15px 0;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_link_btn{
    display: block;
    width: 150px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 0;
  }
  .hdr_link_btn:hover{
    background: #1b5aa7;
    color: #fff;
  }
  .hdr_link_btn.contact{
    width: 180px;
  }
  .hdr_link_btn.contact p{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hdr_link_btn.contact p:before{
    content:"\f003";
    font-family: "fontAwesome";
    margin-right: 5px;
  }
  .hdr_link_btn p{
    letter-spacing: 0;
  }
  .sns_items{
    width: 154px;    
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 22px;
  }
  .sns_items:after{
    content: "";
    display: block;
    height: 63px;;
    border-left: 1px solid #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: rgba(0,0,0,0.3);
  }
  .header.slim .header_inner{
    padding: 16px 0;
  }
  .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;
  }

  .links_icons{
    display: flex;
  }
  .links_icons .hdr_link_btn{
    width: 70px;
    font-size: 24px;
    line-height: 1;
    margin: 0 5px;
  }

  .tel_popup_txt,
  .tel_popup_txt1,
  .tel_popup_txt2{
    text-align: center;
  }
  .tel_popup_txt{
    font-size: 20px;
    font-weight: 500;
  }
  .tel_popup_txt1{
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-en);
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
  }
  .tel_popup_txt2{
    font-size: 18px;
    font-weight: 400;
    padding-top: 20px;
  }

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

  .header{
    --logo-height: 48px;
  }

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_link_btn.contact{
    width: 160px;
  }

  .modaal-outer-wrapper .modaal-container {
    width: 50%; 
  }
  .tel_popup_txt{
    font-size: 28px;
  }
  .tel_popup_txt1{
    font-size: 32px;
    font-weight: 400;
    font-family: var(--font-en);
  }
  .tel_popup_txt2{
    font-size: 20px;
    font-weight: 400;
  }
}
@media (min-width:1200px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  .tel_popup_txt{
    font-size: 28px;
  }
  .tel_popup_txt1{
    font-size: 42px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
}
.mv_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bk.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .3;
}

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

}
.mv_txt_p2{

}

.mv_inner{
  width: 100%;
  position: absolute;
  bottom: 7.142%;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.mv_text_box1{
  font-size: 38px;
  font-weight: 500;
  line-height: 1.5em;
  color: #fff;
}
.mv_text_box1 p{
  letter-spacing: 0;
}
.mv_text_box2{
  font-size: 16px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 17px;
}
.mv_text_box2 p{
  background: #fff;
  color: #181818;
  letter-spacing: 0;
  padding: 5px 9px;
}
.mv_text_box2 p + p{
  margin-top: 5px;
}

/* スライダーの場合 */
.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: 600px;
  }

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

  }
  .mv_txt_p2{

  }

  .mv_inner{

  }
  .mv_text_box1{
    font-size: 60px;
  }
  .mv_text_box1 p{

  }
  .mv_text_box2{
    font-size: 18px;
  }
  .mv_text_box2 p{

  }

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


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

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

  }
  .mv_txt_p2{

  }


  .mv_inner{

  }
  .mv_text_box1{
    font-size: 60px;
  }
  .mv_text_box1 p{

  }
  .mv_text_box2{
    font-size: 24px;
  }
  .mv_text_box2 p{

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

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

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

  }
  .mv_txt_p2{

  }

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

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

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

}


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

/* サイドバー */
.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:10px;
}
.pg_header_mv_img{
  position: relative;
  z-index: 1;
}
.pg_header_img:before{
  padding-top: 150px;
}
.pg_header_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(/system_panel/uploads/images/bk.png);
  background-repeat: repeat;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .3;
}
.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;
}




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

  .pg_header_title_txt{

  }

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

  .pg_header_title_txt{

  }

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

  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_img:before{
    padding-top: 600px;
  }

  .pg_header_title_txt{

  }

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

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

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

}


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

.footer{

  margin-top: 80px;
}
.body_home .footer{
  margin-top: 0;
}

.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;
  border-top: 1px solid #fff;
  color: #fff;
  padding: 8px 0;
}

/* 追尾スマホメニュー */
.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #7ecef4;
  /*z-index: 1000;*/
  z-index: 5; /* チャットボットがある場合 */
  flex-wrap: wrap;
}
.footer_fix > a{
  font-size: 12px;
  text-align: center;
  display: block;
  padding: 10px 5px 5px;
  background: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 76%;
  border-right: 1px solid #1b53a6;
}
.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: 4;
}
.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_img:before{
  padding-top: 250px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.ftr_contact_outer{
  background: #1b53a6;
  padding-bottom: 50px;
  border-bottom: 1px solid #fff;
}
.ftr_contact_inner{
  background: #fff;
  padding: 44px 16px 30px;
  margin-top: -60px;
  position: relative;
  z-index: 1;
}
.ftr_contact_head{
  text-align: center;
}
.ftr_contact_txt1{
  font-size: 45px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  color: #1b53a6;
}
.ftr_contact_txt2{
  font-size: 18px;
  font-weight: 400;
  font-family: var(--font-ja);
  letter-spacing: 0;
  margin-top: 19px;
}
.ftr_contact_head .content_desc{

  font-weight: 400;
  line-height: 1.875em;
  text-align: center;
  margin-top: 9px;
}
.ftr_contact_head .content_desc p{
  letter-spacing: 0;
}
.ftr_contact_btm{
  margin-top: 39px;
}
.ftr_contact_btm{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.ftr_contact_btm .read_more a:hover{
  color: #fff;
}
.ftr_contact_btm_item{
  max-width: 287px;
  width: 100%;
}
.ftr_contact_btm_item .read_more a:hover{
  color: #181818;
}
.ftr_contact_btm_item_txt1{
  text-align: center;
}
.ftr_contact_btm_item_txt1 p{
  max-width: 287px;
  width: 100%;
  display: inline-block;
  background: #d7eafc;
  padding: 5px 0;
  letter-spacing: 0;
  letter-spacing: 0;
  letter-spacing: 0;
}
.link_a_inner{
  display: flex;
  align-items: center;
}
.line_icon{
  margin-left: 16px;
}
.read_more.bk a:before,
.ftr_contact_btm .read_more a:before{
  background-image: url(/system_panel/uploads/images/as.png);
}
.ftr_contact_btm_item + .ftr_contact_btm_item{
  margin-top: 40px;;
}

.ftr_1{
  background: #1b53a6;;
  padding-top:50px;
}
.ftr_1_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 40px;
}
.ftr_1_box1{
  width: 100%;
}
.ftr_logo{

}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.25em;
  margin-top: 30px;
  color: #fff;
}

.ftr_add p{
  letter-spacing: 0.05em;
}
.ftr_1_box2{
  width: 100%;
}
.link_2{
  display: block;
  width: 210px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #181818;
  background: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 5px;
  margin-left: 10px;
  margin-right: 10px;
  padding: 9px;
  transition: all .2s;
}
.link_2:hover{
  background: #2fb5b1;
  color: #fff;
}
.ftr_links{

}
.ftr_link{

}

.ftr_add_item{
  display: flex;
  align-items: center;
}
.ftr_add_item1{
  width: 75px;
  position: relative;
  margin-right: 10px;
}
.ftr_add_item1:after{
  content: "";
  display: block;
  height: 16px;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
@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_1_box1{
    text-align: center;
  }
  .ftr_links{
    display: none;
  }
  .link_2{
    margin-top: 30px;
    margin-inline:auto;
  }

  .ftr_add_item{
    width: 265px;
    margin-inline: auto;
  }
  .ftr_add_item1{
    text-align: left;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 100px;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_outer{
    padding-bottom: 80px;
  }
  .ftr_contact_img:before{   
    padding-top: 500px;
  }
  .ftr_contact_inner{
    margin-top: -120px;
    padding: 34px 16px 50px;
  }
  .ftr_contact_head{

  }
  .ftr_contact_txt1{
    font-size:80px;;
  }
  .ftr_contact_txt2{
    font-size: 20px;
  }
  .ftr_contact_btm{

  }
  .ftr_contact_btm_item{
    margin-inline:16px;
  }
  .ftr_contact_btm_txt1{

  }
  .ftr_contact_btm_txt1 p{

  }
  .ftr_contact_btm .read_more{
    margin-top: 26px;
  }
  .ftr_contact_btm_item + .ftr_contact_btm_item{
    margin-top: 0;
  }

  .ftr_1{
    padding-top: 102px;
  }
  .ftr_1_box{
    padding-bottom: 129px;
  }
  .ftr_1_box1{
    width: 38.67%;
  }
  .ftr_logo{

  }
  .ftr_add{
    margin-top: 52px;
  }
  .ftr_1_box2{
    width: 60.46%;
  }
  .link_2{
    margin-left: auto;
  }
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: 63px;
  }
  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 0 5px;
  }
  .ftr_link:last-child{
    padding-right: 19px;
  }
  .ftr_link:hover{
    color: #fff;
    opacity: 0.5;
  }
  .ftr_link p{
    letter-spacing: 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }
  .body_home .footer{
    margin-top: 0;
  }

  .ftr_copy{
    text-align: right;
    padding: 15px 0;
  }

  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_1_box2{
    width: 63.46%;
  }
  .link_2{

  }
  .ftr_links{

  }
  .ftr_link{
    padding: 0 24px;
  }
}
@media (min-width:1200px){
  .ftr_contact_wrap{

  }
  .ftr_contact_img:before{
    padding-top: 500px;
  }
  .ftr_contact_inner{
    margin-top: -120px;
  }
}
@media (min-width:1470px){

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

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

}

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


/* セクション */
.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{

}


/* テーブル用 */
.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: #FFF;
  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: #1696ae;
  color: #fff;
}
.webgene-pagination li.next a:after{
  content: "\f101";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-left: 10px;
}
.webgene-pagination li.prev a:before{
  content: "\f100";
  font-family: 'FontAwesome';
  font-weight: 900;
  display: inline-block;
  margin-right: 10px;
}

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: inherit;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en);
  line-height: 1.2;
  text-align: center;
  border: none;
  background: none;
  /* border-radius: 27px; */
  color: #181818;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.read_more.br a,
.read_more.wh a{
  color: #fff;
}
.read_more a p{
  white-space: nowrap;
  /*letter-spacing: 0;*/
  letter-spacing: 0.05em;
  padding-left: 20px;
}
.read_more a:before{
  content: "";
  width: 51px;
  aspect-ratio:51 / 42;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: relative;
  z-index: 1;
  top: auto;
  right: 0;
  transition: transform .2s;
}
.read_more a:hover{
  color: #181818;
  background:none;
}
.home_sec6_bnr_box1 .read_more a:hover{
  color: #fff;
}
.read_more a:hover:before{
  transform: translateX(10px);
}


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

/* 文章 */
.cmn_txt{
  font-size: 16px;
  line-height: 1.875;
  text-align: justify;
}

/* swiper */
.swiper-pagination{
  position: static;
  margin-top: 5px;
}
.swiper-pagination-bullet{
  background-color: var(--main-color);
}
.swiper-pagination-bullet-active{
  background-color: var(--sub-color);
}



@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: inherit;
    font-size: 22px;
    padding: 0;
    margin: 0;
  }
  .read_more a:after{
    right: 18px;
  }

  /* 見出し */



  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }


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

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


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


  /* 文章 */
  .cmn_txt{
    font-size: 16px;
    line-height: 2.25;
  }


  .table_rows_th{
    width: 285px;
  }
  .table_rows_td{

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

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

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

}



/*******************************
*　HOME
********************************/
.body_home{
  position: relative;
  background: linear-gradient(90deg, rgba(27, 83, 166, 1) 55%, rgba(27, 109, 171, 1) 86%, rgba(32, 143, 177, 1) 100%);
}
.body_home:before{
  content: "";
  display: block;
  width: 100%;
  height: 50vh;
  background: #fff;
  position: absolute;
  top: -10px;;
  left: 0;
}
.gjs-dashed .pg_home{
  color: #181818;
}
.pg_home{

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

}
.pg_home .section.sec3{
  padding-top: 23px;
  padding-bottom: 100px;
  position: relative;
}
.pg_home .section.sec4{
  position: relative;
  padding-top: 0;
}
.pg_home .section.sec4:before{
  content: "";
  display: block;
  width: 1920px;
  width: 101%;
  aspect-ratio:1920 / 194;
  background-image: url(/system_panel/uploads/images/top.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.pg_home .section.sec4:after{
  content: "";
  display: block;
  width: 383px;
  aspect-ratio:1920 / 194;
  background-image: url(/system_panel/uploads/images/bottom.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform:translateX(-50%);
  z-index: 2;
}
.pg_home .section.sec5{

}
.pg_home .section.sec6{
  background: #fff;
  padding-bottom: 80px;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

/*sec6*/
.home_sec6_bnr{

}
.home_sec6_bnr_inner{

}
.home_sec6_bnr_box1{

}
.home_sec6_bnr_box1_tt1{

}
.home_sec6_bnr_box1_h2{

}
.home_sec6_bnr_box1 .content_desc{

}
.home_sec6_bnr_box1 .content_desc p{

}
.home_sec6_bnr_img{

}
@media (max-width:767px){
  .pg_home .section.sec4:before{
    width: 405px;

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

  .pg_home .section.sec1{
    padding-top: 113px;
  }
  .pg_home .section.sec2{
    padding-top: 60px;
  }
  .pg_home .section.sec3{
    position: relative;
    z-index: 3;
  }
  .pg_home .section.sec4{
    margin-top: -80px;
    padding-bottom: 0;
  }
  .pg_home .section.sec4:after{
    width: 1920px;
    width: 101%;
  }
  .pg_home .section.sec5{
    padding-top: 0;
    padding-bottom: 120px;
  }
  .pg_home .section.sec6{
    padding-top: 200px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec4{
    margin-top: -185px;
  }

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


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


}

/*main*/
.pos{
  position: absolute;
  pointer-events: none;
}
.car1{
  width: 71.35%;
  aspect-ratio: 685 / 396;
  left: 0;
  bottom: -6rem;
  z-index: 2;
}
.car2 {
  width: 41.44%;
  aspect-ratio: 527 / 524;
  right: -2rem;
  bottom: -1.5rem;
  z-index: 3;
}


/*sec1*/

.home_sec1_wrap{

}
.sec_head{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
}
.sec_head_box1{
  width: 100%;
}
.sec_head_en{
  font-size: 40px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.sec_head_en p{
  letter-spacing: 0;
}
.sec_head_box2{
  width: 100%;
}
.sec_head_ja{
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #fff;
  padding-bottom: 5px;
}
.gjs-dashed .sec_head,
.gjs-dashed .home_sec1_wrap .sec_sub_tt,
.gjs-dashed .sec_head_ja{
  color: #181818;
}
.sec_sub_tt{
  font-size: 24px;
  font-weight: 500;
  line-height:1.45em;
  color: #fff;
}
.sec_sub_tt p{
  letter-spacing: 0;
}
.home_sec1_wrap .sec_sub_tt{
  color: #fff;
  margin-top: 20px;
}
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height:2.25em;
  text-align: justify;
}
.content_desc p{
  letter-spacing: 0
}
.home_sec1_wrap .content_desc{
  color: #fff;
  margin-top: 14px;
}
.gjs-dashed .home_sec1_wrap .content_desc{
  color: #181818;
}
.home_sales_tab{
  display: flex;
  flex-wrap: wrap;
  gap:16px 0;
  margin-top: 20px;
}
.home_sales_tab_item{
  width: 100%;
  background: #13b5b1;
  color: #fff;
  position: relative;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  padding: 14px 14px;
  transition: all .2s;
  cursor: pointer;
}
.home_sales_tab_item.active,
.home_sales_tab_item:hover{
  background: #fff;
  color: #13b5b1;
}
.home_sales_tab_item p{
  letter-spacing: 0;
}
.home_sales_tab_item:after{
  content: "\f054";
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 13px;
}
.home_sales_lists{
  margin-top: 40px;
}
.home_sales_list{
  display: none;
}
.home_sales_list.show,
.gjs-dashed .home_sales_list{
  display: block; 
}
.home_sales_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.home_sales_list .webgene-item{
  width: 100%;
}
.home_sales_list .webgene-item:nth-child(n+2){
  margin-top: 20px;
}
.home_sales_list .webgene-item a{
  background: #fff;
  display: block;
  border-radius: 20px;
  padding: 10px 10px 18px;
}
.home_sales_list .webgene-item .img:before{
  padding-top: 66.66%;
}
.home_sales_list .webgene-item .img{
  border-radius: 20px;
}
.home_sales_list .webgene-item .img img{
  border-radius: 20px;
}
.home_sales_list .box2{
  margin-top: 8px;
}
.home_sales_list .box2 .data{
  margin-top: 9px;
}
.home_sales_list .box2 .title{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.home_sales_list .box2 .price{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 7px;
}
.home_sales_list .box2 .price span{
  font-size: 21px;
  text-align: right;
}
.home_sales_list .box2 .price strong{
  color: #ea6767;
  font-weight: 700;
}
.home_sales_list .box2 .data{

}
.home_sales_list .box2 .data .item{
  background: #f5f5f5;
  display: flex;
  align-items:center;
  padding: 5px 0px 5px 19px;
}
.home_sales_list .box2 .data .item + .item{
  margin-top: 2px;
}
.home_sales_list .box2 .head{
  width: 133px;
  text-align: right;
}
.home_sales_list .box2 .data .item .head{
  width: 97px;
}
.home_sales_list .box2 .data .head{
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.075em;
  text-align: left;
}

/*sec2*/
.home_sec2_wrap{
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}
.sec_head_box2.with_btn .read_more a{
  color: #fff;
}

.home_sec2_box{
  margin-top: 40px;
}
.news_list{

}
.news_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
}
.news_list .webgene-item{
  width: 100%;
}
.news_list .webgene-item:nth-child(n+2){
  margin-top: 30px;;
}
.news_list .webgene-item a{
  position: relative;
  color: #fff;
}
.news_list .webgene-item a:hover{
  color: #13b5b1;
}
.news_list .webgene-item a:after{
  content: "";
  display: block;
  width: 51px;
  aspect-ratio: 51 / 42;
  background-image: url(/system_panel/uploads/images/circle.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  position: relative;
  z-index: 1;
  bottom: 0;
  right: 0;
  transition: transform .2s;
  margin-left: auto;
}
.news_list .webgene-item .box1{
  position: relative;
}
.news_list .webgene-item .box1:before{
  content: "";
  width: 96.85%;
  display: block;
  aspect-ratio: 339 / 235;
  background-image:url(/system_panel/uploads/images/news_bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -9px;
  right: 0;
}
.news_list .webgene-item .img{
  width: 96.85%;
  aspect-ratio: 339 / 235;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
.news_list .webgene-item .img img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url(/system_panel/uploads/images/news_mask.png);
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.news_list .webgene-item .box2{
  margin-top: 18px;
}
.news_list .webgene-item .meta{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.news_list .webgene-item .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.news_list .webgene-item .category{

}
.news_list .webgene-item .category span{
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #fff;
  border-radius: 14px;
  text-align: center;
  display: inline-block;
  padding: 3px 29px;
}
.news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.68em;
  padding-top: 9px;
}

/*sec3*/
.home_sec3_wrap{
  color: #fff;
}
.gjs-dashed .home_sec3_wrap{
  color: #181818;
}
.home_sec3_txt1{
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}
.home_sec3_txt2{
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin-top: 30px;
}
.home_sec3_txt2 p{
  display: inline-block;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #fff;
}
.home_sec3_h2{
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 30px;
}
.home_sec3_wrap .content_desc{
  margin-top: 28px;
}

/*sec4*/
.home_sec4_img{

}
.home_sec4_outer{
  color: #181818;
}
.home_sec4_img:before{
  padding-top: 1900px;
}
.home_sec4_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_sec4_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.sec_head.br{
  color: #1b53a6;
}
.sec_head.br .sec_head_ja{
  color: #1b53a6;
  border-bottom: 1px solid #1b53a6;
}
.home_sec4_outer .sec_sub_tt{
  color: #181818;
  margin-top: 23px;
}
.home_sec4_outer .content_desc{
  margin-top: 16px;
}

.home_sec4_items{
  display: flex;
  flex-wrap: wrap;
  gap:50px 0;
  margin-top: 40px;
}
.home_sec4_item{
  width: 100%;
  position: relative;
}
.home_sec4_item_en{
  font-size: 29px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  font-family: var(--font-en);
  position: absolute;
  top: -1.3rem;
  left: -6rem;
  transform: rotate(-82deg);
  transform-origin: bottom right;
}
.home_sec4_item_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  z-index: 2;
  padding: 0 36px;
}
.home_sec4_item_tt{
  font-size: 18px;
  font-weight: 700;
  line-height: 1.41em;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
}
.home_sec4_item_tt p{
  letter-spacing: 0.075em;
}
.home_sec4_item .content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.625em;
}
.home_sec4_item .content_desc p{
  letter-spacing: 0;
}
.home_sec4_item_img_outer{
  position: relative;
}
.home_sec4_item_img_outer:after{
  content: "";
  width: 98.14%;
  display: block;
  aspect-ratio: 530 / 400;
  background-image: url(/system_panel/uploads/images/mask2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -9px;
  right: 0;
}
.home_sec4_item_img_inner{
  width: 98.14%;
  aspect-ratio: 530 / 400;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
/*.home_sec4_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}*/
.home_sec4_item_img{
  max-width: none;
  position: absolute;
  z-index: 1;
  top: 0;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-image: url(/system_panel/uploads/images/mask1.png);
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.home_sec4_item_img img{
  position: relative;
  width: 100%;
}
.home_sec4_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}

/*sec5*/
.home_sec5_wrap{
  border-bottom: 1px solid #fff;
  padding-bottom: 30px;
}
.home_sec5_wrap .sec_head{
  margin-bottom: 40px;
}

/*sec6*/
.home_sec6_bnr{
  background: #1b53a6;
  padding: 10px;
}
.home_sec6_bnr_inner{
  border: 2px solid #fff;
  padding: 12px;
}
.home_sec6_bnr_box1{
  color: #fff;
}
.home_sec6_bnr_box1_tt1{
  font-size: 20px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0.05em;
}
.home_sec6_bnr_box1_h2{
  font-size: 24px;
  font-weight: 600;  
  letter-spacing: 0.05em;
  margin-top: 11px;
}
.home_sec6_bnr_box1 .content_desc{
  line-height: 1.68em;
  font-weight: 400;
  margin-top: 9px;
}
.home_sec6_bnr_box1 .content_desc p{
  letter-spacing: 0;
}
.home_sec6_bnr_img{
  text-align: center;
  margin-top: 30px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_sec4_item_en{
    font-size: 27px;
    left: -5.3rem;
  }
}
@media (min-width:768px){
  .car1 {
    width: 71.35%;
    aspect-ratio: 685 / 396;
    left: -17rem;
    bottom: -14rem;
  }
  .car2 {
    width: 27.44%;
    aspect-ratio: 527 / 524;
    right: -1rem;
    bottom: 4.5rem;
    z-index: 3;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .sec_head{
    flex-wrap: nowrap;
    align-items: flex-end;
  }
  .sec_head_box1{
    width: auto;
  }
  .sec_head_en{
    font-size: 50px;
    padding-right: 45px;
  }
  .sec_head_en p{

  }
  .sec_head_box2{

  }
  .sec_head_ja{
    font-size: 18px;
  }
  .sec_sub_tt{
    font-size: 30px;
  }
  .sec_sub_tt p{

  }
  .content_desc{

  }
  .content_desc p{

  }
  .home_sales_tab{
    gap: 18px 21px;
  }
  .home_sales_tab_item{
    width: calc(50% - 10.5px);
  }
  .home_sales_tab_item p{

  }
  .home_sales_tab_item:after{

  }
  .home_sales_lists{
    margin-top: 60px;
  }
  .home_sales_list{

  }
  .home_sales_list .webgene-blog{
    margin-inline:-15px;
  }
  .home_sales_list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .home_sales_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sales_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_sales_list .webgene-item a{

  }

  /*sec2*/
  .home_sec2_wrap{
    border-bottom: 1px solid #fff;
    padding-bottom: 53px;
  }
  .sec_head.with_btn{
    position: relative;
  }
  .sec_head_box2.with_btn{
    display: flex;
    flex-wrap: nowrap;

  }
  .sec_head_box2.with_btn .sec_head_ja{
    width: 100%;
  }
  .sec_head_box2.with_btn .read_more{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 0;
  }

  .home_sec2_box{
    margin-top: 60px;
  }
  .news_list{

  }
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .news_list .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .category span{

  }
  .news_list .webgene-item .title{

  }
  .home_sales_list .box2{

  }
  .home_sales_list .box2 .title{
    font-size: 18px;
  }
  .home_sales_list .box2 .price{
    font-size: 18px;
  }
  .home_sales_list .box2 .price span{
    font-size: 18px;
  }
  .home_sales_list .box2 .price strong{
    font-size: 21px;
  }
  .home_sales_list .box2 .data{

  }
  .home_sales_list .box2 .data .item{

  }
  .home_sales_list .box2 .data .item .head{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_txt1{
    font-size: 40px;
  }
  .home_sec3_txt2{
    font-size: 22px;
    margin-top: 59px;
  }
  .home_sec3_txt2 p{

  }
  .home_sec3_h2{
    font-size: 36px;
    margin-top: 46px;
  }
  .home_sec3_wrap .content_desc{

  }

  /*sec4*/
  .home_sec4_img{

  }
  .home_sec4_img:before{
    padding-top:3200px;
  }
  .home_sec4_outer{
    top: 50%;
  }
  .sec_head.br{

  }
  .sec_head.br .sec_head_ja{

  }
  .home_sec4_outer .sec_sub_tt{

  }
  .home_sec4_outer .content_desc{

  }

  .home_sec4_items{
    margin-top: 50px;
  }
  .home_sec4_item{

  }
  .home_sec4_item_en{
    font-size: 32px;
    left: -6.5rem;
  }
  .home_sec4_item_inner{
    padding: 0 77px;
  }
  .home_sec4_item_tt{
    font-size: 20px;
    padding-bottom: 23px;
  }
  .home_sec4_item .content_desc{

  }
  .content_desc p{

  }
  .home_sec4_item_img{

  }
  .home_sec4_item_img img{

  }

  /*sec5*/
  .home_sec5_wrap{
    padding-bottom: 50px;
  }
  .home_sec5_wrap .sec_head{
    margin-bottom: 50px;
  }

  /*sec6*/
  .home_sec6_bnr{

  }
  .home_sec6_bnr_inner{

  }
  .home_sec6_bnr_box1{

  }
  .home_sec6_bnr_box1_tt1{
    font-size: 20px;
  }
  .home_sec6_bnr_box1_h2{
    font-size: 22px;
  }
  .home_sec6_bnr_box1 .content_desc{

  }
  .home_sec6_bnr_box1 .content_desc p{

  }
  .home_sec6_bnr_img{

  }
}
@media (min-width:1024px){
  .car1{
    width: 71.35%;
    aspect-ratio: 685 / 396;
    left: -35rem;
    bottom: -13rem;
  }
  .car2{
    width: 27.44%;
    aspect-ratio:527 / 524;
    right: -1rem;
    bottom: 3.5rem;
    z-index: 3;
  }

  /*sec1*/
  .home_sec1_wrap{

  }
  .sec_head{
    flex-wrap: nowrap;
  }
  .sec_head_box1{

  }
  .sec_head_en{
    font-size: 60px;
  }
  .sec_head_en p{

  }
  .sec_head_box2{

  }
  .sec_head_ja{

  }
  .sec_sub_tt{
    font-size: 40px;
  }
  .sec_sub_tt p{

  }
  .content_desc{

  }
  .content_desc p{

  }
  .home_sales_tab{

  }
  .home_sales_tab_item{
    width: calc(25% - 15.75px);
  }
  .home_sales_tab_item p{

  }
  .home_sales_tab_item:after{

  }
  .home_sales_lists{

  }
  .home_sales_list{

  }
  .home_sales_list .webgene-blog{

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

  }

  .home_sales_list .box2{

  }
  .home_sales_list .box2 .title{
    font-size: 18px;
  }
  .home_sales_list .box2 .price{
    font-size: 18px;
  }
  .home_sales_list .box2 .price strong{
    font-size: 21px;
  }
  .home_sales_list .box2 .data{

  }
  .home_sales_list .box2 .data .item{

  }
  .home_sales_list .box2 .data .item .head{

  }

  /*sec2*/
  .news_list .webgene-blog{
    margin-inline:-15px;
  }
  .news_list .webgene-item{
    width: 33.333%;
    padding-inline:15px;
  }
  .news_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .news_list .webgene-item a{

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

  }
  .news_list .webgene-item .box2{

  }
  .news_list .webgene-item .date{

  }
  .news_list .webgene-item .category{

  }
  .news_list .webgene-item .category span{

  }
  .news_list .webgene-item .title{

  }

  /*sec3*/
  .home_sec3_wrap{

  }
  .home_sec3_txt1{
    font-size: 50px;
  }
  .home_sec3_txt2{
    font-size: 24px;
  }
  .home_sec3_txt2 p{

  }
  .home_sec3_h2{
    font-size: 40px;
  }
  .content_desc.center{
    text-align: center;
  }
  .home_sec3_wrap .content_desc{

  }

  /*sec4*/
  .home_sec4_img{

  }
  .home_sec4_img:before{
    padding-top: 1761px;
  }
  .home_sec4_outer{

  }
  .sec_head.br{

  }
  .sec_head.br .sec_head_ja{

  }
  .home_sec4_outer .sec_sub_tt{

  }
  .home_sec4_outer .content_desc{

  }

  .home_sec4_items{
    gap: 35px 30px;
  }
  .home_sec4_item{
    width: calc(50% - 15px);
  }
  .home_sec4_item_en{
    font-size: clamp(1.875rem, 1.813rem + 0.31vw, 2.188rem);
  }
  .home_sec4_item_inner{
    padding: 0 77px;
  }
  .home_sec4_item_tt{
    font-size: 24px;
  }
  .home_sec4_item .content_desc{

  }
  .content_desc p{

  }
  .home_sec4_item_img{

  }
  .home_sec4_item_img img{

  }

  /*sec6*/
  .home_sec6_bnr{
    padding: 20px;

  }
  .home_sec6_bnr_inner{
    position: relative;
  }
  .home_sec6_bnr_box1{
    width: 46.59%;
  }
  .home_sec6_bnr_box1_tt1{
    font-size: 20px;
  }
  .home_sec6_bnr_box1_h2{
    font-size: 24px;
  }
  .home_sec6_bnr_box1 .content_desc{

  }
  .home_sec6_bnr_box1 .content_desc p{

  } 
  .home_sec6_bnr_box1 .read_more{
    margin-top: 9px;
  }
  .home_sec6_bnr_img{
    text-align: left;
    width: 54.85%;
    position: absolute;
    top: 45%;
    right: -1.7rem;
    transform: translateY(-50%);
    margin-top: 0;
  }
}
@media (min-width:1200px){
  .car1{
    width: 69.35%;
    aspect-ratio: 685 / 396;
    left: -39rem;
    bottom: -10rem;
  }
  .car2{
    width: 27.44%;
    aspect-ratio:527 / 524;
    right: -4rem;
    bottom: 1.5rem;
    z-index: 3;
  }

}
@media (min-width:1470px){
  .car1{
    width: 55.35%;
    aspect-ratio: 685 / 396;
    left: -30rem;
    bottom: -8rem;
  }
  .car2{
    width: 27.44%;
    aspect-ratio:527 / 524;
    right: -4rem;
    bottom: -4.5rem;
    z-index: 3;
  }

}
@media (min-width:1720px){
  .car1{
    width:71.35%;;
    aspect-ratio:685 / 396;
    left: -53rem;
    bottom: -7rem;
  }

}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */
.search-title{
  display: none; 
}
.vehicles_cate input{
  display: none;
}

.vehicles_cate{
  margin-top: 40px;
}
.vehicles_cate .home_sales_tab_item{
  background: #1b53a6;
  color: #fff;
  border: 1px solid #1b53a6;
}
.vehicles_cate .home_sales_tab_item.active,
.vehicles_cate .home_sales_tab_item:hover{
  background: #fff;
  color: #1b53a6;
}
.home_sales_list.vehicles{
  margin-top: 40px;
}
.home_sales_list.vehicles .webgene-item a {
  border: 1px solid #1b53a6;    
}
.home_sales_list.vehicles .webgene-item .outer{
  position: relative;
}
.home_sales_list.vehicles .webgene-item .outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #1b53a6;
  border-radius: 20px;
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: -1;
}
@media (max-width:767px){
  .pg_vehicles .sec_head{
    margin-bottom: 30px;
  }
  .vehicles_cate{
    display: none;
  }
}
@media (min-width:768px){
  .vehicles_cate{
    margin-top: 78px;
  }
  .vehicles_cate .home_sales_tab{
    gap: 13px 21px;
  }
  .home_sales_list.vehicles{
    margin-top: 100px;
  }
  .home_sales_list.vehicles .webgene-item:nth-child(n+2){
    margin-top: 0;
  }
  .home_sales_list.vehicles .webgene-item:nth-child(n+3){
    margin-top: 30px;;
  }
}
@media (min-width:1024px){
  .home_sales_list.vehicles .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .home_sales_list.vehicles .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }
}
@media (min-width:1200px){


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


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


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


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

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


}


/* メイン部分 */





/* カテゴリ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%;
  }

}


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

/* 一覧（サムネあり） */
.body_column .sec_head{
  margin-bottom: 30px;
}

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

}

.news_list.kasou{

}
.news_list.kasou .webgene-item a{
  color: #181818;
}
.news_list.kasou .webgene-item a:hover{
  color: #13b5b1;;
}
.news_list.kasou .webgene-item .category span{
  border: 1px solid #000000;
}
.news_list.kasou .webgene-item .meta{
  border-bottom: 1px solid #000000;
}
.news_list.kasou .webgene-item a:after{
  background-image: url(/system_panel/uploads/images/as.png);
}

.column_detail{
  border-bottom: 1px solid #000;
  padding-bottom: 30px;
}
.column_detail .meta{
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.column_detail .meta .category{

}
.column_detail .meta .category span{
  font-size: 14px;
  font-weight: 400;
  border: 1px solid #000000;
  border-radius: 14px;
  text-align: center;
  display: inline-block;
  padding: 3px 25px;
  margin-right: 20px;
}
.column_detail .meta .date{
  font-size: 16px;
  font-weight: 400;
  font-family: var(--font-en);
  line-height: 1;
  letter-spacing: 0;
}
.column_detail .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0;
  border-bottom: 1px solid #181818;
  padding-bottom: 10px;
}
.column_detail .post_content{
  padding-top: 30px;
}
.column_detail .post_content h2,
.column_detail .post_content h3{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #1b53a6;
  color: #fff;
  padding: 10px;
  margin-bottom: 16px;
}
.column_detail .post_content img{
  border-radius: 20px;
}
.column_detail .post_content .txt{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.25em;
}

.column_detail .webgene-item .txt h3:not(:first-of-type){
  margin-top: 30px;
}
.column_detail .webgene-item .post_content img{
  margin-bottom: 30px;
}
@media (max-width:767px){

}
@media (min-width:768px){
  .body_columnDetail .section.sec1{
    padding-top: 81px;
  }

  .body_column .sec_head{
    margin-bottom: 50px;
  }
  /* 一覧（サムネあり） */
  .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{

  }

  .column_detail{
    border-bottom: 1px solid #000;
    padding-bottom: 50px;
  }
  .column_detail .meta{

  }
  .column_detail .meta .category{

  }
  .column_detail .meta .category span{
    margin-right: 61px;
  }
  .column_detail .meta .date{

  }
  .column_detail .title{
    font-size: 20px;
  }
  .column_detail .post_content{
    padding-top: 40px;
  }
  .column_detail .post_content h2,
  .column_detail .post_content h3{
    font-size: 20px;
    padding: 13px;
    margin-bottom: 25px;
  }
  .column_detail .post_content img{

  }
  .column_detail .post_content .txt{

  }

  .column_detail .webgene-item .txt h3:not(:first-of-type){
    margin-top: 50px;
  }
  .column_detail .webgene-item .post_content img{
    margin-bottom: 41px;
  }
  .body_columnDetail .pg_vehicles .read_more {
    margin-top: 51px;
  }
}
@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;
  }

  .news_list.kasou .webgene-pagination{
    margin-top: 53px;
  }
  .news_list.kasou .webgene-item:nth-child(n+4){
    margin-top: 50px;
  }

  .column_detail{

  }
  .column_detail .meta{

  }
  .column_detail .meta .category{

  }
  .column_detail .meta .category span{

  }
  .column_detail .meta .date{

  }
  .column_detail .title{

  }
  .column_detail .post_content{

  }
  .column_detail .post_content h2,
  .column_detail .post_content h3{

  }
  .column_detail .post_content img{

  }
  .column_detail .post_content .txt{

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



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


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


}


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

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

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

/* リスト */
.posts_list{

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

}


/* サイド */
.posts_side_wrap{

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

.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: 35px;
  line-height: 1.5;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

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

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

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

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

.posts_back_list{

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

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


/* 動画 */
.post_video{

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

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

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

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

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

  .posts_category_sp{
    display: none;
  }

  /* リスト */
  .posts_list{

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

  }

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

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

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


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

  /* リスト */
  .posts_list{

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

  }

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

  .pg_news{
    padding-top: 100px;
  }

}



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

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

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

/* メイン */
.gallery_main{

}
.gallery_main .img{
  background: #EEE;
}
.gallery_main .img.img_fit:before{
  padding-top: 75.03%;
}
.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: 75%;
}
.gallery_thumb .img.img_fit img{

}

.gallery_slide_prev,
.gallery_slide_next{
  font-size: 30px;
  color: #FFF;
  cursor: pointer;
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
}
.gallery_slide_prev{
  left: 10px;
}
.gallery_slide_next{
  right: 10px;
}


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


.top_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top_box1{
  width: 100%;
}
.top_box2{
  width: 100%;
  margin-top: 20px;
}
.property_tbl{
  width: 100%;
  table-layout: fixed;
  border: 1px solid #FFF;
  margin-top: 38px;
}
.property_head + .property_tbl{
  margin-top: 40px;
}
.property_tbl:first-child{
  margin-top: 0;
}
.property_tbl th,
.property_tbl td{
  border: 0;
  padding: 10px 10px;
  font-size: 16px;
  letter-spacing: 0.075em;
  font-weight: 500;
  line-height: 1.6;
  border: 1px solid #ababab;
}
.property_tbl th{
  background: #e5e5e5;
}
.detail_contact_btn{
  display: block;
  transition: all .2s;
  margin-top: 30px;
}
.detail_contact_btn:hover{
  transform: scale(1.02);
}

.property_detail{
  margin-top: 60px;
}
.btn_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 19px;
}
.btn_box .btn0{
  border-radius: 10px;
  border: 1px solid #1b53a6;
  letter-spacing: 0;
  padding: 11px 0;
  transition: all .2s;
}
.btn_box .btn0:hover{
  transform: scale(1.02);
}
.btn_box .btn1{
  text-align: center;
  width: 100%;
  max-width: 320px;
  background: #fff;
  color: #181818;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.btn_box .btn1:hover{
  /*  background: #1b53a6;
    color: #fff;*/
}
.btn_box .btn1.no1:before,
.btn_box .btn1.no2:before{
  content: "";
  display: block;
  width: 34px;
  aspect-ratio:34 / 30;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 20px;
}
.btn_box .btn1.no1:before{
  background-image: url(/system_panel/uploads/images/copy.png);
}
.btn_box .btn1.no2:before{
  background-image: url(/system_panel/uploads/images/down.png);
}
.btn_box .btn2{
  width: 100%;
  max-width: 443px;
  background: #1b53a6;
  color: #fff;
  font-weight: 600;
  padding-left: 14px;
  margin-top: 10px;
  position: relative;
}
.btn_box .btn2:after{
  content: "\f054";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%); 
}
.btn_box .btn2:hover{
  /*  background: #fff;
    color: #181818;*/
}

.property_detail .meta{
  margin-top: 30px;
}
.property_detail .meta .title{
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #121f39;
  padding-bottom: 10px;
}
.property_detail .meta .desc{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0em;
  line-height: 2.25em;
  padding-top: 14px;
}

.pg_vehicles .read_more a{
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.pg_vehicles .read_more a p{
  letter-spacing: 0.05em;
}
[name="property_name"], [name="property_price"] {
  border: 0 !important;
  pointer-events: none;
}

.property_contact_wrap .tt2{
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.025em;
}
/* コピー用 */
@media (max-width:374px){

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

}
@media (max-width:767px){
  .btn_box .btn1{
    max-width: inherit;
    margin-top: 10px;
  }
  .property_tbl th, .property_tbl td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .property_tbl tr:last-child td{
    border-bottom: 1px solid #ababab;
  }
}
@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: 100%;
  }
  .gallery_box2{
    width: 100%;
    margin-top: 7px;

    position: relative;
    z-index: 1;
    top: auto;
    bottom: auto;
    right: auto;
    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;
  }


  .property_detail{
    margin-top: 80px;
  }
  .top_box{

  }
  .top_box1{

  }
  .top_box2{

  }

  .property_tbl{
    margin-top: 49px;
  }
  .property_head + .property_tbl{
    margin-top: 40px;
  }
  .property_tbl th, .property_tbl td{
    font-size: 16px;
    line-height: 2;
    padding: 13px 15px;
  }
  .property_tbl th{
    border-right: 0;
  }
  .property_tbl td{
    border-left: 0;
    padding-left: 20px;
  }
  .detail_contact_btn{
    margin-top: 21px;
  }

  .btn_box{

  }
  .btn_box .btn1{
    text-align: center;
    width: 100%;
    max-width: 49%;
  }
  .btn_box .btn2 {
    width: 100%;
    max-width: inherit;
    margin-top: 10px;
  }

  .property_detail .meta{
    margin-top: 54px;
  }
  .property_detail .meta .title{
    font-size: 22px;
    padding-bottom: 18px;
  }
  .property_detail .meta .desc{

  }
  .pg_vehicles .read_more{
    margin-top: 60px;
  }
  .pg_vehicles .read_more a{
    font-size: 18px;
  }

  .property_contact_wrap .tt2{
    font-size: 22px;
  }
}    
@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;
  }

  .btn_box .btn1{
    text-align: center;
    width: 100%;
    max-width: 235px;
  }
  .btn_box .btn2 {
    width: 100%;
    max-width: 443px;
    margin-top: 0;
  }

  .top_box{

  }
  .top_box1{
    width: 57.2%;
  }
  .top_box2{
    width: 40.09%;
    margin-top: 0;
  }
  .property_tbl th{
    width: 255px;
  }
  .top_box2 .property_tbl th{
    width: 159px;
  }

  .property_contact_wrap .tt2{
    font-size: 35px;
  }
}
@media (min-width:1200px){
  .btn_box .btn1{
    text-align: center;
    width: 100%;
    max-width: 320px;
  }

}





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

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

@media (max-width:1023px){

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

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

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


}


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

/* フォーム */
.formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.formTh {
  font-weight: 500;
  padding: 17px 15px 17px 20px;
  background: #e5e5e5;
  letter-spacing: 0.08em;
}
.formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 3px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.formTd {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 16px;
}
.formTd input[type="text"],
.formTd input[type="tel"],
.formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  font-weight: 500;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formTd select{
  border-radius: 0;
}
.formTd input[name="zip1"]{
  max-width: 120px;
}
.formTd input[name="zip2"]{
  max-width: 150px;
}
.formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.formTd input[name="city"]{
  max-width: 425px;
}
.formTd .addArea + .addArea{
  margin-top: 8px;
}
.formTd .addArea .labelText02{
  width: 75px;
}
.formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.formWrap .text-center{
  padding-top: 40px;
}
.formWrap input[name="privacy"]{
  margin-right: 7px;
}
.formWrap .privacyLabel{
  font-size: 18px;
  font-weight: 600;
  display: inline;
  letter-spacing: 0.08em;
}
.formWrap .privacyLabel a{
  color: #1b53a6;
}
.formBtn.formSend {
  width: 100%;
  max-width: 356px;
  background: #1b53a6;
  color: #fff;
  font-weight: 600;
  padding-left: 14px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  border: none;
  cursor: pointer;
  text-align: left;
  border-radius: 10px;
  padding: 14px 15px;
  position: relative;
  border: 1px solid #1b53a6;
  transition: all .2s;
}
.formBtn.formSend:hover{
  background: #fff;
  color: #181818;
}
.formBtn.formSend:after{
  content:"\f054";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}
.formWrap label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0 15px;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
}
.radioArea .d-inline-block{
  margin-right: 40px;
}
.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.65em;
}
.privacy_item_box {
  padding: 32px 43px 30px 26px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #181818;
  margin-top: 0;
  color: #000000;
  margin-top: 58px;
}

.property_tbl td.right{
  text-align: right;
}
.property_tbl td strong{
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.075em;
  color: #d50000;
}
@media only screen and (min-width: 1024px){
  .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .property_tbl td strong{
    font-size: 24px;
  }
}


/* プライバシー */
.contact_tt{
  margin-bottom: 60px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 27px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 10px;
  margin-bottom: 12px;
  border-left: 6px solid #1696ae;
  letter-spacing: 0.04em;
}
.privacy_txt{
  font-weight: 500;
  letter-spacing: 0.04em;
  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 {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 47px;
}
.contact_tt.privacy br{
  display: none;
}
.formWrap .d-inline{
  display: inline-block!important;
}
.formWrap .d-inline-block {
  vertical-align: middle;
}


@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;
  }
  .formTh {
    padding: 5px 10px;
  }
  .formTd {
    font-size: 13px;
    padding: 10px;
  }
  .formTd input[name="zip1"] {
    width: 80px;
  }
  .formTd input[name="zip2"] {
    width: 100px;
  }
  .formTd select[name="pref"] {
    width: 155px;
  }
  .formTd input[type="text"]::placeholder,
  .formTd input[type="tel"]::placeholder,
  .formTd input[type="email"]::placeholder{
    font-size: 14px;
    letter-spacing: 0.01em;
  }
  .formWrap .text-center {
    padding-top: 25px;
  }
  .formWrap .privacyLabel {
    font-size: 15px;
  }

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

  .contact_tt.privacy br{
    display: block;
  }
  .contact_tt.privacy {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.2em;
    margin-bottom: 0;
  }
  .privacy_item {
    margin-top: 26px;
  }
  .contact_info_txt_1 {
    margin-bottom: 10px;
    padding-left: 0;
  }
  .formWrap .d-inline {
    display: block!important;
  }
  .formTd .addArea .labelText02 {
    display: block;
  }
  label.label.zipcode_i {
    padding: 7px 4px;
  }
  a.contact_info_txt_3 {
    width: 200px;
    margin: 10px 0;
  }

  .privacy_item_box{
    padding: 30px 10px; 
  }

  .radioArea .d-inline-block {
    width: 100%;
    margin-right: 0;
  }
  .contact_tt {
    margin-bottom: 20px;
  }



  .contact_info_bg {
    padding: 18px 10px;
  }

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

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

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


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


}
