@charset "UTF-8";

:root {
  --main-color: #7691c1;
  --sub-color: #f39700;;
}
#root{
  overflow: hidden;
}

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

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

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

}

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


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

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

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

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

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

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

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

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

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

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

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


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

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

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

/*******************************
*　ヘッダー
********************************/
.header{

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

/* ロゴ */
.hdr_logo{

}
.hdr_logo img{
  width: 150px;
}

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

/* TELボタン */
.hdr_tel{

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

}
.hdr_tel_link p{

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


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

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


@media (min-width:375px){

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

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

  .hdr_tel{
    display: none;
  }
  .hdr_contact_btn{
    display: none;
  }

  .sidebar_bn{
    margin: 16px 0;
  }

  .hdr_tel2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 20px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-top: 0;
  }
  .hdr_tel2:before{
    content: "";
    display: block;
    width: 31px;
    height: 25px;
    background-image: url(/system_panel/uploads/images/phone_bl.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 2px;
    margin-right: 7px;
  }
}
@media (min-width:768px){

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

  .hdr1{
    padding: 0 15px 0;
  }

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

  /* ヘッダースリム */
  .header.slim{
    background: #fff;
  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_tel{
    margin-left: 30px;
  }
  .hdr_tel1{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    background: #7691c1;
    color: #fff;
  }
  .hdr_tel2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-top: 5px;
  }
  .hdr_tel2:before{
    content: "";
    display: block;
    width: 31px;
    height: 25px;
    background-image: url(/system_panel/uploads/images/phone_bl.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 2px;
    margin-right: 7px;
  }
  .hdr_tel3{
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    margin-top: 6px;
  }
  .hdr_contact_btn{
    display: block;
    width: 120px;
    background: var(--main-color);
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    transition: all .2s;
    border: 1px solid transparent;
    padding: 34px 0 27px;
    margin-left: 30px;
  }
  .hdr_contact_btn:hover{
    background: var(--sub-color);
    color: #fff;
  }
  .hdr_contact_btn p{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    letter-spacing: 0;
  }
  .hdr_contact_btn p:before{
    content: "";
    display: block;
    width: 30px;
    height: 25px;
    background-image: url(/system_panel/uploads/images/mai_wh.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: all .2s;
    margin-bottom: 2px;
  }

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

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

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

  }

  /* TELボタン */
  .hdr_tel{

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

  .hdr_outer{
    margin-left: 90px;
  }
  .hdr_contact_btn{
    margin-left: 81px;
  }

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

  /* ロゴ */
  .hdr_logo{

  }
  .hdr_logo img{
    width: auto;
  }

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

  }

}
@media (min-width:1440px){
  .header{
    justify-content: flex-end;
    padding: 0;
  }
  .hdr_outer{
    margin-left: 60px;
  }
  .hdr_contact_btn{
    margin-left: 20px;
  }
  .hdr_tel{
    margin-left: 58px;
  }
}
@media (min-width:1600px){
  .hdr_outer{
    margin-left: 40px;
  }
  .hdr_contact_btn{
    margin-left: 60px;
  }
}
@media (min-width:1800px){
  .hdr_outer{
    margin-left: 90px;
  }
  .hdr_contact_btn{
    margin-left: 81px;
  }
}

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



/* MVテキスト */
.mv_txt_box{
  width: 100%;
  color: #fff;
  position: absolute;
  top: 49.5%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 3;
}
.mv_txt1{
  font-size: 21.5px;
  font-weight: 900;
}
.mv_txt2{
  font-size: 14px;
  font-weight: 700;
  background: var(--main-color);
  text-align: center;
  max-width: 208px;
  width: 100%;
  padding: 1px;
  margin-top: 10px;
}
.mv_txt3{
  font-size: 41px;
  font-weight: 900;
  line-height: 1;
  margin-left: -7px;
}
.mv_txt4{
  display: flex;
  align-items: center;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  margin-top: 10px;
}
.mv_txt4 p{
  display: inline-block;
  padding: 0px 3px 10px 2px;
  margin-right: 6px;
}
.mv_txt4 .bl{
  background: #0068b7;
}
.mv_txt4 .or{
  background: #f39800;
}


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

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

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

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

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt1{
    font-size: 31px;
  }
  .mv_txt2{
    max-width: 296px;
    font-size: 20px;
  }
  .mv_txt3{
    font-size: 58px;
  }
  .mv_txt4{
    font-size: 60px;
  }
  .mv_txt4 .bl{

  }
  .mv_txt4 .or{

  }

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


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

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt1{
    font-size: 46px;
  }
  .mv_txt2{
    max-width: 443px;
    font-size: 29px;
  }
  .mv_txt3{
    font-size: 86px;
  }
  .mv_txt4{
    font-size: 94px;
  }
  .mv_txt4 .bl{

  }
  .mv_txt4 .or{

  }

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

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

  /* MVテキスト */
  .mv_txt_box{

  }
  .mv_txt1{

  }
  .mv_txt2{

  }
  .mv_txt3{

  }
  .mv_txt4{

  }
  .mv_txt4 .bl{

  }
  .mv_txt4 .or{

  }

}
@media (max-width:767px){
  .mv_txt4 p{
    padding: 0px 0px 5px 4px;
  }
}

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

/* サイドバー */
.sidebar{
  position: fixed;
  z-index: 9;
  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{
    width: 40px;
    margin: 20px 0;
  }
  .sidebar_bn img{
    width: 60px;
  }


}
@media (min-width:1024px){
 /* バナー */
  .sidebar_bn{
    width: 60px;
  }
}
@media (min-width:1200px){

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

}
@media (min-width:1366px){
 /* バナー */
  .sidebar_bn{
    width: auto;
  }

}
@media (min-width:1450px){
 /* バナー */
  .sidebar_bn{
  width: auto;
  }

}

@media (min-width:1700px){
 /* バナー */
  .sidebar_bn{
    width: auto;
  }

}





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

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

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

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

}
.ftr1_box2{

}

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


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

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

.ftr_addr em{
  font-style: normal;
}
.ftr_copy{
  font-size: 14px;
  text-align: center;
  background: #fff;
  padding: 15px;
}

/* 追尾スマホメニュー */
.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 var(--main-color);
}
.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{
  border-bottom: 1px solid #808080;
  padding-bottom: 40px;
}
.ftr_contact_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.ftr_contact_box1{
  width: 100%;
}
.ftr_contact_box1 .tt2{
  text-align: left;
  margin-bottom: 30px;
}
.ftr_contact_box .content_desc{

}
.ftr_contact_box2{
  width: 100%;
  margin-top: 30px;;
}
.ftr_contact_btn{
  display: block;
  width: 100%;;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  border-radius: 38px;
  color: #FFF;
  padding: 20px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.ftr_contact_btn:before{
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background-image: url(/system_panel/uploads/images/mai_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all .2s;
  margin-bottom: 2px;
  position: absolute;
  top: 50%;
  left: 16px;;
  transform: translateY(-50%);
}
.ftr_contact_btn:hover{
 background: var(--sub-color);
color: #fff; 
}
.ftr_contact_tel{
  text-align: center;
  margin-top: 30px;
}
.ftr_contact_tel1{
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #555555;
  padding-bottom: 10px;
}
.ftr_contact_tel2{
  font-size: 24px;
  font-weight: 600;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.2em;
  line-height: 1;
  padding-top: 10px;
}

.ftr_1{
  text-align: center;
  padding-top: 40px;
  margin-bottom: 30px;
}
.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.18em;
  margin-top: 20px;
}
.ftr_sns{
  margin-top: 20px;
}
.ftr_sns_item{
  display: inline-block;
}
.ftr_sns_item  + .ftr_sns_item{
  margin-left: 16px;
}
.ftr_1_box2{
  width: 100%;
}

@media (min-width:375px){

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

  body{
    padding-bottom: 56px;
  }

  .footer_fix{
    display: flex;
  }

  .ftr_1_box2{
    display: none;
  }

}
@media (min-width:768px){
  .footer{
    margin-top: 100px;
    padding-top: 68px;
  }

  .ftr_contact_box{

  }
  .ftr_contact_box1{
    width: 48.64%;
    padding-top: 14px;
  }
  .ftr_contact_box1 .tt2{

  }
  .ftr_contact_box .content_desc{

  }
  .ftr_contact_box2{
    width: 48.64%;
    padding-top: 21px;
    margin-top: 0;
  }
  .ftr_contact_btn{
padding: 20px 20px 20px 45px;
  }
  .ftr_contact_btn:before{
    left: 28px;;
  }
  .ftr_contact_tel{
    text-align: left;
    margin-top: 50px;
  }
  .ftr_contact_tel1{
    font-size: 18px;
  }
  .ftr_contact_tel2{
    font-size: 32px;
  }

  .ftr_1{
    text-align: left;
    padding-top: 60px;
    margin-bottom: 74px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{
    width: 48.64%;
    padding-top: 16px;
  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_sns{

  }
  .ftr_1_box2{
    width: 43.23%;
    display: flex;
    justify-content: space-between;
  }
  .ftr_links{

  }
  .ftr_link{
    font-size: 16px;
    font-weight: 500;
    line-height: 2.25em;
  }
}
@media (min-width:1024px){
  .footer{
    margin-top: 195px;
    padding-top: 57px;
  }

  .ftr_contact_box{

  }
  .ftr_contact_box1{

  }
  .ftr_contact_box1 .tt2{

  }
  .ftr_contact_box .content_desc{

  }
  .ftr_contact_box2{

  }
  .ftr_contact_btn{
    font-size: 20px;
    padding: 20px 20px;
  }
  .ftr_contact_btn:before{
    left: 30px;;
  }
  .ftr_contact_tel{

  }
  .ftr_contact_tel1{
    font-size: 20px;
  }
  .ftr_contact_tel2{
    font-size: 38px;
  }

  .ftr_1{
    padding-top: 90px;
  }
  .ftr_1_box{

  }
  .ftr_1_box1{

  }
  .ftr_logo{

  }
  .ftr_add{

  }
  .ftr_sns{

  }
  .ftr_1_box2{
    width: 34.23%;
  }
  .ftr_links{

  }
  .ftr_link{

  }
}
@media (min-width:1200px){
  .ftr_contact_btn{
     padding: 20px 20px;
  }
  .ftr_contact_btn:before{
    left: 50px;;
  }

}


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


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

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

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


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

/* ボタン */
.read_more{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -5px;
  margin-right: -5px;
}
.read_more a{
  min-width: 240px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  border: 1px solid transparent;
  background: var(--main-color);
  border-radius: 23px;
  color: #FFF;
  padding: 16px 20px;
  margin: 5px 5px;
  position: relative;
  z-index: 1;
  transition: 0.2s all;
}
.read_more a p{
  /*letter-spacing: 0;*/
}
.read_more a:after{
  content: "〉";
  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;
}


/* 見出し */
.tt2{
  text-align: center;
 margin-bottom: 46px;
}
.tt2_en{
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0;

  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: var(--main-color);
}
.tt2_ja{
  font-size: 16px;
  font-weight: 900;
  margin-top: 5px;
}
.tt2_ja2{
  font-size: 18px;
  font-weight: 500;
  margin-top: 15px;
}
.tt2_ja2 strong{
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

/*大文字*/
.tt2_lg_en{
  /*  font-size: 50px;*/
  font-size:clamp(3.125rem, 2.25rem + 4.38vw, 7.5rem);
  font-weight: 500;
  font-family: "Outfit", sans-serif;
  line-height: 1;
  color: #e6eaf3;
}

/*タイトル中*/
.tt2_sub{
  font-size: 20px;
  font-weight: 900;
}
.tt2_sub strong{
  font-size: 1.375em;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  color: #7691c1;
  line-height: 1;
}

/*説明*/
.content_desc{
  font-size: 16px;
  font-weight: 500;
  line-height: 2.125em;
  text-align: justify;
  margin-top: 20px;
}



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

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

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

}


@media (max-width:374px){

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

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

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

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

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

  .read_more a{
    min-width: 290px;
    border-radius: 30px;
  }
}
@media (min-width:768px){

  .anchor{
    top: -150px;
  }

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

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

  /* 見出し */
  .tt2{
    margin-bottom: 80px;
  }
  .tt2_en{
    font-size: 60px;
  }
  .tt2_ja{
    font-size: 24px;
    margin-top: 11px;
  }

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

  /*大文字*/
  .tt2_lg_en{
    /*  font-size: 100px;*/
  }

  /*タイトル中*/
  .tt2_sub{
    font-size: 28px;
  }

  /*説明*/
  .content_desc{

  }


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

  /* ページネーション */
  .webgene-pagination{
    margin-top: 120px;
  }
  .posts_list .webgene-pagination{
    margin-top: 80px;
  }
  /* 見出し */
  .tt2{
    margin-bottom: 50px;
  }
  .tt2_en{
    font-size: 73px;
  }
  .tt2_ja{
    font-size: 28px;
  }

  /*大文字*/
  .tt2_lg_en{
    /*  font-size: 120px;*/
  }

  /*タイトル中*/
  .tt2_sub{
    font-size: 42px;
  }

  /*説明*/
  .content_desc{

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

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


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

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

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

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

}

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

}


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

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

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

}
.pg_home .section.sec5{

}
.pg_home .section.sec6{

}
.pg_home .section.sec7{

}
.pg_home .section.sec8{
  /* padding-top:160px;*/
}

@media (max-width:767px){

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

  .pg_home .section.sec1{
    padding-top: 100px;
  }
  .pg_home .section.sec2{
    padding-top: 70px;
  }
  .pg_home .section.sec3{
    padding-top: 160px;
  }
  .pg_home .section.sec4{
    padding-top: 42px;
  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 87px;
  }
  .pg_home .section.sec8{
    padding-top:120px;
  }

}
@media (min-width:1024px){
  .pg_home .section.sec1{
    padding-top: 192px;
  }
  .pg_home .section.sec2{
    padding-top: 93px;
  }
  .pg_home .section.sec3{
    padding-top: 240px;
  }
  .pg_home .section.sec4{

  }
  .pg_home .section.sec5{

  }
  .pg_home .section.sec6{

  }
  .pg_home .section.sec7{
    padding-top: 87px;
  }
  .pg_home .section.sec8{
    padding-top:160px;
  }

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


}



/*メイン*/

/*topics*/
.home_news_list{

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

}
.home_news_list .webgene-item .img{
  overflow: hidden;
}
.home_news_list .webgene-item .img:before{
  padding-top: 77.777%;
}
.home_news_list .webgene-item .box2{
  margin-top: 10px;
}
.home_news_list .webgene-item .meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home_news_list .webgene-item .date{
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0;
}
.home_news_list .webgene-item .category{
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  width: 120px;
  color: #fff;
  background: var(--main-color);
  text-align: center;
  padding: 6px 0;
}
.home_news_list .webgene-item .title{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.75em;
  margin-top: 12px;
}

/*買取について*/
.home_contents2_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents2_box1{
  width: 100%;
  position: relative;
}
.home_contents2_box1 img{
  display: block;
  width: 300px;
  margin: 0 auto;
}
.home_contents2_box1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 85.08%;
  background: #f3f3f3;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents2_box1_img{
  position: relative;
  z-index: 2;
}
.home_contents2_box2{
  width: 100%;
  position: relative;
  z-index: 2;
}
.home_contents2_box2_tt{
  font-size: 18px;
  font-weight: 900;
  margin-top: 10px;
}
.home_contents2_box2_tt p{
  display: inline-block;
  background: #fff100;
  border-radius: 30px;
  padding: 0 12px 0 26px;
  position: relative;
}
.home_contents2_box2_tt p:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #fff100 transparent transparent;
  border-width: 0px 28px 32px 0px;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.home_contents2_box2 .tt2_sub{
  margin-top: 10px;
}
.home_contents2_box2 .content_desc{

}
.home_contents2_box2 .read_more{

}

/*高価買取*/
.home_contents3_tt{
  display: flex;
  justify-content: center;
  border-bottom: 3px solid #7691c1;
  position: relative;
  padding-bottom: 10px;
}
.home_contents3_tt1{
  margin: 0px 165px;
}
.home_contents3_tt1 .mv_txt4{
 color: #fff;
}
.home_contents3_tt_img{
  width: 29.86%;
  aspect-ratio:454 / 328;
  position: absolute;
  bottom: 0;
  left: 43.5%;
  transform: translateX(-50%);
}
.home_contents3_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-inline:-5px;
  margin-top:40px;
}
.home_contents3_item{
  width: 50%;
  padding-inline:5px;
}
.home_contents3_item:nth-child(n+3){
  margin-top: 20px;; 
}
.home_contents3_item_inner{

}
.home_contents3_item_img{

}
.home_contents3_item_img img{
  border-radius: 50%;
}
.home_contents3_item_tt{
  text-align: center;
  font-size: 16px;
  font-weight: 900;
  margin-top: 15px;
}
.home_contents3_desc{
  margin-top: 30px;
}
.home_contents3_desc .buy_about_title{

}
.home_contents3_desc .content_desc{

}

/*バナー*/
.home_contents4_bnr{
  position: relative;
}
.home_contents4_bnr_tt{
  width: 100%;
  background: #f39700;
  color: #fff;

  text-align:center;
  padding: 12px 0;
}
.home_contents4_bnr_text{
  font-size: 20px;
  font-weight: 900;
}
.home_contents4_bnr_lady{
  width: 15.06%;
  aspect-ratio:229 / 301;
  position: absolute;
  right: 0;
  bottom: 0;
}
.home_contents4_bnr_inner{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.home_contents4_bnr_img{

}
.home_contents4_bnr_img:before{
  padding-top: 900px;
}
.home_contents4_bnr_img:after{
  content: "";
  display: block;
  width:100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}
.home_contents4_bnr_content{
  display: flex;
  flex-wrap: wrap;

  width: 100%;
}
.home_contents4_bnr_txt_img{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}
.home_contents4_bnr_desc{
  background: #fff;
  padding: 2px 0 24px;
}
.home_contents4_bnr_desc_left{

}
.home_contents4_bnr_desc_right{

}
.home_contents4_bnr_desc_right .content_desc{
  line-height: 1.875em;
  font-weight: 500;
}
.home_contents4_bnr_desc_right .content_desc strong{
  font-weight: 600;
  color: #ff4605;
}

.home_contents4_bnr_content2{
  width: 100%;
}
.home_contents4_bnr_content2 .read_more{

}
.home_contents4_bnr_content2 .read_more a{
  width: 280px;;
  background: #f39700;
  border-radius: 30px;
  border: 1px solid transparent;
}
.home_contents4_bnr_content2 .read_more a:hover{
  background: var(--main-color);
}
.home_contents4_bnr_content2 .read_more a:before{
  background: #fff100;
}

/*機種*/
.home_contents4_items{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.home_contents4_item{
  width: 100%;
}
.home_contents4_item:nth-child(n+2){
  margin-top: 30px;
}
.home_contents4_item_inner{
  background: #7691c1;
  padding: 30px 0 20px;
}
.home_contents4_item_img{
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  min-height: 181px;
}
.home_contents4_item_tt{
  text-align: center;
  font-size: 17px;
  font-weight: 500;
  color: #fff;
  margin-top: 16px;
}

/*その他サービス*/
.home_contents5_items{

}
.home_contents5_item{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home_contents5_item:nth-child(n+2){
  margin-top: 60px;
}
.home_contents5_box1{
  width: 100%;
  order: 2;
  margin-top: 30px;
}
.home_contents5_box1{

}
.home_contents5_box1 .content_desc{

}
.home_contents5_box1_sub{
  margin-top: 30px;
}
.home_contents5_box1_sub_tt{
  font-size: 18px;
  font-weight: 700;
  color: #7691c1;
}
.home_contents5_box1 .content_desc.bold{

}
.home_contents5_box1 .read_more{

}
.home_contents5_box2{
  width: 100%;
  order: 1;
}
.home_contents5_box2_img{

}
.home_contents5_box2_img:before{
  padding-top: 70.58%;
}

/*about*/
.home_contents6_wrap{
  display: flex;
  flex-wrap: wrap;
}
.home_contents6_box1{
  width: 100%;
  background: #d8dde6;
  position: relative;
  order: 2;
  padding: 20px 16px 30px;
}
.home_contents6_box1:before{
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #d8dde6;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.home_contents6_box1 .tt2_lg_en{
  position: relative;
  z-index: 1;
}
.tt2_lg_en.bl{
  color: #7691c1; 
}


.home_contents6_box1 .tt2_sub{
  position: relative;
  z-index: 1;
}
.home_contents6_box1 .content_desc{
  position: relative;
  z-index: 1;
}
.home_contents6_box2{
  width: 100%;
  order: 1;
}
.home_contents6_box2_img{

}
.home_contents6_box2_img:before{
  padding-top: 64.1%;
}

/*店舗情報*/
.home_contents7_wrap{

}
.home_contents7_items{
  display: flex;
  flex-wrap: wrap;
}
.home_contents7_item{
  width: 100%;
}
.home_contents7_item:nth-child(n+2){
  margin-top: 50px;
}
.home_contents7_item_inner{

}
.home_contents7_item_tt{
  font-size: 20px;
  font-weight: 900;
  text-align: center;
  background: #7691c1;
  color: #fff;
  padding: 12px;
}
.home_contents7_item_content{
  background: #f1f1f1;
  padding: 30px 16px;
}
.home_contents7_item_img:before{
  padding-top: 56.45%;
}
.home_contents7_item_tbl{
  margin-top: 16px;
}
.home_contents7_item_tbl .table_rows_th,
.home_contents7_item_tbl .table_rows_td{
  border: none;
  padding: 10px 0;
  font-size: 16px;
}
.home_contents7_item_tbl .table_rows_th{
  width: 100px;
  background: none;
  font-weight: 500;
}
.home_contents7_item_tbl .table_rows_td{
  background: none;
  font-weight: 400;
}
.home_contents7_item_tbl .table_rows_td .hdr_tel2{

}
.home_contents7_item .gmap{
  margin-top: 30px;
}
.home_contents7_item .access_map iframe{
  border: none;
  width: 100%;
  height: 250px;
}

/*会社概要*/
.home_contents8_wrap{
  position: relative;
}
.home_contents8_img:before{
  padding-top: 410px;
}
.home_contents8_img:after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.35);
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;;
}
.home_contents8_inner{
  width: 100%;
  position:absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  z-index: 2;
}
.home_contents8_inner .tt2{
  text-align: left;
  margin-bottom: 30px;
}
.home_contents8_inner .tt2_en{
  color: #fff;
}
.home_contents8_inner .tt2_ja{
  color: #fff;
}
.home_contents8_inner .content_desc{
  color: #fff;
}
.home_contents8_inner .read_more{

}
.home_contents8_inner .read_more a{
  border-radius: 30px;
}
.home_contents8_inner .read_more a:after{
  content:"";
  display: block;
width: 16px;
    height: 13px;
  background-image: url(/system_panel/uploads/images/arr_wh.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width:374px){

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

}
@media (max-width:767px){
  .home_news_list .webgene-item .meta{
    display: block;
  }
  .home_news_list .webgene-item .category{
    margin-top: 12px;
  }

  /*高価買取*/
  .home_contents3_tt_img{
    width: 50.86%;
  }
  .home_contents3_tt1{
    margin: 0px 65px;
  }
  .home_contents3_tt1 .mv_txt4{
    font-size: 32px;
  }
  .home_contents3_tt1 .mv_txt4 p{
    padding: 0px 3px 5px 2px;
  }

  /*バナー*/
  .home_contents4_bnr_tt{
    position: relative;
  }
  .home_contents4_bnr_inner{
    padding: 120px 16px 16px;
  }
  .home_contents4_bnr_desc{
    padding: 20px 16px 24px;
  }
  .home_contents4_bnr_desc_left{
    text-align: center;
  }

  /*機種*/
  .home_contents4_item_img{
    min-height: inherit;
  }
  
  .home_contents4_bnr_content2 .read_more a{
    border-radius: 50px;
  }
  
  .home_contents4_bnr_text{
    font-size: 18px;
    letter-spacing: 0;
  }
  .home_contents4_bnr_lady{
    width: 60px;
  }
}
@media (min-width:768px){

  /*topics*/
  .home_news_list{

  }
  .home_news_list .webgene-blog{
    margin-inline:-15px;
  }
  .home_news_list .webgene-item{
    padding-inline:15px;
  }
  .home_news_list .webgene-item:nth-child(n+3){
    margin-top: 30px;
  }
  .home_news_list .webgene-item a{

  }
  .home_news_list .webgene-item .img{

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

  }
  .home_news_list .webgene-item .box2{

  }
  .home_news_list .webgene-item .meta{

  }
  .home_news_list .webgene-item .date{

  }
  .home_news_list .webgene-item .category{

  }
  .home_news_list .webgene-item .title{
    margin-top: 18px;
  }

  /*買取について*/
  .home_contents2_wrap{

  }
  .home_contents2_box1{

  }
  .home_contents2_box1_img{

  }

  .home_contents2_box1 img{
    display: block;
    width: 400px;
  }
  .home_contents2_box2{

  }
  .home_contents2_box2_tt{
    font-size: 22px;
  }
  .home_contents2_box2 .tt2_sub{
    margin-top: 2px;
  }
  .home_contents2_box2 .content_desc{
    margin-top: 32px;
  }
  .home_contents2_box2 .read_more{

    margin-top: 43px;
  }

  /*高価買取*/
  .home_contents3_tt{

  }
  .home_contents3_tt1{

  }
  .home_contents3_tt1 .mv_txt4{

  }
  .home_contents3_tt_img{
    width: 40.86%;
  }
  .home_contents3_items{
    justify-content: center;
    margin-inline:-26.5px;
    margin-top: 52px;
  }
  .home_contents3_item{
    width: 33.33%;
    padding-inline:26.5px;
  }
  .home_contents3_item:nth-child(n+3){
    margin-top: 0; 
  }
  .home_contents3_item:nth-child(n+4){
    margin-top: 30px;; 
  }
  .home_contents3_item_inner{

  }
  .home_contents3_item_img{

  }
  .home_contents3_item_img img{

  }
  .home_contents3_item_tt{
    font-size: 18px;
  }
  .home_contents3_desc{
    margin-top: 30px;
  }
  .home_contents3_desc .buy_about_title{

  }
  .home_contents3_desc .content_desc{
    margin-top: 24px;
  }

  /*バナー*/
  .home_contents4_bnr{

  }
  .home_contents4_bnr_tt{
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    padding: 17px 0;
  }
  .home_contents4_bnr_text{
    font-size:20px;
  }
  .home_contents4_bnr_lady{

  }
  .home_contents4_bnr_inner{

  }
  .home_contents4_bnr_img{

  }
  .home_contents4_bnr_img:before{
    padding-top: 650px;
  }
  .home_contents4_bnr_content{
    padding: 100px 30px; 
  }
  .home_contents4_bnr_txt_img{
    flex-wrap: nowrap;
    margin-bottom: 30px;
  }
  .home_contents4_bnr_desc{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2px 0 24px;
  }
  .home_contents4_bnr_desc_left{
    width: 17.87%;
    text-align: right;
    padding-right: 11px;
    padding-left: 10px;;
    padding-top: 16px;
  }
  .home_contents4_bnr_desc_right{
    width: 82.12%;
    padding:0 16px;
  }
  .home_contents4_bnr_desc_right .content_desc{

  }

  .home_contents4_bnr_content2{
    width: 100%;
  }
  .home_contents4_bnr_content2 .read_more{
    margin-top: 16px;
  }
  .home_contents4_bnr_content2 .read_more a{
    padding: 20px 20px;
  }

  /*機種*/
  .home_contents4_items{
    margin-inline:-15px;
    margin-top: 80px;
  }
  .home_contents4_item{
    width: 33.333%;
    padding-inline:15px;
  }
  .home_contents4_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents4_item:nth-child(n+4){
    margin-top: 30px;
  }
  .home_contents4_item_inner{

  }
  .home_contents4_item_img{

  }
  .home_contents4_item_tt{
    margin-top: 23px;
  }
  .read_more.home_contents4{
    margin-top: 55px;
  }

  /*その他サービス*/
  .home_contents5_items{

  }
  .home_contents5_item{

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

  }
  .home_contents5_box1{

  }
  .home_contents5_box1 .content_desc{
    margin-top: 36px;
  }
  .home_contents5_box1_sub{
    margin-top: 36px;
  }
  .home_contents5_box1_sub_tt{
    font-size: 19px;
  }
  .home_contents5_box1 .content_desc.bold{
    margin-top: 6px;
  }
  .home_contents5_box1 .read_more{
    margin-top: 45px;
  }
  .home_contents5_box2{

  }
  .home_contents5_box2_img{

  }
  .home_contents5_box2_img:before{

  }

  /*about*/
  .home_contents6_wrap{

  }
  .home_contents6_box1{
    padding: 50px 16px 50px;
  }
  .home_contents6_box1 .content_desc{

  }
  .home_contents6_box2{

  }
  .home_contents6_box2_img{

  }
  .home_contents6_box2_img:before{

  }

  /*店舗情報*/
  .home_contents7_wrap{

  }
  .home_contents7_items{

  }
  .home_contents7_item{

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

  }
  .home_contents7_item_tt{
    padding: 17px;
  }
  .home_contents7_item_content{
    padding: 30px 20px;
  }
  .home_contents7_item_img:before{

  }
  .home_contents7_item_tbl{

  }
  .home_contents7_item_tbl .table_rows_th,
  .home_contents7_item_tbl .table_rows_td{
    font-size: 19px;
    border-bottom: 1px solid #a6a6a6;
    padding: 20px 0;
  }
  .home_contents7_item_tbl .table_rows_th{
    width: 115px;
  }
  .home_contents7_item_tbl .table_rows_td{

  }
  .home_contents7_item_tbl .table_rows_td .hdr_tel2{
    justify-content: flex-start;
  }
  .home_contents7_item .gmap{
    margin-top: 37px;
  }
  .home_contents7_item .access_map iframe{
    height: 270px;
  }

  /*会社概要*/
  .home_contents8_wrap{

  }
  .home_contents8_img:before{
    padding-top: 410px;
  }
  .home_contents8_img:after{

  }
  .home_contents8_inner{

  }
  .home_contents8_inner .tt2_en{

  }
  .home_contents8_inner .tt2_ja{

  }
  .home_contents8_inner .content_desc{

  }
  .home_contents8_inner .read_more{
    margin-top: 50px;
  }
  .home_contents8_inner .read_more a{
    width:330px;
    padding: 18px 20px;
  }
}
@media (min-width:1024px){
  /*topics*/
  .home_news_list{

  }
  .home_news_list .webgene-blog{

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

  }
  .home_news_list .webgene-item .img{

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

  }
  .home_news_list .webgene-item .box2{

  }
  .home_news_list .webgene-item .meta{

  }
  .home_news_list .webgene-item .date{

  }
  .home_news_list .webgene-item .category{
padding-left: 5px;
  }
  .home_news_list .webgene-item .title{

  }
  .home_contents1_wrap .read_more{
    margin-top: 48px;
  }

  /*買取について*/
  .home_contents2_wrap{
    align-items: center;
  }
  .home_contents2_box1{
    width: 38.48%;
  }
  .home_contents2_box1:before{
    margin-left: 0;
    margin-right: 0;
    right: 16.23%;;
  }
  .home_contents2_box1_img{

  }
  .home_contents2_box1 img{
    display: block;
    width: auto;
  }
  .home_contents2_box2{
    width: 55.26%;
  }
  .home_contents2_box2_tt{
    font-size: 32px;
  }

  .home_contents2_box2 .content_desc{

  }
  .home_contents2_box2 .read_more{

  }

  /*高価買取*/
  .home_contents3_tt{

  }
  .home_contents3_tt1{

  }
  .home_contents3_tt1 .mv_txt4{
    font-size: 65px;
  }
  .home_contents3_tt_img{
    width: 29.86%;
  }
  .home_contents3_items{
    margin-top: 52px;
  }
  .home_contents3_item{

  }
  .home_contents3_item_inner{

  }
  .home_contents3_item_img{

  }
  .home_contents3_item_img img{

  }
  .home_contents3_item_tt{

  }
  .home_contents3_desc{

  }
  .home_contents3_desc .buy_about_title_p1 {
    font-size: 34px;
  }
  .home_contents3_desc .content_desc{

  }

  /*バナー*/
  .home_contents4_bnr{

  }
  .home_contents4_bnr_tt{

  }
  .home_contents4_bnr_text{
    font-size: 28px;
  }
  .home_contents4_bnr_lady{

  }
  .home_contents4_bnr_inner{

  }
  .home_contents4_bnr_img{

  }
  .home_contents4_bnr_img:before{
    padding-top: 600px;
  }
  .home_contents4_bnr_content{
    justify-content: space-between;
    padding: 110px 60px; 
  }
  .home_contents4_bnr_txt_img{

  }
  .home_contents4_bnr_desc{
    width: 68.84%;
    background: #fff;
  }
  .home_contents4_bnr_desc_left{
    padding-left: 0;
  }
  .home_contents4_bnr_desc_right{

  }
  .home_contents4_bnr_desc_right .content_desc{

  }

  .home_contents4_bnr_content2{
    width: 26.92%;
  }
  .home_contents4_bnr_content2 .read_more{

  }
  .home_contents4_bnr_content2 .read_more a{
    width: 100%;
  }
  .home_contents4_bnr_content2 .read_more a + a{
    margin-top: 28px;
  }

  /*機種*/
  .home_contents4_items{

  }
  .home_contents4_item{

  }
  .home_contents4_item_inner{

  }
  .home_contents4_item_img{

  }
  .home_contents4_item_tt{

  }

  /*その他サービス*/
  .home_contents5_items{

  }
  .home_contents5_item{
    align-items: center;
  }
  .home_contents5_box1{

  }
  .home_contents5_item:nth-child(n+2){
    margin-top: 100px;
  }
  .home_contents5_item:nth-child(odd) .home_contents5_box1{
    order: 1;
  }
  .home_contents5_item:nth-child(odd) .home_contents5_box2{
    order: 2;
  }
  .home_contents5_item:nth-child(even) .home_contents5_box1{
    order: 2;
  }
  .home_contents5_item:nth-child(even) .home_contents5_box2{
    order: 1;
  }
  .home_contents5_box1{
    width: 50.98%;
    margin-top: 0;
  }
  .home_contents5_box1 .tt2_sub{
    font-size: 32px;
  }
  .home_contents5_box1 .content_desc{

  }
  .home_contents5_box1_sub{

  }
  .home_contents5_box1_sub_tt{
    font-size: 21px;
  }
  .home_contents5_box1 .content_desc.bold{

  }
  .home_contents5_box1 .read_more{

  }
  .home_contents5_box2{
    width: 42.76%;
    padding-top: 38px;
  }
  .home_contents5_box2_img{

  }
  .home_contents5_item:nth-child(odd) .home_contents5_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents5_item:nth-child(even) .home_contents5_box2_img{
    margin-left: var(--margin-for-device-side);
  }
  .home_contents5_box2_img:before{

  }

  /*about*/
  .home_contents6_wrap{

  }
  .home_contents6_box1{
    width: 49.01%;
    padding: 80px 16px 0 0;
    order: 1;
    margin-top: 0;
  }
  .home_contents6_box1 .tt2_sub{
    font-size: 28px;
  }
  .home_contents6_box1 .content_desc{
    margin-top: 45px;
  }
  .home_contents6_box2{
    width: 50.98%;
    order: 2;
  }
  .home_contents6_box2_img{
    margin-right: var(--margin-for-device-side);
  }
  .home_contents6_box2_img:before{
    padding-top: 625px;
  }

  /*店舗情報*/
  .home_contents7_wrap{

  }
  .home_contents7_items{
    margin-inline:-30px;
  }
  .home_contents7_item{
    width: 50%;
    padding-inline:30px;
  }
  .home_contents7_item:nth-child(n+2){
    margin-top: 0;
  }
  .home_contents7_item:nth-child(n+3){
    margin-top: 50px;
  }
  .home_contents7_item_inner{

  }
  .home_contents7_item_tt{
    font-size: 30px;
  }
  .home_contents7_item_content{
    padding: 50px 16px;
  }
  .home_contents7_item_img:before{

  }
  .home_contents7_item_tbl{

  }
  .home_contents7_item_tbl .table_rows_th,
  .home_contents7_item_tbl .table_rows_td{

  }
  .home_contents7_item_tbl .table_rows_th{

  }
  .home_contents7_item_tbl .table_rows_td{

  }
  .home_contents7_item_tbl .table_rows_td .hdr_tel2{
    font-size: 30px;
  }
  .home_contents7_item .gmap{

  }
  .home_contents7_item .access_map iframe{

  }

  /*会社概要*/
  .home_contents8_wrap{

  }
  .home_contents8_img:before{
    padding-top: 410px;
  }
  .home_contents8_img:after{

  }
  .home_contents8_inner{

  }
  .home_contents8_inner .tt2_en{

  }
  .home_contents8_inner .tt2_ja{

  }
  .home_contents8_inner .content_desc{

  }
  .home_contents8_inner .read_more{

  }
}
@media (min-width:1200px){
  .home_contents3_tt1 .mv_txt4{
    font-size: 70px;
  }

  /*高価買取*/
  .home_contents3_item{
    width: 20%;
  }
  .home_contents3_item:nth-child(n+4){
    margin-top: 0;; 
  }
  .home_contents3_item:nth-child(n+6){
    margin-top: 30px;;; 
  }

  /*バナー*/
  .home_contents4_bnr_img:before:before{
    padding-top: 600px;
  }
  .home_contents4_bnr_text{
    font-size: 40px;
  }

  /*その他サービス*/
  .home_contents6_box1 .tt2_sub,
  .home_contents5_box1 .tt2_sub{
    font-size: 40px;
  }

  /*about*/
  .home_contents6_box1 .tt2_sub{
    font-size: 32px;
  }
}
@media (min-width:1366px){
  .home_contents3_tt1 .mv_txt4{
    font-size: 94px;
  }

  /*高価買取*/
  .home_contents4_bnr_content{
    padding: 140px 110px; 
  }

  /*店舗情報*/
  .home_contents7_item_content{
    padding: 50px 55px;
  }
}
@media (min-width:1450px){
  /*高価買取*/
  .home_contents4_bnr_content{
    padding: 110px 110px; 
  }

  /*バナー*/
  .home_news_list .webgene-item .img:before{
    /*    padding-top: 500px;*/
  }
  .home_contents4_bnr_img:before{
    padding-top: 500px;
  }
}

@media (min-width:1700px){


}




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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}

@media (min-width:1700px){


}



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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}

@media (min-width:1700px){


}






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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


}

@media (min-width:1366px){


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


}

@media (min-width:1700px){


}


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

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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}


@media (max-width:374px){

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

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

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

  .pg_xxx{

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }

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


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


}

/* メイン部分 */

@media (max-width:767px){

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

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


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


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


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


}

@media (min-width:1700px){


}





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

}
.pg_xxx .section.sec1{

}
.pg_xxx .section.sec2{

}
.pg_xxx .section.sec3{

}
.pg_xxx .section.sec4{

}
.pg_xxx .section.sec5{

}


@media (max-width:374px){

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

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

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

  }
  .pg_xxx .section.sec1{

  }
  .pg_xxx .section.sec2{

  }
  .pg_xxx .section.sec3{

  }
  .pg_xxx .section.sec4{

  }
  .pg_xxx .section.sec5{

  }


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


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


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


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


}

@media (min-width:1700px){


}