@charset "UTF-8";
body {
  font-family: sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

img {
  width: 100%;
}

ul li {
  list-style: none;
}

table {
  border-spacing: 0;
}

body * {
  color: #000;
  line-height: 1;
  margin: 0;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
  vertical-align: baseline;
  display: block;
}

a:hover, button:hover {
  opacity: 0.8;
}

.sp_item {
  display: none;
}
@media screen and (max-width: 750px) {
  .sp_item {
    display: block;
  }
}

.pc_item {
  display: block;
}
@media screen and (max-width: 750px) {
  .pc_item {
    display: none;
  }
}

.lp_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 2000px;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 750px) {
  .lp_wrap {
    width: 100vw;
  }
}

/*固定背景*/
.background-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/pc_bg.jpg") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .background-fixed {
    display: none;
  }
}

.contents_wrap {
  width: 100%;
  max-width: 2000px;
  margin: 0 auto;
}
@media screen and (max-width: 1300px) {
  .contents_wrap {
    width: 100vw;
  }
}
@media screen and (max-width: 750px) {
  .contents_wrap {
    width: 100vw;
  }
}

/*吸着左*/
.l_menu {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 358px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
.l_menu {
  width: calc((100vw - 750px) / 2);
}

@media screen and (max-width: 1340px) {
  .l_menu {
    display: none;
  }
}
.l_menu .tit {
  width: 325px;
}
@media screen and (max-width: 1600px) {
  .l_menu .tit {
    width: 230px;
  }
}
.l_menu ul {
  width: 194px;
  margin-top: 15px;
}
.l_menu li {
  margin-top: 38px;
}

/*吸着右*/
.r_menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(0%, -50%);
  width: 358px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.r_menu {
  width: calc((100vw - 750px) / 2);
}
@media screen and (max-width: 1340px) {
  .r_menu {
    display: none;
  }
}
.r_menu .qr {
  width: 246px;
  position: relative;
}
.r_menu .qr img {
  position: relative;
  z-index: 2;
}
.r_menu .qr::before {
  content: "";
  display: block;
  background: url(../img/maru.png) no-repeat center 0/100%;
  width: 146px;
  height: 146px;
  position: absolute;
  top: -118px;
  right: -70px;
  z-index: 1;
}
.r_menu .qr_code {
    position: absolute;
    top: 2%;
    left: 50%;
    width: 93%;
    height: auto;
    transform: translateX(-50%);
    z-index: 10;
  }

  /* ========================================
  スマホのみヘッダー表示 
======================================== */

@media (max-width: 767.98px) {
  .sp-header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(69, 33, 20, 0.5);
    /* backdrop-filter: blur(8px); */
    border-bottom: 1px solid rgba(0,0,0,0.06);

    /* ふわっと出る */
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .45s;

    /* ノッチ対応 */
    height: calc(70px + env(safe-area-inset-top));
  }
  .sp-header.is-visible{
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .sp-header__inner{
    display:flex; 
    align-items:center; 
    gap:.75rem;
    height:70px; 
    padding:0 12px;
  }
  .sp-header__logo {
    width: 33%;
  }
  .header__logo {
    filter: brightness(0) saturate(100%) invert(1);
  }
  .header__logo img {
    display: block;
    margin: 0 auto;
    width: 96%;
  }
  /* 縦線（白） */
  .sp-header__divider{
    width:1px; 
    height:70px;
    background: #fff;
    opacity:.6;
    margin: 0 8px;
  }

  /* 右：テキスト + ▶︎ */
  .sp-header__cta{
    margin: 0 auto;
    display:flex; 
    align-items:center; 
    gap:.5rem;
    font-size:17px; 
    letter-spacing: 1px;
    line-height:1;
    text-decoration:none; 
    color:#fff;
    padding:8px 10px;
  }
  .sp-header__cta-text{
    color: #fff;
    font-family: "Noto Serif JP", serif;
  }
}

/* PCでは非表示 */
@media (min-width: 768px){
  .sp-header{ display:none; }
}
/* ========================================
  スマホのみ　コピー品のモーダル
======================================== */
.mb-modal {
  position: fixed;
  inset: 0;
  display: none;        /* 非表示がデフォ */
  z-index: 2000;        /* sp-header(1000)より手前に出す */
}
.mb-modal[aria-hidden="false"] { display: block; }

.mb-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.mb-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: min(92vw, 680px);
  max-height: 90vh;
  background: #fff;
  /* border-radius: 12px; */
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
  overflow: hidden;     /* 画像がはみ出さないように */
}

.mb-modal__img {
  display: block;
  width: 100%;
  height: auto;
}

.mb-modal__close{
  position: fixed;   /* 画面右上に固定 */
  top: 8px;
  right: 8px;
  background: transparent;
  border: none;
  border-radius: 0;
  width: 44px; 
  height: 44px;
  color: #fff;
  font-size: 28px; 
  line-height: 44px;
  cursor: pointer;
  text-shadow: 0 0 4px rgba(0,0,0,.45), 0 1px 2px rgba(0,0,0,.35);
  -webkit-appearance: none;
  appearance: none;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0); /* タップ時のハイライト無効 */
}
.mb-modal__close:focus,
.mb-modal__close:active{
  outline: none;
  box-shadow: none;
}
.mb-modal__close:hover { 
  opacity: .9; 
}
html, body { 
  overscroll-behavior: none; 
} /* バウンス抑制の補助 */


/* ========================================
  注釈
======================================== */

.inner p.notes {
  color: #fff;
}
@media screen and (max-width: 750px) {
  .inner p.notes {
    font-size: 10px;
  }
}
.inner p.notes_p {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 750px) {
  .inner p.notes_p {
    font-size: 8px;
  }
}

.inner .relative p.notes {
  position: absolute;
  top: 17.9%;
  left: 12.5%;
}
@media screen and (max-width: 750px) {
  .inner .relative p.notes {
    left: 12%;
  }
}


.inner .relative p.notes_p {
  position: absolute;
  bottom: 2%;
  right: 2%;
}

.inner .sv, .inner #reason {
  position: relative;
}

.inner .sv p.notes {
  position: absolute;
  bottom: 42%;
  left: 20%;
}

.inner .sv p.notes_p {
  position: absolute;
  bottom: 1%;
  right: 2%;
}

.inner #reason p.notes {
  position: absolute;
  top: 37.7%;
  left: 4%;
}

.inner #reason p.notes_p {
  position: absolute;
  top: 45%;
  left: 5.5%;
}
@media screen and (max-width: 750px) {
  .inner #reason p.notes_p {
    top: 45%;
    left: 6%;
  }
}

/* ========================================
  btn_area
======================================== */
.btn_area {
  position: absolute;
  left: 0;
  right: 0;
}
.btn_area.btn01 {
  bottom: 100px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn01 {
    bottom: 15vw;
  }
}
.btn_area.btn02 {
  bottom: 4120px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn02 {
    bottom: 550vw;
  }
}
.btn_area.btn03 {
  bottom: 70px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn03 {
    bottom: 9.33vw;
  }
}
.btn_area.btn04 {
  bottom: 110px;
}
@media screen and (max-width: 750px) {
  .btn_area.btn04 {
    bottom: 14.67vw;
  }
}
.btn_area a {
  display: block;
  position: relative;
}
.btn_area a .offer_btn {
  width: 600px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}
@media screen and (max-width: 750px) {
  .btn_area a .offer_btn {
    width: 80vw;
    border-radius: 2vw;
  }
}
.btn_area a .offer_btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 20%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  animation: shine 3s ease-in-out infinite;
}

/*./btn_area*/
@keyframes shine {
  0% {
    left: -75%;
  }
  40% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}
.sv {
  background: #786044;
}

.inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (max-width: 1080px) {
  .inner {
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .inner {
    width: 100vw;
  }
}
.inner .relative {
  position: relative;
}
.inner .achieve_slider {
  width: 692px;
  margin: 0 auto;
  position: absolute;
  top: 399px;
  left: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider {
    width: 92.27vw;
    top: 53.2vw;
  }
}
.inner .achieve_slider .slide_arrow {
  width: 66px;
  position: absolute;
  top: 356px;
  z-index: 99;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow {
    width: 7vw;
    top: 47.47vw;
  }
}
.inner .achieve_slider .slide_arrow.arrow_p {
  left: -29px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow.arrow_p {
    left: -3.87vw;
  }
}
.inner .achieve_slider .slide_arrow.arrow_n {
  right: -29px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slide_arrow.arrow_n {
    right: -3.87vw;
  }
}
.inner .achieve_slider .slick-dots {
  bottom: -50px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots {
    bottom: -6.67vw;
  }
}
.inner .achieve_slider .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 35px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots li {
    width: 2.67vw;
    height: 2.67vw;
    margin: 0 4.67vw;
  }
}
.inner .achieve_slider .slick-dots li button {
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background: #fff;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-dots li button {
    width: 2.67vw;
    height: 2.67vw;
    border-radius: 1.33vw;
  }
}
.inner .achieve_slider .slick-dots li button::before {
  content: none;
}
.inner .achieve_slider .slick-dots li button:hover {
  opacity: 1;
  background: #502200;
}
.inner .achieve_slider .slick-dots li.slick-active button {
  background: #502200;
}
.inner .achieve_slider .slick-slide {
  margin: 0 13px;
}
@media screen and (max-width: 750px) {
  .inner .achieve_slider .slick-slide {
    margin: 0 1.73vw;
  }
}
.inner .footer {
  background: #CAC0AB;
  padding-bottom: 50px;
}
@media screen and (max-width: 750px) {
  .inner .footer {
    padding-bottom: 6.67vw;
  }
}
.inner .footer .foot_logo {
  width: 325px;
  margin: 0 auto;
  padding: 50px 0 35px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_logo {
    width: 43.33vw;
    padding: 6.67vw 0 4.67vw;
  }
}
.inner .footer .foot_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 11px;  
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav {
    row-gap: 6px;  
  }
}
.inner .footer .foot_nav li {
  display: flex;
}
.inner .footer .foot_nav li::before {
  content: "|";
  color: #502200;
  font-size: 20px;
  line-height: 1.76;
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav li::before {
    font-size: 3vw;
    padding-left: 2.67vw;
  }
}
.inner .footer .foot_nav li a {
  color: #502200;
  font-size: 20px;
  line-height: 1.76;
  letter-spacing: 0.2em;
  padding-left: 20px;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_nav li a {
    font-size: 3vw;
    padding-left: 2.67vw;
  }
}
.inner .footer .foot_nav li:nth-child(1)::before, .inner .footer .foot_nav li:nth-child(4)::before {
  content: none;
}
.inner .footer .foot_nav li:nth-child(1) a, .inner .footer .foot_nav li:nth-child(4) a {
  padding-left: 0;
}
.inner .footer .foot_copy {
  width: 215px;
  margin: 30px auto 0;
}
@media screen and (max-width: 750px) {
  .inner .footer .foot_copy {
    width: 28.67vw;
    margin: 4vw auto 0;
  }
}

@media screen and (max-width: 750px) {
  #reason p {
    margin-top: -1px;
  }
}

#flow {
  background: #6d4f2b;
}/*# sourceMappingURL=style.css.map */

/* 20260313 - 買取実績 （全幅点線＋色指定＋改行防止） */
/* =========================================
   1. 基本設定（カード全体・フォント継承）
========================================= */
.achieve-card {
  font-family: "RyuminPro-Regular", "A-OTF Ryumin Pro", serif;
  background: #fff;
  text-align: center;
}
.achieve-card img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

/* =========================================
   2. 各パーツ（画像・ブランド・商品名など）
========================================= */
.achieve-card__img {
  padding: 0 5%;
  margin-bottom: 15px;
}
.achieve-card__brand {
  width: 140px;
  margin: 0 auto 20px;
}
.achieve-card__name {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 60px; 
  height: 80px;
}
.achieve-card__sub {
  margin-bottom: 5px;
}

/* =========================================
   3. メイン価格
========================================= */
.achieve-card__price-main {
  font-family: "RyuminPro-Medium", "RyuminPr5-Medium", "A-OTF Ryumin Pro", serif;
  font-weight: 600;
  font-size: 50px;
  color: #eb6100;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.achieve-card__price-main span { 
  font-size: 38px; 
  color: #eb6100;
}

/* =========================================
   4. 他社比較エリア
========================================= */
.achieve-comp {
  background: #f2f2f2;
  padding: 10px 5px;
  position: relative;
}
.achieve-comp__crown {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
}

/* 比較の行（共通） */
.comp-row {
  display: flex;
  justify-content: space-evenly;
  align-items: baseline;
  width: 100%;
  margin-bottom: 12px;
  box-sizing: border-box;
}

/* 当社の行（オレンジ・点線） */
.comp-row--highlight,
.comp-row--highlight .comp-row__label-ours,
.comp-row--highlight .comp-row__price-ours,
.comp-row--highlight .comp-row__price-ours span {
  color: #eb6100;
}
.comp-row--highlight {
  border-bottom: 2px dotted #eb6100;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

/* ラベルと金額の改行を絶対に防ぐ指定 */
.comp-row__label,
.comp-row__label-ours {
  text-align: left;
  white-space: nowrap;
}
.comp-row__price,
.comp-row__price-ours {
  text-align: right;
  white-space: nowrap;
}

/* ラベル固有の指定 */
.comp-row__label { font-size: 24px; }
.comp-row__label-ours { font-size: 24px; letter-spacing: -0.02em; }

/* 価格固有の指定 */
.comp-row__price {
  font-family: "RyuminPro-Medium", "A-OTF Ryumin Pro", serif;
  font-weight: 500;
  font-size: 34px;
  letter-spacing: -0.02em; 
}
.comp-row__price span { font-size: 24px; }
.comp-row__price-ours { font-size: 44px; letter-spacing: -0.02em; }
.comp-row__price-ours span { font-size: 24px; }


/* =========================================
   5. メディアクエリ（レスポンシブ）
========================================= */

/* --- 1080px以下（小さめPC） --- */
@media screen and (max-width: 1080px) {
  .achieve-card__price-main { font-size: 44px; }
  .comp-row__price { font-size: 30px; }
  .comp-row__label-ours { font-size: 22px; }
  .comp-row__label { font-size: 22px; }
}

/* --- 750px以下（タブレット・大きめスマホ / 画像の状態） --- */
/* ★ここに「中くらいのサイズ」を設定して間延びを防ぎます */
@media screen and (max-width: 750px) {
  .achieve-card { 
    max-width: 100%; 
  }
  .achieve-card__name { 
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
    height: 50px; 
    display: block;
    overflow: visible;
  }
  .achieve-card__price-main { font-size: 34px; margin-bottom: 20px; }
  .achieve-card__price-main span { font-size: 20px; }
  
  .achieve-comp { padding: 15px 10px; }
  .comp-row { margin-bottom: 10px; }
  
  /* タブレットサイズならPCと同じ表組み（固定幅）が綺麗です */
  .comp-row__label, .comp-row__label-ours { width: 25%; }

  .comp-row__label-ours { font-size: 18px; }
  .comp-row__price-ours { font-size: 30px; letter-spacing: -0.05em; }
  .comp-row__price-ours span { font-size: 16px; margin-left: 2px; }
  
  .comp-row__label { font-size: 16px; }
  .comp-row__price { font-size: 24px; letter-spacing: -0.05em; }
  .comp-row__price span { font-size: 14px; margin-left: 2px; }
}

/* --- 500px以下（激狭スマホ・1カラム） --- */
@media screen and (max-width: 500px) {
  .achieve-card__img { margin-bottom: 10px; }
  .achieve-card__brand { width: 90px; margin-bottom: 10px; }

  /* 高さを固定して「たて中」にする */
  .achieve-card__name { 
    font-size: 10px; 
    height: 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  /* ★最強の指定：clamp() でヌルヌル可変させる */
  .achieve-card__price-main { 
    /* 最小22px 〜 画面幅に合わせて拡大(約6.5%) 〜 最大26px */
    font-size: clamp(22px, 6.5vw, 26px); 
    margin-bottom: 15px; 
    white-space: nowrap; /* 改行禁止 */
    letter-spacing: -0.05em; /* 文字詰め */
  }
  .achieve-card__price-main span { 
    font-size: clamp(14px, 4vw, 16px); 
  }
  
  .achieve-comp { padding: 10px 5px 5px; }
  .achieve-comp__crown { width: 28px; top: -15px; left: 5px; }

  .comp-row { margin-bottom: 6px; }
  .comp-row--highlight { padding-bottom: 8px; margin-bottom: 10px; }

  .comp-row__label, .comp-row__label-ours { width: auto; flex-shrink: 0; }
  .comp-row__price, .comp-row__price-ours { width: auto; }

  /* 当社の価格（最小18px 〜 最大20px） */
  .comp-row__label-ours { font-size: 14px; }
  .comp-row__price-ours { 
    font-size: clamp(18px, 5vw, 20px); 
    letter-spacing: -0.05em; 
  }
  .comp-row__price-ours span { font-size: 12px; }
  
  /* A社・B社の価格（最小15px 〜 最大17px） */
  .comp-row__label { font-size: 12px; }
  .comp-row__price { 
    font-size: clamp(15px, 4.5vw, 17px); 
    letter-spacing: -0.05em; 
  }
  .comp-row__price span { font-size: 11px; }
}