@charset "UTF-8";

/* =====================================================================
   acrylic.css  ―  アクスタ・アクリルグッズ買取LP
   設計方針:
   - スマホ(～1169px) : 単位は vw（デザイン幅841px基準 / 1px = 100/841 ≒ 0.1189vw）
       → ビューポート幅に応じて流動的に拡縮
   - PC(1170px～)     : px 指定で固定（コンテンツ幅1170px・中央寄せ）
       → vw値 × 11.7 = PC時のpx（1170 / 100）
   - CVボタンのみPCでは819px（=1170の70%）＝acr-cv.psd実寸で描画
   - 見出し(h2/h3)は #wrap h2/h3 に勝つよう .acr で詳細度を上げている
   - 画像はwebp / テキストはテキスト / 図形はCSSで描画
   ===================================================================== */

@media (max-width: 768px){
  #wrap{
    top: 110px;
  }
}

.acr{
  width: 100%;
  margin: 5vw auto 50px;
  background: #ffffff;
  overflow: hidden;
  color: #040555;
  font-family: "Meiryo","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN",sans-serif;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

.acr *{
  box-sizing: border-box;
}

.acr img{
  vertical-align: bottom;
}

/* ---- 汎用 ---- */

.acr-full{
  display:block;
  width:100%;
  height:auto;
}

.acr-mt{
  margin-top: 3vw;
}

.acr-pad{
  margin-left:auto;
  margin-right:auto;
}

.acr-center{
  text-align:center!important;
}
.acr-left{
  text-align: left!important;
}
.acr-sec{
  padding: 6vw 2.85vw;
}
.acr-sec.mab0{
  padding: 6vw 2.85vw 0;
}
.acr-grad{
  color:#3336aa;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)){
  .acr-grad{
    display:inline-block;
    background-image:linear-gradient(40deg,#fd3090 0 30%,#3336aa 65% 100%);
    background-clip:text;
    -webkit-background-clip:text;
    color:transparent;
    -webkit-text-fill-color:transparent;
  }
}

/* ---- 見出し ---- */

#wrap .acr-h2{
  font-weight: bold;
  color: #6128af;
  text-align: center;
  font-size: 5.5vw;
  line-height: 1.35;
  margin: 2vw 0 4vw;
}

#wrap .acr-h2--lg{
  font-size: 7.5vw;
}

.acr-h2--thin{
  font-weight: normal;
}

.acr-h2--deco{
  color:#6128af;
  display:flex;
  align-items:center;
  justify-content:center;
}

.acr-h2--deco::before, .acr-h2--deco::after{
  background: url(/moetaku/_assets/images/goods/acrylic/title_pat.webp) no-repeat center / contain;
  content:"";
  flex:0 0 auto;
  width:12vw;
  height:3vw;
  margin:0 1.6vw;
}

.acr-h2--deco::before{
  transform: rotate(180deg);
}

/* ピンク帯のセクション見出しバー(角丸マゼンタ) */

#wrap .acr-bar{
  display:block;
  text-align:center;
  color:#fff;
  font-weight:bold;
  font-size:4.8vw;
  line-height:1.2;
  padding:2.4vw 2vw;
  margin:0 0 4vw;
  border-radius:1.2vw 1.2vw 0 0;
  background: linear-gradient(180deg,#e83cb2 0%,#cf1f93 100%);
  box-shadow: 0 0.4vw 0 rgba(120,10,80,.18);
}

/* ---- 注釈テキスト ---- */

.acr-note{
  text-align:center;
  font-size:3.8vw;
  line-height:1.55;
  color:#040555;
  margin: 3.5vw 0 5vw;
}

.acr-note--sm{
  font-size:3.5vw;
}

.acr-note--sl{
  font-size:4.2vw;
}

.acr-note--red{
  color:#f92641;
  font-weight:bold;
}

.underline{
  text-decoration: underline;
  text-underline-offset:0.2em;
}

.acr-note--navy{
  color:#02155f;
  font-weight:bold;
  text-align:center;
}
.acr-note--navy span{
  color: #f92641;
}
/* ===== CV ボタン(CSS+画像+テキストで描画) =====
   ・オレンジのピルはCSSグラデーションで再現
   ・横幅レスポンシブ:SP=90% / PC=819px(コンテンツ1170pxの70%)
   ・矢印はCSS、キラキラとチケットは画像、文言はテキスト */

.acr-cv{
  width: 90%;
  max-width: 819px;  /* = 1170px の 70% */
  margin: 8vw auto 8vw;
}

.acr-cv__btn{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 3.51vw 8.1vw;
  border-radius: 100vw;
  text-decoration: none;
  background: linear-gradient(180deg,#fd810d 0%,#fb570a 50%,#f82c06 100%);
  box-shadow: 0 0.9vw 2.16vw rgba(248,44,6,.32);
}

.acr-cv__btn:hover{
  filter: brightness(1.5);
}

.acr-cv__btn:active{
  transform: translateY(0.3vw);
}

.acr-cv__txt{
  color:#fff;
  font-weight:bold;
  line-height:1.2;
  font-size:5vw;
  letter-spacing:.01em;
  text-align:center;
}

.acr-cv__sm{
  font-size:3.8vw;
}

/* 矢印(白丸＋シェブロン) */

.acr-cv__arw{
  position:absolute;
  top:50%;
  right:3.87vw;
  transform:translateY(-50%);
  width:5.38vw;
  height:5.38vw;
  border-radius:50%;
  background:#fff;
}

.acr-cv__arw::before{
  content:"";
  position:absolute;
  top:50%;
  left:44%;
  width:1.53vw;
  height:1.53vw;
  border-top:0.63vw solid #fb570a;
  border-right:0.63vw solid #fb570a;
  transform:translate(-50%,-50%) rotate(45deg);
}

/* キラキラ装飾(画像) */

.acr-cv__spark{
  position:absolute;
  pointer-events:none;
  height:auto;
}

.acr-cv__spark--tr{
  width:3.29vw;
  top:-1.44vw;
  right:-1.08vw;
}

.acr-cv__spark--l{
  width:3.15vw;
  top:58%;
  left:-2.16vw;
}

/* クーポン */

.acr-cv__coupon{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:1.26vw;
  margin:4.34vw 0 0;
  color:#fe0200;
  font-weight:bold;
  font-size:3.5vw;
}

.acr-cv__coupon img{
  width:4.5vw;
  height:auto;
}

/* ===== 全力買取 / バナー ===== */

.acr-feat{
  width:95.3%;
  margin:5vw auto 0;
}

.acr-bnr{
  display:block;
  width:96.5%;
  margin:5vw auto 6vw;
}

.acr-bnr:hover{
  opacity:.9;
  transition:opacity .2s;
}

/* ===== アクリルグッズ買取対象 カード ===== */

.acr-cats{
  display:flex;
  gap:1vw;
  justify-content:space-between;
  list-style:none;
  margin:0;
  padding:0;
}

.acr-cats li{
  flex:1 1 0;
  background:#fff;
  border:0.24vw solid #cdd0ee;
  border-radius:1.2vw;
  overflow:hidden;
  text-align:center;
}

.acr-cats li img{
  width:100%;
  height:auto;
}

.acr-cats li p{
  font-size:3vw;
  font-weight:bold;
  color:#040555;
  line-height:1.5;
  padding:2vw 0;
  margin:0;
  border-top:0.24vw solid #e3e4f4;
  background:#f9e7f4;
}

/* ===== 現在の超高価買取 (ピンク帯) ===== */
section.purchase_section {
    width: 100%;
    margin: 0 auto;
    padding: 0px 0px 40px 0px;
}

section.purchase_section .title_img{
  margin-bottom: 10px;
  padding:0 5vw;
}

.acr-pink{
  position: relative;
  padding: 0 2.85vw 0;
  z-index: 0;
}
.acr-pink:before{
  content:"";
  display: block;
  position: absolute;
  top:30px;
  left:0;
  background:#f9e7f4;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.acr-works{
  display:flex;
  gap:2vw;
  justify-content:space-between;
  list-style:none;
  margin:0 0 1vw;
  padding:0;
}

.acr-works li{
  background: #fff;
  border-radius: 2vw;
  box-shadow:0 0.4vw 1.2vw rgba(120,10,80,.08);
  padding:1.5vw 1.5vw 3vw;
  flex:1 1 0;
  text-align: center;
}

.acr-works li img{
  width:100%;
  height:auto;
}

.acr-works li p{
  font-weight: bold;
  margin-top:3vw;
}

.acr-prods{
  display:flex;
  flex-wrap:wrap;
  gap:1.8vw;
  list-style:none;
  margin:0 0 5vw;
  padding:0;
}

.acr-prods li{
  flex:0 0 calc((100% - 3.6vw) / 3);
}

.acr-prods li img{
  width:100%;
  height:auto;
}

/* 買取価格表 */

.acr-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  border-radius:2vw 2vw 1.2vw 1.2vw;
  overflow:hidden;
  background:#fff;
  box-shadow:0 0.4vw 1.2vw rgba(120,10,80,.08);
}

.acr-table th{
  background: linear-gradient(180deg,#e83cb2,#cf1f93);
  color:#fff;
  font-weight:bold;
  font-size:4.2vw;
  padding:2.2vw;
  text-align:center;
}

.acr-table th:first-child{
  width:64%;
}

.acr-table td{
  padding:2vw 2.4vw;
  font-size:3vw;
  line-height:1.4;
  color:#040555;
  vertical-align:middle;
  border-bottom:0.24vw solid #f1d8ea;
}

.acr-table tbody tr:nth-child(even) td{
  background:#fdf3fa;
}

.acr-table td:last-child{
  text-align:center;
  white-space:nowrap;
  color:#f92641;
  font-weight:bold;
  font-size:3vw;
}

.acr-table td:last-child b{
  font-size:4.8vw;
  font-weight:700;
  font-family:"Roboto","Meiryo",sans-serif;
  -webkit-text-stroke:0.025em currentColor;
}


.acr-text-list-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: auto !important;
  overflow: visible !important;
  clear: both;
}

.text_list_inner {
  height: auto !important;
  overflow: visible !important;
}

.acr-text-row.is-hidden {
  display: none;
}

.acr-more-wrap {
  margin: 28px auto 0;
  text-align: center;
}

.acr-more-btn {
  display: inline-block;
  min-width: 220px;
  width:550px;
  padding: 14px 30px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(180deg,#e83cb2,#cf1f93);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  cursor: pointer;
  margin-bottom:20px;
}

.acr-more-btn:hover {
  filter: brightness(1.1);
}

.acr-text-list-box {
  position: relative;
}

.acr-text-list-wrap.is-collapsed .acr-text-list-box::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.65) 40%,
    rgba(255,255,255,0.92) 80%,
    #ffffff 50%
  );
}

@media (min-width: 769px){

  .acr-text-list-wrap.is-collapsed .acr-text-list-box::after {
    height: 70px;
  }
}
@media (max-width: 769px){
.acr-more-btn {
  min-width: 220px;
  width:100%;
  padding: 10px 20px;
  }
}


/* ===== 買取価格公開中 ===== */

.acr-koukai{
  text-align:center;
  padding-bottom:4vw;
}

.acr-koukai__lead{
  font-size:4.5vw;
  font-weight: bold;
  color:#3336aa;
  margin:0 0 1vw;
}

#wrap .acr-koukai__ttl{
  position:relative;
  display:inline-block;
  color:#3336aa;
  font-weight:bold;
  line-height:1.15;
  margin:0;
  padding:0 9vw;
}

.acr-koukai__sm{
  display:block;
  font-size:7vw;
}

.acr-koukai__lg{
  display:block;
  font-size:8.8vw;
  letter-spacing:-0.02em;
}

.acr-koukai__mascot{
  position:absolute;
  bottom:0;
}

.acr-koukai__mascot--l{
  left:0;
  width:8vw;
  height:auto;
}

.acr-koukai__mascot--r{
  right:1vw;
  bottom:1vw;
  width:5.6vw;
  height:auto;
}

.acr-search{
  background: #999;
  padding:10px;
  display:flex;
  align-items:stretch;
  max-width:92.7%;
  margin:4vw auto 0;
  border-radius:2.4vw;
  overflow:hidden;
  box-shadow:0 0.4vw 1vw rgba(120,10,80,.08);
}

.acr-search input[type="text"]{
  flex:1 1 auto;
  border:0;
  outline:0;
  border-radius: 6px 0 0 6px;
  font-size:3.2vw;
  padding:2.4vw 3vw;
  background:#fffs;
}

.acr-search input[type="submit"]{
  flex:0 0 auto;
  border:0;
  cursor:pointer;
  background: url(/moetaku/_assets/images/common/icon_search_w.png) no-repeat center center #666;
  background-size: 16px;
  border-radius: 0 6px 6px 0;
  padding:0 5vw;

}

/* ===== 査定額UP(マゼンタ帯) ===== */

.acr-magenta{
  position: relative;
  padding: 0 0 7vw;
  margin-bottom: 50px;
  z-index: 0;
}
.acr-magenta:before{
  content: "";
  display: block;
  position: absolute;
  border: 6px solid #de1167;
  border-radius:3.6vw;
  width: 100%;
  height: 100%;
  top:0;
  left:0;
  right:0;
  z-index: -1;
}

.acr-magenta .love_inner{
  padding:20px 5vw 0 4vw;
}
.acr-magenta .acr-pad{
  display:block;
  width:100%;
  margin:0 0 10px;
}


/* ===== 共通テキストボタン(オレンジ ピル) ===== */

.acr-btnwrap{
  text-align:center;
  padding:5vw 0 1vw;
}

.acr-btn{
  position:relative;
  display:block;
  width:83.5%;
  margin:0 auto;
  text-decoration:none;
  color:#fff;
  font-weight:bold;
  font-size:4.2vw;
  text-align:center;
  line-height:1.2;
  padding:2.7vw 6vw;
  border-radius:8vw;
  background: #333;
  
}

.acr-btn:hover{
  opacity: .7;
  color: #fff!important;
}

.acr-btn .acr-arw{
  position:absolute;
  top:50%;
  right:3vw;
  transform:translateY(-50%);
  width:4.3vw;
  height:4.3vw;
  border-radius:50%;
  background:#fff;
}

.acr-btn .acr-arw::before{
  content:"";
  position:absolute;
  top:50%;
  left:46%;
  width:1.3vw;
  height:1.3vw;
  border-top:0.5vw solid #333;
  border-right:0.5vw solid #333;
  transform:translate(-50%,-50%) rotate(45deg);
}

.acr-bnr .acr-btn .acr-arw::before{
  transform:translate(-50%,-50%) rotate(135deg);
}
.acr-bnr .acr-btn {
  margin-top: -20px;
}
/* ===== 銀袋・枠なしでも大歓迎(ピンク帯) ===== */

.acr-pinkgrad{
  background: linear-gradient(180deg,#ffeaf1 0%,#ffffff 60%);
  padding: 7vw 2.85vw;
}
.acr-pinkgrad .acr-h2{
  position: relative;
}
.acr-pinkgrad .acr-h2:before,
.acr-pinkgrad .acr-h2:after{
  content: "";
  display: block;
  position: absolute;
  top:0;
}
.acr-pinkgrad .acr-h2:before{
  background: url(/moetaku/_assets/images/goods/acrylic/mascotL.webp) no-repeat;
  background-size: contain;
  width:10vw;
  height:10vw;
  top:2vw;
  left:0;
}
.acr-pinkgrad .acr-h2:after{
  background: url(/moetaku/_assets/images/goods/acrylic/mascotR.webp) no-repeat;
  background-size: contain;
  width:6vw;
  height:6vw;
  right:0;
}
.acr-gins{
  list-style:none;
  margin:0;
  padding:0;
}

.acr-gins li{
  margin-bottom:2.6vw;
}

/* 銀袋カード(border+text+svg / 画像はimg1-3と赤矢印のみ) */
.acr-gin{
  display:flex;
  align-items:center;
  gap:8vw;
  background:#fff;
  border:0.24vw solid #ccccff;
  border-radius:2.4vw;
  padding:2vw 2.6vw;
}

.acr-gin__img{
  flex:0 0 31%;
}

.acr-gin__img img{
  width:100%;
  height:auto;
  display:block;
}

.acr-gin__body{
  flex:1 1 auto;
  text-align:left;
}

.acr-gin__ttl{
  margin:0;
  line-height:1.5;
}

.acr-gin__ttl span{
  font-size:5.2vw;
  font-weight:bold;
  color:#012a6f;
  background:linear-gradient(transparent 60%, #fee848 60%);
  -webkit-box-decoration-break:clone;
  box-decoration-break:clone;
}

.acr-gin__sub{
  font-size:4vw;
  color:#555555;
  margin:1.2vw 0 0;
}

.acr-gin__ok{
  display:flex;
  align-items:center;
  gap:1.2vw;
  font-size:6vw;
  font-weight:bold;
  color:#fb0b62;
  margin:1.6vw 0 0;
}

.acr-gin__arw{
  width:5.4vw;
  height:auto;
}

/* ===== 買取実績スライダー ===== */

.acr-revwrap{
  position:relative;
}

.acr-revnav{
  display:none;
}

.acr-revslider{
  position:relative;
  width:100%;
  overflow:hidden;
  padding-bottom:2vw;
}

.acr-revslider .swiper-wrapper{
  align-items:stretch;
}

.acr-revslider .swiper-slide{
  width:36vw;
  height:auto;

}

.acr-revslider .swiper-slide img{
  width:auto;
  height:100%;
  max-height: 200px;
  margin: auto;
}

/* ===== 宅配買取の使い方(フロー) ===== */

.acr-flow{
  display:flex;
  flex-wrap:wrap;
  gap:8vw 2.4vw;
  list-style:none;
  margin:0;
  padding:2vw 0 0;
}

.acr-flow li{
  position:relative;
  flex:0 0 calc((100% - 2.4vw) / 2);
  text-align:center;
}

.acr-flow__no{
  position:absolute;
  top:-4vw;
  left:20%;
  transform:translateX(-50%);
  z-index:2;
  width:7.8vw;
  height:7.8vw;
  line-height:7.8vw;
  border-radius:50%;
  background: linear-gradient(180deg,#ff6aa9,#e83cb2);
  color:#fff;
  font-weight:bold;
  font-size:4.4vw;
  font-family:"Roboto","Meiryo",sans-serif;
  box-shadow:0 0.4vw 0.8vw rgba(120,10,80,.25);
}

.acr-flow li img{
  width:100%;
  height:auto;
}

.acr-flow__ttl{
  font-size:4.5vw;
  font-weight:bold;
  color:#040555;
  margin:3vw 0 0;
  line-height:1.25;
}

.acr-flow__sub{
  font-size:3.8vw;
  font-weight:bold;
  color:#f92641;
  margin:0.4vw 0 0;
  min-height:3.4vw;
}

/* ===== よくあるご質問 ===== */

.acr-qa{
  margin:0;
}

.acr-qa__item{
  background:#fff;
  border-radius:2vw;
  padding:3vw 3.2vw;
  margin-bottom:3vw;
  box-shadow:0 0.4vw 1.2vw rgba(120,10,80,.06);
}

.acr-qa dt, .acr-qa dd{
  position:relative;
  padding-left:7.5vw;
  font-size:4vw;
  line-height:1.5;
  margin:0;
}

.acr-qa dt{
  color:#3336ab;
  font-weight:bold;
}

.acr-qa dd{
  margin-top:2.4vw;
  color:#040555;
}

.acr-qa__lead{
  color:#fe2b70;
  font-weight:bold;
}

.acr-qa__ic{
  position:absolute;
  left:0;
  top:0;
  width:5.4vw;
  height:5.4vw;
  line-height:5.4vw;
  text-align:center;
  border-radius:50%;
  color:#fff;
  font-weight:bold;
  font-size:2.8vw;
  font-family:"Roboto","Meiryo",sans-serif;
}

.acr-qa__ic--q{
  background:#3336ab;
}

.acr-qa__ic--a{
  background:#fe2b70;
}

/* =====================================================================
   PC(769px以上) ― コンテンツ幅1170pxで固定し、px指定にロック
   （vw値 × 11.7 = px。CVボタンのみ819px=実寸で描画）
   ===================================================================== */

@media (min-width: 769px){
  .inner{
    max-width: 1170px;
    text-align: center;
    margin: auto;
  }
  .acr-mt{
    margin-top:35px;
  }

  .acr-sec{
    padding:20px 33px;
  }

  #wrap .acr-h2{
    width: 1170px;
    font-size:36px;
    margin:23px auto 47px;
  }

  #wrap .acr-h2--lg{
    font-size:50px;
  }

  .acr-h2--deco::before, .acr-h2--deco::after{
    width:140px;
    height:35px;
    margin:0 19px;
  }

  #wrap .acr-bar{
    max-width: 1170px;
    font-size:28px;
    padding:16px 23px;
    margin:0 auto 40px;
    border-radius:14px 14px 0 0;
    box-shadow:0 5px 0 rgba(120,10,80,.18);
  }

  .acr-bnr .acr-btn {
    margin-top: 20px;
  }

  .acr-note{
    font-size:20px;
    margin:35px 0 40px;
  }

  .acr-note--sm{
    font-size:29px;
  }

  /* CVボタン：1170pxの70% = 819px（acr-cv.psd実寸で描画） */

  .acr-cv{
    max-width:819px;
    margin:60px auto 60px;
  }

  .acr-cv__btn{
    padding:32px 74px;
    border-radius:999px;
    box-shadow:0 8px 20px rgba(248,44,6,.32);
  }

  .acr-cv__btn:active{
    transform:translateY(2px);
  }

  .acr-cv__txt{
    font-size:42px;
  }

  .acr-cv__sm{
    font-size:30px;
  }

  .acr-cv__arw{
    right:35px;
    width:49px;
    height:49px;
  }

  .acr-cv__arw::before{
    width:14px;
    height:14px;
    border-top-width:6px;
    border-right-width:6px;
  }

  .acr-cv__spark--tr{
    width:30px;
    top:-13px;
    right:-10px;
  }

  .acr-cv__spark--l{
    width:29px;
    left:-20px;
  }

  .acr-cv__coupon{
    gap:11px;
    margin:35px 0 0;
    font-size:22px;
  }

  .acr-cv__coupon img{
    width:41px;
  }

  .acr-feat{
    margin:58px auto 0;
  }

  .acr-bnr{
    margin:58px auto 70px;
  }
  section.purchase_section .title_img {

    text-align: center;
  }
  section.purchase_section .title_img img{
    max-width:900px;
    margin: auto;
  }

  .acr-cats{
    gap:12px;
  }

  .acr-cats li{
    border-width:3px;
    border-radius:14px;
  }
  .acr-cats li img{
    width:80%;
    height:auto;
  }
  .acr-cats li p{
    font-size:22px;
    padding:14px 0;
    border-top-width:3px;
  }

  .acr-pinkgrad{
    width: 100%;
    padding:30px 33px 50px;
    text-align: center;
  }

  .acr-works{
    max-width: 1170px;
    gap:23px;
    margin:0 auto;
  }
  .acr-works li{
    padding:10px;
    border-radius: 10px;
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
  }
  .acr-works li img{
    width:130px;
  }
  .acr-works li p{
    font-size: 20px;
    margin: 0;
  }

  .acr-table{
    max-width: 1170px;
    margin: auto;
    border-radius:10px;
    box-shadow:0 5px 14px rgba(120,10,80,.08);
  }

  .acr-table th{
    font-size:20px;
    padding:10px 0 6px;
  }

  .acr-table td{
    padding:12px 18px;
    font-size:16px;
    border-bottom-width:1px;
    width:76%;
  }

  .acr-table td:last-child{
    font-size:20px;
    width:24%;
    text-align: right;
  }

  .acr-table td:last-child b{
    font-size:28px;
  }

  .acr-koukai{
    padding-bottom:47px;
  }

  .acr-koukai__lead{
    font-size:30px;
    margin:0 0 12px;
  }

  #wrap .acr-koukai__ttl{
    padding:0 105px;
  }

  .acr-koukai__sm{
    font-size:50px;
  }

  .acr-koukai__lg{
    font-size:70px;
  }

  .acr-koukai__mascot--l{
    width:94px;
  }

  .acr-koukai__mascot--r{
    right:12px;
    bottom:12px;
    width:65px;
  }

  .acr-search{
    margin:50px auto 0;
    border-radius:10px;
    box-shadow:0 5px 12px rgba(120,10,80,.08);
  }

  .acr-search input[type="text"]{
    font-size:20px;
    padding:16px 16px;
  }

  .acr-search input[type="submit"]{
    width:100px;
    padding:0;
  }

  .acr-sec.mab0{
    padding: 20px 2.85vw 0;
  }

  .moe-love-title img{
    width:600px;
    margin: auto;
  }
  .acr-magenta:before{
    width: 1065px;
    margin: auto;
    border-radius:16px;
  }


  .acr-magenta{
    padding:0 47px 40px;
    border-radius:42px;
  }

  .acr-magenta > .acr-full:first-child{
    margin:0 -47px;
    width:calc(100% + 94px);
  }

  .acr-btnwrap{
    padding:30px 0 12px;
  }

  .acr-btn{
    width: 70%;
    font-size:24px;
    padding:16px 70px 12px;
    border-radius:94px;
  }

  .acr-btn .acr-arw{
    right:24px;
    width:30px;
    height:30px;
  }

  .acr-btn .acr-arw::before{
    width:8px;
    height:8px;
    border-top-width:2px;
    border-right-width:2px;
    left: 47%;
  }

  .acr-pinkgrad .acr-h2:before{
    position: static;
    display: inline-block;
    width:40px;
    height:60px;
    
  }
  .acr-pinkgrad .acr-h2:after{
    position: static;
    display: inline-block;
    width:30px;
    height:30px;
   
  }

  /* PC:3枚を横並び(grid) / カード内は縦並び(flex column) */
  .acr-gins{
    max-width:1170px;
    margin: auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
  }

  .acr-gins li{
    margin-bottom:0;
  }

  .acr-gin{
    flex-direction:column;
    align-items:center;
    gap:16px;
    border-width:3px;
    border-radius:28px;
    padding:30px 23px;
  }

  .acr-gin__img{
    flex:0 0 auto;
    width:60%;
  }

  .acr-gins-img{
    margin-top:20px;
    width:700px;
  }
  .acr-gin__body{
    flex:1 1 auto;
    text-align:center;
  }

  .acr-gin__ttl span{
    font-size:30px;
  }

  .acr-gin__sub{
    font-size:22px;
    margin:12px 0 0;
  }

  .acr-gin__ok{
    justify-content:center;
    gap:10px;
    font-size:34px;
    margin:14px 0 0;
  }

  .acr-gin__arw{
    width:40px;
  }

  .acr-revwrap{
    position:relative;
    width: 1180px;
    max-width:100%;
    margin: auto;
  }

  .acr-revslider{
    width: 100%;
  }

  .acr-revslider .swiper-slide{
    width:220px;
  }

  /* PC:左右スクロール矢印(ページのボタンと同じオレンジボタン調) */
  .acr-revnav{
    display:flex;
    align-items:center;
    justify-content:center;
    position:absolute;
    top:45%;
    transform:translateY(-50%);
    z-index:10;
    width:54px;
    height:54px;
    padding:0;
    border:0;
    border-radius:50%;
    cursor:pointer;
    background:#333;
  }

  .acr-revnav:hover{
    filter:brightness(1.05);
  }

  .acr-revnav::before{
    content:"";
    width:13px;
    height:13px;
    border-top:5px solid #fff;
    border-right:5px solid #fff;
  }

  .acr-revnav--prev{
    left:-20px;
  }

  .acr-revnav--prev::before{
    transform:rotate(-135deg);
    margin-left:4px;
  }

  .acr-revnav--next{
    right:-20px;
  }

  .acr-revnav--next::before{
    transform:rotate(45deg);
    margin-right:4px;
  }

  .acr-revnav.swiper-button-disabled{
    opacity:.35;
    cursor:default;
    box-shadow:0 4px 10px rgba(214,83,0,.15);
  }

  .acr-revnav.swiper-button-lock{
    display:none;
  }

  .acr-flow{
    max-width:1170px;
    margin: auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    padding:23px 0 0;
  }

  .acr-flow li{
    flex-basis:calc((100% - 28px) / 2);
  }

  .acr-flow__no{
    top:-30px;
    width:60px;
    height:60px;
    line-height:60px;
    font-size:30px;
    box-shadow:0 5px 9px rgba(120,10,80,.25);
  }

  .acr-flow li img{
    border-width:7px;
  }

  .acr-flow__ttl{
    font-size:28px;
    margin:20px 0 0;
  }

  .acr-flow__sub{
    font-size:20px;
    margin:5px 0 0;
    min-height:40px;
  }
  .acr-qa{
    width: 1170px;
    margin: auto;
    text-align: left;
  }
  .acr-qa__item{
    border-radius:23px;
    padding:35px;
    margin-bottom:35px;
    box-shadow:0 5px 14px rgba(120,10,80,.06);
  }

  .acr-qa dt, .acr-qa dd{
    padding-left:50px;
    font-size:18px;
  }

  .acr-qa dd{
    margin:30px 0 0 50px;
  }

  .acr-qa__ic{
    top:-8px;
    width:40px;
    height:40px;
    line-height:40px;
    font-size:20px;
  }
}

/* ===== 現在の超高価買取商品カード(テキスト+CSS / 画像はdummy) ===== */

.acr-prod{
  display:flex;
  flex-direction:column;
  background:#fff;
  border-radius:1.8vw;
  box-shadow:0 0.4vw 1.2vw rgba(120,10,80,.10);
  overflow:hidden;
  padding-bottom:2.4vw;
  text-align:left;
}

.acr-prod__thumb{
  background:#fff;
}

.acr-prod__thumb img{
  width:100%;
  height:auto;
  display:block;
}

.acr-prod__name{
  flex:1 1 auto;
  font-size:3.2vw;
  line-height:1.35;
  color:#040555;
  margin:0;
  padding:1.8vw 1.6vw 0;
}

.acr-prod__label{
  font-size:2.6vw;
  font-weight:bold;
  color:#cf1f93;
  margin:2vw 0 0;
  padding:0 1.6vw;
}

.acr-prod__price{
  display:flex;
  align-items:end;
  justify-content:center;
  gap:0.6vw;
  margin:0.4vw 0 0;
  color:#f92641;
  font-weight:bold;
  line-height:1;
}

.acr-prod__price::before{
  content:"";
  flex:0 0 auto;
  width:2.4vw;
  height:3.2vw;
  background:url(/moetaku/_assets/images/goods/acrylic/price_b.svg) no-repeat center / contain;
}

.acr-prod__price::after{
  content:"";
  flex:0 0 auto;
  width:4.4vw;
  height:5.43vw;
  background:url(/moetaku/_assets/images/goods/acrylic/price_a.svg) no-repeat center / contain;
}

.acr-prod__num{
  font-size:5vw;
  font-weight:700;
  font-family:"Roboto","Meiryo",sans-serif;
  -webkit-text-stroke:0.025em currentColor;
}

.acr-prod__yen{
  font-size:2.8vw;
}

@media (min-width: 769px){
  .acr-prods{
    max-width: 1170px;
    gap:21px;
    margin:0 auto 60px;
  }

  .acr-prods li{
    flex-basis:calc((100% - 86px) / 5);
  }

  .acr-prod{
    border-radius:10px;
    box-shadow:0 5px 14px rgba(120,10,80,.10);
    padding-bottom:16px;
  }

  .acr-prod__name{
    font-size:16px;
    padding:20px 19px 0;
  }

  .acr-prod__label{
    font-size:14px;
    margin:16px 0 0;
    padding:0 19px;
  }

  .acr-prod__price{
    gap:7px;
  }

  .acr-prod__price::before{
    width:16px;
    height:20px;
  }

  .acr-prod__price::after{
    width:20px;
    height:30px;
  }

  .acr-prod__num{
    font-size:30px;
  }

  .acr-prod__yen{
    font-size:20px;
  }
}

/* ===== MV下部に重ねるアイコン行(border+text+svg) ===== */

.acr-mv{
  position:relative;
}

.acr-mvic{
  position:absolute;
  left:3.3%;
  right:3.3%;
  bottom:-5%;
  display:flex;
  gap:1.4vw;
  list-style:none;
  margin:0;
  padding:0;
}

.acr-mvic li{
  flex:1 1 0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  background:#fff;
  border:0.24vw solid #c5caff;
  border-radius:2vw;
  padding:2vw 0.4vw;
  text-align:center;
}

.acr-mvic__ic{
  width:auto;
  height:6.8vw;
  display:block;
  margin-bottom:0.8vw;
}

.acr-mvic p{
  font-size:3vw;
  line-height:1.4;
  letter-spacing: -0.08em;
  color:#211bc5;
  font-weight:bold;
  margin:5px 0 0;
}
.acr-mvic li:last-of-type p{
  font-size:2.6vw;
}

@media (min-width: 769px){
  .acr-mv{
    width: 100%;
    background: url(/moetaku/_assets/images/goods/acrylic/bg_mv.webp) no-repeat top center;
    background-size: cover;
  }
  .acr-mv .pc{
    max-width: 1170px;
    margin:auto;
  }
  .acr-mvic{
    max-width: 980px;
    margin:auto;
    gap:16px;
    bottom:-135px;
  }

  .acr-mvic li{
    border-width:3px;
    border-radius:23px;
    padding:19px 5px;
  }

  .acr-mvic__ic{
    height:60px;
    margin-bottom:9px;
  }

  .acr-mvic p,.acr-mvic li:last-of-type p{
    font-size:16px;
  }
  .acr{
    margin: 130px auto 50px;
  }
}

/* ===== 買取実績カード(商品画像+テキスト / acr-prodと同様・価格位置をそろえる) ===== */
.acr-rev{
  display:flex;
  flex-direction:column;
  height:100%;
  background:#fff;
  border-radius:1.8vw;
  box-shadow:0 0.4vw 1.2vw rgba(120,10,80,.10);
  overflow:hidden;
  padding-bottom:2.4vw;
  text-align:left;
}
.acr-rev__thumb{
  background:#f4f0fb;
}
.acr-rev__thumb img{
  width:100%;
  height:auto;
  display:block;
}
.acr-rev__date{
  font-size:2.5w;
  color:#9b9bb0;
  margin:0;
  padding:1.4vw 1.8vw 0;
}
.acr-rev__name{
  flex:1 1 auto;
  font-size:3.5vw;
  line-height:1.35;
  font-weight:bold;
  color:#040555;
  margin:0;
  padding:0.4vw 1.8vw 0;
}
.acr-rev__price{
  display:flex;
  align-items:end;
  justify-content:center;
  gap:0.6vw;
  margin:2.5vw 0 0;
  color:#f92641;
  font-weight:bold;
  line-height:1;
}
.acr-rev__price::before{
  content:"";
  flex:0 0 auto;
  width:2.4vw;
  height:3.2vw;
  background:url(/moetaku/_assets/images/goods/acrylic/price_b.svg) no-repeat center / contain;
}
.acr-rev__price::after{
  content:"";
  flex:0 0 auto;
  width:4.4vw;
  height:5.43vw;
  background:url(/moetaku/_assets/images/goods/acrylic/price_a.svg) no-repeat center / contain;
}
.acr-rev__num{
  font-size:6.2vw;
  font-weight:700;
  font-family:"Roboto","Meiryo",sans-serif;
  -webkit-text-stroke:0.025em currentColor;
}
.acr-rev__yen{
  font-size:4vw;
}
.acr-rev__note{
  font-size:3.5vw;
  color:#f92641;
  font-weight:bold;
  text-align:center;
  margin:0.4vw 0 0;
}


.onegai_inner {
  padding:0 2vw 2vw;
  position: relative;
  border-bottom:2px solid #ab92f8;
  border-radius: 0 0 5vw 5vw;
}

.onegai_inner::before {
  left: 0;
}

.onegai_inner::after {
  right: 0;
}

.onegai p{
    margin-top: -20px;
    padding:0 5vw;
}
.onegai ul{
  display: grid;
  grid-template-columns: 48% 48%;
  gap:10px;
}

@media (min-width: 769px){
  .acr-rev{
    border-radius:21px;
    box-shadow:0 5px 14px rgba(120,10,80,.10);
    padding-bottom:28px;
  }
  .acr-rev__date{
    font-size:12px;
    padding:16px 21px 0;
  }
  .acr-rev__name{
    font-size:18px;
    padding:5px 21px 0;
  }
  .acr-rev__price{
    gap:7px;
    margin:12px 0 0;
  }
  .acr-rev__price::before{
    width:14px;
    height:24px;
  }
  .acr-rev__price::after{
    width:20px;
    height:30px;
  }
  .acr-rev__num{
    font-size:36px;
  }
  .acr-rev__yen{
    font-size:24px;
  }
  .acr-rev__note{
    font-size:18px;
  }
  .onegai{
    margin-bottom: 100px;
  }
  .onegai_inner {
    width: 80%;
    margin: -80px auto;
    border-radius: 0 0 16px 16px;
  }
  .onegai .acr-full{
    width: 80%;
    margin: auto;
  }
  .onegai ul{
    padding:0 50px;
  }
  .all-purcharse{
    display: grid;
    grid-template-columns: 450px 1fr;
  }
  .all-purcharse img{
    width:450px;
    height: auto;
  }
  #wrap .all-purcharse .acr-h2{ 
    text-align: left;
  }
}