@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
}


/* ******************************
   全体設定
   ****************************** */
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;
}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

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

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

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

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

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


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


/* 指定デバイスで改行を消す */
@media (min-width:1720px){
  .fw_nobr br{
    display: none !important;
  }
}
@media (min-width:1520px){
  .lg_nobr br{
    display: none !important;
  }
}
@media (min-width:1200px){
  .pc_nobr br{
    display: none !important;
  }
}

@media (min-width:1024px) and (max-width:1199px){
  .md_nobr br{
    display: none !important;
  }
}
@media (min-width:768px) and (max-width:1023px){
  .tb_nobr br{
    display: none !important;
  }
}
@media (max-width:767px){
  .sp_nobr br{
    display: none !important;
  }
}


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



/*******************************
*　ヘッダー
********************************/
.header{
  --logo-height: 30px;
}
.hdr1{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 10px;
}

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  display: block;
  width: auto;
  height: 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;
}


@media (min-width:375px){

}
@media (max-width:767px){
  .header{
    padding: 10px;
    position: absolute;
    top: 0;
    z-index: 5;
  }
  .hdr1 {
    justify-content: center;
  }

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

  .hdr_logo img{
    width: 100px;
    height: auto;
  }
}
@media (min-width:768px){

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

    position: fixed;
    z-index: 5;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    align-items: flex-start;
    justify-content: space-between;
    padding-left: 30px;
    transition: all .2s;
  }
  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_contact_btn{
    width: 110px;
    display: block;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-en);
    line-height: 1;
    border: 1px solid transparent;
    padding: 26px 0;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 1px solid var(--main-color);
    color: var(--main-color);
  }
  .hdr_contact_btn p{
    display: flex
      ;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.075em;
    ;
  }
  .hdr_contact_btn p:before{
    content:"\f0e0";
    font-family: "FontAwesome";
    font-size: 32px;
    transition: all .2s;
    margin-bottom: 14px;
  }
  .sns_item{
    display: block;
    margin-right: 50px;
    margin-left: 10px;
  }
  .hdr_logo{
    display: block;
    padding-top: 17px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }
  .header.slim .hdr_logo img{
    height: calc(var(--logo-height) * 0.8);
  }
  .header.slim .hdr_logo{
    padding-top: 5px;
    ;
  }

  /* TELボタン */
  .hdr_tel{
    color: #fff;
  }
  .hdr_tel_txt1{
    font-size: 24px;
  }
  .hdr_tel_link p:before{
    margin-right: 6px;
  }

  .sns_item .bk{
    display: none;
  }
  .header.slim .sns_item .wh{
    display: none;
  }
  .header.slim .sns_item .bk{
    display: block;
  }
}
@media (min-width:1024px){

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

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

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

  }
  .header.slim .hdr_logo img{
  }

  /* TELボタン */
  .hdr_tel{

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

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

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

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

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

  }
  .header.slim .hdr_logo img{
  }

}

@media (min-width:1280px){

}

/*******************************
*　メインビジュアル
********************************/
/* MV */
.mv{
  position: relative;
  z-index: 1;
}
.mv_img{
  position: relative;
  z-index: 1;
}
.mv_img.img_fit:before{
  /*padding-top: 250px;*/
  /* 画面高さ - ヘッダー分 */
  padding-top: calc(100svh - 64px);
  padding-top: 100svh;
}
.mv_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_scroll{
  position: absolute;
  bottom: 5.5%;
  right: 3.1%;
  z-index: 2;
}
.mv_scroll p{
  display: flex;
  align-items: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  color: #fff;
}
.mv_scroll p:after{
  content: "";
  display: block;
  width: 1px;
  height: 167px;
  background-image: url(/system_panel/uploads/images/scroll.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 5px;
}

/* MVテキスト */
.mv_ttx{
  width: 100%;
  text-align: center;
  position: absolute;
  z-index: 2;
  top: 53%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  color: #FFF;
}
.mv_ttx1{
  font-size: 40px;
  font-weight: 900;
}
.mv_ttx2{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.68em;
  margin-top: 20px;
}

/* スライダーの場合 */
.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_ttx1{
    font-size: 50px;
  }
  .mv_ttx2{
    font-size: 20px;
  }

  .mv_scroll p{
    font-size: 16px;
  }

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


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

  /* MVテキスト */
  .mv_ttx1{
    font-size: 60px;
  }
  .mv_ttx2{
    font-size: 30px;
  }

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

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

  /* MVテキスト */
  .mv_ttx1{
    font-size: 88px;
  }
  .mv_ttx2{
    font-size: 44px;
  }

}


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

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

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

.pg_header_txt{
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.pg_header_text{
  display: inline-block;
  font-size: 24px;
  font-weight: 900;
  background: #fff;
  padding: 4px 20px;
}

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

  .pg_header_title_txt{

  }

  .pg_header_txt{

  }
  .pg_header_text{
    font-size: 30px;
    padding: 6px 29px;
  }
}
@media (min-width:1024px){
  .pg_header{
    margin-bottom: 70px;
  }
  .pg_header_mv_img.img_fit:before{
    padding-top: 350px;
  }
  .pg_header_img:before{
    padding-top: 400px;
  }

  .pg_header_title_txt{

  }

  .pg_header_txt{

  }
  .pg_header_text{
    font-size: 50px;
  }
}
@media (min-width:1200px){

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

  .pg_header_img:before{
    padding-top: 650px;
  }

  .pg_header_title_txt{

  }

}



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

.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;
  text-align: center;
  padding: 10px 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: #1a1a1a;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
}
.footer_fix .footer_fix_item_1{
  width: 38%;
  border-right: 1px solid #fff;
}
.footer_fix .footer_fix_item_1.recruit{
  background: #eeeeee;
  color: #024b93;
}
.footer_fix .footer_fix_item_2{
  width: 24%;
  background: #fff;
}
.footer_fix > a i{
  font-size: 20px;
  margin-bottom: 8px;
}
.footer_fix .footer_fix_item_1.remorte i{
  margin-bottom: 0;
}

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


.ftr_contact_wrap{
  position: relative;
}
.ftr_contact_img:before{
  padding-top: 600px;
}
.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: 2;
}
.ftr_contact_box_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
  color: #fff;
}
.ftr_contact_box1 .tt2{
  text-align: center;
}
.ftr_contact_box1 .tt2 .tt2_en{
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.ftr_contact_box1 .tt2 .tt2_en:after{
  margin-left: auto;
  margin-right: auto;
  background: #fff;
}
.ftr_contact_box1 .content_desc{

}
.ftr_contact_box2{
  width: 100%;
  text-align: center;
  margin-top: 30px;
}
.link_1{
  display: block;
  width: 100%;
  max-width: 555px;
  text-align: center;
  border: 1px solid transparent;
  text-align: center;
  background: #1a1a1a;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  padding: 15px 0;
  border-radius: 38px;
  transition: all .2s;
  margin-left: auto;
  margin-right: auto;
}
.link_1:hover{
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}
.link_1 p {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.075em;
}
.link_1 p:before{
  content: "\f0e0";
  font-family: "FontAwesome";
  font-size: 22px;
  transition: all .2s;
  margin-right: 7px;
  margin-right: 15px;
}
.ftr_contact_box2_tel{
  color: #fff;
  margin-top: 30px;
}
.ftr_contact_box2_tel1{
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
  padding-bottom: 11px;
}
.ftr_contact_box2_tel2{
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-top: 8px;
}
.ftr_contact_box2_tel2 a:hover{
  color: #ccc;
}

.ftr_1{
  text-align: center;
  background: #e5e5e5;
  padding-top: 50px;
}
.ftr_1_box{
  text-align: center;
}
.ftr_logo{

}
.ftr_add{
  margin-top: 16px;
}
.ftr_add_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875em;
}
.ftr_add_items{
  width: 260px;
  margin: 5px auto 0;
}
.ftr_add_item{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.ftr_add_item:nth-child(n+2){
  margin-top: 9px;
}
.ftr_add_item1{
  text-align: left;
  position: relative;
  width: 95px;
}
.ftr_add_item1:after{
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  background: #969696;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.ftr_add_item2{
  padding-left: 14px;
}
@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_box{
    padding-bottom: 50px;
  }
  .ftr_2{
    display: none;
  }
}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
  }

  .ftr_contact_wrap{

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

  }
  .ftr_contact_box_outer{

  }
  .ftr_contact_box{
    align-items: center;
    padding: 0;
  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1 .tt2{

  }
  .ftr_contact_box1 .tt2 .tt2_en{
    font-size: 60px;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{


  }
  .link_1{
    font-size: 18px;
    padding: 21px 0;
  }
  .ftr_contact_box2_tel{
    margin-top: 47px;
  }
  .ftr_contact_box2_tel1{
    font-size: 20px;
  }
  .ftr_contact_box2_tel2{
    font-size: 30px;
  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

  }

  .ftr_2{
    background: #fff;
    margin-top: 72px;
    padding: 16px;
  }
  .ftr_links{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ftr_link{
    font-size: 14px;
    font-weight: 500;
    padding: 0 6px;
  }
  .ftr_copy{
    padding: 22px 0;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 180px;
  }

  .ftr_contact_wrap{

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

  }
  .ftr_contact_box_outer{

  }
  .ftr_contact_box{
    padding: 0 20px;
  }
  .ftr_contact_box1{
    width: 49.01%;
  }
  .ftr_contact_box1 .tt2{
    text-align: left;
  }
  .ftr_contact_box1 .tt2 .tt2_en{
    font-size: 60px;
    text-align: left;
  }
  .ftr_contact_box1 .tt2 .tt2_en:after{
    margin-left: 0;
  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 45%;
    text-align: left;
    margin-top: 0;
  }
  .link_1{
    font-size: 20px;
    margin-left: 0;
  }
  .ftr_contact_box2_tel{

  }
  .ftr_contact_box2_tel1{

  }
  .ftr_contact_box2_tel2{
    font-size: 36px;
  }

  .ftr_1{

  }
  .ftr_1_box{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_add_txt{

  }
  .ftr_add_items{

  }
  .ftr_add_item{

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

}
@media (min-width:1440px){
  .footer {
    margin-top: 195px;
  }
  .ftr_contact_box{
    padding: 0 48px 0 80px;
  }
  .ftr_contact_box2{
    width: 37.5%;
  }
  .ftr_contact_box2_tel2{
    font-size: 45px;
  }
}

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


/* テーブル用 */
.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 #164b64;
  background: #ffffff;
  font-weight: 500;
}
.webgene-pagination li.selected{
  border: 0;
  background: #164b64;
  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{
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  background: #1a1a1a;
  border-radius: 27px;
  color: #FFF;
  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: "\f054";
  font-family: 'FontAwesome';
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
  font-size: 10px;
}
.read_more.insta a:after {
  content: "\f08e";
  font-family: 'FontAwesome';
  top: 52%;
  font-size: 15px;
}
.body_galleryDetail .read_more a:after,
.body_blogDetail .read_more a:after{
  content:"→";
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
}
.read_more a:hover{
  color: #FFF;
  background:var(--main-color);
}
.read_more a:hover:after{
  margin-right: -5px;
}

.carsparts_contents1_item_outer .read_more a:after{
  content: "\f08e";
  font-size: 16px;
  top: 55%;
}

/* 見出し */
.tt2{
  text-align: left;
  margin-bottom: 30px;
}
.tt2.center{
  text-align: center;
}
.tt2_en{
  font-size: 40px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #1a1a1a;
}
.tt2_en:after{
  content: "";
  display: block;
  height: 4px;
  width: 40px;
  background: var(--main-color);
  margin: 10px 0;
}
.tt2_ja{
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}
.tt2_ja_txt{
  font-size: 18px;
  font-weight: 700;
}


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

}


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

  .tt2_ja_txt{
    font-size: 18px;
  }
  .tt2_ja_box p{
    letter-spacing: 0;
  }
  .tt2_ja_box.tt2_ja_txt{
    letter-spacing: 0;
  }
}
@media (min-width:768px){

  .anchor{
    top: -170px;
  }

  /* ページネーション */
  .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: 100%;
    max-width: 300px;
    font-size: 16px;
    padding: 14px 20px;
    margin: 5px 5px;
  }

  .read_more a:hover:after{
    margin-right: -5px;
  }

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

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

  .tt2_ja_txt{
    font-size: 22px;
  }


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

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

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

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


}


@media (min-width:1366px){

  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 70px;
  }
  .tt2_en.mid{
    font-size: 20px;
  }
  .tt2_ja{
    font-size: 45px;
  }
  .tt2_ja_txt{
    font-size: 30px;
  }

}

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



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

}
.pg_home .section.sec1{
  padding-top: 60px;
  padding-bottom: 50px;
  ;
}
.pg_home .section.sec2{
  position: relative;
  padding: 0;
}
.pg_home .section.sec3{
  background: #f4f0ec;
  padding-top: 80px;
}
.pg_home .section.sec4{
  background: #f4f0ec;
  padding-bottom: 0;
  overflow: hidden;
}
.pg_home .section.sec5{
  padding-top: 50px;
  position: relative;
}
.pg_home .section.sec5:before{
  content: "";
  display: block;
  width: 100%;
  aspect-ratio:1920 / 943;
  background-image: url(/system_panel/uploads/images/gg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.pg_home .section.sec6{
  background: #fafafa;
  padding-top: 50px;
  position: relative;
}
.pg_home .section.sec6:after{
  content: "";
  display: block;
  width: 100%;
  height: 102%;
  background: #fafafa;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.pg_home .section.sec7{

}
.pg_home .section.sec8{

}

@media (max-width:767px){

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

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

  }
  .pg_home .section.sec5{
    padding-top: 90px;
    padding-bottom: 100px;
  }
  .pg_home .section.sec6{
    padding-top: 100px;
  }
  .pg_home .section.sec7{

  }
  .pg_home .section.sec8{

  }

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


}
@media (min-width:1200px){
  .pg_home .section.sec1{
    padding-top: 190px;
  }
  .pg_home .section.sec2{
    margin-top: 50px;
  }
  .pg_home .section.sec3{
    padding-top: 100px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{
    padding-top: 136px;
  }
  .pg_home .section.sec6:after{
    height: 112%;
  }
  .pg_home .section.sec7{
    padding-top: 190px;
  }
  .pg_home .section.sec8{

  }

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


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

}

/*メイン*/

/*ブログ*/
.home_contents1_box{

}
.blog_list{

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

}
.blog_list .webgene-item .img{
  overflow: hidden;
  border-radius: 20px;
}
.blog_list .webgene-item .img:before{
  padding-top: 72.22%;
}
.blog_list .webgene-item .img img{
  border-radius: 20px;
}
.blog_list .webgene-item .box2{
  margin-top: 18px;
}
.blog_list .webgene-item .box2 .meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.blog_list .webgene-item .box2 .date{
  font-size: 15px;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  margin-right: 34px;
  width: 100%;
  ;
}
.blog_list .webgene-item .box2 .category{
  width: 120px;
  background: var(--main-color);
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  padding: 3px 0;
  margin-top: 5px;
  ;
}
.blog_list .webgene-item .box2 .title{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75em;
  margin-top: 10px;
}

/*流れる文字*/
.infiniteslide_wrap{
  margin-bottom: -1em;
  z-index: 3;
  position: relative;
  overflow: visible!important;
}
.flowing_letters{
  font-size: clamp(2.5rem, 0.275rem + 11.13vw, 13.625rem);
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #164b64;
}
.flowing_letters p{
  letter-spacing: -0.05em;
}
/*about*/
.home_contents2_img{

}
.home_contents2_img:before{
  padding-top:1000px;
}
.home_contents2_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.7);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
}
.home_contents2_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
}
.home_contents2_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents2_box1{
  width: 100%;
}
.home_contents2_box1_img1{
  width: 78.67%;
}
.home_contents2_box1_img1 img,
.home_contents2_box1_img2 img{
  border-radius: 20px;
}
.home_contents2_box1_img1:before{
  padding-top: 78.5%;
}
.home_contents2_box1_img2{
  width: 60.29%;
  margin-left: auto;
  margin-top: -6em;
}
.home_contents2_box1_img2:before{
  padding-top: 73.17%;
}
.home_contents2_box2{
  width: 100%;
  margin-top: 20px;
  ;
}
.content_desc{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.18em;
  text-align: justify;
}
.home_contents2_box2 .content_desc{

}
.home_contents2_box2 .read_more{

}

/*もうひとつのガレージ。*/
.home_contents3_wrap{

}
.lg_tt{
  text-align: center;
  font-size: 29px;
  font-weight: 900;
  line-height: 1.2em;
}
.lg_tt p{
  letter-spacing: 0.025em;
}

.home_contents3_items{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.home_contents3_item{
  width: 100%;
}
.home_contents3_item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents3_item_inner{
  position: relative;
  text-align: right;
  padding: 0 16px;
}
.home_contents3_item_inner:before{
  content: "";
  display: block;
  width: 100%;
  ;
  aspect-ratio:759 / 292;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 24px;
  left: 0;
}
.home_contents3_item:nth-child(1) .home_contents3_item_inner:before{
  background-image: url(/system_panel/uploads/images/fukidasi1.png);
}
.home_contents3_item:nth-child(2) .home_contents3_item_inner:before{
  background-image: url(/system_panel/uploads/images/fukidasi2.png);
}
.home_contents3_item:nth-child(3) .home_contents3_item_inner:before{
  background-image: url(/system_panel/uploads/images/fukidasi3.png);
}
.home_contents3_item:nth-child(4) .home_contents3_item_inner:before{
  background-image: url(/system_panel/uploads/images/fukidasi4.png);
}
.home_contents3_item_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  text-shadow    :
    3px  3px 0px #ffffff,
    -3px  3px 0px #ffffff,
    3px -3px 0px #ffffff,
    -3px -3px 0px #ffffff,
    3px  0px 0px #ffffff,
    0px  3px 0px #ffffff,
    -3px  0px 0px #ffffff,
    0px -3px 0px #ffffff;
  position: relative;
  z-index: 1;
}
.home_contents3_item:nth-child(1) .home_contents3_item_tt{
  color: #294223;
}
.home_contents3_item:nth-child(2) .home_contents3_item_tt{
  color: #2a3b52;
}
.home_contents3_item:nth-child(3) .home_contents3_item_tt{
  color: #662233;
}
.home_contents3_item:nth-child(4) .home_contents3_item_tt{
  color: #54366a;
}
.home_contents3_item_desc{
  font-size: 15px;
  font-weight: 700;
  line-height: 2.27em;
  text-align: justify;
  position: relative;
  z-index: 1;
  margin-top: 14px;
}
.car-wrap{
  margin-top: 16px;
}
.car-wrap img{

}
.car-wrap{
  position:relative;
  display:inline-block;
}
.car-wrap > img{
  display:block;
  position:relative;
  z-index:1;
}
.car-wrap::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  /* お好みで少しだけぼかす */
  filter: blur(0.5px);
}
.home_contents3_item:nth-child(1) .car-wrap::before{
  background:#294223;          /* 縁取りの色 */
  -webkit-mask: url(/system_panel/uploads/images/car1.png) center/contain no-repeat;
  mask: url(/system_panel/uploads/images/car1.png) center/contain no-repeat;
  transform: translate(-29px, 11px) scale(1.05);
}
.home_contents3_item:nth-child(2) .car-wrap::before{
  background:#2a3b52;          /* 縁取りの色 */
  -webkit-mask: url(/system_panel/uploads/images/car2.png) center/contain no-repeat;
  mask: url(/system_panel/uploads/images/car2.png) center/contain no-repeat;
  transform: translate(-29px, 11px) scale(1.05);
}
.home_contents3_item:nth-child(3) .car-wrap::before{
  background:#662233;          /* 縁取りの色 */
  -webkit-mask: url(/system_panel/uploads/images/car3.png) center/contain no-repeat;
  mask: url(/system_panel/uploads/images/car3.png) center/contain no-repeat;
  transform: translate(-29px, 11px) scale(1.05);
}
.home_contents3_item:nth-child(4) .car-wrap::before{
  background:#54366a;          /* 縁取りの色 */
  -webkit-mask: url(/system_panel/uploads/images/car4.png) center/contain no-repeat;
  mask: url(/system_panel/uploads/images/car4.png) center/contain no-repeat;
  transform: translate(-29px, 11px) scale(1.05);
}

/*みんなで楽しむコミュニティ*/
.lg_tt strong{
  font-size: 16px;
}
.home_contents4_box{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 30px;
}
.home_contents4_box1{
  width: 100%;
}
.home_contents4_box1_img{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents4_box1_img:before{
  padding-top:50.4%;
}
.home_contents4_box2{
  width: 100%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding:50px 0;
  position: relative;
}
.home_contents4_box2:before{
  content: "";
  display: block;
  width: 100vw;
  height: 120%;
  background: #f1f1f1;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents4_box2_side{
  width: 29.68%;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.75em;
  text-align: left;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.home_contents4_box2_side p{

}
.home_contents4_box2_center{
  width: calc(100% - 29.68% - 29.68%);
  position: relative;
  z-index: 1;
}
.home_contents4_box2_btm{
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  margin-top: 30px;
  position: relative;
  z-index: 1;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding: 16px 0;
}
.home_contents4_box3{
  width: 100%;
}
.home_contents4_box3 .home_contents4_box1_img{

}

/*ギャラリー*/
.home_slide{

}
.home_slide .webgene-blog{
  display: flex;
  flex-wrap: nowrap;
}
.home_slide .webgene-item{
  width: 300px;
  margin-right: 20px;
}
.home_slide .webgene-item:nth-child(even){
  margin-top: 30px;
}
.home_slide .webgene-item a{

}
.home_slide .webgene-item .img:before{
  padding-top: 69.3%;
}
.home_slide .webgene-item .img{
  overflow: hidden;
  ;
  border-radius: 20px;
}
.home_slide .webgene-item .img img{
  border-radius: 20px;
}
.home_slide .simply-scroll{
  height: auto;
}
.home_slide .simply-scroll .simply-scroll-clip{
  height: auto;
}

/*service*/
.home_contents5_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents5_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents5_box1 .tt2{

}
.home_contents5_box1 .content_desc{

}
.home_contents5_box1 .read_more{

}
.home_contents5_box2{
  width: 100%;
  order: 1;
}
.home_contents5_box2_img:before{
  padding-top: 68.5%;
}
.home_contents5_box2_img{

}
.home_contents5_box2_img img{
  border-radius: 30px;
}

.scroll-hint-icon-wrap{
  z-index: 20;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_contents3_item_inner:before{
    width: 700px;
    width: 750px;
    left: 50%;
    top: 10px;
    transform:translateX(-50%);
  }

  .home_slide .simply-scroll-clip{
    overflow: hidden;
  }
  .home_slide .webgene-item{
    min-width: 300px;
  }
}
@media (min-width:768px){
  /*ブログ*/
  .home_contents1_box{

  }
  .blog_list{

  }
  .blog_list .webgene-blog{
    margin-inline:-13px;
  }
  .blog_list .webgene-item{
    padding-inline:13px;
  }
  .blog_list .webgene-item:nth-child(n+3){
    margin-top: 40px;
  }
  .blog_list .webgene-item a{

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

  }
  .blog_list .webgene-item .box2{

  }
  .blog_list .webgene-item .box2 .meta{

  }
  .blog_list .webgene-item .box2 .date{
    width: auto;
  }
  .blog_list .webgene-item .box2 .category{
    margin-top: 0;
  }
  .blog_list .webgene-item .box2 .title{
    margin-top: 16px;
  }

  /*流れる文字*/
  .infiniteslide_wrap{
    margin-bottom: -3em;
  }
  .flowing_letters{

  }
  .flowing_letters p{

  }
  /*about*/
  .home_contents2_img{

  }
  .home_contents2_img:before{
    padding-top: 1200px;
  }
  .home_contents2_outer{
    top: 52%;
  }
  .home_contents2_inner{
  }
  .home_contents2_box1{
    width: 100%;
    margin-left: auto;
  }
  .home_contents2_box1_img1{

  }
  .home_contents2_box1_img1 img,
  .home_contents2_box1_img2 img{

  }
  .home_contents2_box1_img1:before{

  }
  .home_contents2_box1_img2:before{

  }
  .home_contents2_box2{
    margin-top: 0;
  }
  .content_desc{

  }
  .home_contents2_box2 .content_desc{

  }
  .home_contents2_box2 .read_more{

  }

  /*もうひとつのガレージ。*/
  .home_contents3_wrap{

  }
  .lg_tt{
    font-size: 50px;
  }

  .home_contents3_items{

    margin-top: 60px;
  }
  .home_contents3_item{
    width: 100%;
  }
  .home_contents3_item:nth-child(n+2){
    margin-top: 50px;
  }
  .home_contents3_item_inner{
    padding: 0 29px 0 70px;
  }
  .home_contents3_item_tt{
    font-size: 28px;
  }
  .home_contents3_item_desc{
    font-size: 15px;
    line-height: 1.6em;
  }
  .car-wrap{

  }
  .car-wrap img{

  }

  /*みんなで楽しむコミュニティ*/
  .lg_tt strong{
    font-size: 36px;
  }
  .home_contents4_box{
    margin-top: 44px;
  }
  .home_contents4_box1{

  }
  .home_contents4_box1_img{

  }
  .home_contents4_box1_img:before{

  }
  .home_contents4_box2{
    padding:80px 0;
  }
  .home_contents4_box2_side{
    font-size: 30px;
  }
  .home_contents4_box2_side p{

  }
  .home_contents4_box2_center{

  }
  .home_contents4_box2_btm{
    font-size: 22px;
    margin-top: 40px;
    padding: 25px 0;
  }
  .home_contents4_box3{

  }
  .home_contents4_box3 .home_contents4_box1_img{

  }

  /*ギャラリー*/
  .home_slide{

  }
  .home_slide .webgene-blog{

  }
  .home_slide .webgene-item{

    width: 300px;
  }
  .home_slide .webgene-item a{
    display: block;
  }
  .home_slide .webgene-item .img:before{

  }
  .pg_home .section.sec5 .read_more{
    margin-top: 75px;
  }



  /*service*/
  .home_contents5_wrap{

  }
  .home_contents5_box1{
    margin-top: 30px;
  }
  .home_contents5_box1 .tt2{

  }
  .home_contents5_box1 .content_desc{

  }
  .home_contents5_box1 .read_more{
    margin-top: 60px;
  }
  .home_contents5_box1 .read_more a{
    margin-right: 16px;
  }
  .home_contents5_box2{

  }
  .home_contents5_box2_img:before{

  }
  .home_contents5_box2_img{

  }
  .home_contents5_box2_img img{

  }

  /*  .home_slide .webgene-blog{
      width: 1200px!important;
    }*/

}
@media (min-width:1024px){
  /*about*/
  .home_contents2_outer{
    top: 57%;
  }
  .home_contents3_item_tt{
    font-size: 24px;
  }
  .home_contents2_img{

  }
  .home_contents2_img:before{
    padding-top: 1300px;
  }


  .home_contents3_items{
    margin-inline:-15px;
  }
  .home_contents3_item{
    width: 50%;
    padding-inline:15px;
  }
  .home_contents3_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents3_item_inner{
    padding: 0 29px 030px;
  }
  .home_contents3_item_inner:before{
    top: 18px;
  }
  .home_contents2_box1{
    width: 74%;
  }
  .home_contents3_item_desc{
    font-size: 14px;
    line-height: 1.6em;
  }

  /*みんなで楽しむコミュニティ*/
  .home_contents4_box2_side{
    font-size:40px;
  }
  .home_contents4_box2_btm{
    font-size: 30px;
  }

  .content_desc.center{
    text-align: center;
  }

  .home_slide .webgene-item{
    width: 400px;
    min-width: 400px;
  }
}
@media (min-width:1200px){
  /*ブログ*/
  .home_contents1_box{

  }
  .blog_list{

  }
  .blog_list .webgene-blog{

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

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

  }
  .blog_list .webgene-item .box2{

  }
  .blog_list .webgene-item .box2 .meta{

  }
  .blog_list .webgene-item .box2 .date{

  }
  .blog_list .webgene-item .box2 .category{

  }
  .blog_list .webgene-item .box2 .title{

  }
  .home_contents1_wrap .read_more{
    margin-top: 90px;
  }
  /*流れる文字*/
  .infiniteslide_wrap{
    margin-bottom: -5em;
  }
  .flowing_letters{

  }
  .flowing_letters p{

  }

  /*about*/
  .home_contents2_img{

  }
  .home_contents2_img:before{
    padding-top: 855px;
  }
  .home_contents2_outer{

  }
  .home_contents2_inner{
    padding-top: 42px;
  }
  .home_contents2_box1{
    width: 44.73%;
    margin-left: 0;
  }
  .home_contents2_box1_img1{

  }
  .home_contents2_box1_img1 img,
  .home_contents2_box1_img2 img{

  }
  .home_contents2_box1_img1:before{

  }
  .home_contents2_box1_img2:before{

  }
  .home_contents2_box2{
    width: 50.98%;
    padding-top: 100px;
    padding-left: 14px;
  }
  .content_desc{

  }
  .home_contents2_box2 .content_desc{

  }
  .home_contents2_box2 .read_more{
    margin-top: 70px;
  }

  /*もうひとつのガレージ。*/
  .home_contents3_wrap{

  }
  .lg_tt{
    font-size: 80px;
  }

  .home_contents3_items{

  }
  .home_contents3_item{

  }
  .home_contents3_item:nth-child(even){
    margin-top: 110px;
  }
  .home_contents3_item:nth-child(odd){
    margin-top: -20px;
    ;
  }
  .home_contents3_item:first-child{
    margin-top: 0;
  }
  .home_contents3_item_inner{
    padding: 0 29px 0 70px;
  }
  .home_contents3_item_inner:before{
    top: 20px;
  }
  .home_contents3_item_tt{
    font-size: 30px;
  }
  .home_contents3_item_desc{
    font-size: 15px;
    line-height: 1.6em;
  }
  .car-wrap{

  }
  .car-wrap img{

  }

  /*みんなで楽しむコミュニティ*/
  .lg_tt strong{
    font-size: 60px;
  }
  .home_contents4_box{

  }
  .home_contents4_box1{
    width: 28.94%;
  }
  .home_contents4_box1_img{
    width: auto;
    margin-left: var(--margin-for-device-side-w);
    margin-right: 0;
  }
  .home_contents4_box1_img:before{
    padding-top: 116.4%;
  }
  .home_contents4_box2{
    width: 41.43%;
    padding-top: 55px;
    padding-bottom: 50px;
    ;
  }
  .home_contents4_box2_side{
    font-size: 30px;
  }
  .home_contents4_box2_side p{

  }
  .home_contents4_box2_center{

  }
  .home_contents4_box2_btm{
    font-size: 28px;
    width: 84.375%;
    margin-top: 10px;
  }
  .home_contents4_box3{
    width: 28.94%;
  }
  .home_contents4_box3 .home_contents4_box1_img{
    margin-right: var(--margin-for-device-side-w);
    margin-left: 0;
  }

  /*ギャラリー*/
  .pg_home .section.sec5 .tt2{
    margin-bottom: 70px;
  }
  .home_slide{

  }
  .home_slide .webgene-blog{

  }
  .home_slide .webgene-item{
    width: 505px;
    min-width: 505px;
  }
  .home_slide .webgene-item:nth-child(even){
    margin-top: 55px;
  }
  .home_slide .webgene-item a{

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

  }

  /*service*/
  .home_contents5_wrap{

  }
  .home_contents5_box1{
    width: 49.01%;
    order: 1;
    margin-top: 0;
  }
  .home_contents5_box1 .tt2{

  }
  .home_contents5_box1 .content_desc{

  }
  .home_contents5_box1 .read_more{
    margin-top: 60px;
  }
  .home_contents5_box2{
    width: 46.57%;
    padding-top: 10px;
    order: 2;
  }
  .home_contents5_box2_img:before{

  }
  .home_contents5_box2_img{
    margin-right: var(--margin-for-device-side-w);
  }
  .home_contents5_box2_img img{
    border-radius: 30px 0 0 30px;
    ;
  }
}
@media (min-width:1470px){
  .home_contents3_item_inner:before{
    top: 20px;
  }
  .home_contents3_item_tt{
    font-size: 30px;
  }
  .home_contents3_item_desc{
    font-size: 17px;
    line-height: 1.6em;
  }

  .lg_tt{
    font-size: 100px;
  }

  /*みんなで楽しむコミュニティ*/
  .home_contents4_box2_side{
    font-size: 40px;
  }
  .home_contents4_box2_btm{
    font-size: 30px;
  }

}
@media (min-width:1720px){
  .home_contents3_item_inner:before{
    top: 24px;
  }
  .home_contents3_item_tt{
    font-size: 38px;
  }
  .home_contents3_item_desc{
    font-size: 22px;
    line-height: 2.27em;
  }

}

@media (min-width:1800px){
  .home_contents4_box2{
    padding-bottom: 0;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  /* 1) 子要素が折り返されないようにする */
  .home_slide .simply-scroll-list{
    white-space: nowrap;        /* 改行禁止 */
    font-size: 0;               /* インラインブロックの隙間を消す（任意） */
  }
  .home_slide .simply-scroll-list .webgene-item{
    display: inline-block;      /* 横一列に */
    vertical-align: top;
    white-space: normal;        /* テキストは普通に改行可能 */
    box-sizing: border-box;
    /* 2) 幅を安定させる（目安値。表示数に合わせて調整） */
    width: 240px;               /* 例：見せたい幅に固定 */
    margin-right: 16px;         /* 余白 */
  }

  /* 3) 画像は100%でブロック表示（はみ出し防止） */
  .home_slide .webgene-item .img img{
    display: block;
    width: 100%;
    height: auto;
  }
}
.scroll-hint-text{
  white-space: nowrap;
}


/*insta*/
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
}
.insta_list .webgene-item{
  width: 50%;
  padding-inline:5px;
}
.insta_list .webgene-item:nth-child(n+3){
  margin-top: 10px;
}
.insta_list .webgene-item a{

}
.insta_list_item_inner:before{
  padding-top: 133.69%;
}

@media (min-width:768px){
  /*insta*/
  .insta_list{
    margin-top: 55px;
  }
  .insta_list .webgene-blog{
    margin-inline:-8.5px;
  }
  .insta_list .webgene-item{
    padding-inline:8.5px;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }
  .pg_home .section.sec7 .read_more{
    margin-top: 44px;
  }
}

@media (min-width:1024px){
  /*isnta*/
  .insta_list {
    margin-top: 3px;
  }
  .insta_list .webgene-blog{

  }
  .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:6px;
    ;
  }
  .insta_list .webgene-item a{

  }
  .insta_list_item_inner:before{

  }
  .pg_home .section.sec7 .read_more{
    margin-top: 75px;
  }
}
/*******************************
*　swingについて
********************************/

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

}
.pg_about .section.sec1{

}
.pg_about .section.sec2{
  position: relative;
  padding-bottom: 0;
  padding-top: 0;
}
.pg_about .section.sec3{
  position: relative;
  background: #f4f0ec;
  padding-top: 0;
}
.pg_about .section.sec3:after{
  content: "";
  display: block;
  width: 100%;
  height: 70%;
  background: #f4f0ec;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: -1;
}

@media (max-width:374px){

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

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

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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 75px;
  }

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


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

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

  }
  .pg_about .section.sec1{

  }
  .pg_about .section.sec2{
    padding-top: 75px;
  }

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


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


}

/* メイン部分 */

/*見出し*/
.home_contents2_inner.about_contents1_wrap{

}
.home_contents2_inner.about_contents1_wrap .home_contents2_box1{

}
.home_contents2_inner.about_contents1_wrap .home_contents2_box2{

}
.home_contents2_inner.about_contents1_wrap .home_contents2_box1_img2:before{
  padding-top: 73.17%;
}
.content_block{

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

/*理由*/
.pg_about .section.sec2 .home_contents2_outer{
  top: 53%;
}
.pg_about .section.sec2 .home_contents2_img:before{
  padding-top: 1150px;
}
.tt2.sm .tt2_en{
  font-family: "Noto Sans JP", sans-serif;
  color: #164b64;
  font-weight: 900;
}
.tt2.sm .tt2_en:after{
  background: #164b64;
  margin: 24px 0 9px;
}
.tt2_ja_txt.lg{
  font-size: 30px;
  font-weight: 700;
  line-height: 1.4em;
}
.tt2_ja_txt.lg p{
  letter-spacing: 0.05em;
}
.home_contents2_inner.kasou .home_contents2_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.home_contents2_inner.kasou .home_contents2_box2{
  order: 1;
}
.pg_about .section.sec2 .home_contents2_box2{
  margin-top: 20px;
}

.about_contents2_box1_img:before{
  padding-top: 70.21%;
}
.about_contents2_box1_img img{
  border-radius: 30px;
}

/*passion*/
.lg_tt.ll strong{
  font-size: 50px;
}
.about_contents3_wrap .lg_tt{
  margin-top: -0.8em;
  position: relative;
  z-index: 1;
}
.about_contents3_items{
  margin-top: 50px;
}
.about_contents3_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.about_contents3_item:nth-child(n+2){
  margin-top: 50px;
}
.about_contents3_box1{
  width: 100%;
  order: 2;
  margin-top: 20px;
}
.about_contents3_box1 .tt2_en{
  letter-spacing: 0.075em;
}
.about_contents3_box1 .content_desc{

}
.about_contents3_box2{
  width: 100%;
  order: 1;
}
.about_contents3_box2_img{

}
.about_contents3_box2_img img{

}
.about_contents3_box2_img:before{
  padding-top: 68.5%;
}
@media (max-width:767px){
  .tt2.sm .tt2_en{
    font-size: 18px;
  }
  .tt2_ja_txt.lg{
    font-size: 22px;
  }
}
@media (min-width:768px){
  /* メイン部分 */

  /*見出し*/
  .home_contents2_inner.about_contents1_wrap{

  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box1{

  }
  .home_contents2_inner.kasou .home_contents2_box1{
    width: 100%;
    order: 2;
    margin-top: 30px;
  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box2{

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

  /*理由*/
  .pg_about .section.sec2 .home_contents2_img:before{
    padding-top: 1200px;
  }
  .pg_about .section.sec2 .home_contents2_outer{
    top: 56%;
  }
  .tt2.sm .tt2_en{
    font-size: 24px;
  }
  .tt2_ja_txt.lg{
    font-size: 40px;
  }
  .pg_about .section.sec2 .home_contents2_box2{
    margin-top: 30px;
  }

  /*passion*/
  .lg_tt.ll strong{
    font-size: 70px;
  }
  .about_contents3_items{
    margin-top: 80px;
  }
  .about_contents3_item{

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

  }
  .about_contents3_box2{

  }
  .about_contents3_box2_img{

  }
  .about_contents3_box2_img img{

  }
  .about_contents3_box2_img:before{

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

  .pg_about .section.sec2 .home_contents2_outer{
    top: 56%;
  }

  /*理由*/
  .pg_about .section.sec2 .home_contents2_img:before{
    padding-top: 1300px;
  }
  .tt2_ja_txt.lg{
    font-size: 40px;
  }

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

  /*見出し*/
  .home_contents2_inner.about_contents1_wrap{

  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box1{
    width: 49.01%;
    order: 2;
    padding-top: 14px;
    margin-top: 0;
  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box2{
    width: 44.73%;
    order: 1;
    padding-top: 0;
    padding-left: 0;
  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box1_img1{
    width: 80.53%;
  }
  .home_contents2_inner.about_contents1_wrap .home_contents2_box1_img2{
    width: 55.03%;
    margin-top: -9em;
  }

  /*理由*/
  .pg_about .section.sec2 .home_contents2_img:before{
    padding-top: 1000px;
  }
  .about_contents2_box1_img{
    margin-left: var(--margin-for-device-side-w)
  }
  .about_contents2_box1_img img{
    border-radius: 0 30px 30px 0;
  }
  .pg_about .section.sec2 .home_contents2_box2{
    padding-top: 0;
    margin-top: 0;
  }

  .tt2.sm{
    margin-bottom: 60px;
  }
  .tt2.sm .tt2_en{
    font-size: 30px;
  }
  .tt2_ja_txt.lg{
    font-size: 36px;
  }

  /*passion*/
  .lg_tt.ll strong{
    font-size: 130px;
  }
  .about_contents3_items{
    margin-top: 105px;
  }
  .about_contents3_item{

  }
  .about_contents3_box1{
    width: 45.73%;
    margin-top: 0;
  }
  .about_contents3_box1 .tt2_en{
    font-size: 60px;
  }
  .about_contents3_item:nth-child(n+2){
    margin-top: 90px;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box1{
    order: 1;
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box2{
    order: 2;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box1{
    order: 2;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box2{
    order: 1;
  }
  .about_contents3_box1 .content_desc{

  }
  .about_contents3_box2{
    width: 46.38%;
    padding-top: 10px;
  }
  .about_contents3_box2_img{

  }
  .about_contents3_box2_img img{

  }
  .about_contents3_item:nth-child(odd) .about_contents3_box2_img{
    margin-right: var(--margin-for-device-side-w);
  }
  .about_contents3_item:nth-child(odd) .about_contents3_box2_img img{
    border-radius: 30px 0 0 30px;
  }
  .about_contents3_item:nth-child(even) .about_contents3_box2_img{
    margin-left: var(--margin-for-device-side-w);
  }
  .about_contents3_item:nth-child(even) .about_contents3_box2_img img{
    border-radius: 0 30px 30px 0;
  }
  .about_contents3_box2_img:before{

  }
}
@media (min-width:1470px){
  /*理由*/
  .tt2_ja_txt.lg{
    font-size: 40px;
  }
}
@media (min-width:1720px){
  /*理由*/
  .tt2_ja_txt.lg{
    font-size: 50px;
  }

}



/*******************************
*　パーツ
********************************/
.body_cars-parts .footer{
  margin-top: 0;
}
/* セクション設定 */
.pg_carsparts{

}
.pg_carsparts .section.sec1{
  position: relative;
}
.pg_carsparts .section.sec1:before{
  content: "";
  display: block;
  width: 80.625%;
  aspect-ratio:1548 / 1553;
  background-image: url(/system_panel/uploads/images/bbb.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -120px;
  right: 0;
  z-index: -1;
}
.pg_carsparts .section.sec2{
  padding-top:50px;
}

.pg_carsparts .section.bg_img{
  position: relative;
  padding-top: 5px;
}



@media (max-width:374px){

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

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

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

  }
  .pg_carsparts .section.sec1{

  }
  .pg_carsparts .section.sec1:before{
    top: -175px;
  }
  .pg_carsparts .section.sec2{
    padding-top: 100px;
  }
  .pg_service .section.sec2:after{
    top: -261px;
  }


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


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

  }
  .pg_carsparts .section.sec1{

  }
  .pg_carsparts .section.sec1:before{
    top: -175px;
  }
  .pg_carsparts .section.sec2{
    padding-top: 120px;
  }



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


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


}

/* メイン部分 */

/*見出し*/
.home_contents2_inner.parts{

}
.home_contents2_inner.parts .home_contents2_box1{
  order: 2;
  margin-top: 20px;
}
.home_contents2_inner.parts .home_contents2_box2{
  order: 1;
}
.home_contents2_inner.parts .home_contents2_box1_img1{
  width: 80.53%;
}
.home_contents2_inner.parts .home_contents2_box1_img2{
  width: 55.03%;
  margin-top: -9em;
}

/*走るほど愛しくなる一台を。*/
.lg_tt .sm{
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.025em;
}
.carsparts_contents1_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 30px;
}
.carsparts_contents1_items .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 30px;
}
.carsparts_contents1_item{
  width: 100%;
  padding-inline:5px;
}
.carsparts_contents1_item:nth-child(n+2){
  margin-top: 40px;
  ;
}
.carsparts_contents1_item_inner{

}
.carsparts_contents1_item_img{

}
.carsparts_contents1_item_img:before{
  padding-top: 76.59%;
}
.carsparts_contents1_item_tt{
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.075em;
}
.carsparts_contents1_item_outer{
  margin-top: 10px;
}
.carsparts_contents1_item_prop{
  margin-top: 5px;
}
.carsparts_contents1_item_prop_item{
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 2.18em;
}
.carsparts_contents1_item_prop_item1{
  width: 86px;
  position: relative;
}
.carsparts_contents1_item_prop_item1:after{
  content: "：";
  position: absolute;
  top: 50%;
  right:0;
  transform: translateY(-50%);
}
.carsparts_contents1_item_prop_item{

}
.carsparts_contents1_item_inner .read_more{
  margin-top: 16px;
}

.home_contents2_outer.carsparts .home_contents2_inner{
  display: block;
}
.carsparts_contents2_items{
  display: flex;
  flex-wrap: wrap;
  margin-inline:-5px;
  margin-top: 40px;
}
.carsparts_contents2_item{
  width: 50%;
  padding-inline:5px;
}
.carsparts_contents2_item_img{

}
.carsparts_contents2_item_img:before{
  padding-top: 67.2%;
}
.carsparts_contents2_item_img img{
  border-radius: 20px;
}

.home_contents2_outer.carsparts .tt2_ja_txt p{
  text-align: center;
  letter-spacing: 0.025em;
  font-weight: 900;
}
.home_contents2_outer.carsparts .content_desc{
  margin-top: 24px;
}
.section.carsparts .home_contents2_img:before{
  padding-top: 700px;
}

.carsparts_contents1_items.inline_none{
  margin-inline:0;
}
@media (max-width:767px){

}
@media (min-width:768px){
  /*見出し*/
  .home_contents2_inner.parts{

  }
  .home_contents2_inner.parts .home_contents2_box1{
    margin-top: 30px;
  }
  .home_contents2_inner.parts .home_contents2_box2{

  }

  /*走るほど愛しくなる一台を。*/
  .lg_tt .sm{
    font-size: 30px;
  }
  .carsparts_contents1_items{
    margin-inline:-28px;
    margin-top: 42px;
  }
  .carsparts_contents1_items .webgene-blog{
    margin-inline:-28px;
    margin-top: 42px;
  }
  .carsparts_contents1_item{
    width: 50%;
    padding-inline:28px;
  }
  .carsparts_contents1_item:nth-child(n+2){
    margin-top: 0;
    ;
  }
  .carsparts_contents1_item:nth-child(n+3){
    margin-top: 30px;
    ;
  }
  .carsparts_contents1_item_inner{

  }
  .carsparts_contents1_item_img{

  }
  .carsparts_contents1_item_img:before{

  }
  .carsparts_contents1_item_tt{
    font-size: 22px;
  }
  .carsparts_contents1_item_prop{

  }
  .carsparts_contents1_item_outer{
    margin-top: 20px;
  }
  .carsparts_contents1_item_prop_item{

  }
  .carsparts_contents1_item_prop_item1{

  }
  .carsparts_contents1_item_prop_item{

  }

  .carsparts_contents2_items{
    margin-inline:-15px;
    margin-top: 40px;
  }
  .carsparts_contents2_item{
    padding-inline:15px;
  }
  .carsparts_contents2_item_img{

  }
  .carsparts_contents2_item_img:before{

  }
  .carsparts_contents2_item_img img{

  }
  .section.carsparts .home_contents2_img:before{
    padding-top: 800px;
  }
}
@media (min-width:1024px){


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

  }
  .home_contents2_inner.parts .home_contents2_box1{
    width: 49.01%;
    padding-top: 10px;
    order: 1;
    margin-top: 0;
  }
  .home_contents2_inner.parts .home_contents2_box2{
    width: 44.73%;
    padding-top: 0;
    padding-left: 0;
    order: 2;
  }

  /*走るほど愛しくなる一台を。*/
  .lg_tt .mid{
    font-size: 80px;
  }
  .lg_tt .sm{
    font-size: 40px;
    line-height: 2.8em;
  }
  .carsparts_contents1_items{

  }
  .carsparts_contents1_item{
    width: 33.333%;
  }
  .carsparts_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .carsparts_contents1_item:nth-child(n+4){
    margin-top: 70px;
    ;
  }
  .carsparts_contents1_item_inner{

  }
  .carsparts_contents1_item_img{

  }
  .carsparts_contents1_item_img:before{

  }
  .carsparts_contents1_item_tt{

  }
  .carsparts_contents1_item_prop{

  }
  .carsparts_contents1_item_prop_item{

  }
  .carsparts_contents1_item_prop_item1{

  }
  .carsparts_contents1_item_prop_item{

  }

  .carsparts_contents2_items{

  }
  .carsparts_contents2_item{

  }
  .carsparts_contents2_item_img{

  }
  .carsparts_contents2_item_img:before{

  }
  .carsparts_contents2_item_img img{

  }

  /*「走る」を極めたい人へ、Swingはその一台をつくります。*/
  .home_contents2_outer.carsparts{
    top: 52.8%;
  }
  .home_contents2_outer.carsparts .tt2_ja_txt{
    font-size: 40px;
  }
  .section.carsparts .home_contents2_img:before{
    padding-top: 1057px;
  }
  .home_contents2_outer.carsparts .content_desc{
    text-align: center;
  }
}
@media (min-width:1470px){


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


}







/*******************************
*　サービス
********************************/

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

}
.pg_service .section.sec1{

}
.pg_service .section.sec2{
  background: #f4f0ec;
  position: relative;
  overflow: hidden;
  padding-top: 45px;
  padding-bottom: 50px;
}
.pg_service .section.sec2:after{
  content: "";
  display: block;
  width: 66.77%;
  aspect-ratio:1282 / 1553;
  background-image: url(/system_panel/uploads/images/mmn.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: -120px;
  left: 0;
  z-index: 0;
}
.section.bg_img{
  position: relative;
}
.pg_service .section.bg_img{
  padding-top: 0;
  padding-bottom: 0;
  background: #f4f0ec;
}
.pg_service .section.sec4{
  padding: 50px 0;
}
.pg_service .section.sec5{
  position: relative;
  padding: 0;
}
@media (max-width:374px){

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

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

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

  }
  .pg_service .section.sec1{
    padding-bottom: 100px;
  }
  .pg_service .section.sec2{
    padding-bottom: 48px;
  }
  .pg_service .section.sec4{
    padding-top: 100px;
    padding-bottom: 100px;
  }

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


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

  }
  .pg_service .section.sec1{
    padding-bottom: 120px;
  }
  .pg_service .section.sec2{
    padding-bottom: 48px;
  }
  .pg_service .section.sec2:after{
    top: -255px;
  }
  .pg_service .section.sec4{
    padding-top: 140px;
    padding-bottom: 140px;
  }


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


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


}

/* メイン部分 */
.service_contents1_wrap{
  position: relative;
  z-index: 1;
}
.service_contents1_wrap .tt2{
  margin-bottom: 16px;
}
.service_contents1_wrap .tt2_ja{
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.025em;
}
.service_contents1_wrap .tt2_ja:after {
  content: "";
  display: block;
  height: 4px;
  width: 40px;
  background: var(--main-color);
  margin: 10px auto 0;
}
.service_contents1_wrap .content_desc.center{

}
.service_contents1_items{

}
.service_contents1_item{
  width: 100%;
}
.service_contents1_item:nth-child(n+2){
  margin-top: 40px;
  ;
}
.service_contents1_item_inner{

}
.service_contents1_item_img img{
  border-radius: 20px;
}
.service_contents1_item_img:before{
  padding-top: 65.71%;
}
.service_contents1_item_outer{
  margin-top: 16px;
}
.service_contents1_item_tt{
  text-align: center;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.025em;
}
.service_contents1_item_outer .content_desc{
  font-weight: 400;
  line-height: 1.75em;
  margin-top: 6px;
}

/*テーブルい*/
.js-scrollable .mente_price_tbl{
  min-width: 750px;
  margin-top: 40px;
}
.mente_price_tbl{
  background: #fff;
  color: #181818;
  text-align: center;
}
.mente_price_tbl .table_rows_td{
  font-size: 15px;
}
.mente_price_tbl .table_rows_td,
.mente_price_tbl .table_rows_th{
  vertical-align: middle;
  padding: 20px 5px;
  line-height: 1.125;
  position: relative;
  z-index: 1;
  background: #f1f1f1;
  border: 1px solid #181818;
}
.mente_price_tbl_type{
  text-align: center;
  line-height: 1.125;
  height: calc(2em * 1.125);
  margin-bottom: 5px;
}
.mente_price_tbl_img{
  text-align: center;
}
.mente_price_tbl .table_rows_tr:nth-child(n+2) .table_rows_td:nth-child(n+2){
  background: #fff;
}
.mente_price_tbl .table_rows_th{
  height: 40px;
}
.mente_price_tbl .table_rows_td:first-child{
  background: #f1f1f1;
}
.mente_price_tbl .table_rows_th p{
  display: flex
    ;
  align-items: center;
  justify-content: center;
  background: #7ecef4;
  color: #FFF;
  position: absolute;
  z-index: 1;
  top: 0;
  bottom: -1px;
  left: 0;
  width: calc(600% + 6px);
  padding-bottom: 4px;
  font-weight: 500;
  border-right: 1px solid #181818;
}
.mente_price_total {
  font-weight: 900;
  color: #ff0000;
}

/*メンテ*/
.service_contents1_items.mente{
  margin-top: 10px;
}
.service_contents1_items.mente .service_contents1_item_img:before{
  padding-top: 72.01%;
}
.service_contents1_items.mente .service_contents1_item_outer{
  margin-top: 23px;
}
.service_contents1_items.mente .service_contents1_item_tt{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.service_contents1_items.mente .content_desc{
  text-align: justify;
}

/*メンテスタイル*/
.service_contents2_wrap{

}
.service_contents2_tt{
  text-align: center;
}
.service_contents2_tt_en{
  font-size: 31px;
  font-weight: 900;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #164b64;
}
.service_contents2_tt_ja{
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}
.service_contents2_links{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service_contents2_link{
  width: 100%;
}
.service_contents2_link:nth-child(n+2){
  margin-top: 16px;
  ;
}
.service_contents2_link a{
  display: block;
  width: 100%;
  background: #164b64;
  border: 1px solid transparent;
  border-radius: 22.5px;
  border-radius: 40.5px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  transition: all .2s;
  padding: 10px 0;
}
.service_contents2_link a:after{
  content: "\f105";
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right:10px;
  transform: translateY(-50%);


}
.service_contents2_link a:hover{
  background: #fff;
  border: 1px solid #164b64;
  color: #164b64;
}

/*メンテ2*/
.service_contents2_items{

  margin-top: 40px;
}
.service_contents2_item:nth-child(n+2){
  margin-top: 50px;
}
.service_contents2_item_blocks{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service_contents2_item_block{
  width: 100%;
}
.service_contents2_item_block:nth-child(n+2){
  margin-top: 30px;
}
.service_contents2_item_block_inner{
  background: #acdcf3;
  padding: 20px 16px;
}
.service_contents2_item_block_img{
  text-align: center;
}
.service_contents2_item_block_tt{
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.025em;
  margin-top: 13px;
}
.service_contents2_item_block_inner .content_desc{

}

/*リスト*/
.service_contents2_item_sub1{
  background: #f4f0ec;
  padding: 30px 16px;
  margin-top: 30px;
}
.service_contents2_item_sub1_tt{
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}
.service_contents2_item_sub1_tt:after{
  content: "";
  display: block;
  height: 4px;
  width: 40px;
  background: var(--main-color);
  margin: 10px auto 0;
}
.service_contents2_item_sub1_inner{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.73em;
  margin-top: 30px;
}
.service_contents2_item_sub1_inner p{

  letter-spacing: 0.025em;
  margin-right: 4px;
}
/*.service_contents2_item_sub1_inner p:before{
  content: "／";
}*/

/*sub2*/
.service_contents2_item_sub2{
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
.service_contents2_item_sub2_item{
  width: 100%;
}
.service_contents2_item_sub2_item:nth-child(n+2){
  margin-top:50px;
  ;
}
.service_contents2_item_sub2_item_inner{
  background: #fafafa;
}
.service_contents2_item_sub2_item_inner .service_contents2_item_head{
  padding: 30px 16px;

}
.service_contents2_item_sub2_item .service_contents2_item_sub2_item_img:before{
  padding-top: 65.5%;
}


.service_contents3_img{

}
.service_contents3_img:before{
  padding-top: 568px;
}
.service_contents3_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;
}
.service_contents3_outer{
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 1;
  color: #fff;
}
.service_contents3_en{
  font-size: clamp(2rem, -0.037rem + 10.19vw, 12.188rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.025em;
  font-family: "Outfit", sans-serif;
  white-space: nowrap;
  text-align: center;
}
.service_contents3_tt{
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.025em;
  margin-top: 14px;
}
.service_contents3_outer .content_desc{
  font-weight: 600;
  line-height: 2.22em;
  margin-top: 20px;
}
@media (max-width:767px){
  .service_contents1_items.mente {
    margin-top: 30px;
  }
  .pg_service .section.bg_img .home_contents2_img:before{
    padding-top: 580px;
  }
  .service_contents1_items.mente .service_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents1_items.mente .swiper-pagination-bullet-active{
    background: var(--main-color);
  }
  .service_contents1_items.mente .swiper-pagination-bullet{
    background: #000;
  }


  .service_contents1_items{
    margin-top: 40px;
  }
}
@media (min-width:768px){
  /* メイン部分 */
  .service_contents1_wrap{

  }
  .service_contents1_wrap .tt2{

  }
  .service_contents1_wrap .tt2_ja{
    font-size: 40px;
  }
  .service_contents1_wrap .content_desc.center{

  }
  .service_contents1_items{
    display: flex;
    flex-wrap: wrap;
    margin-inline:-15px;
    margin-top: 41px;
  }
  .service_contents1_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .service_contents1_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents1_item_inner{

  }
  .service_contents1_item_img img{

  }
  .service_contents1_item_img:before{

  }
  .service_contents1_item_outer{

  }
  .service_contents1_item_tt{
    font-size: 20px;
  }
  .service_contents1_item_outer .content_desc{

  }

  /*テーブル*/
  .js-scrollable .mente_price_tbl{
    margin-top: 50px;
  }

  /*メンテ*/
  .service_contents1_items.mente{
    margin-top: 50px;
  }
  .service_contents1_items.mente .service_contents1_item_tt{
    font-size:22px;
  }
  .home_contents2_outer.mente{
    top: 55.8%;
  }

  /*メンテスタイル*/
  .service_contents2_wrap{

  }
  .service_contents2_item:nth-child(n+2){
    margin-top: 100px;
  }
  .service_contents2_tt{

  }
  .service_contents2_tt_en{
    font-size: 80px;
  }
  .service_contents2_tt_ja{
    font-size: 20px;
  }
  .service_contents2_links{
    margin-inline:-15px;
    margin-top: 50px;
  }
  .service_contents2_link:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents2_link{
    width: 50%;
    padding-inline:15px;
  }
  .service_contents2_link a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    border-radius: 40.5px;
  }

  /*メンテ2*/
  .service_contents2_items{
    margin-top: 70px;
  }
  .service_contents2_item_blocks{
    margin-inline:-10px;
    margin-top: 50px;
  }
  .service_contents2_item_block{
    width: 50%;
    padding-inline:10px;
  }
  .service_contents2_item_block:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents2_item_block:nth-child(n+3){
    margin-top: 30px;
  }
  .service_contents2_item_block_inner{
    height: 100%;
    padding: 45px 31px 31px 41px;
  }
  .service_contents2_item_block_img{

  }
  .service_contents2_item_block_tt{
    font-size: 20px;
  }
  .service_contents2_item_block_inner .content_desc{

  }

  /*リスト*/
  .service_contents2_item_sub1{
    padding: 30px 16px;
    margin-top: 47px;
  }
  .service_contents2_item_sub1_tt{
    font-size: 22px;
  }
  .service_contents2_item_sub1_inner{
    font-size: 20px;
  }
  .service_contents2_item_sub1_inner p{

  }

  /*sub2*/
  .service_contents2_item_sub2{
    margin-top: 70px;
  }
  .service_contents2_item_sub2_item{

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

  }
  .service_contents2_item_sub2_item_inner .service_contents2_item_head{
    padding: 52px 55px 50px;
  }
  .service_contents2_item_sub2_item .service_contents2_item_sub2_item_img:before{

  }

  .service_contents3_img{

  }
  .service_contents3_img:before{
    padding-top: 568px;
  }
  .service_contents3_img:after{

  }
  .service_contents3_outer{

  }
  .service_contents3_en{

  }
  .service_contents3_tt{
    font-size: 30px;
  }
  .service_contents3_outer .content_desc{
    font-size: 18px;
    margin-top: 30px;
  }
}
@media (min-width:1024px){


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

  }
  .service_contents1_wrap .tt2{

  }
  .service_contents1_wrap .tt2_ja{
    font-size: 60px;
  }
  .service_contents1_wrap .content_desc.center{

  }
  .service_contents1_items{

  }
  .service_contents1_item{

  }
  .service_contents1_item_inner{

  }
  .service_contents1_item_img img{

  }
  .service_contents1_item_img:before{

  }
  .service_contents1_item_outer{

  }
  .service_contents1_item_tt{
    font-size: 23px;
  }
  .service_contents1_item_outer .content_desc{

  }

  /*テーブル*/
  .js-scrollable .mente_price_tbl{
    margin-top: 74px;
  }
  .mente_price_tbl .table_rows_td{
    font-size: 16px;
  }

  /*メンテ*/
  .service_contents1_items.mente .service_contents1_item_tt{
    font-size: 30px;
  }
  .home_contents2_outer.mente{
    top: 53.8%;
  }

  /*メンテスタイル*/
  .service_contents2_wrap{

  }
  .service_contents2_item:nth-child(n+2){
    margin-top: 153px;
  }
  .service_contents2_tt{

  }
  .service_contents2_tt_en{
    font-size: 100px;
  }
  .service_contents2_tt_ja{
    font-size: 30px;
  }
  .service_contents2_links{

  }
  .service_contents2_link{

  }
  .service_contents2_link a{
    border-radius: 22.5px;
  }

  /*メンテ2*/
  .service_contents2_items{
    margin-top: 90px;
  }
  .service_contents2_item_blocks{
    margin-top: 70px;
  }
  .service_contents2_item_block{
    width: 25%;

  }
  .service_contents2_item_block:nth-child(n+3){
    margin-top: 0;
  }
  .service_contents2_item_block:nth-child(n+5){
    margin-top: 20px;
  }
  .service_contents2_item_block_inner{
    padding: 45px 31px 31px 41px;
  }
  .service_contents2_item_block_img{

  }
  .service_contents2_item_block_tt{
    font-size: 23px;
  }
  .service_contents2_item_block_inner .content_desc{

  }

  /*3列*/
  .service_contents2_item_blocks.col4{

  }
  .service_contents2_item_blocks.col4 .service_contents2_item_block{
    width: 33.333%;
  }
  .service_contents2_item_blocks.col4 .service_contents2_item_block:nth-child(n+4){
    margin-top: 32px;
  }

  /*リスト*/
  .service_contents2_item_sub1{
    padding: 25px 44px 34px 97px;
  }
  .service_contents2_item_sub1_tt{
    font-size: 30px;
  }
  .service_contents2_item_sub1_inner{
    font-size: 23px;
  }
  .service_contents2_item_sub1_inner p{

  }

  /*sub2*/
  .service_contents2_item_sub2{
    margin-inline:-15px;
    margin-top: 87px;
  }
  .service_contents2_item_sub2_item{
    width: 50%;
    padding-inline:15px;
  }
  .service_contents2_item_sub2_item .tt2{
    margin-bottom: 40px;
  }
  .service_contents2_item_sub2_item:nth-child(n+2){
    margin-top: 0;
  }
  .service_contents2_item_sub2_item_inner{

  }
  .service_contents2_item_sub2_item_inner .service_contents2_item_head{
    padding: 52px 20px 50px;
  }
  .service_contents2_item_sub2_item .service_contents2_item_sub2_item_img:before{

  }

  .service_contents3_img{

  }
  .service_contents3_img:before{

  }
  .service_contents3_img:after{

  }
  .service_contents3_outer{
    top: 48%;
  }
  .service_contents3_en{

  }
  .service_contents3_tt{
    font-size: 40px;
  }
  .service_contents3_outer .content_desc{

  }
}
@media (min-width:1470px){
  .service_contents2_item_sub2_item_inner .service_contents2_item_head{
    padding: 52px 55px 50px;
  }

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


}


/*******************************
*　ギャラリー
********************************/
.pg_gallery{

}
.pg_gallery .section.sec1{

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

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}

/*一覧*/
.gallery_hdr_wrap .tt2{
  margin-bottom: 0;
}
.gallery_list{

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

}
.gallery_list .webgene-item .img:before{
  padding-top: 70.21%;
}
.gallery_list .webgene-item .title{
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
}

/*詳細*/
.gallery_detail_box{

}
.gallery_detail_box .title{
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
.gallery_detail_box .gallery_box1{

}
.gallery_detail_box .gallery_main .img.img_fit:before{
  padding-top: 67.39%;
}
.gallery_detail_box .gallery_box2{

}
.gallery_detail_box .gallery_thumb .img.img_fit:before{
  padding-top: 67.92%;
}
.gallery_detail_box .gallery_detail{
  width: 100%;
  border-radius: 20px;
  border: 1px solid #164b64;
  padding: 30px 16px;
  margin-top: 40px;
}
.gallery_detail_box .post_content{
  font-size: 16px;
  font-weight: 400;
  line-height: 2.125em;
}
@media (max-width:374px){

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

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

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

  }
  .pg_gallery .section.sec1{
    padding-top: 50px;
  }
  .pg_gallery .section.sec2{
    padding-top: 27px;
  }
  /*一覧*/
  .gallery_list{

  }
  .gallery_list .webgene-blog{
    margin-inline:-28.5px;
  }
  .gallery_list .webgene-item{
    padding-inline:28.5px;
  }

  .gallery_list .webgene-item a{

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

  }
  .gallery_list .webgene-item .title{
    font-size: 18px;
  }

  /*詳細*/
  .gallery_detail_box{

  }
  .gallery_detail_box .title{
    font-size: 22px;
  }
  .gallery_detail_box .gallery_box1{
    width: 82.88%;
  }
  .gallery_detail_box .gallery_main .img.img_fit:before{

  }
  .gallery_detail_box .gallery_box2{
    width: 14.41%;
  }
  .gallery_detail_box .gallery_thumb .img.img_fit:before{

  }
  .gallery_detail_box .swiper-grid-column>.swiper-wrapper{
    width: 100%;
  }
  .gallery_detail_box .gallery_detail{
    padding: 34px 65px;
    margin-top: 60px;
  }
  .gallery_detail_box .read_more{
    margin-top: 44px;
  }
}
@media (min-width:1024px){
  /*一覧*/
  .gallery_list{

  }
  .gallery_list .webgene-blog{

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

  .gallery_list .webgene-item:nth-child(n+4){
    margin-top: 46px;
    ;
  }
  .gallery_list .webgene-item a{

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

  }
  .gallery_list .webgene-item .title{

  }

  /*詳細*/
  .gallery_detail_box{

  }
  .gallery_detail_box .title{
    font-size: 25px;
  }
  .gallery_detail_box .gallery_box1{

  }
  .gallery_detail_box .gallery_main .img.img_fit:before{

  }
  .gallery_detail_box .gallery_box2{

  }
  .gallery_detail_box .gallery_thumb .img.img_fit:before{

  }
  .gallery_detail_box .gallery_detail{
    padding: 34px 65px 120px;
  }
}
@media (min-width:1200px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }

}




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

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

}
.pg_company .section.sec1{

}
.pg_company .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_company{

  }
  .pg_company .section.sec1{

  }
  .pg_company .section.sec2{

  }

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


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


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


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


}


/* メイン部分 */


/* 会社概要 */
.company_tbl{

}
.company_tbl .table_rows_th,
.company_tbl .table_rows_td{
  color: #000;
  border-color: #808080;
  padding: 10px 10px;
}
.company_tbl .table_rows_th{
  background: #e6e6e6;
  font-weight: 500;
}
.company_tbl .table_rows_td{
  background: #FFF;
}

/* マップ */
.company_map{

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

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

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


@media (max-width:767px){

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

  /* 会社概要 */
  .company_tbl{

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

  /* マップ */
  .company_map{

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


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

  /*メンテ*/
  .home_contents2_img.mente:before{
    padding-top: 700px;
  }

}
@media (min-width:1024px){
  /*メンテ*/
  .home_contents2_img.mente:before{
    padding-top: 700px;
  }

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

  /* 会社概要 */
  .company_tbl{

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

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

  /*メンテ*/
  .home_contents2_img.mente:before{
    padding-top: 843px;
  }
}
@media (min-width:1470px){


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


}


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

/* 一覧（サムネあり） */
.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{

}


@media (max-width:767px){

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

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

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

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

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

  }

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

}
@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: #164b64;
  color: #FFF;
  padding: 12px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
}

.posts_cat_item{
  padding-left: 0;
}
.posts_cat_item + .posts_cat_item{
  margin-top: 12px;
}
.posts_cat_item a{
  display: block;
  position: relative;
  padding-left: 32px;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0;
}
.posts_cat_item a:before{
  content: "■";
  position: absolute;
  left: 0;
}

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

}
.posts_detail .meta{
  border-bottom: none;
  padding-bottom: 5px;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.posts_detail .meta .category{
  margin-bottom: 2px;
}
.posts_detail .meta .category{
  display: inline-block;
  background: #7ecef4;
  color: #fff;
  border-radius: 0;
  color: #FFF;
  min-width: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 4px 21px;
  line-height: 1.2;
}
.posts_detail .meta .date{
  width: 125px;
  font-size: 16px;
  font-weight: 500;
  ;
  letter-spacing: 0.075em;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  position: relative;
  margin-right: 33px;
}
.posts_detail .meta .date:after{
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  background: #d6d6d6;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-50%);
}
.posts_detail .title{
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.075em;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 11px;
}
.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;
}


.blog_list.list{

}
.blog_list.list .webgene-blog{

}
.blog_list.list .webgene-item{

}
.blog_list.list .webgene-item .img:before{
  padding-top: 70.58%;
}
.blog_list.list .webgene-item a{

}
/* コピー用 */
@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_blog{
    padding-top: 50px;
  }
  .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: 23px;
  }

  /* 詳細 */
  .posts_detail{
    padding: 0 0 29px;
  }
  .posts_detail .webgene-item{

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

  .blog_list.list{

  }
  .blog_list.list .webgene-blog{
    margin-inline:-15px;
  }
  .blog_list.list .webgene-item{
    width: 50%;
    padding-inline:15px;
  }
  .blog_list.list .webgene-item:nth-child(n+3){
    margin-top: 56px;
  }
  .blog_list.list .webgene-item .box2{
    margin-top: 21px;
  }

  .body_blogDetail .read_more{
    margin-top: 45px;
  }
}
@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{

  }

  .blog_list.list{

  }
  .blog_list.list .webgene-blog{
    margin-inline:-15px;
  }
  .blog_list.list .webgene-item{
    width: 33.333%;
    padding-inline:15px;
  }
  .blog_list.list .webgene-item:nth-child(n+3){
    margin-top: 0;
  }
  .blog_list.list .webgene-item:nth-child(n+4){
    margin-top: 56px;
  }
  .blog_list.list .webgene-item a{

  }
  .blog_list.list .webgene-item .category{
    margin-top: 10px;
    ;
  }
}
@media (min-width:1200px){

  .pg_news{
    padding-top: 100px;
  }

  .blog_list.list .webgene-item .category{
    margin-top: 0;
  }

}


/*******************************
*　会社概要
********************************/

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

}
.pg_company .section.sec1{

}
.pg_xxx .section.sec2{

}

/*テーブル*/
.company_tbl{

}
.pg_company .company_tbl .table_rows_th,
.pg_company .company_tbl .table_rows_td{
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #d0d0d0;
}
.pg_company .company_tbl .table_rows_th{
  background: #f2f2f2;
}
.pg_company .company_tbl .table_rows_th p{
  letter-spacing: 0.08em;
}
.pg_company .company_tbl .table_rows_td{

}
.pg_company .company_tbl .table_rows_td p{
  letter-spacing: 0.16em;
}

/*地図*/
.gmap{
  margin-top:40px;
}
.access_map iframe{
  width: 100%;
  border: none;
  height: 250px;
}


/*ギャラリー*/
.company_gallery_items{

}
.company_gallery_item{

}
.company_gallery_item_img{

}
.company_gallery_item_img:before{
  padding-top: 71.42%;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  /*テーブル*/
  .company_tbl{

  }
  .pg_company .company_tbl .table_rows_th,
  .pg_company .company_tbl .table_rows_td{
    display: block;
    width: 100%;
    border-bottom: 0;
  }
  .pg_company .company_tbl .table_rows_tr:last-child .table_rows_td{
    border-bottom: 1px solid #d0d0d0;
  }
  .pg_company .company_tbl .table_rows_th{

  }
  .company_tbl .table_rows_td{

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

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

  }

  /*テーブル*/
  .company_tbl{

  }
  .pg_company .company_tbl .table_rows_th,
  .pg_company .company_tbl .table_rows_td{
    font-size: 18px;
  }
  .pg_company .company_tbl .table_rows_th{
    width: 200px;
  }
  .company_tbl .table_rows_td{

  }

  /*地図*/
  .gmap{
    margin-top: 80px;
  }
  .access_map iframe{
    height: 400px;
  }


  /*ギャラリー*/
  .company_gallery_items{
    margin-top: 74px;
  }
  .company_gallery_item{

  }
  .company_gallery_item_img{

  }
  .company_gallery_item_img:before{

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

  }
  .pg_company .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

  /*テーブル*/
  .company_tbl{

  }
  .pg_company .company_tbl .table_rows_th,
  .pg_company .company_tbl .table_rows_td{
    padding: 18px 14px 18px;
  }
  .pg_company .company_tbl .table_rows_th{
    width: 284px;
  }
  .pg_company .company_tbl .table_rows_td{
    padding-left: 19px;
  }

  /*地図*/
  .gmap{
    margin-top: 100px;
  }
  .access_map iframe{

  }


  /*ギャラリー*/
  .company_gallery_items{

  }
  .company_gallery_item{

  }
  .company_gallery_item_img{

  }
  .company_gallery_item_img:before{

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


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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

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

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

/* メイン */
.gallery_main{

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

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

}


/* 詳細 */
.gallery_detail{

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

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


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

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

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

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

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

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

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

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

  }

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

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

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


}





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

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

@media (max-width:1023px){

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

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

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


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

/* フォーム */
.pg_contact .formTbl{
  border: 1px solid #b2b2b2;
  background: #ffffff;
}
.pg_contact .form.formWrap {
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
}
.pg_contact .formRow + .formRow{
  border-top: 1px solid #b2b2b2;
}
.pg_contact .formTh {
  padding: 16px 15px 16px 20px;
  background: #f5f5f5;
  letter-spacing: 0.08em;
}
.pg_contact .formTh label{
  margin: 0;
}
.d-inline-block.requiredText {
  font-size: 13px;
  padding: 2px 12px;
  margin-top: 3px;
  float: right;
  font-weight: 400;
  letter-spacing: 0.12em;
  background: #b80000;
  color: #ffffff;
}
.d-inline-block.requiredText.nini{
  background: #fff;
  color: #b80000;
  border: 1px solid #b80000;
}
.pg_contact .formTd {
  font-size: 15px;
  padding: 10px 16px;
}
.pg_contact .formTd.about{
  font-size: 15px;
  font-weight: 400;
}
.pg_contact .formTd.about p{
  letter-spacing: 0.16em;
}
.rd_txt{
  color: #e72424;
  line-height: 1.893em;
  margin-top: 13px;
}
.nr_txt{
  margin-top: 8px;
}
.nr_txt a{
  color: #49a0dd;
}
.fileArea{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.fileArea p{
  font-size: 14px;
  font-weight: 400;
  color: #e50000;
}
.fileArea:nth-child(n+2){
  margin-top: 16px;
}
.nr_txt p:nth-child(n+2){
  margin-top: 13px;
}
.pg_contact .formTd input[type="text"],
.pg_contact .formTd input[type="tel"],
.pg_contact .formTd input[type="email"]{
  max-width: 461px;
  height: 39px;
  width: 100%;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formTd select{
  border-radius: 0;
}
.pg_contact .formTd input[name="zip1"]{
  max-width: 120px;
}
.pg_contact .formTd input[name="zip2"]{
  max-width: 150px;
}
.pg_contact .formTd select[name="pref"]{
  max-width: 225px;
  width: 100%;
  font-size: 16px;
  padding: 7px 10px;
  border: 1px solid #d6d8d8;
}
.pg_contact .formTd input[name="city"]{
  max-width: 425px;
}
.pg_contact .formTd .addArea + .addArea{
  margin-top: 8px;
}
.pg_contact .formTd .addArea .labelText02{
  width: 75px;
}
.pg_contact .formTd textarea{
  width: 100%;
  height: 280px;
  font-size: 15px;
  padding: 5px 10px;
  border: 1px solid #d6d8d8;
  border-radius: 0;
  letter-spacing: 0.16em;
}
.pg_contact .formWrap .text-center{
  padding-top: 40px;
}
.pg_contact input[name="privacy"]{
  margin-right: 7px;
}
.pg_contact .privacyLabel{
  font-size: 17px;
  display: inline;
}
.pg_contact .privacyLabel a{
  color: #1a3e9b;
}
.pg_contact .formBtn.formSend {
  display: block;
  width: 100%;
  max-width: 300px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  background: #1a1a1a;
  border-radius: 27px;
  color: #FFF;
  padding: 14px 20px;
  margin: 23px auto 0;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
  cursor: pointer;
  letter-spacing: 0.075em;
}
.pg_contact .formBtn.formSend:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.pg_contact .formBtn.formSend:hover{
  background: #fff;
  border: 1px solid #1a1a1a;
  color: #1a1a1a;
}
.pg_contact .formBtn.formSend:hover:after{
  right: 10px;
}
.pg_contact label {
  display: inline-block;
  margin-bottom: 0;
}
.radioArea{
  padding: 0;
}
.radioArea .d-inline-block .label{
  margin-left: 9px;
  letter-spacing: 0;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25em;
}
.radioArea .d-inline-block{
  margin-right: 30px;
}
.radioArea .d-inline-block:last-child{
  margin-right: 0;
}
label.label.zipcode_i {
  padding: 5px;
  background: #cccccc;
  margin: 0;
  display: inline-block;
  border: 1px solid #d6d8d8;
  border-right: 0;
  vertical-align: top;
  line-height: 1.8em;
}
.pg_contact .section.sec1 {
  padding: 0 0 0;
}

.privacy_box{
  padding: 30px 50px 30px 28px;
  height: 397px;
  overflow: auto;
  background: #fff;
  border: 1px solid #dbdbdb;
  margin-top: 0;
  color: #000000;
  margin-top: 0;
}

@media only screen and (min-width: 1024px){
  .pg_contact .section.sec1{
    padding-top: 50px;
  }

  .pg_contact .formTh {
    -ms-flex: 0 0 28%;
    -webkit-box-flex: 0;
    -webkit-flex: 28%;
    flex: 0 0 28%;
    max-width: 28%;
  }
  .pg_contact .formTd {
    -ms-flex: 0 0 72%;
    -webkit-box-flex: 0;
    -webkit-flex: 72;
    flex: 0 0 72%;
    max-width: 72%;
  }

  .fileArea p{
    margin-left: 6px;
  }
}


/* プライバシー */
.pg_contact .section.sec2{
  padding: 100px 0 20px;
}
.pg_contact .section.sec2 .contact_tt{
  font-size: 21px;
  font-weight: 400;
  letter-spacing: 0.2em;
  margin-bottom: 48px;
  padding-left: 10px;
}
.privacy_item {
  margin-top: 30px;
}
.privacy_ttl {
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  margin-bottom: 12px;
  border-left: 6px solid #7ecef4;
  letter-spacing: 0.04em;
}
.privacy_txt{
  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 {
  margin-bottom: 58px;
}
.contact_tt.privacy br{
  display: none;
}
.pg_contact .d-inline{
  display: inline-block!important;
}
.pg_contact .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;
  }

  .radioArea .d-inline-block .label{
    font-size: 14px;
  }

}

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

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

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

  .radioArea .d-inline-block {
    margin-right: 0;
  }
  .pg_contact .section.sec2 .contact_tt {
    margin-bottom: 20px;
    font-size: 19px;
  }

  .privacy_box{
    padding: 30px 10px;
  }


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

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

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

/*******************************
*　お問い合わせ送信完了
********************************/
.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{

}

a:not([href]),
a[href=""],
a[href="#"] {
  display: none;
}

.carsparts_contents1_item_outer .content{
 font-size:16px;
  font-weight:400;
  line-height:2em;
  margin-top:16px;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .thanks_text{
    margin-top: 30px;
  }
}
@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){
  .thanks_text{
    text-align: center;
  }

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


}
