@charset "UTF-8";

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

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

  /* フォント関連 */
  --font-ja: "Noto Sans JP", sans-serif;
  /*--font-en: "Outfit",'Noto Sans JP', sans-serif;*/
  /*--font-en: "Oswald", 'Noto Sans JP',sans-serif;*/
  --font-en: "Cardo", 'Noto Sans JP', sans-serif;
  --font-en2: "Josefin Sans", '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;*/
  letter-spacing: inherit;
}
p{

}
h1, h2, h3, h4, h5, h6{
  line-height: 1.5;
}

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

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

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

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

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

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

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


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


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

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


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



/*******************************
*　ヘッダー
********************************/
.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_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: 0;
}
.hdr_sns a{
  width: 28px;
  transition: 0.2s all;
}
.hdr_sns a:hover{
  filter: brightness(1.1);
}
.hdr_sns a img{
  display: block;
}
.hdr_sns a + a{
  margin-left: 13px;
}

.hdr_lang {
  display: flex;
  align-items: center;
  width: 185px;
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.05em;
  background: #fff;
  color: #181818;
  border-radius: 25px;
  padding: 12px 21px 12px 20px;
  position: relative;
  transition: all .2s;
  border: 1px solid #808e99;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
}
.hdr_lang:before {
  content: "";
  display: block;
  width: 15px;
  min-width: 15px;
  aspect-ratio: 1;
  background-image: url(https://global-company.jp/system_panel/uploads/images/lang.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 16px;
}
.hdr_lang_select {
  display: none;
  position: absolute;
  z-index: 2;
  top: 100%;
  left: 0;
  right: 0;
  background: #333;
  color: #FFF;
  padding: 14px 13px;
  transition: 0.2s all;
  border-radius: 25px;
}
.hdr_lang_btn.defo {
  display: flex;
  align-items: center;
}
.hdr_lang_btn.defo:before {
  content: '';
  height: 17px;
  border-left: 1px solid #404040;
}
.hdr_lang_btn.defo:before {
  content: '';
  display: block;
  height: 17px;
  border-left: 1px solid #404040;
  margin-right: 17px;
}
.hdr_lang:hover {
  border: 1px solid #1c1c1c;
  background: #ccc;
  color: #181818;
}
.hdr_lang:hover .hdr_lang_select{
  display: block;
}
@media (min-width:375px){

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

  .hdr1 {
    justify-content: center;
  }

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

  .header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 100%;
    justify-content: flex-end;
  }

  .hdr1 {
    justify-content: center;
  }

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

  .hdr_right{
    display: none;
  }

  /*.gnav_sub_inner{
    margin-top: 8px;
  }
  .gnav_item a p:first-child{
    border-bottom: 1px solid #000;
  }
  .gnav_item:nth-child(3),
  .gnav_item:nth-child(4){
    width: 100%;
  }
  .gnav_sub_item_a p{
    display: flex!important;
    align-items: center;
    padding: 5px 0;
  }
  .gnav_sub_item_a p:before{
    content: "■";
    display: block;
    margin-right: 10px;
  }*/
  .gnav_item:hover{
    color: var(--sub-color);
  }

  .hdr_logo {
    mix-blend-mode: difference;
    position: absolute;
    z-index: 2;
    top: 10px;
    left: 10px;
    width: 120px;
  }
  .hdr_lang{
    padding: 5px 21px 5px 20px;
  }

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

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

    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 27px 20px;
  }

  .hdr1{
    padding: 0 15px 0;
  }

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

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

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

  /* TELボタン */
  .hdr_tel{

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

  .hdr_center{
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbdbdb;
    background: #fff;
    border-radius: 25px;
    padding: 11px 30px;
  }

  .hdr_contact_btn{
    display: block;
    width: 200px;
    border-radius: 5px;
    background: #008bd5;
    color: #fff;
    border: 1px solid transparent;
    font-size: 16px;
    font-family: "Jost", sans-serif;
    line-height: 1;
    font-weight: 500;
    text-align: center;
    padding: 16px 0;
    position: relative;
  }
  .hdr_contact_btn:after{
    content: "→";
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    transition: 0.2s all;
  }
  .hdr_contact_btn p{
    letter-spacing: 0;
  }
  .hdr_contact_btn:hover{
    background: #fff;
    border: 1px solid #008bd5;
  }

  .hdr_right{
    display: flex;
    align-items: center;
  }
  .hdr_logo_outer{
    width: 249px;
  }
  .hdr_logo {
    mix-blend-mode: difference;
    position: fixed;
    z-index: 4;
    top: 14px;
    left: 20px;
  }

  .hdr_outer{
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .hdr_lang {
    display: flex;
    align-items: center;
    width: 180px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 10px;
  }
  .hdr_lang_btn.defo:before {
    content: '';
    height: 17px;
    border-left: 1px solid #404040;
  }
}
@media (min-width:1024px){

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

  /* ロゴ */
  .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: 76px;
  }
  /* ロゴ */
  .hdr_logo{

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

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

  }
  .header.slim .hdr_logo img{
  }

  .hdr_contact_btn{
    display: block;
    width: 240px;
  }

}
@media (min-width:1470px) {
  .hdr_sns{
    margin-left: 23px;
  }
}


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

/* サイドバー */
.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;
  }

}


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

.footer{
  background: #FFF;
  margin-top: 100px;
  position: relative;
  z-index: 1;
}
.body_home .footer{
  margin-top: 0;
}

.pg_sale + .footer,
.pg_buyback + .footer{
  margin-top: 0;
}

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

.ftr1>.container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr1_box1{
  width: 42.76%;
}
.ftr1_box2{
  width: 55.26%;
}

.ftr_logo{
  margin-bottom: 25px;
}
.ftr_name{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.ftr_addr{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.ftr_addr p+p{
  margin-top: 5px;
}


.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_btm{
  margin-top: 50px;
}
.ftr_btm_inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_btm_box1{
  width: 100%;
}
.ftr_btm_box2{
  width: 100%;
  margin-top: 30px;
}

.ftr_banner{
  display: flex;
  flex-wrap: wrap;
  /*flex-wrap: wrap;*/
  gap: 20px 20px;
  /*margin-left: -10px;*/
  /*margin-right: -10px;*/
  
}
.ftr_banner_item1{
  width: 100%;
  /*padding-left: 10px;*/
  /*padding-right: 10px;*/
}
.ftr_banner_item2{
  width: 100%;
  /*padding-left: 10px;*/
  /*padding-right: 10px;*/
}
.ftr_banner_item_ttl{
  font-size: 16px;
  font-weight: 500;
  padding-bottom: 5px;
  border-bottom: 1px solid #aeaeae;
  margin-bottom: 10px;
}
.ftr_banner_item_links{
  display: flex;
  gap: 15px 15px;
}

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 10px 0;
  margin-top: 50px;
}
.ftr_copy p{
  letter-spacing: 0;
}

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

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

.ftr_contact_wrap{
  position: relative;
  z-index: 1;
  border-bottom: 1px solid #313131;
}

.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.ftr_contact_box1{
  width: 100%;
  padding-top: 60px;
}
.ftr_contact_box1 .home_sec3_tt_ja{
  border-bottom: none;
  letter-spacing: 0.05em;
}
.ftr_contact_box1 .home_sec3_tt{

}
.ftr_contact_box1 .content_desc{
  font-weight: 500;
  margin-top: 41px;
}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;
  ;
}
.ftr_contact_box2_inner{

}
.ftr_contact_box2_img:before{
  padding-top: 250px;
}

.ftr_contact_box1 .home_sec3_tt_en{
  font-weight: 400;
}

.ftr_contact_head{
  
}
.ftr_contact_head_ja{
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.ftr_contact_head_en{
  font-size: 20px;
  font-weight: 400;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  color: #aeaeae;
  margin-top: 6px;
}
.ftr_contact_msg{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  margin-top: 20px;
}

.link_items{
  margin-top: 40px;
}
.link_0{
  width: 100%;
  max-width: 585px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  padding: 19px 25px;
  margin-inline:auto;
  transition: all .2s;
  border: 1px solid #aeaeae;
  border-radius: 36px;
  position: relative;
}
.link_0.line p,
.link_0.mail p{
  display: flex;
  align-items: center;
  letter-spacing: 0;
}
/*.link_0.line p:before{
  content: "";
  display: block;
  width: 27px;
  aspect-ratio:1;
  background-image: url(/system_panel/uploads/images/line.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
}
*/
.link_0.mail p:before{
  display: none;
}
.link_0.mail:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.link_0.item1:hover{
  background:var(--sub-color);
  color: #fff;
}
.link_0.item1:hover:before{
  background: #fff;
}
.link_0.item1:hover:after{
  color: #fff;

}
.link_0.item1:hover{
  border: 1px solid #fff;
}
.link_0.line:hover{
  background: #06C755;
}
.link_0:hover{
  transform: none;
}
.link_0:hover{
  color: #fff;
  background: #000;
}

.link_0.item1{
  background: #fff;
  border: 1px solid #d9d9d9;
  color: #181818;
  position: relative
}
.link_0.item1:before{
  content: "";
  display: block;
  width: 2px;
  max-height: 46px;
  height: 100%;
  background: #000;
  color: #FFF;
  position: absolute;
  top: 50%;
  right:12.3%;
  transform: translateY(-50%);
}
.link_0.item1:after{
  content: "▶";
  display: block;
  font-size: 17px;
  color: #183663;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
.link_0.item2{
  border: 0;
  border-top: 1px solid #aeaeae;
  border-bottom: 1px solid #aeaeae;
  border-radius: 0;
  color: #000;
  padding: 12px 53px 12px 25px;
}
.link_0.item2 p{
  letter-spacing: 0;
}
.link_0.item2 p.tel{
  letter-spacing: 0.075em;
}
.link_0.item2:hover{
  background: #fff;
  color: #000;
}
.link_0.item2:hover{
  background: #000;
  color: #fff;
}
.link_0 + .link_0{
  margin-top: 25px;
}
.link_0 .tel{
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.075em;
  font-family: "Oswald", sans-serif;
}

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

}
.ftr_add{
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
}
.ftr_add p{
  letter-spacing: 0;
}
.namae{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}
.ftr_box1_bnr{
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}
.ftr_box1_bnr_item{

}
.ftr_1_box2{
  width: 100%;
}
.ftr1_links{

}
.ftr1_links .read_more{
  margin: 0;
}
.ftr1_links .read_more a{
  font-size:15px;
  font-weight: 500;
  margin: 0;
  padding: 14px 22px;
}
.ftr1_links .read_more a p{
  letter-spacing: 0;
}
.ftr_links{

}
.ftr_link{

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

}
@media (max-width:767px){
  .mv_slider{
    overflow: visible;
  }

  .pg_header{
    height: 260px;
    height: 336px;
  }
  .pg_header:before{
    width: 1100px;
    left: 22%;
  }
  .pg_header_box{
    position: relative;
    z-index: 1;
    padding-top: 65px;
  }
  .pg_header_left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .pg_header_left_h1,
  .pg_header_left_p{
    background: #171d2e;
    padding: 3px 10px 5px;
  }
  .pg_header_left_p{
    margin-top: 5px;
  }
  .pg_header_box .content_desc{
    margin-top: 20px;
    text-shadow    :
      2px  2px 1px #ffffff,
      -2px  2px 1px #ffffff,
      2px -2px 1px #ffffff,
      -2px -2px 1px #ffffff,
      2px  0px 1px #ffffff,
      0px  2px 1px #ffffff,
      -2px  0px 1px #ffffff,
      0px -2px 1px #ffffff;
  }
  .pg_header_box .content_desc{
    font-size: 12px;
  }
  
  

  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);
  }
  
  .link_0.item2 p{
    width:100%;
    text-align:center;
  }

  .link_0.item2{
    flex-wrap: wrap;
    justify-content: center;
    padding: 5px 30px;
  }

  .ftr_logo{
    display: block;
    width: 250px;
    margin-inline: auto;
  }
  .ftr_1_box1{
    text-align: center;
  }
  .ftr_1_box2{
    display: none;
  }
  .ftr_box1_bnr{
    justify-content: center;
  }
  .ftr_box1_bnr_item{
    margin-bottom: 10px;
  }

  .ftr_contact_wrap:before{
    top: 0;
  }
  
  .ftr_links{
    display: none;
  }
  .ftr_banner_item_img img{
    height: 40px;
  }
}
@media (min-width:768px){

  .footer{
    margin-top: 0;
  }
  .body_home .footer{
    margin-top: 0;
  }
  .ftr_contact_box{

  }
  .ftr_contact_box1{
    padding-top: 80px;
  }
  .ftr_contact_box1 .home_sec3_tt{

  }
  .ftr_contact_box1 .content_desc{
    margin-top: 41px;
  }
  .ftr_contact_box2{
    margin-top: 40px;
    ;
  }
  .ftr_contact_box2_inner{

  }
  .ftr_contact_box2_img:before{
    padding-top: 660px;
  }
  

  .ftr_contact_head{

  }
  .ftr_contact_head_ja{
    font-size: 56px;
  }
  .ftr_contact_head_en{
    font-size: 30px;
    margin-top: 12px;
  }
  .ftr_contact_msg{
    font-size: 16px;
    line-height: 2.125;
    margin-top: 35px;
  }

  .link_items{
    margin-top: 85px;
  }
  .link_0{

  }
  .link_0.line,
  .link_0.mail{
    font-size: 20px;
  }
  .link_0 .tel{
    font-size: 20px;
  }

  .ftr_logo{
    margin-bottom: 25px;
  }
  .ftr_name{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .ftr_addr{
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 10px;
  }
  .ftr_addr p+p{
    margin-top: 5px;
  }
  
  

  .ftr_btm{
    margin-top: 100px;
  }
  .ftr_btm_inner{
  }
  .ftr_btm_box1{
    /*width: 42.76%;*/
  }
  .ftr_btm_box2{
    /*width: 55.26%;*/
    /*margin-top: 0;*/
  }

  .ftr_banner{
    display: flex;
    /*flex-wrap: wrap;*/
    gap: 20px 20px;
    /*margin-left: -10px;*/
    /*margin-right: -10px;*/
  }
  .ftr_banner_item1{
    width: 29.76%;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
  }
  .ftr_banner_item2{
    width: 67.261%;
    /*padding-left: 10px;*/
    /*padding-right: 10px;*/
  }
  .ftr_banner_item_ttl{
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 5px;
    border-bottom: 1px solid #aeaeae;
    margin-bottom: 15px;
  }
  .ftr_banner_item_links{
    display: flex;
    gap: 15px 15px;
  }

  
  .ftr_links{
    display: flex;
    flex-wrap: wrap;
    /*justify-content: flex-start;*/
    margin: 0;
    margin-top: 30px;
    gap: 10px 0;
  }
  .ftr_links_a{
    width: 145px;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.075em;
  }
  
  .ftr_copy{
    margin-top: 130px;
  }
  
}
@media (min-width:1024px){
  .footer{
    margin-top: 0;
  }

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

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

  }
  .ftr_contact_box1{
    width: 55.99%;
  }
  .ftr_contact_box1 .home_sec3_tt_ja{
    font-size: 56px;
  }
  .ftr_contact_box1 .home_sec3_tt{

  }
  .ftr_contact_box1 .content_desc{

  }
  .ftr_contact_box2{
    width: 38.48%;
    margin-top: 0;
  }
  .ftr_contact_box2_inner{
    margin-right: var(--margin-for-device-side-w);
  }
  .ftr_contact_box2_img:before{

  }
  
  .ftr_btm{
    margin-top: 75px;
  }
  .ftr_btm_inner{
  }
  .ftr_btm_box1{
    width: 42.76%;
  }
  .ftr_btm_box2{
    width: 55.26%;
    margin-top: 0;
  }

  .link_0{
    max-width: 585px;
    margin-left: 0;
  }
  .link_0 .tel{
    font-size: 32px;
  }
  .link_0.item1{
    font-size: 24px;
  }
  .link_0.item2{
    font-size: 20px;
  }

  .ftr_1{
    margin-top: 0;
    padding-bottom: 104px;
  }
  .ftr_1_box{

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

  }
  .ftr_add{

  }
  .ftr_box1_bnr{

  }
  .ftr_box1_bnr_item{
    width: 150px;
    margin-right: 10px;
  }
  .ftr_box1_bnr_item + .ftr_box1_bnr_item{
    margin-top: 0;
  }
  .ftr_1_box2{
    width: 60.52%;
    padding-top: 128px;
  }
  .ftr1_links{

  }
  .ftr1_links .read_more{
    justify-content: space-between;
  }
  .ftr1_links .read_more a{
    width: 100%;
    max-width: inherit;
  }

  .ftr_links{
  }
  .ftr_link{
    text-align: left;
    width: auto;
    padding: 0 33px;
  }
  .ftr_link:nth-child(n+3){
    margin-top: 0;
  }
}
@media (min-width:1470px){
  
  .footer{
    margin-top: 200px;
  }
  .ftr1_links .read_more a{
    width: auto;
    min-width: 250px;
    max-width: inherit;
  }
  .ftr1_links .read_more a + a{
    margin-top: 0;
  }
}
@media (min-width:1536px){
  .ftr_box1_bnr_item{
    width: auto;
  }
}
@media (min-width:1720px){
  .ftr1_links .read_more a{
    min-width: 300px;
  }
}


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


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

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

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

}


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

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

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


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

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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.read_more_a{
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  max-width: 100%;
  min-height: 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  text-align: center;
  border: 1px solid #FFF;
  border-radius: 25px;
  background: #FFF;
  color: #000;
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more_a p{
}
.read_more_a:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  transition: 0.2s all;
}
.read_more_a:hover{
  color: #FFF;
  background: var(--sub-color);
}
.read_more_a:hover:after{
  margin-right: -5px;
}
.read_more_a.bdr{
  border-color:#000;
}
.read_more_a:hover.bdr{
  border-color:var(--sub-color);
  ;
}

/* 見出し */
.tt2{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;

  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}
.tt2_ja{
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-top: 0;
}
.tt2_en{
  width: 100%;
  font-size: 16px;
  font-weight: 700;
  font-weight: 500;
  font-family: var(--font-en2);
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: left;
}
.tt2_en:before{
  content: "";
  margin-left: 0;
  padding-right: 0;
}

.tt2.bdr{
  padding-bottom: 15px;
}
.tt2.bdr:after{
  content: "";
  height: 1px;
  background: currentColor;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: var(--margin-for-device-side-w);
  right: var(--margin-for-device-side-w);
}

.tt2.bdr2{
  padding-bottom: 10px;
}
.tt2.bdr2:after{
  content: "";
  width: 100%;
  height: 3px;
  background: #FFF;
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
}
.tt2.bdr2 .tt2_ja{
  font-size: 21px;
}
.tt2.bdr2 .tt2_en{
  font-size: 18px;
}

.tt3{
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 30px;
}
.tt3_en{
  font-size: 42px;
  font-weight: 700;
  font-family: var(--font-en2);
  letter-spacing: 0;
  line-height: 1;
  color: #f0f0f0;
  position: relative;
  z-index: 1;
  margin-left: -15px;
  margin-right: -15px;
}
.tt3_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: -25px;
  position: relative;
  z-index: 1;
}


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

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


.section.bk{
  background-color: #000;
  color: #FFF;
}
.section.red{
  background-color: #ae0614;
  color: #FFF;
}
.section.bg_circle{
  /*height: 2000px;*/
  background: #000;
  color: #FFF;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.section.bg_circle:before{
  content: "";
  width: 139.375vw;
  aspect-ratio: 1 / 1;
  background: #ae0614;
  border-radius: 50%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  transform: translate(-26.16%, -62.61%);
}


@media (max-width:374px){

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

}
@media (min-width:414px){
  .tt2.bdr2 .tt2_ja{
    font-size: 26px;
  }
}
@media (max-width:767px){

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

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

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




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

  .anchor{
    top: -100px;
  }

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

  /* ボタン */
  .read_more{
    margin-top: 35px;
  }
  .read_more.center{
    justify-content: center;
  }
  .read_more.left{
    justify-content: flex-start;
  }
  .read_more.right{
    justify-content: flex-end;
  }


  /* 見出し */
  .tt2{
    margin-bottom: 20px;
  }
  .tt2_ja{
    font-size: 21px;
  }
  .tt2_en{
    width: auto;
    font-size: 16px;
  }
  .tt2_en:before{
    content: "／";
    margin-left: 1em;
    padding-right: 1em;
  }


  .tt2.bdr{
    padding-bottom: 25px;
  }
  .tt2.bdr:after{
  }

  .tt2.bdr2{
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
  .tt2.bdr2:after{
    width: 365px;
    height: 5px;
  }
  .tt2.bdr2 .tt2_ja{
    font-size: 34px;
  }
  .tt2.bdr2 .tt2_en{
    font-size: 20px;
  }


  .tt3{
    margin-bottom: 50px;
  }
  .tt3_en{
    font-size: 60px;
    margin-left: -50px;
    margin-right: -50px;
  }
  .tt3_ja{
    font-size: 30px;
    margin-top: -30px;
  }
  
  /**/
  .table_rows_th{
    width: 200px;
  }
  .table_rows_td{

  }


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

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


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


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


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

  }
}


@media (min-width:1366px){


}

@media (min-width:1470px){

  .tt3{
    margin-bottom: 50px;
  }
  .tt3_en{
    font-size: 110px;
    margin-left: -100px;
    margin-right: -100px;
  }
  .tt3_ja{
    font-size: 46px;
    margin-top: -60px;
  }
  
}
@media (min-width:1536px){

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

}



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

}
.pg_home .section.sec1{
  padding-top: 50px;
}
.pg_home .section.sec2{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_home .section.sec3{
  padding-top: 25px;
  padding-bottom: 35px;
}
.pg_home .section.sec4{
  padding-top: 25px;
  padding-bottom: 35px;
}
.pg_home .section.sec5{
  padding-top: 25px;
  padding-bottom: 50px;
}
.pg_home .section.sec6{
  padding-top: 0;
  background: #000;
  color: #FFF;
  position: relative;
  z-index: 1;
}

.pg_home .section.sec6 > .container{
  position: relative;
  z-index: 1;
}
.pg_home .section.sec6 .tt2{
  margin-bottom: 15px;
}
.pg_home .section.sec7{
  padding-top: 50px;
  padding-bottom: 50px;
}
.pg_home .section.sec8{
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 1;
  background-color: #e5e5e5;
}
.pg_home .section.sec9{

  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  z-index: 2;
}
.pg_home .section.sec9 > .container{
  position: relative;
  z-index: 1;
}



@media (max-width:767px){
  
  .pg_home .section.sec6{
    padding-bottom: 75px;
  }
}
@media (min-width:768px){


  .pg_home .section.sec1{
    padding-top: 115px;
  }
  .pg_home .section.sec2{
    padding-top: 25px;
    padding-bottom: 0;
  }
  .pg_home .section.sec3{
    padding-top: 25px;
    padding-bottom: 35px;
  }
  .pg_home .section.sec4{
    padding-top: 25px;
    padding-bottom: 35px;
  }
  .pg_home .section.sec5{
    padding-top: 25px;
    padding-bottom: 115px;
  }
  .pg_home .section.sec6{
  }

  .pg_home .section.sec6 .tt2{
    margin-bottom: 15px;
  }
  .pg_home .section.sec7{
    padding-top: 100px;
    padding-bottom: 200px;
  }
  .pg_home .section.sec8{
    height: 100vh;
    padding-top: 0;
    padding-bottom: 0;
  }
  .pg_home .section.sec9{
    padding-top: 0;
    padding-bottom: 0;
  }


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


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


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


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


}



/* ABOUT */
.home_about{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_about_box1{
  width: 100%;
}
.home_about_box2{
  width: 100%;
  padding-top: 35px;
}
.home_about_ttl{
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.46;
  margin-bottom: 20px;
}
.home_about_txt{
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0.075em;
  text-align: justify;
}
.home_about_video{

}
.home_about_video iframe{
  border: 0;
}

/* Gallery */
.home_gallery_wrap{
  margin-left: var(--margin-for-device-side-w);
  margin-right: var(--margin-for-device-side-w);
  background: #f0f0f0;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.home_gallery_logo{

  position: relative;
  z-index: 0;
}
.home_gallery_logo_img{
  margin-bottom: -20px;
  background: #FFF;
}

.home_gallery{
  display: flex;
  gap: 0 15px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
.home_gallery_item{
  display: flex !important;
  gap: 0 15px;
  width: 860px;
}
.home_gallery_item_box1{
  width: 68%;
}
.home_gallery_item_box2{
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  width: 32%;
}
.home_gallery_item_img{
  border-radius: 20px;
}
.home_gallery_item_box1 .home_gallery_item_img.img_fit:before{
  padding-top: 81.579%;
}
.home_gallery_item_box2 .home_gallery_item_img{
  height: 50%;
}
.home_gallery_item_box2 .home_gallery_item_img.img_fit:before{
  padding-top: 81.818%;
}

/* Service */
.home_service{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_service_box1{
  width: 100%;
}
.home_service_box2{
  width: 100%;
  margin-top: 30px;
}

.home_service_en{

}
.home_service_ttl{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.476;
  margin-bottom: 25px;
}
.home_service_txt{
  font-size: 16px;
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0.05em;
}

.home_service_links{
  display: flex;
  flex-wrap: wrap;
  gap: 25px 45px;
}
.home_service_links_item{

  display: flex;
  flex-direction: column;
  width: 100%;

  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home_service_links_item:after{
  content: "";
  background: rgba(0,0,0,0.45);
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}
.home_service_links_item_img{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.home_service_links_item_img img{
  transition: 0.2s all;
}
.home_service_links_item_img.img_fit:before{

}
.home_service_links_item_box1{
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100% - 70px);
  position: relative;
  z-index: 2;
}
.home_service_links_item_box2{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  border-top: 1px solid #FFF;
  position: relative;
  z-index: 2;
}
.home_service_links_item_ttl{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-shadow: 2.121px 2.121px 4.95px rgba(0, 0, 0, 0.9);
  text-align: center;
}
.home_service_links_item_ttl em{
  display: block;
  font-size: 0.722em;
  font-style: normal;
}
.home_service_links_item .read_more{
  margin-top: 0;
}
.home_service_links_item.half1{
  height: 300px;
}
.home_service_links_item.half2{
  height: 300px;
}
.home_service_links_item.wide1{
  width: 100%;
  height: 200px;
}
.home_service_links_item.wide2{
  width: 100%;
  height: 200px;
}

.home_service_links_item:hover{
  color: #FFF;
}
.home_service_links_item:hover .home_service_links_item_img img{
  transform: scale(1.02);
}

/* 在庫 */
.home_service.inventory{
  position: relative;
  z-index: 1;
}
.home_service.inventory .home_service_box1{
  padding-top: 50px;
}
.home_service.inventory .home_service_box2{
  /*margin-left: auto;
  padding-top: 95vh;
  padding-bottom: 50vh;*/
}
.home_service_box1.fixed{
  /*position: fixed;*/
  /*top: 0;*/
}
.home_service_box1.fixed.btm{
  /*position: absolute;*/
}

.home_inventory_bg{
  height: 100vh;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: 0;
}
.home_inventory_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_inventory_bg:before{
  content: "";
  background: rgba(0,0,0,0.78);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}
.home_inventory_bg.fixed{
  position: fixed;
}
.home_inventory_bg.fixed.btm{
  position: absolute;
  top: auto;
  bottom: 0;
}




/* 記事部分 */
.home_articles_row{

}
.home_articles_row + .home_articles_row{
  margin-top: 105px;
}


/* 採用情報(背景) */
.home_recruit_hdr{

}
.home_recruit_hdr.img_fit:before{
  padding-top: 100vh;
}

.home_recruit_bg{

}
.home_recruit_bg.img_fit:before{
  padding-top: 880px;
}





/* 採用情報 */
.home_recruit{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  color: #FFF;
  padding: 30px 0;
}
.home_recruit_head{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin-bottom: 25px;
}
.home_recruit_head_en{
  font-size: 55px;
  font-weight: 500;
  font-family: var(--font-en2);
  letter-spacing: 0;
  line-height: 1;
}
.home_recruit_head_ja{
  width: 234px;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  padding: 7px 5px 9px;
  margin-top: -6px;
}
.home_recruit_ttl{
  font-size: 26px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 30px;
}
.home_recruit_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: center;
}

.home_recruit_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.home_recruit_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.home_recruit_bg:after{
  content: "";
  background: rgba(0,0,0,0.7);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

@media (max-width:374px){

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


  /* ABOUT */
  .home_about{

  }
  .home_about_box1{
  }
  .home_about_box2{
  }
  .home_about_ttl{
    font-size: 28px;
  }

}
@media (max-width:767px){
  .home_service_links_item_ttl{
   font-size:16px;
  }
  .home_gallery_item_box2{
    gap: 8px 0;
  }
  .home_gallery_item_img {
    border-radius: 10px;
  }
  .home_gallery_logo_img img{
    height: 80px;
  }
  .home_gallery_item{
    width: 300px;
  }

  .home_service.inventory .home_service_box1{
    padding-bottom: 20px;
  }
}
@media (min-width:768px){

  /* ABOUT */
  .home_about{
  }
  .home_about_box1{
    /*width: 44.74%;*/
  }
  .home_about_box2{
    /*width: 49.01%;*/
    padding-top: 50px;
  }
  .home_about_ttl{
    font-size: 42px;
    margin-bottom: 25px;
  }
  .home_about_txt{
    font-size: 18px;
    line-height: 2.25;
  }

  /* Service */
  .home_service{
  }
  .home_service_box1{
    /*width: 30.26%;*/
  }
  .home_service_box2{
    /*width: 61.51%;*/
    /*margin-top: 0;*/
  }

  .home_service_ttl{
    font-size: 24px;
    margin-bottom: 25px;
  }
  .home_service_txt{
    font-size: 16px;
    line-height: 2.1;
  }

  .home_service_links{
    gap: 15px 15px;
  }
  .home_service_links_item{
    border-radius: 20px;
  }
  .home_service_links_item_box1{
    height: calc(100% - 70px);
  }
  .home_service_links_item_box2{
    height: 70px;
  }
  .home_service_links_item_ttl{
    font-size: 30px;
  }
  .home_service_links_item.half1{
    width: calc((100% - 15px) / 2);
    height: 400px;
  }
  .home_service_links_item.half2{
    width: calc((100% - 15px) / 2);
    height: 350px;
  }
  .home_service_links_item.wide1{
    height: 250px;
  }
  .home_service_links_item.wide2{
    height: 300px;
  }

  /* 採用情報 */
  .home_recruit{
    height: 100vh;
    padding: 30px 0;
  }
  .home_recruit_head{
    margin-bottom: 25px;
  }
  .home_recruit_head_en{
    font-size: 92px;
  }
  .home_recruit_head_ja{
    width: 383px;
    font-size: 18px;
    padding: 7px 5px 9px;
    margin-top: -12px;
  }
  .home_recruit_ttl{
    font-size: 34px;
    margin-bottom: 30px;
  }
  .home_recruit_txt{
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }

  .home_recruit_bg{
  }
  .home_recruit_bg.img_fit:before{
    height: 100%;
  }
}
@media (min-width:1024px){




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

  /* ABOUT */
  .home_about_ttl{
    font-size: 46px;
    margin-bottom: 35px;
  }
  .home_about_txt{
    font-size: 20px;
    /*line-height: 2.95;*/
  }

  /* Service */
  .home_service{
  }
  .home_service_box1{
    width: 36%;
    padding-top: 35px;
  }
  .home_service_box2{
    width: 60%;
    margin-top: 0;
  }
  .home_service_ttl{
    /*font-size: 42px;*/
    /*margin-bottom: 25px;*/
  }
  .home_service_txt{
    /*font-size: 16px;*/
    /*line-height: 2.875;*/
  }
  .home_service_links{
    gap: 15px 30px;
  }
  .home_service_links_item.half1{
    width: calc((100% - 30px) / 2);
  }
  .home_service_links_item.half2{
    width: calc((100% - 30px) / 2);
  }
  .home_service_links_item.wide1{
  }
  .home_service_links_item.wide2{
  }

  /* 在庫 */
  .home_service.inventory{
  }
  .home_service.inventory .home_service_box1{
    padding-top: 135px;
  }
  .home_service.inventory .home_service_box2{
    margin-left: auto;
    padding-top: 95vh;
    padding-bottom: 50vh;
  }
  .home_service_box1.fixed{
    position: fixed;
    top: 0;
  }
  .home_service_box1.fixed.btm{
    position: absolute;
  }
}
@media (min-width:1470px){

  /* ABOUT */
  .home_about{
    padding-bottom: 100px;
  }
  .home_about_box1{
    width: 44.74%;
    
  }
  .home_about_box2{
    width: 49.01%;
    padding-top: 155px;
    padding-bottom: 100px;
  }


  /* Service */
  .home_service{
  }
  .home_service_box1{
    /*width: 30.26%;*/
  }
  .home_service_box2{
    /*width: 61.51%;*/
  }
  .home_service_ttl{
    font-size: 42px;
    margin-bottom: 25px;
  }
  .home_service_txt{
    font-size: 16px;
    line-height: 2.875;
  }



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


  /* ABOUT */
  .home_about_ttl{
    font-size: 56px;
    margin-bottom: 35px;
    margin-right: -50px;
  }
  .home_about_txt{
    font-size: 21px;
    line-height: 2.95;
  }

  /* Service */
  .home_service{
  }
  .home_service_box1{
    width: 30.26%;
  }
  .home_service_box2{
    width: 61.51%;
  }

  .home_service_ttl{
    font-size: 42px;
    margin-bottom: 25px;
  }
  .home_service_txt{
    font-size: 16px;
    line-height: 2.875;
  }

  .home_service_links{
    gap: 25px 45px;
  }
  .home_service_links_item_ttl{
    font-size: 36px;
  }
  .home_service_links_item.half1{
    width: calc((100% - 45px) / 2);
    height: 500px;
  }
  .home_service_links_item.half2{
    width: calc((100% - 45px) / 2);
    height: 390px;
  }
  .home_service_links_item.wide1{
    height: 280px;
  }
  .home_service_links_item.wide2{
    height: 350px;
  }

  .home_service_box2.pd{
    padding-left: 65px;
  }
}


/**/
.home_recruit_about{
  --recruit-about-resize:0.5;
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  /*transform: translate(-50%, -50%);*/
  padding: 0 300px;
}
.home_recruit_about_inner{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.home_recruit_about_catch{
  white-space: nowrap;
  text-align: right;
  position: relative;
  z-index: 1;
}
.home_recruit_about_catch_en{
  font-size: 120px;
  font-weight: 600;
  font-family: var(--font-en2);
  letter-spacing: 0.01em;
  line-height: 1;
  color: #181818;
}
.home_recruit_about_catch_ja{
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.075em;
  margin-top: -30px;
}
.home_recruit_about_img{
  position: absolute;
  z-index: 1;
}
.home_recruit_about_img.pos1{
  width: 173px;
  width: calc(173px * var(--recruit-about-resize));
  bottom: 87%;
  left: -6.5%;
}
.home_recruit_about_img.pos1.img_fit:before{
  padding-top: 124.277%;
}
.home_recruit_about_img.pos2{
  width: 162px;
  width: calc(162px * var(--recruit-about-resize));
  top: 59%;
  left: 37%;
}
.home_recruit_about_img.pos2.img_fit:before{
  padding-top: 124.691%;
}
.home_recruit_about_img.pos3{
  width: 190px;
  width: calc(190px * var(--recruit-about-resize));
  bottom: 75%;
  right: 16.5%;
}
.home_recruit_about_img.pos3.img_fit:before{
  padding-top: 124.211%;
}


@media (min-width:768px){
  .home_recruit_about{
    --recruit-about-resize:1.0;
  }
  .home_recruit_about_catch_en{
    font-size: 240px;
  }
  .home_recruit_about_catch_ja{
    font-size: 46px;
    margin-top: -50px;
  }
  
  .home_recruit_about_img.pos1{
    width: 173px;
    bottom: 87%;
    left: -6.5%;
  }
  .home_recruit_about_img.pos2{
    width: 162px;
    top: 59%;
    left: 37%;
  }
  .home_recruit_about_img.pos3{
    width: 190px;
    bottom: 75%;
    right: 16.5%;
  }
}
@media (min-width:1200px){
  
}
@media (min-width:1720px){
  
}
/* ========================================
Recruit scroll animation
======================================== */

.js-fixed-sec2-bg{
  position: relative;
  z-index: 1;
  height: 100vh;
  overflow: hidden;
}


/* 背景 */
.home_recruit_hdr{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  will-change: width;
}

.home_recruit_hdr.fixed{
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}


/* 幅を縮めても画像自体は100vwを維持 */
.home_recruit_hdr.img_fit img{
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}


/* 横移動するテキスト */
.home_recruit_about{
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  will-change: transform;

  /* GSAPで制御するので指定しない */
  /* transform: translate(-50%, -50%); */
}

.home_recruit_about.fixed{
  position: fixed;
  top: 50%;
  left: 50%;
}


/* 横移動用のスクロール距離 */
.js-recruit-scroll-space{
  position: relative;
  z-index: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
  background: #e5e5e5;
}


/* 暗転レイヤー */
.js-recruit-dark{
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;

  width: 100%;
  height: 100vh;

  background: #000;

  opacity: 0;
  visibility: hidden;

  pointer-events: none;
}


/* sec9 */
.js-fixed-sec2-overlay{
  position: relative;
  z-index: 10;
}

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


/* メイン部分 */



/* 在庫リスト */
.inventory_list{

}
.inventory_list .webgene-blog{

}
.inventory_list .webgene-item{
  width: 620px;
  max-width: 100%;
  color: #000;
}
.inventory_list .webgene-item .inner{
  display: block;
  background: #FFF;
  padding: 10px 10px;
}

.inventory_list .webgene-item .box1{
  position: relative;
  z-index: 1;
}
.inventory_list .webgene-item .box2{
  margin-top: 6px;
}
.inventory_list .webgene-item .img{
  background: #CCC;
}
.inventory_list .webgene-item .img.img_fit:before{
  padding-top: 71.667%;
}
.inventory_list .webgene-item .category{
  min-width: 120px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 0;
  background: #000;
  color: #FFF;
  padding: 4px 10px 8px;
}

.inventory_list .webgene-item .data{
  width: 100%;
  table-layout: fixed;
}
.inventory_list .webgene-item .data tr{

}
.inventory_list .webgene-item .data th,
.inventory_list .webgene-item .data td{
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  border: 1px solid #8c8c8c;
  padding: 10px 5px;
}
.inventory_list .webgene-item .data th{
  width: 65px;
  background: #f2f2f2;
  text-align: center;
  border-right: 0;
}
.inventory_list .webgene-item .data td{
  border-left: 0;
}
.inventory_list .webgene-item .more{
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: right;
  margin-top: 15px;
}
.inventory_list .webgene-item .more p{
  padding-right: 35px;
  position: relative;
  z-index: 1;
}
.inventory_list .webgene-item .more p:after{
  content: "→";
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  transition: 0.2s all;
}

.inventory_list .webgene-item{

}
.inventory_list .webgene-item + .webgene-item{
  margin-top: 60px;
}
.inventory_list .webgene-item:nth-child(even){
  margin-left: auto;
}

.inventory_list .webgene-item .inner:hover{
  color: #000;
}
.inventory_list .webgene-item .inner:hover .more p:after{
  margin-right: -3px;
}

@media (max-width:767px){
  .inventory_list.slider{

  }
  .inventory_list.slider .webgene-item:nth-child(n+5){
    display:none;
  }
}
@media (min-width:768px){

  /* 在庫リスト */
  .inventory_list{

  }
  .inventory_list .webgene-blog{

  }
  .inventory_list .webgene-item{
    width: 620px;
  }
  .inventory_list .webgene-item .inner{
    padding: 10px 10px;
  }
  .inventory_list .webgene-item .box1{
  }
  .inventory_list .webgene-item .box2{
  }
  .inventory_list .webgene-item .category{
    min-width: 180px;
    font-size: 16px;
    padding: 4px 10px 8px;
  }

  .inventory_list .webgene-item .data{
  }
  .inventory_list .webgene-item .data tr{
  }
  .inventory_list .webgene-item .data th,
  .inventory_list .webgene-item .data td{
    font-size: 16px;
    padding: 10px 10px;
  }
  .inventory_list .webgene-item .data th{
    width: 120px;
  }
  .inventory_list .webgene-item .more{
    font-size: 16px;
    margin-top: 15px;
  }
  .inventory_list .webgene-item .more p{
    padding-right: 35px;
  }
  .inventory_list .webgene-item{
  }
  .inventory_list .webgene-item + .webgene-item{
    margin-top: 60px;
  }
  .inventory_list .webgene-item:nth-child(even){
    margin-left: auto;
  }

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


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


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


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


}


.insta_list{

}
* + .insta_list{

}
.insta_list .webgene-blog{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.insta_list .webgene-item{
  width: calc((100% - 10px) / 2);
}
.insta_list .webgene-item a{
  display: block;
}
.insta_list .webgene-item .img{
  border-radius: 10px;
}
.insta_list .webgene-item .img.img_fit:before{
  padding-top: 132.114%;
}

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

  }
  * + .insta_list{

  }
  .insta_list .webgene-blog{
    gap: 10px;
  }
  .insta_list .webgene-item{
    width: calc((100% - 50px) / 6);
  }

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

}

.sec_sub_tt.tsWh{
  text-shadow: 
    2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 
    2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 
    2px 0px 1px #ffffff, 0px 2px 1px #ffffff, 
    -2px 0px 1px #ffffff, 0px -2px 1px #ffffff, 
    2px 2px 1px #ffffff, -2px 2px 1px #ffffff, 
    2px -2px 1px #ffffff, -2px -2px 1px #ffffff, 
    2px 0px 1px #ffffff, 0px 2px 1px #ffffff, 
    -2px 0px 1px #ffffff, 0px -2px 1px #ffffff;
}
.recruit_sec1_box1 > .sec_sub_tt:first-child{
  margin-top: 0;
}
.recruit_sec1_box1 > .sec_sub_tt:first-child{
  margin-top: -15px;
}

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

/* セクション設定 */
.pg_sale{
  position: relative;
  z-index: 1;
}
.pg_sale .section.sec1{
  padding-top: 50px;
  padding-bottom: 100px;
}
.pg_sale .section.sec2{
  background: #f0f0f0;
  background-image: url('https://global-company.jp/system_panel/uploads/images/sale_lineup_bg.jpg');
  background-size: cover;
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.pg_sale .section.sec3{
  padding-top: 120px;
  padding-bottom: 100px;
  min-height: 794px;
  background-image: url('https://global-company.jp/system_panel/uploads/images/sale_global_bg.jpg');
  background-size: cover;
  position: relative;
  z-index: 1;
}
.pg_sale .section.sec3:after{
  content: "";
  background: rgba(0,0,0,0.5);
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}
.pg_sale .section.sec3 > .container{
  position: relative;
  z-index: 1;
  color: #FFF;
}
.pg_sale .section.sec4{
  padding-top: 0;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_sale .section.sec4:after{
  content: "";
  background: #ebebeb;
  position: absolute;
  z-index: 0;
  inset: 5px 5px 50px 5px;
}
.pg_sale .section.sec4 > .container{
  position: relative;
  z-index: 1;
}
.pg_sale .section.sec5{
  padding-top: 25px;
  padding-bottom: 60px;
}
.pg_sale .section.sec6{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_sale .section.sec7{
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}
.sale_faq_logo{
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
}
.sale_faq_logo_img{
  
}
.sale_faq_logo_img img{
  height: 80px;
}



@media (max-width:374px){

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

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

  .js-future-panel-wrap{
    /*padding-bottom: 100px;*/
  }
  .pg_sale .js-future-panel-wrap .section.sec5:last-child{
    /*padding-bottom: 150px;*/
  }
}
@media (min-width:768px){

  .pg_sale{

  }
  .pg_sale .section.sec1{
    padding-top: 70px;
    padding-bottom: 285px;
  }
  .pg_sale .section.sec2{
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .pg_sale .section.sec3{
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 794px;
  }
  .pg_sale .section.sec4{
    padding-top: 0;
    padding-bottom: 90px;
  }
  .pg_sale .section.sec4:after{
    inset: 50px 50px 155px 50px;
  }
  .pg_sale .section.sec5{

  }
  .pg_sale .section.sec6{

  }
  .pg_sale .section.sec7{
    padding-top: 190px;
    padding-bottom: 190px;
  }
  
  .sale_faq_logo{
  }
  .sale_faq_logo_img{

  }
  .sale_faq_logo_img img{
    height: auto;
  }


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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .js-future-panel-wrap .section.sec5{
    padding-bottom: 150px!important;
  }

  .js-future-panel-sec{
    position: relative;
    padding-bottom: 20px;
  }
}

/* メイン部分 */



/* LIINEUP */
.sale_lineup{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
  position: relative;
  z-index: 1;
}
.sale_lineup_item{
  width: 250px;
  width: 22.52%;
  width: 29.52%;
  border-radius: 15px;
  overflow: hidden;
  transform: scale(0.7);
  opacity: 0;
  transition: 0.8s all ease-out;
  /*animation-delay: 3.2s;*/
}
.sale_lineup_item_img{

}
.sale_lineup_item_img img{
  transition: 0.2s all;
}
.sale_lineup_item_img.img_fit:before{
  padding-top: 125.600%;
}
.sale_lineup_item_ttl{
  background: #000;
  color:#FFF;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-align: center;
  padding: 5px 10px;
}
.sale_lineup + .read_more{
  margin-top: 50px;
}

/* LIINEUP(中央) */
.sale_lineup_item.center{
  width: 400px;
  width: 36.03%;
  transform: scale(0.8);
  opacity: 1;
  position: relative;
  z-index: 1;
}
.sale_lineup_item.center .sale_lineup_item_img.img_fit:before{
  padding-top: 116%;
}
.sale_lineup_item:hover .sale_lineup_item_img img{
  transform: scale(1.02);
}

/* LIINEUP(左右) */
.sale_lineup_item.left{
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
}
.sale_lineup_item.right{
  position: absolute;
  z-index: 0;
  bottom: 50%;
  right: 50%;
}

/* LIINEUP(表示) */
.sale_lineup.opened .sale_lineup_item,
.gjs-dashed .sale_lineup .sale_lineup_item{
  transform: scale(1.0);
  opacity: 1;
}
.sale_lineup.opened .sale_lineup_item.left,
.gjs-dashed .sale_lineup .sale_lineup_item.left{
  left: 0;
}
.sale_lineup.opened .sale_lineup_item.left.pos1,
.gjs-dashed .sale_lineup .sale_lineup_item.left.pos1{
  top: 7.24%;
}
.sale_lineup.opened .sale_lineup_item.left.pos2,
.gjs-dashed .sale_lineup .sale_lineup_item.left.pos2{
  /*top: 44.92%;*/
  top: 53.92%;
}
.sale_lineup.opened .sale_lineup_item.right,
.gjs-dashed .sale_lineup .sale_lineup_item.right{
  right: 0;
}
.sale_lineup.opened .sale_lineup_item.right.pos1,
.gjs-dashed .sale_lineup .sale_lineup_item.right.pos1{
  /*bottom: 43.47%;*/
  bottom: 52.47%;
}
.sale_lineup.opened .sale_lineup_item.right.pos2,
.gjs-dashed .sale_lineup .sale_lineup_item.right.pos2{
  bottom: 5.79%;
}



/* LIINEUP(説明文) */
.sale_lineup_desc{

}
* + .sale_lineup_desc{
  margin-top: 50px;
}
.sale_lineup_desc_ttl{
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.075em;
  text-align: center;
  margin-bottom: 25px;
}
.sale_lineup_desc_txt{
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
}

/* LIINEUP(流れるテキスト) */
.sale_lineup_flow_txt{
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  color: #f0f0f0;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 0;
  right: 0;
  /*transform: translate(0, 7%);*/
  margin-bottom: -0.07em;
}
.sale_lineup_flow_txt p{
  margin: 0 0.1em;
}

/* 海外販売 */
.sale_global{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sale_global_box1{
  width: 100%;
}
.sale_global_box2{
  width: 100%;
}
.sale_global_head{
  margin-bottom: 30px;
}
.sale_global_head_en{
  display: inline-block;
  min-width: 205px;
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en2);
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  padding: 12px 5px 6px;
  margin-bottom: 10px;
}
.sale_global_head_en.min{
  min-width: 183px;
}
.sale_global_head_ja{
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.375;
}

.js-scroll-scale{
  transform: scale(0.8);
  transform-origin: center center;
  will-change: transform;
}
.gjs-dashed .js-scroll-scale{
  transform: scale(1);
}

/* バンニング */
.sale_van{
  display: flex;
  flex-wrap: wrap;
  padding-top: 50px;
}
.sale_van_box1{
  width: 100%;
}
.sale_van_box2{
  width: 100%;
  padding-top: 30px;
}
.sale_van_box3{
  width: 100%;
  padding-top: 58px;
  margin-left: auto;
}
.sale_van_head{
  /*display: flex;*/
  /*flex-direction: row;*/
  /*align-items: center;*/
  /*justify-content: flex-start;*/
  /*writing-mode: vertical-rl;*/
}
.sale_van_head_en{
  display: inline-block;
  min-width: 182px;
  /*min-width: 0;*/
  /*min-height: 182px;*/
  background: #FFF;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-en2);
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  padding: 12px 5px 6px;
  margin-bottom: 10px;
}
.sale_van_head_ja{
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.42;
}
.sale_van_img1,
.sale_van_img2,
.sale_van_img3{
  border-radius: 10px;
}
.sale_van_img1{
  width: 93.02%;
  margin-left: auto;
}
.sale_van_img1.img_fit:before{
  padding-top: 125%;
}
.sale_van_img2{
  width: 69.76%;
  margin-top: 30px;
  margin-left: 0;
}
.sale_van_img2.img_fit:before{
  padding-top: 66.667%;
}
.sale_van_img3{
  width: 80.88%;
  margin-top: 35px;
}
.sale_van_img3.img_fit:before{
  padding-top: 72.727%;
}

@media (max-width:1023px){
  
  .js-flow-panel-head .sale_van_head{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    writing-mode: vertical-rl;
  }
  .js-flow-panel-head .sale_van_head_en{
    min-width: 0;
  }
}

/* 特徴 */
.sale_future_wrap{

}
.sale_future_wrap .section{
  /*padding-top: 25px;*/
  /*padding-bottom: 150px;*/
}
.sale_future_wrap .section + .section{
  /*margin-top: 20px;*/
}

.sale_future{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
* + .sale_future{
  /*margin-top: 80px;*/
}
.sale_future_box1{
  width: 100%;
}
.sale_future_box2{
  width: 100%;
  margin-top: 30px;
}
.sale_future_img{
  border-radius: 10px;
}
.sale_future_img.img_fit:before{
  padding-top: 75.973%;
}

/* 流れ */
.sale_flow{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #FFF;
}
.sale_flow_box1{
  width: auto;
}
.sale_flow_box2{
  width: calc(100% - 50px);
  padding: 20px 20px;
  border: 1px solid #FFF;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
.sale_flow_inner{
  /*min-height: 485px;*/
  padding: 35px 45px;
  background: rgba(0,0,0,0.55);
}

.sale_flow_inner .tt2.bdr2{
  margin-bottom: 20px;
}
.sale_flow_inner .tt2.bdr2:after{
  width: 80.71%;
}

.sale_flow_panel{
  display: flex;
  justify-content: flex-end;
  align-items: center;
  /*height: 100vh;*/
  position: relative;
  z-index: 1;
}
.sale_flow_panel .container{
  position: relative;
  z-index: 1;
}
.sale_flow_bg{
  position: absolute;
  z-index: 0;
  inset: 0;
}
.sale_flow_bg.img_fit:before{
  padding-top: 0;
  height: 100%;
}
.sale_flow_bg:after{
  content: "";
  background: rgba(0,0,0,0.25);
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.sale_flow_thumbs{
  display: flex;
  flex-direction: column;
  gap: 24px 0;
  width: 150px;
  margin-top: 75px;
}
.sale_flow_thumbs_item{
  cursor: pointer;
}
.sale_flow_thumbs_item.img_fit:before{
  padding-top: 66.66%;
}


/* よくある質問 */
.sale_faq{
  
}
* + .sale_faq{
  /*margin-top: 85px;*/
}
.sale_faq_dl{
  min-height: 100px;
  border-radius: 20px;
}
.sale_faq_dl + .sale_faq_dl{
  margin-top: 15px;
  padding-top: 15px;
}
.sale_faq_dt{
  display: flex;
  align-items: center;
  background: #FFF;
  color: #000;
  min-height: 100px;
  border-radius: 10px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 75px;
  padding-right: 45px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.sale_faq_dt:hover{
  opacity: 0.8;
}

.sale_faq_dt:before{
  content: "";
  aspect-ratio: 1 / 1;
  width: 40px;
  background-image: url(https://global-company.jp/system_panel/uploads/images/faq_q.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 1;
  top: 25px;
  top: 50%;
  left: 15px;
  transform: translate(0, -50%);
}
.sale_faq_dt:after{
  content: "\f067";
  color: #2e2e2e;
  font-family: "FontAwesome";
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  transition: 0.2s all;
}

.sale_faq_dl.is-open .sale_faq_dt:after{
  content: "\f068";
}
.sale_faq_dl{
  
}

.sale_faq_dd{
  display: none;
  padding-left: 0;
  margin-top: 18px;
}
.gjs-dashed .sale_faq_dd{
  display: block;
}
.sale_faq_ttl{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.sale_faq_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height:1.875;
}

.sale_faq_logo{
  
}
.sale_faq_logo_img{
  
}

@media (max-width:1023px){

  /* 流れ */
  .sale_flow_panel{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .sale_flow_panel:first-child{
    padding-top: 200px;
  }
  .sale_flow_box2{
    padding: 10px;
  }
  .sale_flow_inner{
    padding: 25px 15px;
  }

  /*.js-flow-panel-head{
    padding-top: 50px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
  }
  .js-flow-panel-head .sale_van_head_ja{
    margin-left: 0;
  }*/

}
@media (max-width:767px){
  .sale_future_box1 .home_service_ttl{
    font-size: 23px;
  }

  /* 流れ */
  .sale_flow_panel{
    /*min-height: 150vh;*/
  }
  .sale_flow_panel:first-child{
    /*padding-top: 150px;*/
  }
  
  .sale_future_box2{
    padding-bottom: 0;
  }
  .pg_sale .section.sec6{
    /*margin-top: -160px;*/
    margin-top: -20px;
  }
}
@media (max-width:413px){

  .sale_future_box1 .home_service_ttl{
    font-size: 21px;
  }



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

  /* LIINEUP */
  .sale_lineup{
    gap: 40px 0;
  }
  .sale_lineup_item{
    /*width: 22.52%;*/
    border-radius: 20px;
  }
  .sale_lineup_item_ttl{
    font-size: 16px;
    padding: 5px 10px;
  }
  .sale_lineup + .read_more{
    margin-top: 50px;
  }

  /* LIINEUP(中央) */
  .sale_lineup_item.center{
    width: 400px;
    width: 36.03%;
  }

  /* LIINEUP(表示) */
  .sale_lineup.opened .sale_lineup_item.left.pos1{
    /*top: 75px;*/
    top: 7.24%;
  }
  .sale_lineup.opened .sale_lineup_item.left.pos2{
    /*top: 465px;*/
    /*top: 44.92% ;*/
  }
  .sale_lineup.opened .sale_lineup_item.right.pos1{
    /*bottom: 450px;*/
    /*bottom: 43.47%;*/
  }
  .sale_lineup.opened .sale_lineup_item.right.pos2{
    /*bottom: 60px;*/
    bottom: 5.79%;
  }

  /* LIINEUP(説明文) */
  .sale_lineup_desc{

  }
  * + .sale_lineup_desc{
    margin-top: 70px;
  }
  .sale_lineup_desc_ttl{
    font-size: 42px;
    margin-bottom: 38px;
  }
  .sale_lineup_desc_txt{
    font-size: 21px;
    line-height: 2.95;
    text-align: center;
  }
  
  /* LIINEUP(流れるテキスト) */
  .sale_lineup_flow_txt{
    font-size: 110px;
    margin-bottom: -0.07em;
  }
  
  /* 海外販売 */
  .sale_global{
  }
  .sale_global_box1{
  }
  .sale_global_box2{
  }
  .sale_global_head{

  }
  .sale_global_head_en{
    min-width: 205px;
    font-size: 18px;
    padding: 16px 5px 10px;
    margin-bottom: 20px;
  }
  .sale_global_head_ja{
    font-size: 60px;
  }

  /* バンニング */
  .sale_van{
    padding-top: 120px;
  }
  .sale_van_box1{
    /*width: 17.76%;*/
  }
  .sale_van_box2{
    /*width: 28.29%;*/
    width: 80%;
    margin-left: auto;
    padding-top: 50px;
  }
  .sale_van_box3{
    /*width: 44.74%;*/
    padding-top: 50px;
    margin-left: auto;
  }
  .sale_van_head{

  }
  .sale_van_head_en{
    /*min-width: 0;*/
    /*min-height: 182px;*/
    font-size: 18px;
    text-align: center;
    /*padding: 5px 14px 5px 12px;*/
    margin-bottom: 10px;
    /*writing-mode: vertical-rl;*/
  }
  .sale_van_head_ja{
    font-size: 46px;
    /*writing-mode: vertical-rl;*/
    margin-left: 28px;
  }
  .sale_van_img1,
  .sale_van_img2,
  .sale_van_img3{
    border-radius: 20px;
  }
  .sale_van_img1{
    margin-left: auto;
  }
  .sale_van_img2{
    margin-top: 50px;
    margin-left: -78px;
  }
  .sale_van_img3{
    margin-top: 35px;
  }

  /* 特徴 */
  .sale_future_wrap{

  }
  .sale_future_wrap .section{
    /*padding-top: 25px;*/
    /*padding-bottom: 50px;*/
  }
  .sale_future_wrap .section + .section{
    /*margin-top: 20px;*/
  }

  .sale_future{
  }
  * + .sale_future{
    /*margin-top: 80px;*/
  }
  .sale_future_box1{
    /*width: 44.74%;*/
  }
  .sale_future_box2{
    /*width: 49.01%;*/
  }
  .sale_future_img{
    border-radius: 20px;
  }

  /* 流れ */
  .sale_flow{

  }
  .sale_flow_box1{
    /*width: 205px;*/
  }
  .sale_flow_box2{
    /*width: 55.26%;*/
    padding: 20px 20px;
  }
  .sale_flow_inner{
    /*min-height: 485px;*/
    padding: 35px 25px;
    background: rgba(0,0,0,0.55);
  }

  .sale_flow_inner .tt2.bdr2{
    margin-bottom: 20px;
  }
  .sale_flow_inner .tt2.bdr2:after{
    width: 80.71%;
  }

  .sale_flow_panel{
    /*height: 100vh;*/
  }
  .sale_flow_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  .sale_flow_thumbs{
    display: flex;
    flex-direction: column;
    gap: 24px 0;
    width: 150px;
    margin-top: 75px;
  }
  .sale_flow_thumbs_item{

  }
  .sale_flow_thumbs_item.img_fit:before{
    padding-top: 66.66%;
  }

  .sale_flow_box2 .buyback_contact_btns{
    margin-top: 25px;
  }
  
  /* よくある質問 */
  .sale_faq{

  }
  * + .sale_faq{
    margin-top: 85px;
  }
  .sale_faq_dl{
    min-height: 100px;
    border-radius: 20px;
  }
  .sale_faq_dl + .sale_faq_dl{
    margin-top: 30px;
    padding-top: 35px;
  }
  .sale_faq_dt{
    min-height: 100px;
    border-radius: 20px;
    padding-left: 90px;
    padding-right: 95px;
  }
  .sale_faq_dt:before{
    width: 45px;
    /*top: 25px;*/
    left: 20px;
  }
  .sale_faq_dt:after{
    right: 48px;
  }

  .sale_faq_dd{
    padding-left: 90px;
    margin-top: 18px;
  }
  .sale_faq_ttl{
    font-size: 20px;
  }
  .sale_faq_txt{
    font-size: 16px;
    /*line-height: 1.875;*/
  }

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

  /* LIINEUP */
  .sale_lineup{
    gap: 40px 0;
  }
  .sale_lineup_item{
    width: 250px;
    width: 22.52%;
    border-radius: 20px;
  }
  .sale_lineup_item_ttl{
    font-size: 16px;
    padding: 5px 10px;
  }
  .sale_lineup + .read_more{
    margin-top: 50px;
  }

  /* LIINEUP(中央) */
  .sale_lineup_item.center{
    width: 400px;
    width: 36.03%;
  }

  /* LIINEUP(表示) */
  .sale_lineup.opened .sale_lineup_item.left.pos1{
    /*top: 75px;*/
    top: 7.24%;
  }
  .sale_lineup.opened .sale_lineup_item.left.pos2{
    /*top: 465px;*/
    top: 44.92% ;
  }
  .sale_lineup.opened .sale_lineup_item.right.pos1{
    /*bottom: 450px;*/
    bottom: 43.47%;
  }
  .sale_lineup.opened .sale_lineup_item.right.pos2{
    /*bottom: 60px;*/
    bottom: 5.79%;
  }

  /* LIINEUP(説明文) */
  .sale_lineup_desc{

  }
  * + .sale_lineup_desc{
    margin-top: 70px;
  }
  .sale_lineup_desc_ttl{
    font-size: 42px;
    margin-bottom: 38px;
  }
  .sale_lineup_desc_txt{
    font-size: 21px;
    line-height: 2.95;
    text-align: center;
  }

  /* 海外販売 */
  .sale_global{
  }
  .sale_global_box1{
    width: 44.74%;
  }
  .sale_global_box2{
    width: 44.74%;
  }
  .sale_global_head{

  }
  .sale_global_head_en{
    min-width: 205px;
    font-size: 18px;
    padding: 16px 5px 10px;
    margin-bottom: 20px;
  }
  .sale_global_head_ja{
    font-size: 60px;
  }


  /* バンニング */
  .sale_van{
    padding-top: 120px;
  }
  .sale_van_box1{
    width: 17.76%;
  }
  .sale_van_box2{
    width: 28.29%;
    padding-top: 80px;
    margin-left: 0;
  }
  .sale_van_box3{
    width: 44.74%;
    padding-top: 58px;
    margin-left: auto;
  }
  .sale_van_head{
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sale_van_head_en{
    min-width: 0;
    min-height: 182px;
    font-size: 18px;
    text-align: center;
    padding: 5px 14px 5px 12px;
    margin-bottom: 10px;
    writing-mode: vertical-rl;
  }
  .sale_van_head_en.min{
    min-height: 124px;
  }
  .sale_van_head_ja{
    font-size: 46px;
    writing-mode: vertical-rl;
    margin-left: 28px;
  }
  .sale_van_img1{
    margin-left: auto;
  }
  .sale_van_img2{
    margin-top: 140px;
    margin-left: -78px;
  }
  .sale_van_img3{
    margin-top: 35px;
  }

  /* 特徴 */
  .sale_future_wrap{

  }
  .sale_future_wrap .section{

  }
  .sale_future_wrap .section + .section{
    /*margin-top: 20px;*/
  }

  .sale_future{
  }
  * + .sale_future{
    margin-top: 80px;
  }
  .sale_future_box1{
    width: 44.74%;
  }
  .sale_future_box2{
    width: 49.01%;
    margin-top: 0;
  }
  .sale_future_img{
    border-radius: 20px;
  }

  /* 流れ */
  .sale_flow{

  }
  .sale_flow_box1{
    width: 205px;
  }
  .sale_flow_box2{
    width: 62.26%;
    padding: 20px 20px;
  }
  .sale_flow_inner{
    min-height: 485px;
    padding: 35px 45px;
    background: rgba(0,0,0,0.55);
  }

  .sale_flow_inner .tt2.bdr2{
    margin-bottom: 20px;
  }
  .sale_flow_inner .tt2.bdr2:after{
    width: 80.71%;
  }

  .sale_flow_panel{
    /*height: 100vh;*/
  }
  .sale_flow_bg.img_fit:before{
    padding-top: 0;
    height: 100%;
  }

  .sale_flow_thumbs{
    display: flex;
    flex-direction: column;
    gap: 15px 0;
    width: 120px;
    margin-top: 75px;
  }
  .sale_flow_thumbs_item{

  }
  .sale_flow_thumbs_item.img_fit:before{
    padding-top: 66.66%;
  }
}
@media (min-width:1200px){

  /* よくある質問 */
  .sale_faq{

  }
  * + .sale_faq{
    margin-top: 85px;
  }
  .sale_faq_dl{
    min-height: 100px;
    border-radius: 20px;
  }
  .sale_faq_dl + .sale_faq_dl{
    margin-top: 30px;
    padding-top: 35px;
  }
  .sale_faq_dt{
    min-height: 100px;
    border-radius: 20px;
    padding-left: 125px;
    padding-right: 95px;
  }
  .sale_faq_dt:before{
    width: 53px;
    /*top: 25px;*/
    left: 40px;
  }
  .sale_faq_dt:after{
    right: 48px;
  }

  .sale_faq_dd{
    padding-left: 125px;
    margin-top: 18px;
  }
  .sale_faq_ttl{
    font-size: 25px;
  }
  .sale_faq_txt{
    font-size: 16px;
    line-height: 2.875;
  }

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


  /* 海外販売 */
  .sale_global{
  }
  .sale_global_box1{
    width: 44.74%;
  }
  .sale_global_box2{
    width: 44.74%;
    padding-right: 100px;
  }
  .sale_global_head{

  }
  .sale_global_head_en{
    min-width: 205px;
    font-size: 18px;
    padding: 16px 5px 10px;
    margin-bottom: 20px;
  }
  .sale_global_head_ja{
    font-size: 70px;
  }

  /* バンニング */
  .sale_van{
    padding-top: 120px;
  }
  .sale_van_box1{
    width: 17.76%;
  }
  .sale_van_box2{
    width: 28.29%;
    padding-top: 80px;
  }
  .sale_van_box3{
    width: 44.74%;
    padding-top: 58px;
    margin-left: auto;
  }
  .sale_van_head{
    display: flex;
    /*flex-direction: column-reverse;*/
    align-items: flex-start;
    justify-content: flex-start;
  }
  .sale_van_head_en{
    min-height: 182px;
    font-size: 18px;
  }
  .sale_van_head_ja{
    font-size: 56px;
    margin-left: 28px;
  }
  .sale_van_img1{
    margin-left: auto;
  }
  .sale_van_img2{
    margin-top: 140px;
    margin-left: -78px;
  }
  .sale_van_img3{
    margin-top: 35px;
  }


  /* 特徴 */
  .sale_future_wrap{
    margin-top: 80px;
  }
  .sale_future .home_service_ttl{
    font-size: 36px;
  }

  .sale_flow_box2{
    width: 55.26%;
  }

  .sale_flow_thumbs{
    gap: 15px 0;
    width: 120px;
    margin-top: 35px;
  }
  
  .sale_flow_box1 .sale_van_head_ja{
    font-size: 42px;
  }
}
@media (min-width:1720px){

  /* 海外販売 */
  .sale_global{
  }
  .sale_global_box1{
    width: 44.74%;
  }
  .sale_global_box2{
    width: 44.74%;
    padding-right: 205px;
  }
  .sale_global_head{

  }
  .sale_global_head_en{
    min-width: 205px;
    font-size: 18px;
    padding: 16px 5px 10px;
    margin-bottom: 20px;
  }
  .sale_global_head_ja{
    font-size: 80px;
  }

  /* 特徴 */
  .sale_future .home_service_ttl{
    font-size: 42px;
  }


  /* 流れ */
  .sale_flow_thumbs{
    gap: 24px 0;
    width: 150px;
    margin-top: 35px;
  }
  
  .sale_flow_box1 .sale_van_head_ja{
    font-size: 56px;
  }
}



/* 特徴パネル アニメ */
.js-future-panel-item {
  background: #ae0614;
  /*height: 100vh;*/
}
.js-future-panel-sec{
  position: relative;
}

.js-future-panel-wrap{
  position: relative;
  perspective: 1200px;
}

.js-future-panel-wrap > .section{
  margin-top: 0 !important;
}

.js-future-panel-item{
  position: relative;
  width: 100%;
  transform-origin: center center;
  transform-style: preserve-3d;
  will-change: transform;
}

.js-svh-measure{
  position: fixed;
  width: 0;
  height: 100svh;
  visibility: hidden;
  pointer-events: none;
}

@media (max-width:1023px){

  .js-future-panel-sec{
    padding-bottom: 0 !important;
  }

  .js-future-panel-wrap{
    margin-bottom: 0 !important;
    perspective: none;
  }

  .js-future-panel-item{
    transform-style: flat;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  body.android .pg_sale .section.sec6,
  body.android .pg_buyback .section.sec6{
    margin-top: -20px;
  }
  body.ios .pg_sale .section.sec6,
  body.ios .pg_buyback .section.sec6{
    margin-top: -105px;
  }
}
@media (max-width:767px){
  body.ios .pg_sale .section.sec6{
    margin-top: -155px;
  }
  body.ios .pg_buyback .section.sec6{
    margin-top: -145px;
  }
}
@media (max-width:459px){
  body.ios .pg_sale .section.sec6{
    margin-top: -155px;
  }
  body.ios .pg_buyback .section.sec6{
    margin-top: -145px;
  }
}
@media (max-width:439px){
  body.ios .pg_sale .section.sec6{
    margin-top: -155px;
  }
  body.ios .pg_buyback .section.sec6{
    margin-top: -145px;
  }
}
@media (max-width:413px){
  body.ios .pg_sale .section.sec6{
    margin-top: -85px;
  }
  body.ios .pg_buyback .section.sec6{
    margin-top: -65px;
  }
}
@media (max-width:392px){
  body.ios .pg_sale .section.sec6{
    margin-top: -115px;
  }
  body.ios .pg_buyback .section.sec6{
    margin-top: -105px;
  }
}
@media (max-width:767px){
  
}
@media (min-width:768px){
  
}
@media (min-width:1024px){
  
}
@media (min-width:1440px){
  
}
@media (min-width:1520px){
  .pg_sale .section.sec6{
    margin-top: -90px;
  }
  .pg_buyback .section.sec6{
    margin-top: -90px;
  }
}


/**/




.js-flow-panel-sec{
  background: #CCC;
  position: relative;
  z-index: 1;
}
.js-flow-panel-head{
}
.js-flow-panel-wrap{
  position: relative;
  z-index: 1;
}

.gjs-dashed .js-flow-panel-head{
  pointer-events: all;
}

@media (max-width:1023px){
  .js-flow-panel-wrap{
    /*padding-top: 150px;*/
    /*padding-bottom: 50px;*/
  }
}
/*@media (min-width:1024px){*/

  .js-flow-panel-head{
    padding-top: 90px;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
  }

  /* ========================================
  販売の流れ
  ======================================== */

  .js-flow-panel-sec{
    position: relative;
    overflow: hidden;
  }


  /* ========================================
  固定ヘッド
  ======================================== */

  .js-flow-panel-head{
    position: relative;
    z-index: 10;
    width: 100%;
  }
  /* 固定ヘッド全体はクリックを通す */
  .js-flow-panel-head{
    pointer-events: none;
    /*pointer-events: all;*/
  }
  
  /* サムネイル部分だけクリック可能 */
  .js-flow-thumbs,
  .js-flow-thumbs-item{
    pointer-events: auto;
  }
  .js-flow-panel-head .sale_van_head{
    pointer-events: auto;
  }

  /* ========================================
  背景専用レイヤー
  ======================================== */

  .js-flow-bg-stage{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    z-index: 0;
    pointer-events: none;
  }


  .js-flow-bg-item{
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    opacity: 0;
    visibility: hidden;
  }


  .js-flow-bg-item:first-child{
    opacity: 1;
    visibility: visible;
  }


  .js-flow-bg-item img{
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
  }


  /* 背景を少し暗く */
  .js-flow-bg-item:after{
    content: "";

    position: absolute;
    inset: 0;

    z-index: 1;

    background: rgba(0,0,0,0.25);

    pointer-events: none;
  }


  /* ========================================
  元々パネル内にある背景
  JSで複製後は非表示
  ======================================== */

  .js-flow-panel-item > .js-flow-panel-bg{
    display: none;
  }
  .gjs-dashed .js-flow-panel-item > .js-flow-panel-bg{
    display: block;
  }
  


  /* ========================================
  FLOW共通
  ======================================== */


  /* ========================================
  各FLOWパネル
  ======================================== */

  .js-flow-panel-wrap{
    position: relative;
    z-index: 2;
  }


  .sale_flow_panel{
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;

    /*
     * 各パネルごとに
     * 1画面分スクロールさせる
     */
    min-height: 100vh;

    z-index: 1;
  }


  .sale_flow_panel .container{
    position: relative;
    z-index: 2;
  }


  /* ========================================
  サムネイル
  ======================================== */
  .sale_flow_thumbs_item{
    /*opacity: 0.8;*/
    filter: brightness(0.4);
  }
  .sale_flow_thumbs_item.current{
    filter: brightness(1);
    /*opacity: 1;*/
    /*transform: scale(1.05);*/
    /*border: 1px solid #FFF;*/
  }
/*}*/


@media (max-width:1023px){
  .sale_flow_thumbs{
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0 10px;
    margin-top: 0;
    
    position: fixed;
    z-index: 3;
    width: auto;
    top: auto;
    bottom: calc(-100vh + 500px);
    left: 10px;
    right: 10px;
  }
  .sale_flow_thumbs_item{
    width: calc((100% - 30px) / 4);
  }
  
  
}
@media (max-width:767px){
  
  .sale_flow_thumbs{
    bottom: calc(-100vh + 400px);
  }
  .sale_flow_panel{
    min-height: calc(100vh + 150px);
  }
}
@media (max-width:413px){
  .sale_flow_panel{
    min-height: calc(100vh + 250px);
  }
}

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

/* セクション設定 */
.pg_buyback{
  position: relative;
  z-index: 1;
}
.pg_buyback .section.sec1{
  padding-top: 50px;
  padding-bottom: 35px;
}
.pg_buyback .section.sec2{
  /*background: #f0f0f0;*/
  /*background-image: url('https://global-company.jp/system_panel/uploads/images/sale_lineup_bg.jpg');*/
  /*background-size: cover;*/
  padding-top: 70px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
.pg_buyback .section.sec3{
  padding-top: 120px;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

.pg_buyback .section.sec3 > .container{
  position: relative;
  z-index: 1;
  color: #FFF;
}
.pg_buyback .section.sec4{
  padding-top: 0;
  padding-bottom: 30px;
  position: relative;
  z-index: 1;
}
.pg_buyback .section.sec4:after{
  content: "";
  background: #ebebeb;
  position: absolute;
  z-index: 0;
  inset: 5px 5px 50px 5px;
}
.pg_buyback .section.sec4 > .container{
  position: relative;
  z-index: 1;
}
.pg_buyback .section.sec5{
  padding-top: 25px;
  padding-bottom: 50px;
}
.pg_buyback .section.sec6{
  padding-top: 0;
  padding-bottom: 0;
}
.pg_buyback .section.sec7{
  padding-top: 100px;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}
.pg_buyback .section.sec8{
  padding-top: 50px;
  padding-bottom: 70px;
}
.pg_buyback .section.sec9{
  padding-top: 0;
  padding-bottom: 100px;
}


@media (max-width:374px){

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

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

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

  .pg_buyback{

  }
  .pg_buyback .section.sec1{
    padding-top: 70px;
    padding-bottom: 35px;
  }
  .pg_buyback .section.sec2{
    padding-top: 70px;
    padding-bottom: 80px;
  }
  .pg_buyback .section.sec3{
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .pg_buyback .section.sec4{
    padding-top: 0;
    padding-bottom: 90px;
  }
  .pg_buyback .section.sec4:after{
    inset: 50px 50px 155px 50px;
  }
  .pg_buyback .section.sec5{

  }
  .pg_buyback .section.sec6{

  }
  .pg_buyback .section.sec7{
    padding-top: 190px;
    padding-bottom: 190px;
  }
  .pg_buyback .section.sec8{
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .pg_buyback .section.sec9{
    padding-top: 75px;
    padding-bottom: 100px;
  }
  
  .pg_buyback .section.sec8 .tt3{
    margin-bottom: 100px;
  }
  

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}


/* メイン部分 */

/* About */
.buyback_about{
  
}
.buyback_about_head_en{
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.935;
  color: #f0f0f0;
  text-align: center;
  position: relative;
  z-index: 0;
}
.buyback_about_desc{
  margin-top: 5px;
  position: relative;
  z-index: 1;
}
.buyback_about_desc_ttl{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px 0;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.1;
  text-align: center;
}
.buyback_about_desc_ttl p{
  background: #000;
  color: #FFF;
  padding: 5px 15px 7px;
}
.buyback_about_desc_txt{
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
}
* + .buyback_about_desc_txt{
  margin-top: 30px;
}

/* LINEUP */
.buyback_lineups_wrap{
  padding-top: 500px;
  padding-bottom: 500px;
  position: relative;
  z-index: 1;
}
* + .buyback_lineups_wrap{
  margin-top: 50px;
}
.buyback_lineups{
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
  position: relative;
  z-index: 1;
}
* + .buyback_lineups{
  margin-top: 50px;
}
.buyback_lineups_item{
  width: 100%;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 10px 10px;
  box-shadow: 7px 7px 0 #181818;
  position: relative;
  z-index: 1;
}
.buyback_lineups_item_img{
  border-radius: 10px;
}
.buyback_lineups_item_img.img_fit:before{
  padding-top: 70.312%;
}
.buyback_lineups_item_ttl{
  width: 440px;
  max-width: 100%;
  background: #ac0614;
  color: #FFF;
  border-radius: 10px;
  margin-top: 10px;
  padding: 3px 13px;
}
.buyback_lineups_item_ttl .tt2{
  margin-bottom: 0;
}
.buyback_lineups_item_ttl .tt2_ja{
  font-size: 20px;
}
.buyback_lineups_item_ttl .tt2_en{
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
}
.buyback_lineups_item_txt{
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.075em;
  margin-top: 15px;
}

.buyback_lineups_mark{
  width: 250px;
  position: absolute;
  z-index: 0;
  top: 120px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* お問い合わせボタン */
.buyback_contact_wrap{
  position: relative;
  z-index: 1;
}
* + .buyback_contact_wrap{
  margin-top: 100px;
}
.buyback_contact_msg{
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: justify;
}
.buyback_contact_btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
}
* + .buyback_contact_btns{
  margin-top: 45px;
}
.buyback_contact_btns_a{
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  min-height: 60px;
  border-radius: 10px;
  background: #000;
  color: #FFF;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.075em;
  text-align: center;
  transition: 0.2s all;
  position: relative;
  z-index: 1;
}


.buyback_contact_btns_a:after{
  content: "";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 32px;
  transform: translate(0, -50%);
  width: 20px;
  aspect-ratio: 1 / 1;
  background-image: url('https://global-company.jp/system_panel/uploads/images/chevron-circle-right-solid.svg');
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.2s all;
}

.buyback_contact_btns_a:before{
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translate(0, -50%);
}

.buyback_contact_btns_a.btn1{
  background: #00b900;
}
.buyback_contact_btns_a.btn1:before{
  content: "";
  width: 40px;
  aspect-ratio: 1 / 1;
  background-image: url('https://global-company.jp/system_panel/uploads/images/btn_icon1.png');
  background-repeat: no-repeat;
  background-size: contain;
  left: 20px;
}
.buyback_contact_btns_a.btn2{
  background: #000;
}
.buyback_contact_btns_a.btn2:before{
  content: "";
  width: 22px;
  aspect-ratio: 45 / 35;
  background-image: url('https://global-company.jp/system_panel/uploads/images/btn_icon2.png');
  background-repeat: no-repeat;
  background-size: contain;
  left: 32px;
}
.buyback_contact_btns_a.btn3{
  background: #FFF;
  color: #000;
}
.buyback_contact_btns_a.btn3:before{
  content: "";
  width: 22px;
  aspect-ratio: 45 / 35;
  background-image: url('https://global-company.jp/system_panel/uploads/images/btn_icon3.png');
  background-repeat: no-repeat;
  background-size: contain;
  left: 32px;
}
.buyback_contact_btns_a.btn3:after{
  background-image: url('https://global-company.jp/system_panel/uploads/images/chevron-circle-right-solid-bk.svg');
}

.buyback_contact_btns_a:hover{
  transform: scale(0.98);
  color: #FFF;
}
.buyback_contact_btns_a.btn3:hover{
  color: #000;
}

/* お問い合わせボタン(slim) */
/*.buyback_contact_btns.slim{
  gap: 10px 20px;
}
.buyback_contact_btns.slim .buyback_contact_btns_a{
  width: 100%;
  min-height: 60px;
  font-size: 15px;
}
.buyback_contact_btns.slim .buyback_contact_btns_a.btn1:before{
  width: 52px;
}
.buyback_contact_btns.slim .buyback_contact_btns_a.btn2:before{
  width: 28px;
  left: 24px;
}
.buyback_contact_btns.slim .buyback_contact_btns_a.btn3:before{
  width: 28px;
  left: 24px;
}
.buyback_contact_btns.slim .buyback_contact_btns_a:after{
  width: 12px;
  right: 20px;
}*/

@media (max-width:767px){

  .buyback_lineups_mark{
    /*display: none;*/
  }
  
  .sale_flow .buyback_contact_btns_a{
    font-size: 15px;
  }
  .sale_flow .buyback_contact_btns_a.btn1:before{
    width: 30px;
    left: 12px;
  }
  .sale_flow .buyback_contact_btns_a.btn3:before{
    width: 18px;
    left: 19px;
  }
  .sale_flow .buyback_contact_btns_a:after{
    right: 12px;
  }
  
  .buyback_contact_wrap{
    /*background: #FFF;*/
  }
}

@media (max-width:413px){

  .sale_flow .buyback_contact_btns_a{
    font-size: 13px;
  }
  .sale_flow .buyback_contact_btns_a.btn1:before{
    width: 30px;
    left: 5px;
  }
  .sale_flow .buyback_contact_btns_a.btn3:before{
    width: 18px;
    left: 12px;
  }
  .sale_flow .buyback_contact_btns_a:after{
    right: 12px;
  }
  
}

@media (min-width:768px){

  /* About */
  .buyback_about{

  }
  .buyback_about_head_en{
    font-size: 90px;
    text-align: center;
  }
  .buyback_about_desc{
    margin-top: -95px;
  }
  .buyback_about_desc_ttl{
    font-size: 30px;
  }
  .buyback_about_desc_ttl p{
    /*padding: 0px 35px 5px;*/
  }
  .buyback_about_desc_txt{
    /*font-size: 18px;*/
    /*line-height: 2;*/
    text-align: center;
  }
  * + .buyback_about_desc_txt{
    margin-top: 30px;
  }
  
  /* LINEUP */
  .buyback_lineups_wrap{
    padding-top: 1000px;
  }
  * + .buyback_lineups_wrap{
    margin-top: 75px;
}
  .buyback_lineups{
    gap: 150px 30px;
  }
  * + .buyback_lineups{
    margin-top: 75px;
  }
  .buyback_lineups_item{
    width: calc((100% - 30px) / 2);
    border-radius: 20px;
    padding: 10px 10px;
    box-shadow: 7px 7px 0 #181818;
  }
  .buyback_lineups_item_img{
    border-radius: 20px;
  }
  .buyback_lineups_item_ttl{
    width: 440px;
    border-radius: 10px;
    margin-top: 10px;
    padding: 3px 13px;
  }
  .buyback_lineups_item_ttl .tt2_ja{
    /*font-size: 24px;*/
  }
  .buyback_lineups_item_ttl .tt2_en{
    /*font-size: 15px;*/
  }
  .buyback_lineups_item_txt{
    /*font-size: 16px;*/
    /*margin-top: 15px;*/
  }
  .buyback_lineups_item:nth-child(even){
    top: 100px;
  }

  .buyback_lineups_mark{
    width: 618px;
    top: 120px;
  }

  /* お問い合わせボタン */
  .buyback_contact_wrap{

  }
  * + .buyback_contact_wrap{
    margin-top: 100px;
  }
  .buyback_contact_msg{
    font-size: 28px;
    text-align: center;
  }
  .buyback_contact_btns{
    gap: 10px 20px;
  }
  * + .buyback_contact_btns{
    margin-top: 45px;
  }
  .buyback_contact_btns_a{
    width: calc((100% - 20px) / 2);
    min-height: 70px;
    font-size: 16px;
  }
  /*
  .buyback_contact_btns_a:after{
    right: 32px;
    width: 20px;
  }
  .buyback_contact_btns_a.btn1:before{
    width: 82px;
    left: 20px;
  }
  .buyback_contact_btns_a.btn2:before{
    width: 45px;
    left: 40px;
  }
  .buyback_contact_btns_a.btn3:before{
    width: 45px;
    left: 40px;
  }*/

  /* お問い合わせボタン(slim) */
  /*.buyback_contact_btns.slim{
    gap: 10px 20px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a{
    width: calc((100% - 20px) / 2);
    min-height: 64px;
    font-size: 15px;
  }*/
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn1:before{
    width: 30px;
    left: 12px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn2:before{
    width: 22px;
    left: 16px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn3:before{
    width: 22px;
    left: 16px;
  }
  
  .buyback_contact_btns.slim .buyback_contact_btns_a:after{
    width: 12px;
    right: 20px;
  }
}
@media (min-width:1024px){


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

  /* About */
  .buyback_about{

  }
  .buyback_about_head_en{
    font-size: 160px;
    text-align: center;
  }
  .buyback_about_desc{
    margin-top: -195px;
  }
  .buyback_about_desc_ttl{
    font-size: 42px;
  }
  .buyback_about_desc_ttl p{
    padding: 0px 35px 5px;
  }
  .buyback_about_desc_txt{
    font-size: 18px;
    line-height: 2;
    text-align: center;
  }
  * + .buyback_about_desc_txt{
    margin-top: 50px;
  }

  /* LINEUP */
  
  .buyback_lineups{
    gap: 190px 80px;
  }
  .buyback_lineups_item{
    width: calc((100% - 80px) / 2);
    border-radius: 20px;
    padding: 20px 20px;
  }
  .buyback_lineups_item_img{
    border-radius: 20px;
  }
  .buyback_lineups_item_ttl{
    width: 440px;
    border-radius: 10px;
    margin-top: 10px;
    padding: 3px 13px;
  }
  .buyback_lineups_item_ttl .tt2_ja{
    font-size: 24px;
  }
  .buyback_lineups_item_ttl .tt2_en{
    font-size: 15px;
  }
  .buyback_lineups_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }
  .buyback_lineups_item:nth-child(even){
    top: 120px;
  }
  
  /* お問い合わせボタン */
  .buyback_contact_wrap{

  }
  * + .buyback_contact_wrap{
    margin-top: 100px;
  }
  .buyback_contact_msg{
    font-size: 28px;
    text-align: center;
  }
  .buyback_contact_btns{
    gap: 10px 30px;
  }
  * + .buyback_contact_btns{
    margin-top: 45px;
  }
  .buyback_contact_btns_a{
    width: calc((100% - 30px) / 2);
    min-height: 100px;
    font-size: 24px;
  }

  .buyback_contact_btns_a:after{
    right: 32px;
    width: 20px;
  }
  .buyback_contact_btns_a.btn1:before{
    width: 82px;
    left: 20px;
  }
  .buyback_contact_btns_a.btn2:before{
    width: 45px;
    left: 40px;
  }
  .buyback_contact_btns_a.btn3:before{
    width: 45px;
    left: 40px;
  }

  /* お問い合わせボタン(slim) */
  .buyback_contact_btns.slim{
    gap: 10px 20px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a{
    width: calc((100% - 20px) / 2);
    min-height: 64px;
    font-size: 15px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn1:before{
    width: 52px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn2:before{
    width: 28px;
    left: 24px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a.btn3:before{
    width: 28px;
    left: 24px;
  }
  .buyback_contact_btns.slim .buyback_contact_btns_a:after{
    width: 12px;
    right: 20px;
  }
}
@media (min-width:1470px){

  

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

  /* LINEUP */
  * + .buyback_lineups_wrap{
    margin-top: 125px;
  }
  .buyback_lineups{
    gap: 190px 160px;
  }
  * + .buyback_lineups{
    margin-top: 125px;
  }
  .buyback_lineups_item{
    width: calc((100% - 160px) / 2);
  }
  .buyback_lineups_item_img{
  }
  .buyback_lineups_item_ttl{
  }
  .buyback_lineups_item_ttl .tt2_ja{
    font-size: 24px;
  }
  .buyback_lineups_item_ttl .tt2_en{
    font-size: 15px;
  }
  .buyback_lineups_item_txt{
    font-size: 16px;
    margin-top: 15px;
  }
  .buyback_lineups_item:nth-child(even){
    top: 195px;
  }

}



.buyback_lineups_mark{
  will-change: position, top, transform;
}

/* ========================================
スクロール中
======================================== */

.buyback_lineups_mark.fixed{
  position: fixed;
  top: 120px;
  bottom: auto;
}

/* ========================================
セクション終了
======================================== */

.buyback_lineups_mark.btm{
  position: absolute;
  
  top: auto;
  /*
   * fixed時のTOP120pxと
   * 見た目が自然につながるように
   * JS側でbottomを設定
   */
}

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

/**/

/* LINE */
.buyback_line{
  
}
.buyback_line_row{
  
}
.buyback_line_row + .buyback_line_row{
  margin-top: 50px;
}
.buyback_line_flow_head{
  margin-bottom: 35px;
  
}

.buyback_line_flow_head_en{
  display: inline-block;
  min-width: 135px;
  background: #000;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1;
  text-align: center;
  padding: 13px 10px;
  margin-bottom: 12px;
}
.buyback_line_flow_head_ja{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.075em;
}


.buyback_line_flow{
  display: flex;
  flex-wrap: wrap;
}
.buyback_line_flow_item{
  width: calc((100% - 160px) / 2);
}
.buyback_line_flow_item_ttl{
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.075em;
  padding-bottom: 10px;
  border-bottom: 5px solid;
  margin-bottom: 10px;
}
.buyback_line_flow_item_txt{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  line-height: 1.875;
  text-align: justify;
}
.buyback_line_flow_item_list{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
}
.buyback_line_flow_item_list p{
  padding-left: 20px;
  position: relative;
  z-index: 1;
}
.buyback_line_flow_item_list p:before{
  content: "";
  width: 16px;
  aspect-ratio: 16 / 16;
  background-image: url('https://global-company.jp/system_panel/uploads/images/square-check-regular-bk.svg');
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 1;
  top:5px;
  left: 0;
}
.buyback_line_flow_item_list p+p{
  margin-top: 16px;
}
.buyback_line_flow_item_list + .buyback_line_flow_item_txt{
  margin-top: 10px;
}

.buyback_line_flow_item_img{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  /*aspect-ratio: 475 / 400;*/
  /*padding: 10px 0;*/
  margin-bottom: 20px;
}
.buyback_line_flow_item_img2{
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}


.buyback_line_flow.col2{
  gap: 50px 20px;
}
.buyback_line_flow.col2 .buyback_line_flow_item{
  width: 100%;
}
.buyback_line_flow.col3{
  gap: 50px 20px;
}
.buyback_line_flow.col3 .buyback_line_flow_item{
  width: 100%;
}
.buyback_line_flow.col3 .buyback_line_flow_item_ttl{
  
}


@media (max-width:767px){

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

  /* LINE */
  .buyback_line{

  }
  .buyback_line_row{

  }
  .buyback_line_row + .buyback_line_row{
    margin-top: 80px;
  }
  .buyback_line_flow_head{
    margin-bottom: 35px;
  }

  .buyback_line_flow_head_en{
    min-width: 135px;
    font-size: 18px;
    padding: 13px 10px;
    margin-bottom: 12px;
  }
  .buyback_line_flow_head_ja{
    font-size: 24px;
  }

  .buyback_line_flow_head + .buyback_line_flow_item_txt{
    margin-top: -20px;
  }

  .buyback_line_flow{
  }
  .buyback_line_flow_item{
    width: calc((100% - 160px) / 2);
  }
  .buyback_line_flow_item_ttl{
    font-size: 20px;
    padding-bottom: 10px;
    border-bottom: 5px solid;
    margin-bottom: 10px;
  }
  .buyback_line_flow_item_txt{
    font-size: 16px;
    /*line-height: 2.5;*/
  }
  .buyback_line_flow_item_list{
    font-size: 16px;
  }
  .buyback_line_flow_item_list p{
    padding-left: 20px;
  }
  .buyback_line_flow_item_list p:before{
    width: 16px;
    top:5px;
  }
  .buyback_line_flow_item_list p+p{
    margin-top: 16px;
  }
  .buyback_line_flow_item_list + .buyback_line_flow_item_txt{
    margin-top: 10px;
  }

  .buyback_line_flow_item_img{
    aspect-ratio: 475 / 400;
    margin-bottom: 0;
  }
  .buyback_line_flow_item_img2{
    margin-top: 30px;
    margin-bottom: 30px;
  }


  .buyback_line_flow.col2{
    gap: 50px 30px;
  }
  .buyback_line_flow.col2 .buyback_line_flow_item{
    width: calc((100% - 30px) / 2);
  }
  .buyback_line_flow.col3{
    gap: 50px 30px;
  }
  .buyback_line_flow.col3 .buyback_line_flow_item{
    width: calc((100% - 60px) / 3);
  }
  
}
@media (min-width:1024px){


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

  /* LINE */
  .buyback_line{

  }
  .buyback_line_row{

  }
  .buyback_line_row + .buyback_line_row{
    margin-top: 80px;
  }
  .buyback_line_flow_head{
    margin-bottom: 35px;
  }

  .buyback_line_flow_head_en{
    min-width: 135px;
    font-size: 18px;
    padding: 13px 10px;
    margin-bottom: 12px;
  }
  .buyback_line_flow_head_ja{
    font-size: 30px;
  }


  .buyback_line_flow{
  }
  .buyback_line_flow_item{
    width: calc((100% - 160px) / 2);
  }
  .buyback_line_flow_item_ttl{
    font-size: 25px;
    padding-bottom: 10px;
    border-bottom: 5px solid;
    margin-bottom: 10px;
  }
  .buyback_line_flow_item_txt{
    font-size: 16px;
    line-height: 2.5;
  }
  .buyback_line_flow_item_list{
    font-size: 16px;
  }
  .buyback_line_flow_item_list p{
    padding-left: 20px;
  }
  .buyback_line_flow_item_list p:before{
    width: 16px;
    top:5px;
  }
  .buyback_line_flow_item_list p+p{
    margin-top: 16px;
  }
  .buyback_line_flow_item_list + .buyback_line_flow_item_txt{
    margin-top: 10px;
  }

  .buyback_line_flow_item_img{
    aspect-ratio: 475 / 400;
  }
  .buyback_line_flow_item_img2{
    margin-top: 30px;
    margin-bottom: 30px;
  }


  .buyback_line_flow.col2{
    gap: 50px 160px;
  }
  .buyback_line_flow.col2 .buyback_line_flow_item{
    width: calc((100% - 160px) / 2);
  }
  .buyback_line_flow.col3{
    gap: 50px 30px;
  }
  .buyback_line_flow.col3 .buyback_line_flow_item{
    width: calc((100% - 60px) / 3);
  }

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


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


}



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


/**/
.fileArea{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 30px;
}
.fileArea + .fileArea{
  margin-top: 10px;
}
.fileCaution{
  font-size: 14px;
}

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}
.pg_xxx .section.sec6{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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

  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }
  .pg_xxx .section.sec6{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}


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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

}
@media (max-width:767px){
  .read_more_a{
        min-width: 250px;
  }
}
@media (min-width:768px){
  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


}



/* ========================================
Tile Reveal
======================================== */

.js-tile-reveal {
  position: relative;
  overflow: hidden;
}

/* 元画像 */
.js-tile-reveal > img {
  position: relative;
  z-index: 1;

  opacity: 0;
}

/* タイル用レイヤー */
.tile-reveal-layer {
  position: absolute;
  inset: 0;

  z-index: 2;

  display: grid;

  pointer-events: none;

  background: #fff;
}


/* 各タイル */
.tile-reveal-cell {
  position: relative;

  overflow: hidden;

  background: #fff;
}


/*
各タイル内に同じ画像を背景として配置
*/
.tile-reveal-cell-inner {
  position: absolute;

  background-repeat: no-repeat;

  opacity: 0;

  transform: scale(0.85);

  transition:
    opacity 0.35s ease,
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}


/* グレーのBOX */
.tile-reveal-cell::after {
  content: "";

  position: absolute;
  inset: 0;

  z-index: 2;

  background: #aaa;

  opacity: 0;

  transform: scale(0.4);

  transition:
    opacity 0.2s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}


/* BOX出現 */
.tile-reveal-cell.is-active::after {
  opacity: 1;
  transform: scale(1);
}


/* 画像出現 */
.tile-reveal-cell.is-show .tile-reveal-cell-inner {
  opacity: 1;
  transform: scale(1);
}


/* グレーを消す */
.tile-reveal-cell.is-show::after {
  opacity: 0;
}


/* 完了 */
.js-tile-reveal.is-complete > img {
  opacity: 1;
}

.js-tile-reveal.is-complete .tile-reveal-layer {
  opacity: 0;

  transition: opacity 0.4s ease;
}



.home_gallery_wrap {
  overflow: hidden;
}

.home_gallery_logo,
.home_gallery {
  display: flex;
  width: max-content;
  will-change: transform;
}

.home_gallery_logo > *,
.home_gallery > * {
  flex-shrink: 0;
}


.js-movie-wrap {
  position: relative;
}

.js-movie-right.fixed {
  position: fixed;
  top: 0;
  z-index: 2;
}

.js-movie-right.end {
  position: absolute;
}



/**/
.js-fix-header-sec{
  position: relative;
}

.js-fix-header-space{
  display: none;
  width: 100%;
}

.js-fix-header{
  transition: opacity 0.3s ease;
}

.js-fix-header.fixed{
  position: fixed;
  z-index: 2;
  padding-top: 10px;
  top: 0;
  opacity: 1;
  margin-bottom: 0;
}

.js-fix-header.fixed.btm{
  /*opacity: 0;*/
  opacity: 1;
  position: absolute;
    top: auto!important;
    bottom:0;
  pointer-events: none;
}

.js-fix-header.btm{
  /*opacity: 0 !important;*/
}

.js-fix-header.fixed:before{
  content: "";
  width: 100vw;
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  background: #FFF;
  left: 50%;
  transform: translate(-50%, 0) !important;
}
.section.bk .js-fix-header.fixed:before{
  background: #000;
}
.section.red .js-fix-header.fixed:before{
  background: #ae0614;
}

@media (min-width:768px){
  
  .js-fix-header.fixed{
    padding-top: 86px;
    padding-top: 0;
    
  }
  .js-fix-header.fixed:before{
    top: -25px;
  }
  
  .js-fix-header.fixed.btm{
    
  }
}

@media (min-width: 1470px){

  /* 動画を先に見せ、文章は下から入ってくる位置へ */
  .js-movie-left{
    padding-top: 75vh;
    box-sizing: border-box;
  }

  /* 文章の初期状態 */
  .js-movie-left > *{
    opacity: 0;
    transform: translateY(40px);
    transition:
      opacity 2.8s ease,
      transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }

  /* 表示 */
  .js-movie-left.is-show > *{
    opacity: 1;
    transform: translateY(0);
  }

}

.buyback_about_desc_ttl p{
  position: relative;
  z-index: 1;
}

@media (max-width:767px){
  .buyback_about_desc_ttl .typing-text{
    top: 5px;
    right: 10px;
  }
}
/*
.js-img-grids{
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  position: absolute;
  z-index: 2;
  inset: 0;
}
.js-img-grids .cell{
  
}
.js-img-grids .cell-wh{
  width: calc(100% / 8);
  height: calc(100% / 8);
  background: #CCC;
  transition: 0.2s all;
  opacity: 1;
  position: relative;
  z-index: 1;
  animation-fill-mode: forwards;
}
.js-img-grids span.hide{
  animation: imgGridsHide 0.2s  ;
  animation-fill-mode: forwards;
}

.js-img-grids:before{
  content: "";
  background: #FFF;
  position: absolute;
  z-index: 0;
  inset: 0;
}

.buyback_lineups_item_img{
  
}
.buyback_lineups_item_img .js-img-grids{
  
}


@keyframes imgGridsHide{
  0%{
    opacity: 1;
  }
  100%{
    opacity: 0;
  }

}*/


/* ========================================
画像グリッドリビール
======================================== */

.js-img-grids{
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  pointer-events: none;
  transition: opacity 0.2s ;
}

.js-img-grids-cell{
  position: relative;
  overflow: hidden;
  transition: opacity 0.2s ;
}

/* 初期の白ベタ */
.js-img-grids-cell:before{
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: #fff;
  transition: opacity 0.2s ;
}

/* 後から表示するグレー */
.js-img-grids-cell:after{
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: #eee;
  opacity: 0;
  transition: opacity 0.2s ;
}

/* グレー表示 */
.js-img-grids-cell.is-gray:after{
  opacity: 1;
}

/* グレー表示後にマス全体を消す */
.js-img-grids-cell.is-hide{
  opacity: 0;
  /*transition: opacity 0.3s ease;*/
}