@charset "utf-8";

/*共通部分*/

.bg-bk{
  background-color: #000;
}

/* 点滅アニメーションの定義 */
@keyframes blinking {
  0%   { opacity: 0.2; }
  100% { opacity: 1; }
}

/* 点滅アニメーションを適用 */
.blink {
  animation: blinking 1.75s ease-in-out infinite alternate;
}

/*ヘッダーかぶり対策*/
.pt-mt_80{
  padding-top: 80px;
  margin-top: 80px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
  .pc { display: none !important; }
  .sp { display: block !important; }
}

/* <weight>: Use a value from 200 to 900*/
/* <uniquifier>: Use a unique and descriptive class name*/

.noto-serif-jp{
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  /*
  font-weight: ;
  font-style: ;
  */
}


body{background: #111111;}
body{
  font-size: 18px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body{
  overflow-wrap: anywhere !important; /* 収まらない場合に折り返す */
  word-break: normal !important; /* 単語の分割はデフォルトに依存 */
  line-break: strict !important; /* 禁則処理を厳格に適用 */
}


/*ついてくるボタン　高額査定*/

.fixed_btn_01 { 
  position: fixed;
  bottom:100px;
  right: 2%;
  z-index: 9999;
}

.btn_01 { 
  width: 200px;
  height: 200px;
}

@media (max-width: 768px) {
  .fixed_btn_01 { 
  position: fixed;
  top:80%;
  right: 2;
  }

  .btn_01 { 
    width: 120px;
    height: 120px;
  }

}




a{color: #fff !important;}

.container-fluid{
    padding: 0;
    margin: 0;
}

.main-bg{
  background-image: url('../img/main.webp');
  background-size: cover;/*幅いっぱい*/

  background-color:rgba(30,30,30,0.65);/*乗算の調節*/
  background-blend-mode:multiply;/*乗算*/
}

article{
    margin-bottom: 80px;
}

.layout{
    display: flex;
    justify-content: space-between;
}

.hover-opacity {
  transition-property: opacity;
  transition-duration: 0.3s;
}
.hover-opacity:hover {
  opacity: 0.5; 
}

.ta_center{
  text-align: center;
}
.ta_right{
  text-align: right;
}
.ta_left{
  text-align: left;
}

.kasaneru{
  position: relative;
}

.txt{
  /*font-size: 120%;*/
  line-height: 1.75;
}


/* ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■

ヘッダーナビゲーション

■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ ■ */


.header{
    position: fixed;/*上部固定*/
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;

    width: 100% !important;
    height: 70px !important;
    background:rgb(0, 0, 0,0.2);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}


/* ハンバーガーアイコン */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 22px;
  cursor: pointer;

  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 9999;
}

.hamburger span {
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* ハンバーガー開閉時のアニメーション (1回転)*/
.hamburger.open span:nth-child(1) {transform: rotate(405deg) translate(5px, 5px);}
.hamburger.open span:nth-child(2) {opacity: 0;}
.hamburger.open span:nth-child(3) {transform: rotate(-405deg) translate(8px, -8px);}

/* ハンバーガー開閉時のアニメーション
.hamburger.open span:nth-child(1) {transform: rotate(45deg) translate(5px, 5px);}
.hamburger.open span:nth-child(2) {opacity: 0;}
.hamburger.open span:nth-child(3) {transform: rotate(-45deg) translate(8px, -8px);}
 */

/* ナビゲーションの表示切替 */

.top img{
    height: 55px;
    width: auto;
}

.list {
  display: flex;
  gap: 64px;/*要素どうしに15pxのすき間*/
  padding: 15px 0  0 0;
}

.list a{
  color: #fff !important;
}

.menu{
    padding: 5px 0 0 0;
  }

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column !important;
    background:rgb(0, 0, 0,0.8);
    position: absolute;
    top: 0;
    right: 0;
    padding: 100px 32px 0px 32px;
    width: 100%;
    height:100vh;
    text-align: center;
    z-index: 1000;
  }

  .header{
    transition:1.0s;
    background:rgb(0, 0, 0,0.0) ;
    backdrop-filter: blur(0px) ;
  }

  .layout{
    display: flex;
    flex-direction: column !important;
  }

  .top img{
    margin-bottom: 104px;
  } 

  .list{
    display: flex;
    flex-direction: column !important;
  }

  .menu.active {display: flex;}
  .hamburger {display: flex;}
}/*ブレイクポイントの終了*/




/**/
.layer_02{
  display: flex;
  justify-content: center;

  position: absolute;
  bottom: 50px;
  left: 51%;
  transform: translateX(-50%);
  z-index: 1;

  font-size: 48px;
  font-weight: 600;
  width: 100%;

  letter-spacing: 4.0px;

  text-shadow:
  0px 0px 0px red,
  0 0 1em red,
  0 0 0.2em red;

}

.layer_03{
  display: flex;
  justify-content: center;
  position: absolute;
  top:65%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 50%;
  height: auto;
}

@media (max-width: 768px) {
  .layer_02{
    bottom: 25px;
    left: 51%;
    letter-spacing: 2.0px;
    transform: translateX(-49%);
    font-size: 24px;
  }

  .layer_03{
  display: flex;
  justify-content: center;
  position: absolute;
  top:130%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 88%;
  height: auto;
}
}


/**/

.copy{
  font-size: 28px !important;
  text-align: center !important;
}



/*店舗紹介部分*/
.erea-tag{
  position: absolute;
  top: -12px;
  left: 24px;
  display: inline;
  color: #222222;
  font-size: 110%;
  padding: 2px 15px;
  border-radius: 3px;
  background-color: #f1f1f1;
}

.info .name{
  font-size: 125%;
}

.info .name span{ 
  font-size: 68%;
  letter-spacing: -1px;
  line-height: 1.75;
  display: block;
}

.bun_area{
  display: flex;
  justify-content: flex-end;
}


.info_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 32px;
 
  border-radius: 100px;
  border: solid 2px #ffffff;
  background-color: #111111;
}

.sns_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;

  margin-left: 20px;

  border-radius: 1000px;
  border: solid 2px #ffffff;
  background-color: #111111;
}

.btn_area{
  display: flex; justify-content: center;
}

@media (max-width: 768px) {
  .sns_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;

  margin-left: 14px;

  border-radius: 1000px;
  border: solid 2px #ffffff;
  background-color: #000;
}
}

.btn_area .first{
  margin-left: 0px !important;
}

.fs_36{
  font-size: 36px;
  letter-spacing: 4px;
}

.fs_80per{
  font-size: 80%;
  letter-spacing: 4px;
}

.address{
  display: inline-block;
  padding: 8px 0;
}

/*大歓迎部分*/
.welcome{
  position: relative;
  height: 315px;
  width: 100%;

  background-image: url('../img/welcome.webp');
  background-size: cover;/*幅いっぱい*/

  text-shadow: #000 0 0 12px;
}

.welcome p{
  position: absolute;
  top:20%;
  left:66%;
  display: block;
  line-height: 2.75;
}

.welcome p span{
  font-size: 150%;
  font-weight: bold;
}

@media (max-width: 768px) {
  .welcome{
  display: flex;
  position: static !important;
  height: 210px;
  width: 100%;
  text-align: center;
  align-items:center;
  justify-content: center;
  }

  .welcome p{
  position: static !important;
  line-height: 2.75;
  }

  .welcome p span{
  font-size: 150%;
  font-weight: bold;
  }


}


/*swiper 買取説明部分*/
.swiper-wrapper{height: auto;}
.swiper {width: 100%;height: auto;} /* ← 高さを固定したいなら数値、可変なら autoHeight オプションを使う */
.swiper-slide{padding: 0 80px;} /*スライド1枚あたりの左右余白を制御*/
.swiper-pagination-bullet {background: var(--swiper-pagination-bullet-inactive-color,#fff);}/*ページネーションの　・・・　の色を制御*/
.slide-pagination-wrapper{ margin-top: 36px;}/*ページネーションの位置を制御*/
:root {--swiper-theme-color: #fff;--swiper-navigation-size: 24px; }/*swiperボタンの　＞　サイズ ・　色　を制御*/

.btn-custom{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border:solid 2px #ffbe82;
}/*swiperボタンを囲む　border　サイズ ・　色　を制御*/

.swiper-button-prev{padding-right: 4px;}/*swiperボタンの　＞　位置の微調整*/
.swiper-button-next{padding-left: 4px;}/*swiperボタンの　＞位置の微調整*/

@media (max-width: 768px) {
  .slide-pagination-wrapper{ margin-top: 12px !important;}/*ページネーションの位置を制御 (スマホ)*/
}


/*swiper 買取説明部分*/

.detail_txt{
  padding-top: 16px;
  padding-bottom: 16px;
  line-height: 1.55;
}

.detail_txt span{
  display: block;
  font-size: 80%;
}

.border_b{
  border-bottom:solid 1px #999;
}

.detail_list{
  line-height: 1.55;
}

.detail_list span{
  font-size: 80%;
  margin-left: 8px;
}

.txt_btn{
  display: block; color: #ffbe82 !important;
}

        




@media (max-width: 768px) {
  :root {
    --swiper-theme-color: #fff;
    --swiper-navigation-size: 16px; 
  }

  .btn-custom{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    /**/
    border-radius: 9999px;
    border:solid 0px #fff;
    
  }

  .swiper-slide{
  padding: 0 0px;
  }

  :root {
  --swiper-theme-color: #fff;
  --swiper-navigation-size: 16px; 
  }

  
@media (max-width: 768px) {
  .btn-custom {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 9999px;

    border: solid 0px #ffbe82;
  }

  /*SP表示でのswiperボタン 表示位置制御*/
  .swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 22px;
  }
}



.swiper-button-prev {
  padding-right: 2px;
}

.btn-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: solid 2px #ffbe82;
}
.hover-opacity {
  transition-property: opacity;
  transition-duration: 0.3s;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset,10px);
  right: auto;
}
.swiper-button-next, .swiper-button-prev {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}

}




.way{
  display: inline-block;
  font-size: 30px; 
  font-weight: 400;
  padding: 0 24px 10px 24px;

  border-bottom: solid 5px #ffbe82;
}

.detail{
  font-size: 20px;
}

.detail , .details-content span{
  display: block;
  font-size: 80%; 
}

@media (max-width: 768px) {
  .detail{
  font-size: 16px;
  }
  .way_box{
  display: flex; justify-content: center;
  }
}


/**/
.details {
	transition: .3s;
	overflow: hidden;
	margin-top: -10px;
	padding-bottom: 20px;
	&:last-of-type {
		margin-bottom: 0;
	}
}
.details[open] {
	margin-top: 0;
	padding-bottom: 10px;
} 

.details-summary {
  display:flex;
  justify-content: center;
  display:inline-block;
  transition: .3s;
	transform: translateY(10px);
  height: 40px !important;
  width: auto;
  padding: 6px 32px;
  border-radius: 9999px;
  border: solid 2px #ffffff;
	color: #fff;
	&:hover {
		cursor: pointer;
	}
}
.details-summary::-webkit-details-marker {
	display: none;
}

.details[open] .details-summary {
	transform: translateY(0);
}

.details-content {
	padding: 42px 0;
	border-bottom: 1px solid #fff;
  line-height: 1.75;
}



/**/

.faq ul{
  font-size: 16px;
}

.faq li{
  font-size: 16px;
  line-height: 1.55;
  border-bottom: solid 1px #333;
}

.faq li a{
  color: #ffbe82 !important;
  text-decoration: underline dotted !important;
  text-underline-offset: 5px !important;
}

.faq li p{
  margin: 25px 0 34px 30px;
}

.faq li span{
  font-size: 16px !important;
  display: block;
  margin-bottom: 12px;
}

.fa-q{
  font-size: 24px;
  margin-left:-34px !important;
  margin-right: 6px;
}
.fa-a{
  font-size: 24px;
  margin-left:-34px !important;
  margin-right: 7px;
}




/*footer*/

.wrapper .footer{
  background-color: #c9a063;
  margin-bottom: 0;
  padding-bottom: 0;
}

.footer article{
  background-color: #000;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.copyright{
  font-size: 12px;
  color: #fff;
  text-align: center;
  margin: 24px 0;
}

.bnrs{
  margin-bottom: 0;
}