@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Noto+Sans+JP:wght@100..900&display=swap');
:root {
  --main-color: #fe9737;
  --sub-color: #e7161a;
}
#root{
  overflow: hidden;
}

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

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

}

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

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

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

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

p,
h1, h2, h3, h4, h5, h6{
  margin: 0;
  letter-spacing: 0.075em;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

a{
  color: inherit;
  transition: 0.3s;
}
a:hover{
  color: var(--main-color);
  text-decoration: none;
  /*opacity: 0.7;*/
  /*color: inherit;*/
}
img{
  max-width: 100%;
  width: auto;
}

ul, ol, li{
  margin: 0;
  padding: 0;
  list-style: none;
}

.img_fit{
  position: relative;
}
.img_fit:before{
  content: "";
  display: block;
  padding-top: 100%;
}
.img_fit img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover';
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}

a.img_fit{
  display: block;
}
a .img.img_fit img{
  transition: 0.2s all;
}
a:hover .img.img_fit img{
  transform: scale(1.05);
}

/* 動画埋め込みのレスポンシブ対応 */
iframe{
  max-width: 100%;
}
.responsive_video { 
  position: relative; 
}

.responsive_video:before{
  content: "";
  display: block;
  padding-top:56.25%;
}
.responsive_video video, 
.responsive_video iframe, 
.responsive_video object, 
.responsive_video embed { 
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.gjs-dashed .responsive_video:before{
  display: none;
}
.gjs-dashed .responsive_video [data-gjs-type="video"]:before{
  content: "";
  display: block;
  padding-top:56.25%;
  pointer-events: none;
}


/* 指定デバイスのみで表示するclass */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1536px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .md:not(.pc){
    display: none!important;
  }
  .tb:not(.pc){
    display: none!important;
  }
  .sp:not(.pc){
    display: none!important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .pc:not(.md){
    display: none!important;
  }
  .tb:not(.md){
    display: none!important;
  }
  .sp:not(.md){
    display: none!important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .pc:not(.tb){
    display: none!important;
  }
  .md:not(.tb){
    display: none!important;
  }
  .sp:not(.tb){
    display: none!important;
  }
}
@media (max-width:767px){
  .pc:not(.sp){
    display: none!important;
  }
  .md:not(.sp){
    display: none!important;
  }
  .tb:not(.sp){
    display: none!important;
  }
}

/* 指定デバイスで改行を消す */
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}
@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}

/* 指定した行数での切り取り */
.txt_ellipsis_line1,
.txt_ellipsis_line2,
.txt_ellipsis_line3,
.txt_ellipsis_line4,
.txt_ellipsis_line5,
.txt_ellipsis_line6,
.txt_ellipsis_line7,
.txt_ellipsis_line8,
.txt_ellipsis_line9,
.txt_ellipsis_line10{
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.txt_ellipsis_line1{
  -webkit-line-clamp: 1;
}
.txt_ellipsis_line2{
  -webkit-line-clamp: 2;
}
.txt_ellipsis_line3{
  -webkit-line-clamp: 3;
}
.txt_ellipsis_line4{
  -webkit-line-clamp: 4;
}
.txt_ellipsis_line5{
  -webkit-line-clamp: 5;
}

/*******************************
*　ヘッダー
********************************/
.header{
  background: #181818;
}
.hdr1{
  display: flex;
  /*flex-wrap: wrap;*/
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
  background: #FFF;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_tel,
  .hdr_contact_btn{
    display: none;
  }
  .hdr_logo{
    display: block;
    width: 100px;
    margin: 0 auto;
  }
}
@media (min-width:768px){

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

  .hdr1{
    padding: 0 15px 0;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_contact_btn{
    display: block;
    width: 111px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    transition: all .2s;
    border: 1px solid transparent;
    padding: 25px 0 19px;
    margin-left: 30px;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    color: #181818;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before {
    content: "";
    display: block;
    width: 40px;
    height: 28px;
    background-image: url(/system_panel/uploads/images/mai_wh.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 15px;
  }
  .hdr_contact_btn:hover p:before{
    background-image: url(/system_panel/uploads/images/mail_bk.svg);
  }
  .hdr_sns_item {
    display: block;
  }
  .hdr_sns_item + .hdr_sns_item{
    margin-left: 15px;
  }
  .hdr_tel{
    font-size: 20px;
    font-weight: 400;
    font-family: "Anton", sans-serif;
    line-height: 1;
    margin-left: 44px;
  }
  .hdr_tel p{
    display: flex;
    align-items: center;
    letter-spacing: 0.1em;
  }
  .hdr_tel p:before{
    content: "";
    display: block;
    width: 40px;
    height: 28px;
    background-image: url(/system_panel/uploads/images/phone.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
  }
}
@media (min-width:1024px){
  .header{
    padding-left: 20px;
  }

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_tel{
    font-size: 30px;
  }
  .hdr_tel p{

  }
  .hdr_tel p:before{

  }
}
@media (min-width:1200px){
  .header{
    padding-left: 36px;
  }
  
  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }
  
  .hdr_tel{
    font-size: 20px;
    margin-left: 20px;
  }
  
  /* ヘッダースリム */
  .header.slim{

  }

}

@media (min-width:1200px){
  
}
@media (min-width:1536px){
 
  .hdr_tel{
    font-size: 30px;
    margin-left: 40px;
  }
}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_item_img.img_fit:before{
  padding-top: calc(100vh - 74px);
}
.mv_item_img.img_fit:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

/* MVテキスト */
.mv_txt{
  text-align: center;
  width: 100%;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #FFF;
  font-size: 44px;
  font-family: "Anton", sans-serif;
  font-weight: 400;

}
.mv_txt_p1{

}
.mv_txt_p2{

}

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

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

.gjs-dashed .mv_slider_item{
  background: #CCC;
  padding: 15px 15px;
}
@media (min-width:768px){

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

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

  }
  .mv_txt_p2{

  }

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


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

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

  }
  .mv_txt_p2{

  }

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

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

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

  }
  .mv_txt_p2{

  }

}


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

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 2;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

/* バナー */
.sidebar_bn{
  display: block;
}
.sidebar_bn img{
  width: 40px;
  transition: 0.2s all;
}
.sidebar_bn:hover{

}
.sidebar_bn:hover img{
  transform: scale(1.05);
  filter: brightness(1.05);
}


@media (min-width:768px){

  /* サイドバー */
  .sidebar{
    top: 50%;
  }

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: 60px;
  }


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

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

  /* バナー */
  .sidebar_bn{
  }
  .sidebar_bn img{
    width: auto;
  }

}


/*******************************
*　下層ヘッダー
********************************/
.pg_header{
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.pg_header_mv{
  /*height: 150px;*/
  /*overflow: hidden;*/
}
.pg_header_mv_img{

}
.pg_header_mv_img.img_fit:before{
  padding-top: 150px;
}
.pg_header_mv_img:after{
  content: "";
  background: rgba(0,0,0,0.3);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.pg_header_title{
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #fff;
  z-index: 3;
}
.pg_header_title_en{
  font-size: 40px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height:1;

}
.pg_header_title_h1{
  font-size: 18px;
  font-weight: 900;
}

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

  .pg_header_title{
  }
  .pg_header_title_en{
    font-size: 60px;
  }
  .pg_header_title_h1{
    font-size: 24px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 150px;
  }
  .pg_header_mv{
    /*height: 550px;*/
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }

  .pg_header_title{
  }
  .pg_header_title_en{
    font-size: 80px;
  }
  .pg_header_title_h1{
    font-size: 30px;
  }
}
@media (min-width:1200px){
  .pg_header_mv_img.img_fit:before{
    padding-top: 550px;
  }

}



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

.footer{
  margin-top: 50px;
}

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

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

}
.ftr1_box2{

}

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


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

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

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

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


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2{

}
.ftr_contact_box1 .content_desc{

}
.ftr_contact_box2{
  width: 100%;
}
.link_1{
  display: block;
  width: 100%;
  background: var(--main-color);
  color: #fff;
  border: 1px solid transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding: 24px 0px;
  margin-top: 30px;
}
.link_1:before{
  content: "";
  display: block;
  width: 28px;
  height: 18px;
  background-image: url(/system_panel/uploads/images/mai_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  transition: all .2s;
}
.link_1:hover{
  background: #fff;
  color: var(--main-color);
}
.link_1:hover:before{
  background-image: url(/system_panel/uploads/images/mail_or.svg);
}
.ftr_contact_box2_tel{
  text-align: center;
  margin-top: 30px;
}
.ftr_contact_box2_tel1{
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 10px;
}
.ftr_contact_box2_tel2{
  font-size: 36px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  letter-spacing: 0.1em;
  margin-top: 14px;
}
.ftr_contact_box2_tel2:hover{
  color: var(--main-color);
}
.ftr_contact_img{

}
.ftr_contact_img:before{
  padding-top:600px;
}
.ftr_contact_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.ftr_1{
  text-align: center;
  background-image: url(/system_panel/uploads/images/ftr_bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 50px;
}
.ftr_logo{

}
.ftr_add1{
  margin-top: 15px;
}
.ftr_txt{
  color: #181818;
  font-size: 16px;
  font-weight: 500;
}
.ftr_add2{
  width: 350px;
  margin: 0 auto;
  margin-top: 15px;
  padding: 0 30px;
}
.ftr_add2_item{
  display: flex;
  align-items: center;
}
.ftr_add2_item:nth-child(n+2){
  margin-top: 16px;
}
.ftr_add2_item1{
  text-align: left;
  width: 95px;
  border-right: 1px solid #181818;;
  line-height: 1;
}
.ftr_add2_item2{
  padding-left: 14px;
}
.ftr_add2 a{
  
}
.ftr_add2 a:hover{
  color: #FFF;
}

.ftr_sns{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.ftr_sns_item{
  margin: 0 10px;
}

.ftr_2{
  background: #fff;
  padding: 10px;
}
.ftr_links{

}
.ftr_link{

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

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

  body{
    padding-bottom: 56px;
  }

  .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{
    background-position: right 35% center;
    background-size: auto 100%;
    background-color: var(--main-color);
  }
  
  .ftr_2{
    display: none;
  }
  .ftr_copy{
    margin-top: 30px;
  }
  .ftr_add2{
    padding: 0 24px 0 70px;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1 .tt2.left{
    text-align: center;
    margin-bottom: 32px;
  }
  .ftr_contact_box1 .content_desc{
    text-align: center;
  }
  .ftr_contact_box2{
    width: 75%;
    margin: 30px auto 0;
  }
  .link_1{
    font-size: 20px;
  }
  .link_1:before{
    left: 60px;
  }
  .link_1:hover{

  }
  .ftr_contact_box2_tel{
    margin-top: 45px;
  }
  .ftr_contact_box2_tel1{
    font-size: 18px;
  }
  .ftr_contact_box2_tel2{
    font-size: 50px;
  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{
    padding-top: 600px;
  }
  .ftr_contact_img:after{

  }

  .ftr_1{
    padding-top: 70px;
  }
  .ftr_add2{
    padding: 0 0px 0 60px;
  }

  .ftr_2{
    padding: 13px;
    margin-top: 32px;
  }
  .ftr_links{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ftr_link{
    font-size: 15px;
    font-weight: 500;
    color: #181818;
    padding: 0 10px;
  }
  .ftr_copy{
    padding: 23px 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 200px;
  }

  .ftr_contact_wrap{

  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 46.26%;
  }
  .ftr_contact_box1 .tt2.left{
    text-align: left;
  }
  .ftr_contact_box1 .content_desc{
    text-align: justify;
  }
  .ftr_contact_box2{
    width: 52.51%;
    /*    padding-top: 37px;*/
    padding-top: 0;
    margin:0;
  }
  .link_1{

  }
  .link_1:before{

  }
  .link_1:hover{

  }
  .ftr_contact_box2_tel{
    text-align: left;
  }
  .ftr_contact_box2_tel1{
    font-size: 20px;
  }
  .ftr_contact_box2_tel2{
    font-size: 60px;
  }
  .ftr_contact_img{

  }
  .ftr_contact_img:before{
    padding-top: 514px;
  }
  .ftr_contact_img:after{
  }

  .ftr_2{

  }
  .ftr_links{

  }
  .ftr_link{
padding: 0 16px;
  }
}
@media (min-width:1200px){
  .ftr_contact_box1{
    width: 55.26%;
  }
  .ftr_contact_box2{
    width: 43.51%;
  }
}
@media (min-width:1366px){
  .ftr_contact_box1{
    width: 55.26%;
  }
  .ftr_contact_box2{
    width: 36.51%;
  }
}

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


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  width: 300px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  /*border-radius: 27px;*/
  color: #181818;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:27 / 5;
  background-image: url(/system_panel/uploads/images/arr_bk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more a:hover:after{
  background-image: url(/system_panel/uploads/images/arr_or.png);
}
.read_more a:hover{
  color: var(--main-color);
  background: #fff;
}
.read_more a:hover:after{
  margin-right: -5px;
}

.read_more_a.s{
  width: 180px;
  font-size: 12px;
  padding: 10px 20px;
}

/* 見出し */
.tt2{
  text-align: center;
  margin-bottom: 30px;
}
.tt2.left{
  text-align: left;
}
.tt2_en{
  font-size: 50px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  color: #fff;
}
.tt2_ja{
  font-size: 18px;
  font-weight: 900;
  margin-top: 5px;
}
.tt2_ja strong{
  font-weight: 900;
  font-family: "Anton", sans-serif;
  color: var(--main-color);
  line-height: 1;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}


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

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

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

}

.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
  text-align: justify;
}
@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: -130px;
  }

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 60px;
  }
  .tt2_ja{
    font-size: 20px;
    margin-top: 15px;
  }
  .tt2_ja strong{
    font-size: 30px;
  }

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


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

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

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 100px;
  }
  .tt2_ja{
    font-size: 28px;
    margin-top: 15px;
  }
  .tt2_ja.lg{
    font-size: 30px;
  }
  .tt2_ja strong{
    font-size: 50px;
  }

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


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

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

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

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

}

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

}


/*******************************
*　HOME
********************************/
.pg_home{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec1{
  position: relative;
}
.pg_home .section.sec2{
  /*background-color: #181818;*/
  position: relative;
  z-index: 1;
}
.pg_home .section.sec3{
  position: relative;
  z-index: 2;
  padding-top:90px;
}
.pg_home .section.sec4{
  position: relative;
  z-index: 5;
}
.pg_home .section.sec5{
  position: relative;
}
.pg_home .section.sec6{
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.pg_home .section.sec7{
  position: relative;
}
.pg_home .section.sec8{
  padding-top: 50px;
}

/*木*/
.tree{
  position: absolute;
  z-index: -1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.tree.pos1{
  background-image: url(/system_panel/uploads/images/s3.png);
  width: 31.87%;;
  aspect-ratio:612 / 912;
  top: -100px;
  left: 0;
}
.tree.pos2{
  background-image: url(/system_panel/uploads/images/tree2.png);
  width: 35.46%;;
  aspect-ratio:681 / 951;
  bottom: -560px;
  right: 0;
}
.tree.pos4{
  background-image: url(/system_panel/uploads/images/tree3.png);
  width: 21.66%;;
  aspect-ratio:416 / 624;
  top: 0px;
  right: 0;
}

@media (max-width:767px){
  
  .pg_home .section.sec2{
    background: none;
    padding-top: 110px;
  }
  .pg_home .section.sec5 .home_contents5_img_outer{
    opacity: 0;
  }
  .pg_home .section.sec6{
    padding-top: 30px;
  }
  .pg_home .section.sec6 .home_contents5_img_outer{
  
    
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .pg_home .section.sec6 .home_contents5_img{
    height: 100%;
  }
  .pg_home .section.sec6 .home_contents5_img:before{
    padding-top: 0;
    height: 100%;
  }
  
  .pg_home .section.sec1 .sec_title{
    margin-bottom: 20px;
  }
  .pg_home .section.sec4{
    padding-bottom: 0;
  }
  .pg_home .section.sec5{
    padding-bottom: 0;
    padding-top: 0;
  }
  
  .tree.pos1{
    width: 63%;
  }
  .tree.pos2{
    width: 63%;
    bottom: -155px;
  }
}
@media (min-width:768px){

  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 90px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    padding-bottom: 0;
    margin-top: 0;
  }
  .pg_home .section.sec6{
    padding-top: 38px;
  }
  .pg_home .section.sec7{
    padding-top: 70px;
  }
  .pg_home .section.sec8{

  }

  /*木*/
  .tree.pos1{
    top: -150px;
    left: 0;
  }
  .tree.pos2{
    bottom: -875px;
  }
  .tree.pos4{
    top: -350px;
  }
}
@media (min-width:1024px){
  .pg_home .section.sec1{

  }
  .pg_home .section.sec2{
    padding-top: 115px;
  }
  .pg_home .section.sec3{
    padding-top: 143px;
  }
  .pg_home .section.sec4{
    padding-top: 100px;
  }
  .pg_home .section.sec5{
    margin-top: -150px;
  }
  .pg_home .section.sec6{
    padding-top: 38px;
  }
  .pg_home .section.sec7{
    padding-top: 94px;
  }
  .pg_home .section.sec8{

  }

  /*木*/
  .tree.pos1{
    top: -433px;
    left: 0;
  }
  .tree.pos2{
    bottom: -300px;
  }
}
@media (min-width:1200px){
  /*木*/
  .tree.pos2{
    bottom: -300px;
  }
  
  .pg_home .section.sec8{
    padding-top: 100px;
  }

}
@media (min-width:1366px){
  /*木*/
  .tree.pos2{
    bottom: -560px;
  }
}

/*------メイン--------*/

/*見出し*/
.home_contents1_img{
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform:translateX(-50%);
}
.home_contents1_img:before{
  padding-top: 1537px;
}
.home_contents1_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.76);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  display: none;
}
.home_contents1_inner{
  position: relative;
  z-index: 1;
  padding-top: 50px;
}
.sec_title{
  text-align: center;

}
.sec_title_ja1{
  font-size: 18px;
  font-weight: 900;
}
.sec_title_ja2{
  font-size: 30px;  
  font-weight: 900;
}
.home_contents1_inner .content_desc{
  line-height: 2em;
}

/*Our Strengths*/
.home_contents2_wrap{

}
.home_contents2_wrap .tt2{
  margin-bottom: 50px;
}
.home_contents2_items{
  display: flex;
  flex-wrap: wrap;
}
.home_contents2_item{
  width: 100%;
}
.home_contents2_item:nth-child(n+2){
  margin-top: 40px;
}
.home_contents2_item_inner{

}
.home_contents2_item_num{
  font-size: 70px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
  position: absolute;
  bottom: -30px;
  left: 0;
  z-index: 2;
}
.home_contents2_item_img:before{
  padding-top: 69.56%;
}
.home_contents2_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  margin-top: 40px;
}
.home_contents2_item .content_desc{
  margin-top: 20px;
  padding: 0 6px 0 10px;
}

/*理想の一台との出会いも、​​​​​​​大切な一台との別れも*/
.home_contents3_wrap{
  display: flex;
  flex-wrap: wrap;
}
.home_contents3_box1{
  width: 100%;
}
.home_contents3_box1_img{

}
.home_contents3_box1_img:before{
  padding-top: 78.6%;
}
.home_contents3_box2{
  width: 100%;
  background: none;
  
  position: relative;
  z-index: 2;
  padding: 20px 0;
}
.overlay_tt{
  position: relative;
}
.overlay_tt_en{
  font-size: 60px;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1;
  color:rgba(254,151,55,0.38);
}
.overlay_tt_ja{
  font-size: 20px;
  font-weight: 900;
  position: absolute;
  top: 56%;
  left: 0;
  transform: translateY(-50%);
}
.home_contents3_box2 .content_desc{
  line-height: 2em;
  margin-top: 23px;
  position: relative;
  z-index: 1;
}
.home_contents3_box2 .read_more{

}

/*LINEUP*/
.home_contents4_wrap{

}
.home_contents4_hdr{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents4_hdr_box1{
  width: 100%;
}
.home_contents4_hdr_box2{
  width: 100%;
}
.home_contents4_hdr_box2 .read_more{

}

.home_contents4_outer{
  position: relative;
}
.home_contents4_inner{

}
.home_contents4_inner .webgene-blog{

}
.home_contents4_inner .webgene-item{

}
.home_contents4_inner .swiper-slide{

}
.home_contents4_inner .webgene-item a{

}
.home_contents4_inner .webgene-item .img{
  overflow: hidden;
}
.home_contents4_inner .webgene-item .img:before{
  padding-top: 70.21%;
}
.buyAndSell_contents2_box .webgene-item .box2,
.home_contents4_inner .webgene-item .box2{
  margin-top: 29px;
}
.buyAndSell_contents2_box .webgene-item .title,
.home_contents4_inner .webgene-item .title{
  font-size: 18px;
}
.buyAndSell_contents2_box .webgene-item .meta,
.home_contents4_inner .webgene-item .meta{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  line-height: 2.1875em;
  margin-top: 16px;
}
.home_contents4_inner .webgene-item .meta div{

}
.home_contents4_inner .webgene-item .price{

}
.home_contents4_inner .webgene-item .running{

}
.home_contents4_inner .webgene-item .date{

}
.home_contents4_inner .webgene-item .read_more,
.buyAndSell_contents2_box .webgene-item .read_more{
  margin-top: 10px;
}

.slide-prev, .slide-next{
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  transition: 0.2s all;
  cursor: pointer;
}
.slide-prev:hover,
.slide-next:hover{
  background: #fff;
  color: #000; 
}
.swiper-button-disabled{
  opacity: .2; 
  pointer-events: none;
}
.linup_arrow{
  display: flex;
  align-items: center;
}
.slide-next{
  margin-left: 38px;
}
.linup_arrow .slide-prev:before{
  content: "\f053";
  font-family: "fontAwesome";
  font-weight: 900;
}
.linup_arrow .slide-next:before{
  content: "\f054";
  font-family: "fontAwesome";
  font-weight: 900;
}

  
@media (min-width:768px){
  .slide-prev, .slide-next{
    width: 50px;
  }
}
@media (min-width:1200px){
  .slide-prev, .slide-next{
    width: 80px;
  }
}


/*service*/
.home_contents5_img{

}
.home_contents5_img_outer{
  position: relative;

}
.home_contents5_item_outer{
  padding: 0;
}
.home_contents5_inner{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_contents5_img_outer:before{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg,rgba(250, 252, 252, 0) 0%, rgba(24, 24, 24, 0.38) 11%, rgba(24, 24, 24, 0.67) 30%, rgba(24, 24, 24, 0.84) 51%, rgba(24, 24, 24, 1) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home_contents5_img_outer:after{
  content: "";
  display: block;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg,rgba(24, 24, 24, 0.06) 0%, rgba(24, 24, 24, 0.38) 11%, rgba(24, 24, 24, 0.67) 30%, rgba(24, 24, 24, 0.84) 51%, rgba(24, 24, 24, 1) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.home_contents5_img:before{
  padding-top: 1600px;
}
.home_contents5_img:after{
  content: "";
  display: block;
}
.home_contents5_items{
  display: flex;
  flex-wrap: wrap;
}
.home_contents5_item{
  width: 100%;
}
.home_contents5_item:nth-child(n+2){
  margin-top: 30px;
}
.home_contents5_item_outer{
  display: block;
  position: relative;
}
.home_contents5_item_outer:hover{
  color: #fff;
}
.home_contents5_item_outer:hover .home_contents5_item_img img{
  transform: scale(1.05);
}
.home_contents5_item_inner{
  width: 100%;
  position: relative;
}
.home_contents5_item_img:before{
  padding-top: 120%;
}
.home_contents5_item_img{
  overflow: hidden;
}
.home_contents5_item_img img{
  transition: all .2s;
}
.home_contents5_item_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.45);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents5_item_inside{
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 94.28%;
  aspect-ratio:330 / 400;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  border: 1px solid #fff;
  text-align: center;
  z-index: 2;
  transition: all .2s;
}
.home_contents5_item_inside:after{
  content: "";
  width: 65px;
  aspect-ratio: 1 / 1;
  background-image: url('/system_panel/uploads/images/service_icon_r.png');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
}

.home_contents5_item_outer:hover .home_contents5_item_inside{
  width: 100%;
  aspect-ratio:351 / 420;
  border: 1px solid transparent;
}
.home_contents5_item_txt1{
  font-size: 28px;
  font-weight: 400;
  font-family: "Anton", sans-serif;
  line-height: 1;
}
.home_contents5_item_txt2{
  font-size: 18px;
  font-weight: 700;
}
.home_contents5_item_txt1 strong{
  color: var(--main-color);
}
.home_contents5_item_txt3{

}

/*news*/
.home_contents6_box.news_list .webgene-item .img:before{
  padding-top: 72.22%;
}
.news_list .webgene-item a:hover{
  color: #fff;
}

/*Message*/
.home_contents7_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents7_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents7_box1 .content_desc{
  line-height: 2.5em;
}
.home_contents7_box2{
  width: 100%;
  order: 1;
}
.home_contents7_box2_img:before{
  padding-top: 114.2%;
}
.home_contents7_name{
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin-top: 20px;
}
.home_contents7_name_p1{
  font-size: 1em;
  margin-right: 10px;
}
.home_contents7_name_p2{
  font-size: 1.875em;
  font-weight: 700;
}

@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_contents5_item_txt2{
    margin-top: 5px;
  }
  .home_contents6_box.news_list .webgene-item .category{
    margin-top: 11px;
  }

  .linup_arrow{
    justify-content: center;
    margin-top: 30px;
  }
  
  .overlay_tt_ja{
    position: static;
    transform: none;
  }
}
@media (min-width:768px){
  /*見出し*/
  .home_contents1_img{

  }
  .home_contents1_img:before{

  }
  .home_contents1_inner{
    padding-top: 100px;
  }
  .sec_title{

  }
  .sec_title_ja1{
    font-size: 22px;  
  }
  .sec_title_ja2{
    font-size: 40px;  
  }
  .home_contents1_inner .content_desc{
    margin-top: 28px;
    line-height: 2.81em;
  }

  /*Our Strengths*/
  .home_contents2_wrap{

  }
  .home_contents2_items{
    justify-content: center;
    margin-inline:-15px;
  }
  .home_contents2_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents2_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents2_item:nth-child(n+3){
    margin-top: 60px;;
  }
  .home_contents2_item_inner{

  }
  .home_contents2_item_num{
    font-size:80px;
    bottom: -43px;
  }
  .home_contents2_item_img:before{

  }
  .home_contents2_item_tt{
    font-size: 20px;
    margin-top: 50px;
  }
  .home_contents2_item .content_desc{

  }

  /*理想の一台との出会いも、​​​​​​​大切な一台との別れも*/
  .home_contents3_wrap{

  }
  .home_contents3_box1{

  }
  .home_contents3_box1_img{

  }
  .home_contents3_box1_img:before{

  }
  .home_contents3_box2{
    padding: 30px 0;
  }
  .overlay_tt{

  }
  .overlay_tt_en{
    font-size: 100px;
  }
  .overlay_tt_ja{
    font-size: 24px;
  }
  .home_contents3_box2 .content_desc{

  }
  .home_contents3_box2 .read_more{
    margin-top: 67px;
  }

  /*LINEUP*/
  .home_contents4_wrap{

  }
  .home_contents4_hdr{

  }
  .home_contents4_hdr_box1{
    width: 60.46%;
  }
  .home_contents4_hdr_box2{
    width: 36.02%;
  }
  .home_contents4_hdr_box2 .read_more{

  }

  .home_contents4_outer{
    margin-right: calc(50% - 50vw);
  }
  .home_contents4_inner{

  }
  .home_contents4_inner .webgene-blog{

  }
  .home_contents4_inner .webgene-item{

  }
  .home_contents4_inner .swiper-slide{
    width: 470px;
  }
  .home_contents4_inner .webgene-item a{

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

  }
  .home_contents4_inner .webgene-item .box2{

  }
  .buyAndSell_contents2_box .webgene-item .title,
  .home_contents4_inner .webgene-item .title{
    font-size: 20px;
  }
  .home_contents4_inner .webgene-item .meta{

  }
  .home_contents4_inner .webgene-item .price{

  }
  .home_contents4_inner .webgene-item .running{

  }
  .home_contents4_inner .webgene-item .date{

  }
  .linup_arrow{
    margin-top: 70px;
  }

  /*service*/
  .home_contents5_img{

  }
  .home_contents5_img:before{
    padding-top: 1062px;
  }
  .home_contents5_img:after{

  }
  .home_contents5_items{
    justify-content: center;
    margin-inline:-15px;
  }
  .home_contents5_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents5_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents5_item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_contents5_item_inner{

  }
  .home_contents5_item_img:before{

  }
  .home_contents5_item_img:after{

  }
  .home_contents5_item_inside{

  }
  .home_contents5_item_txt1{
    font-size: 32px;
  }
  .home_contents5_item_txt2{
    font-size: 20px;
  }
  .home_contents5_item_txt2 strong{

  }
  .home_contents5_item_txt3{

  }

  /*news*/
  .home_contents6_box.news_list .webgene-item .meta{
    justify-content: space-between;
    margin-top: 13px;
    margin-right: 0;
  }
  .home_contents6_box.news_list .webgene-item .date,
  .home_contents6_box.news_list .webgene-item .category{
    margin-top: 0;
  }
  .home_contents6_box.news_list .webgene-item .category{
    margin-left: 32px;
  }
  .home_contents6_box.news_list .webgene-item .title{
    margin-top: 15px;
  }
  
  .home_contents6_wrap .read_more{
    margin-top: 50px;
  }


  /*Message*/
  .home_contents7_wrap{

  }
  .home_contents7_wrap .tt2{
    margin-bottom: 29px;
  }
  .home_contents7_box1{
    margin-top: 30px;
  }
  .home_contents7_box2{

  }
  .home_contents7_box2_img:before{
    padding-top: 85%;
  }
  .home_contents7_name{
    font-size: 16px;
    margin-top: 30px;
  }
  .home_contents7_name_p1{
    font-size: 1em;
    margin-right: 10px;
  }
  .home_contents7_name_p2{
    font-size: 1.875em;
    font-weight: 700;
  }
}
@media (min-width:1024px){
  /*見出し*/
  .home_contents1_img{

  }
  .home_contents1_img:before{

  }
  .home_contents1_inner{
    padding-top: 195px;
  }
  .sec_title{

  }
  .sec_title_ja1{
    font-size: 30px;
  }
  .sec_title_ja2{
    font-size: 55px;  
  }
  .home_contents1_inner .content_desc{

  }

  /*Our Strengths*/
  .home_contents2_wrap .tt2{
    margin-bottom: 80px;
  }
  .home_contents2_wrap{

  }
  .home_contents2_items{

  }
  .home_contents2_item{
    width: 33.333%;
  }
  .home_contents2_item:nth-child(n+3){
    margin-top: 0;;
  }
  .home_contents2_item:nth-child(n+4){
    margin-top: 70px;
  }
  .home_contents2_item_inner{

  }
  .home_contents2_item_num{
    font-size: 100px;
  }
  .home_contents2_item_img:before{

  }
  .home_contents2_item_tt{
    font-size:22px;
    margin-top: 64px;
  }
  .home_contents2_item .content_desc{

  }

  /*理想の一台との出会いも、​​​​​​​大切な一台との別れも*/
  .home_contents3_wrap{
    align-items: flex-start;
  }
  .home_contents3_box1{
    width: 52.96%;
    margin-top: -50px;
  }
  .home_contents3_box1_img{
    margin-left: var(--margin-for-device-side);
  }
  .home_contents3_box1_img:before{

  }
  .home_contents3_box2{
    background: none;
    /*background: #181818;*/
    width:57.23%;
    margin-left: -155px;
    padding: 39px 0 53px 24px;
    margin-top: 30px;;
  }
  .home_contents3_box2:before{
    content: "";
    display: block;
    width: 60%;
    height: 101%;
    background: #181818;
    position: absolute;
    top: 0;
    left: 0;
  }
  .overlay_tt{

  }
  .overlay_tt_en{
    font-size: 100px;
  }
  .overlay_tt_ja{
    font-size: 26px;
  }
  .home_contents3_box2 .content_desc{
    line-height: 2.5em;
  }
  .home_contents3_box2 .read_more{

  }

  /*LINEUP*/
  .home_contents4_wrap{

  }
  .home_contents4_hdr{

  }
  .home_contents4_hdr_box1{
    width: 68.46%;
  }
  .home_contents4_hdr_box2{
    width: 27.02%;
    padding-top: 8px;
  }
  .home_contents4_hdr_box2 .read_more{

  }
  .home_contents4_inner{

  }
  .home_contents4_inner .webgene-blog{

  }
  .home_contents4_inner .webgene-item{

  }
  .home_contents4_inner .swiper-slide{
    width: 470px;
  }
  .home_contents4_inner .webgene-item a{

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

  }
  .home_contents4_inner .webgene-item .box2{

  }
  .buyAndSell_contents2_box .webgene-item .title,
  .home_contents4_inner .webgene-item .title{
    font-size: 22px;
  }
  .home_contents4_inner .webgene-item .meta{

  }
  .home_contents4_inner .webgene-item .price{

  }
  .home_contents4_inner .webgene-item .running{

  }
  .home_contents4_inner .webgene-item .date{

  }

  /*service*/
  .home_contents5_img{

  }
  .home_contents5_img:before{

  }
  .home_contents5_img:after{

  }
  .home_contents5_items{

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

  }
  .home_contents5_item_img:before{

  }
  .home_contents5_item_img:after{

  }
  .home_contents5_item_inside{

  }
  .home_contents5_item_txt1{
    font-size: 42px;
  }
  .home_contents5_item_txt2{
    font-size: 24px;
  }
  .home_contents5_item_txt2 strong{

  }
  .home_contents5_item_txt3{

  }
  .home_contents5_item:last-child .home_contents5_item_inside{
    padding-top: 24px;
  }

  /*news*/
  .home_contents6_box.news_list .webgene-blog{
    margin-inline:-13px;
  }
  .home_contents6_box.news_list .webgene-item{
    width: 25%;
    padding-inline:13px;
  }
  .home_contents6_box.news_list .webgene-item .category{
    width:90px;
  }
  .home_contents6_wrap .read_more{
    margin-top: 68px;
  }
  .home_contents6_box.news_list .webgene-item:nth-child(n+4){
    margin-top: 0;
  }

  /*Message*/
  .home_contents7_wrap{

  }
  .home_contents7_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_contents7_box2{
    width: 46.05%;
    order: 2;
  }
  .home_contents7_box2_img:before{
    padding-top: 114.2%;
  }
}
@media (min-width:1200px){
  .home_contents3_wrap{
    align-items: flex-start;
  }
  .home_contents3_box2{
    padding: 39px 0 53px 74px;
    margin-top: 0;
  }
  .overlay_tt_en{
    font-size: 110px;
  }

  .home_contents6_box.news_list .webgene-item .category{
    width: 130px;
  }


  .home_contents2_items{
    margin-inline:-35px;
  }
  .home_contents2_item{
    padding-inline:35px;
  }
  
  .home_contents6_box.news_list .webgene-item .meta{
    justify-content: flex-start;
  }
  
}
@media (min-width:1366px){
  .home_contents4_inner .swiper-slide{
    width: 470px;
  }

}
@media (min-width:1450px){
  .overlay_tt_en{
    font-size: 150px;
  }
  .overlay_tt_ja{
    font-size: 30px;
  }

}

@media (min-width:1700px){
  .home_contents3_wrap{
    align-items: flex-end;
  }

}




/*******************************
*　カスタム
********************************/

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

}
.pg_custom .section.sec1{

}
.pg_custom .section.sec2{
  position: relative;
}
.pg_custom .section.sec3{
  position: relative;
}

/*木*/
.tree.custom1{
  background-image: url(/system_panel/uploads/images/s3.png);
  width: 31.87%;;
  aspect-ratio:612 / 912;
  top: -289px;
  left: -30px;
}
.tree.custom2{
  background-image: url(/system_panel/uploads/images/tree2.png);
  width: 35.46%;
  aspect-ratio: 681 / 951;
  top: -515px;
  right: 0;
}

@media (max-width:374px){

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

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

  .pg_custom .section.sec1{
    padding-bottom: 150px;
  }
  .pg_custom .section.sec3{
    padding-top: 150px;
  }
  .tree.custom1{
    width: 63%;
    top: -230px;
  }
  .tree.custom2{
    width: 63%;
    top: -130px;
  }
  
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_custom{

  }
  .pg_custom .section.sec1{

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


  /*木*/
  .tree.custom1{
    background-image: url(/system_panel/uploads/images/s3.png);
    width: 31.87%;;
    aspect-ratio:612 / 912;
    top: -150px;
    left: -30px;
  }
  .tree.custom2{
    width: 35.46%;
    top: -515px;
  }
}
@media (min-width:1024px){
  /* セクション設定 */
  .pg_custom{

  }
  .pg_custom .section.sec1{

  }
  .pg_custom .section.sec2{
    padding-top: 120px;
  }


  /*木*/
  .tree.custom1{
    background-image: url(/system_panel/uploads/images/s3.png);
    width: 31.87%;;
    aspect-ratio:612 / 912;
    top: -289px;
    left: -30px;
  }
}
@media (min-width:1200px){


}

/* メイン部分 */
.page_hdr_wrap.custom{

}
.page_hdr_wrap.custom .home_contents3_box1{
  order: 2;
}
.page_hdr_wrap.custom .home_contents3_box2{
  order: 1;
}

.custom_contents2_wrap{

}
.custom_contents2_wrap .tt2{

}
.custom_contents2_cate{
  display: flex;
  flex-wrap: wrap;
}
.custom_contents2_cate_item{
  width: 100%;
}
.custom_contents2_cate_item:nth-child(n+2){
  margin-top: 16px;
}
.custom_contents2_cate_item a{
  display: block;
  background: #f7f7f7;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  color: #181818;
  padding: 10px;
}
.custom_contents2_cate_item a:hover{
  background: var(--main-color);
}
.custom_contents2_cate_item a:after{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio: 27 / 5;
  background-image: url(/system_panel/uploads/images/arr_bk.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}

.custom_contents2_items{
  margin-top: 40px;
}
.custom_contents2_item{
  display: flex;
  flex-wrap: wrap;
}
.custom_contents2_item:nth-child(n+2){
  margin-top: 40px;
}
.custom_contents2_item_box1{
  width: 100%;
}
.custom_contents2_item_box1_img:before{
  padding-top: 65.3%;
}
.custom_contents2_item_box2{
  width: 100%;
  background: #fe9737;
  padding: 16px;
}
.custom_contents2_item_tt{
  font-size: 18px;
  font-weight: 900;
  color: #000;
  background: #fff;
  padding: 10px;
}
.custom_contents2_item_box2 .content_desc{
  color: #181818;
  margin-top: 16px;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /* メイン部分 */
  .page_hdr_wrap.custom{

  }
  .page_hdr_wrap.custom .home_contents3_box1{

  }
  .page_hdr_wrap.custom .home_contents3_box2{

  }

  .custom_contents2_wrap{

  }
  .custom_contents2_wrap .tt2{

  }
  .custom_contents2_cate{
    margin-inline:-5px;
  }
  .custom_contents2_cate_item{
    width: 50%;
    padding-inline:5px;
  }
  .custom_contents2_cate_item:nth-child(n+2){
    margin-top: 0;
  }
  .custom_contents2_cate_item:nth-child(n+3){
    margin-top: 16px;
  }
  .custom_contents2_cate_item a{

  }

  .custom_contents2_items{
    margin-top: 70px;
  }
  .custom_contents2_item{

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

  }
  .custom_contents2_item_box1_img:before{

  }
  .custom_contents2_item_box2{
    padding: 40px 30px 30px;
  }
  .custom_contents2_item_tt{
    font-size: 22px;
    padding: 2px 25px;
  }
  .custom_contents2_item_box2 .content_desc{
    margin-top: 30px;
  }
}
@media (min-width:1024px){
  /* メイン部分 */
  .page_hdr_wrap.custom{

  }
  .page_hdr_wrap.custom .home_contents3_box1{
    order: 2;
  }
  .page_hdr_wrap.custom .home_contents3_box2{
    order: 1;
    margin-left: 0;
    margin-right: -155px;
    padding: 39px 24px 140px 0;
  }
  .page_hdr_wrap.custom .home_contents3_box2:before{
    left: auto;
    right: 0;
  }
  .page_hdr_wrap.custom .home_contents3_box1_img{
    margin-left: 0;
    margin-right: var(--margin-for-device-side);
  }

  /*カスタム*/
  .custom_contents1_wrap .tt2{
    margin-bottom: 80px;
  }

  .custom_contents2_wrap{

  }
  .custom_contents2_wrap .tt2{
    margin-bottom: 70px;
  }
  .custom_contents2_cate{

  }
  .custom_contents2_cate_item{
    width: 33.333%;
  }
  .custom_contents2_cate_item:nth-child(n+3){
    margin-top: 0;
  }
  .custom_contents2_cate_item:nth-child(n+4){
    margin-top: 16px;;
  }
  .custom_contents2_cate_item a{

  }

  .custom_contents2_items{
    margin-top: 90px;
  }
  .custom_contents2_item{

  }
  .custom_contents2_item_box1{
    width:32.23%;
  }
  .custom_contents2_item_box1_img:before{
    padding-top: 320px;
  }
  .custom_contents2_item_box2{
    width:calc(100% - 32.23%);;
    padding: 39px 30px;
  }
  .custom_contents2_item_tt{
    font-size: 20px;
  }
  .custom_contents2_item_box2 .content_desc{
    margin-top: 30px;
  }
}
@media (min-width:1200px){

  .custom_contents2_item_box1_img{
    height: 100%;
  }

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


}
@media (min-width:1450px){
  /*カスタム*/
  .custom_contents2_cate{
    margin-inline:-2.5px;
  }
  .custom_contents2_cate_item{
    width: 20%;
    width: 25%;
    padding-inline:2.5px;
  }
  .custom_contents2_cate_item:nth-child(n+4){
    margin-top: 0;
  }
  .custom_contents2_cate_item:nth-child(n+5){
    margin-top: 9px;
  }
  .custom_contents2_cate_item a{

  }

  .custom_contents2_item_box2{
    padding: 39px 65px;
    padding: 39px 50px;
  }
  .custom_contents2_item_tt{
    font-size: 30px;
  }

}

@media (min-width:1720px){

  .custom_contents2_cate_item{
    width: 20%;
    padding-inline:2.5px;
  }
  .custom_contents2_cate_item:nth-child(n+5){
    margin-top: 0;
  }
  .custom_contents2_cate_item:nth-child(n+6){
    margin-top: 9px;
  }

}



/*******************************
*　保険
********************************/

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

}
.pg_InsuranceAndServices .section.sec1{

}
.pg_InsuranceAndServices .section.sec2{
  position: relative;
}
.pg_InsuranceAndServices .section.sec3{
  position: relative;
  z-index: 1;
}
.pg_InsuranceAndServices .section.sec4{
  position: relative;
}

.tree.Insurance1{
  background-image: url(/system_panel/uploads/images/20251001193304451759.png);
  width: 35.57%;;
  aspect-ratio:683 / 908;
  top: -395px;
  right: 0;
}
.tree.Insurance2{
  background-image: url(/system_panel/uploads/images/s3.png);
  width: 31.87%;
  aspect-ratio: 612 / 912;
  top: -355px;
  left: -30px;
}
.tree.Insurance3{
  background-image: url(/system_panel/uploads/images/s3.png);
  width: 31.87%;
  aspect-ratio: 612 / 912;
  top: -355px;
  left: -30px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  
  .pg_InsuranceAndServices .section.sec2{
    padding-top: 150px;
  }
  .pg_InsuranceAndServices .section.sec3{
    padding-top: 150px;
  }
  .pg_InsuranceAndServices .section.sec4{
    padding-top: 150px;
  }
  
  .tree.Insurance1{
    width: 63%;
    top: -70px;
  }
  .tree.Insurance2{
    width: 63%;
    top: -80px;
    left: 0;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_InsuranceAndServices{

  }
  .pg_InsuranceAndServices .section.sec1{
    padding-bottom: 100px;
  }
  .pg_InsuranceAndServices .section.sec2{
    padding-bottom: 80px;
  }
  .pg_InsuranceAndServices .section.sec3{
    padding-bottom: 100px;
  }

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

  }
  .pg_InsuranceAndServices .section.sec1{
    padding-bottom: 100px;
  }
  .pg_InsuranceAndServices .section.sec2{
    padding-bottom: 110px;
  }
  .pg_InsuranceAndServices .section.sec3{
    padding-bottom: 100px;
  }


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


}

/* メイン部分 */
/*見出し*/
.page_hdr_wrap.Insurance{

}
.page_hdr_wrap.Insurance .home_contents3_box1{
  order: 2;
  margin-top: 20px;
}
.page_hdr_wrap.Insurance .home_contents3_box2{
  order: 1;
}

/*カーライフを支える、TygaStyleのサービス*/
.Insurance_contents2_items{

}
.Insurance_contents2_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.Insurance_contents2_item:nth-child(n+2){
  margin-top: 50px;
}
.Insurance_contents2_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.Insurance_contents2_box1_en{
  font-size: 50px;
  font-family: "Anton", sans-serif;
  line-height: 1;
  color: rgba(255,255,255,0.1);
}
.Insurance_contents2_box1_tt{
  margin-top: -16px;
  margin-top: 0;
}
.Insurance_contents2_box1_txt{
  font-size: 18px;
  font-weight: 900;
  line-height: 1.5em;
  color: #fe9737;
}
.Insurance_contents2_box1 .content_desc{
  line-height: 2.5em;
  margin-top: 20px;
}
.Insurance_contents2_box2{
  width: 100%;
  order: 1;
}
.Insurance_contents2_box2_img:before{
  padding-top: 78.57%;
}

/*車のことなら、レンタカーまでおまかせ。*/
.Insurance_contents3_box{
  display: flex;
  flex-wrap: wrap;
}
.Insurance_contents3_box1{
  width: 100%;
  position: relative;
  color: #181818;
  order: 2;
  margin-top: -20px;
  padding:20px 0;
  z-index: 2;
}
.Insurance_contents3_box1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #fe9737;
  position: absolute;
  top: 0;
  z-index:0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.Insurance_contents3_box1_tt{
  position: relative;
  z-index: 1;
}
.Insurance_contents3_box1_txt{
  font-size: 18px;
  font-weight: 900;
  line-height: 2em;
  color: #181818;
}
.Insurance_contents3_box1 .content_desc{
  line-height: 2.5em;
  position: relative;
  z-index: 1;
  margin-top: 20px;
}
.Insurance_contents3_box2{
  width: 100%;
  order: 1;
}
.Insurance_contents3_box2_img{

}
.Insurance_contents3_box2_img:before{
  padding-top: 74.62%;
}
@media (max-width:767px){

  .Insurance_contents2_box1_en{
    
  }
  
}
@media (min-width:768px){
  /*見出し*/
  .page_hdr_wrap.Insurance{

  }
  .page_hdr_wrap.Insurance .home_contents3_box1{
    margin-top: 30px;
  }
  .page_hdr_wrap.Insurance .home_contents3_box2{

  }

  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents2_items{

  }
  .Insurance_contents2_item{

  }
  .Insurance_contents2_item:nth-child(n+2){
    margin-top: 60px;
  }
  .Insurance_contents2_box1{
    margin-top: 30px;
  }
  .Insurance_contents2_box1_en{
    font-size: 70px;
  }
  .Insurance_contents2_box1_tt{
    margin-top: -30px;
  }
  .Insurance_contents2_box1_txt{
    font-size: 26px;
  }
  .Insurance_contents2_box1 .content_desc{
    margin-top: 30px;
  }
  .Insurance_contents2_box2{

  }
  .Insurance_contents2_box2_img:before{

  }

  /*車のことなら、レンタカーまでおまかせ。*/
  .Insurance_contents3_box{

  }
  .Insurance_contents3_box1{
    margin-top: -30px;
    padding:30px 0;
  }
  .Insurance_contents3_box1_tt{

  }
  .Insurance_contents3_box1_txt{

  }
  .Insurance_contents3_box1 .content_desc{
    margin-top: 36px;
  }
  .Insurance_contents3_box2{

  }
  .Insurance_contents3_box2_img{

  }
  .Insurance_contents3_box2_img:before{

  }
}
@media (min-width:1024px){
  /*見出し*/
  .page_hdr_wrap.Insurance{

  }
  .page_hdr_wrap.Insurance .home_contents3_box1{
    order: 1;
    margin-top: 0;
  }
  .page_hdr_wrap.Insurance .home_contents3_box2{
    order: 2;
  }

  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents2_wrap .tt2{
    margin-bottom: 110px;
  }
  .Insurance_contents2_items{

  }
  .Insurance_contents2_item{

  }
  .Insurance_contents2_item:nth-child(n+2){
    margin-top: 100px;
  }
  .Insurance_contents2_item:nth-child(odd) .Insurance_contents2_box1{
    order: 1;
  }
  .Insurance_contents2_item:nth-child(odd) .Insurance_contents2_box2{
    order: 2;
  }
  .Insurance_contents2_item:nth-child(even) .Insurance_contents2_box1{
    order: 2;
  }
  .Insurance_contents2_item:nth-child(even) .Insurance_contents2_box2{
    order: 1;
  }
  .Insurance_contents2_box1{
    width: 49.01%;
    margin-top: 0;
  }
  .Insurance_contents2_box1_en{
    font-size: 100px;
  }
  .Insurance_contents2_box1_tt{
    margin-top: -50px;
  }
  .Insurance_contents2_box1_txt{
    font-size: 26px;
  }
  .Insurance_contents2_box1 .content_desc{
    margin-top: 53px;
  }
  .Insurance_contents2_box2{
    width: 46.05%;
  }
  .Insurance_contents2_box2_img:before{

  }

  /*車のことなら、レンタカーまでおまかせ。*/
  .Insurance_contents3_box{
    align-items: flex-start;
  }

  .Insurance_contents3_box1{
    width: 57.23%;
    order: 1;
    z-index: 2;
    padding: 60px 30px 140px 0;
    margin-right: -157px; 
    margin-top: 80px;
  }
  .Insurance_contents3_box1:before{
    margin-right: 0;
    right: 0;

  }
  .Insurance_contents3_box1_tt{

  }
  .Insurance_contents3_box1_txt{
    font-size: 24px;
  }
  .Insurance_contents3_box1 .content_desc{

  }
  .Insurance_contents3_box2{
    width: 52.82%;
    order: 2;
  }
  .Insurance_contents3_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .Insurance_contents3_box2_img:before{

  }
}
@media (min-width:1200px){
  .pg_InsuranceAndServices .tt2_ja{
    font-size: 30px;
  }

  /*見出し*/
  .page_hdr_wrap.Insurance{

  }
  .page_hdr_wrap.Insurance .home_contents3_box1{

  }
  .page_hdr_wrap.Insurance .home_contents3_box1_img:before{
    padding-top: 74.62%;
  }
  .page_hdr_wrap.Insurance .home_contents3_box2{
    margin-top: 50px;
    padding: 39px 0 53px 104px;

  }

  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents1_items.home_contents2_items{
    margin-top: 80px;
  }
  .Insurance_contents2_box1_txt{
    font-size: 28px;
  }

  /*車のことなら、レンタカーまでおまかせ。*/
  .Insurance_contents3_box1_txt{
    font-size: 24px;
  }
}
@media (min-width:1366px){
  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents2_box1_txt{
    font-size: 32px;
  }

}
@media (min-width:1450px){
  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents2_box1_txt{
    font-size: 32px;
  }


  /*車のことなら、レンタカーまでおまかせ。*/
  .Insurance_contents3_box1_txt{
    font-size: 30px;
  }
}

@media (min-width:1700px){
  /*カーライフを支える、TygaStyleのサービス*/
  .Insurance_contents2_box1_txt{
    font-size: 40px;
  }

  /*車のことなら、レンタカーまでおまかせ。*/
  .Insurance_contents3_box{
    align-items: flex-end;
  }
  .Insurance_contents3_box1{
    padding: 60px 95px 140px 0;
    margin-top: 0;
    margin-bottom: -40px;
  }

}






/*******************************
*　販売
********************************/

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

}
.pg_buyAndSell .section.sec1{

}
.pg_buyAndSell .section.sec2{
  position: relative;
}
.pg_buyAndSell .section.sec3{
  position: relative;
}

.pg_buyAndSell .section.sec2 .tree.Insurance2{
  top: -221px;
  left: -64px;
}
.pg_buyAndSell .section.sec3 .tree.Insurance1{
  top: -220px;
}


@media (max-width:374px){

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

}
@media (max-width:767px){
  
  .pg_buyAndSell .section.sec2{
    padding-top: 150px;
  }
  .pg_buyAndSell .section.sec3{
    padding-top: 150px;
  }
  
  .pg_buyAndSell .section.sec2 .tree.Insurance2{
    width: 63%;
    top: -115px;
    left: 0;
  }
  .pg_buyAndSell .section.sec3 .tree.Insurance1{
    width: 63%;
    top: -65px;
  }
}
@media (min-width:768px){
  /* セクション設定 */
  .pg_buyAndSell{

  }
  .pg_buyAndSell .section.sec1{
    padding-bottom: 100px;
  }
  .pg_buyAndSell .section.sec2{

  }
  .pg_buyAndSell .section.sec3{
    padding-top: 80px;
  }

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

  }
  .pg_buyAndSell .section.sec1{
    padding-bottom: 120px;
  }
  .pg_buyAndSell .section.sec2{

  }
  .pg_buyAndSell .section.sec3{
    padding-top: 80px;
  }

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


}

/* メイン部分 */
.pg_buyAndSell .section.sec1 .home_contents3_box1_img:before{
  padding-top: 74.62%;
}
.pg_buyAndSell .section.sec1 .home_contents3_box1{
  order: 2;
  margin-top: 20px;;
}
.pg_buyAndSell .section.sec1 .home_contents3_box2{
  order: 1;
}

.buyAndSell_contents1_items{

}
.buyAndSell_contents1_item{

}
.buyAndSell_contents1_item:nth-child(n+2){
  margin-top: 57px;
}
.buyAndSell_contents1_item_en{
  text-align: center;
  font-size: clamp(3.125rem, 1.5rem + 8.13vw, 11.25rem);
  font-family: "Anton", sans-serif;
  font-weight: 400;
  line-height: 1;
}
.buyAndSell_contents1_item:first-child .buyAndSell_contents1_item_en{
  color: rgba(255,255,255,0.38);
}
.buyAndSell_contents1_item:last-child .buyAndSell_contents1_item_en{
  color:rgba(254,151,55,0.38);
}
.buyAndSell_contents1_item_inner{
  margin-top: -4rem;
}

/*リスト*/
.buyAndSell_contents2_box{

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

}
.buyAndSell_contents2_box .webgene-item .img:before{
  padding-top: 70.21%;
}
.buyAndSell_contents2_box .webgene-item .meta{

}
.buyAndSell_contents2_box .webgene-item .price{

}
.buyAndSell_contents2_box .webgene-item .made_y{

}
.buyAndSell_contents2_box .webgene-item .running{

}
.buyAndSell_contents2_box .webgene-item .date{

}

@media (max-width:767px){
  .buyAndSell_contents1_item:nth-child(n+2){
    margin-top: 100px;
  }

  .buyAndSell_contents1_items .buyAndSell_contents1_item_inner{
    margin-top: 10px;
  }

  .buyAndSell_contents2_box .webgene-item:nth-child(n+2){
    margin-top: 50px;
  }
  
  .buyAndSell_contents1_item_en{
    
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .pg_buyAndSell .section.sec1 .home_contents3_box1{
    order: 2;
    margin-top: 30px;;
  }

  .buyAndSell_contents1_items{

  }
  .buyAndSell_contents1_item{

  }
  .buyAndSell_contents1_item:nth-child(n+2){
    margin-top: 57px;
  }
  .buyAndSell_contents1_item_en{

  }
  .buyAndSell_contents1_item_inner{
    margin-top: -1rem;
  }

  /*リスト*/
  .buyAndSell_contents2_box{

  }
  .buyAndSell_contents2_box .webgene-blog{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-29px;
  }
  .buyAndSell_contents2_box .webgene-item{
    width: 50%;
    padding-inline:29px;
  }
  .buyAndSell_contents2_box .webgene-item:nth-child(n+3){
    margin-top: 50px;;
  }
  .buyAndSell_contents2_box .webgene-item a{

  }
  .buyAndSell_contents2_box .webgene-item img{

  }
  .buyAndSell_contents2_box .webgene-item .meta{

  }
  .buyAndSell_contents2_box .webgene-item .price{

  }
  .buyAndSell_contents2_box .webgene-item .made_y{

  }
  .buyAndSell_contents2_box .webgene-item .running{

  }
  .buyAndSell_contents2_box .webgene-item .date{

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

  }
  .buyAndSell_contents1_item{

  }

  .buyAndSell_contents1_item_en{

  }
  .buyAndSell_contents1_item_inner{
    margin-top: -2rem;
  }

  .pg_buyAndSell .section.sec1 .home_contents3_box1{
    order: 1;
    margin-top: 0;
    margin-top: -50px;
  }
  .pg_buyAndSell .section.sec1 .home_contents3_box2{
    order: 2;
  }

  /*リスト*/
  .buyAndSell_contents2_box{
    padding-top: 32px;
  }
  .buyAndSell_contents2_box .webgene-blog{

  }
  .buyAndSell_contents2_box .webgene-item{

  }
  .buyAndSell_contents2_box .webgene-item a{

  }
  .buyAndSell_contents2_box .webgene-item img{

  }
  .buyAndSell_contents2_box .webgene-item .meta{

  }
  .buyAndSell_contents2_box .webgene-item .price{

  }
  .buyAndSell_contents2_box .webgene-item .made_y{

  }
  .buyAndSell_contents2_box .webgene-item .running{

  }
  .buyAndSell_contents2_box .webgene-item .date{

  }

}
@media (min-width:1200px){
  .pg_buyAndSell .tt2{
    margin-bottom: 60px;
  }
  .pg_buyAndSell .tt2_ja{
    font-size: 30px;
  }

  .buyAndSell_contents2_box .webgene-blog{

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

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


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


}

@media (min-width:1700px){
  .buyAndSell_contents1_item_inner{
    margin-top: -4rem;
  }

}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}

@media (min-width:1700px){


}


.txt_anime{
  /*display: flex;*/
}

.txt_anime span.space {
  width: 0.2em;   /* 半角スペース幅を確保（調整可） */
  opacity: 1;
  filter: none;
  transform: none;
}
.txt_anime .word {
  display: inline-block;      /* 単語内で改行させない */
  white-space: nowrap;        /* 句読点付きでも1塊で保持 */
}

/* 文字アニメ（既存と同じ） */
.txt_anime .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.6em);
  filter: blur(6px);
  transition: opacity .8s ease, transform .8s ease, filter .8s ease;
  will-change: opacity, transform, filter;
}
.txt_anime .char.is-in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.txt_anime .char.strong{
  color: var(--main-color);
}


/* ぼやけた状態からIN */
.animated2{
  
}
.animated2.inview{
  transition: 1s all;
}
.animated2.blurInUp{
  transform: translateY(2%);
  filter: blur(10px);
}
.animated2.blurInUp.inview{
  transform: translateY(0);
  filter: blur(0);
}

.animated2.blurIn{
  filter: blur(10px);
}
.animated2.blurIn.inview{
  filter: blur(0);
}



.webgene-item .meta {
  
}
.webgene-item .meta .label{
  display: inline-block;
  width: 6em;
  position: relative;
  z-index: 1;
}
.webgene-item .meta .label:after{
  content: "：";
  position: absolute;
  z-index: 1;
  right: 0;
}

.swiper-button-disabled{
  pointer-events: none;
}

.scroll-hint-icon-wrap{
  z-index: 1;
}



.insta_list{
  padding: 0 ;
}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding: 0 7.5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 15px;
}
.insta_list .insta_list_item_inner{
  display: block;
  overflow: hidden;
}
.insta_list .insta_list_item_inner.img_fit:before{
  padding-top: 133.333%;
}
.insta_list .insta_list_item_inner img{
  transition: 0.2s all;
}
.insta_list .insta_list_item_inner:hover img{
  transform: scale(1.05);
}

.insta_list_item_inner video{
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  inset: 0;
}

@media (max-width:767px){
  .insta_list .webgene-item:nth-child(n+5){
    display: none;
  }
}

@media (min-width:768px){
  
  
  .insta_list{
    padding: 0 0;
  }
  .insta_list .webgene-blog{
    margin-left: -7.5px;
    margin-right: -7.5px;
  }
  .insta_list .webgene-item{
    width: 20%;
  }
  .insta_list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .insta_list .webgene-item:nth-child(n+6){
    margin-top: 15px;
  }
  
}
@media (min-width:1024px){
  
  
  
}
@media (min-width:1200px){
  
  .insta_list{
    padding: 0 30px;
  }
  
}
@media (min-width:1450px){


}

@media (min-width:1700px){

  .insta_list{
    padding: 0 90px;
  }

}
