@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@700;800&display=swap');
:root {
  --color-primary: #000d46;
}

html {
  font-size: min(0.5952380952vw, 62.5%);
}

@media only screen and (max-width: 1090px) {
  html {
    font-size: 6.5px;
  }
}
#container,
.reusesmartphone {
  width: 100%;
  min-width: 1080px;
  max-width: 1680px;
  margin-bottom: 0;
  line-height: 1.4;
}

.reusesmartphone * {
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
}

.reusesmartphone {
  overflow: hidden;
  padding-bottom: 10rem;
  background-color: #67be00;
}
.reusesmartphone .inner {
  overflow: visible;
  width: 108rem;
  margin: 0 auto;
}
.reusesmartphone img {
  display: block;
  max-width: 100%;
  height: auto;
}
.reusesmartphone button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.reusesmartphone .title-secondary {
  font-size: 5.2rem;
  font-weight: 800;
  text-align: center;
  color: var(--color-primary);
}
.reusesmartphone .title-secondary mark {
  background-color: #f5d400;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.reusesmartphone .title-secondary span {
  font-size: 4rem;
  font-weight: inherit;
  color: white;
}
.reusesmartphone .title-bg {
  padding: 0.5rem 0;
  background-color: var(--color-primary);
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  color: white;
}
.reusesmartphone .note_list {
  width: 70rem;
  margin: 4rem auto 0;
}
.reusesmartphone .note_list li {
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 700;
  text-indent: -1em;
}
.reusesmartphone .-center {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
.reusesmartphone .card {
  padding: 4rem 7rem;
  border: 0.4rem solid var(--color-primary);
  border-radius: 2.5rem;
  background-color: white;
}
.reusesmartphone .card.-yellow {
  background-color: #fed700;
}
.reusesmartphone .card.-light-yellow {
  background-color: #ffeb99;
}
.reusesmartphone .-red {
  color: #f00 !important;
}
.reusesmartphone .list-mark li {
  position: relative;
}
.reusesmartphone .list-mark li:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -3.5rem;
  width: 0;
  height: 0;
  border-top: 2.3rem solid transparent;
  border-right: 0;
  border-bottom: 2.3rem solid transparent;
  border-left: 2rem solid #000;
  border-style: solid;
  transform: translateY(-50%);
  content: "";
}
.reusesmartphone .list-mark.-list4 li:not(:last-child)::after {
  right: -2.8rem;
  border-top: 2rem solid transparent;
  border-bottom: 2rem solid transparent;
  border-left: 1.6rem solid #000;
}

.d-none {
  display: none !important;
}

/* 立体のピルボタン（共通パーツ）
   既定でひとつのボタンとして完成している。使う側は違うところだけ上書きする
   上書きできるもの:
     --btn-pill-face         面のグラデーション
     --btn-pill-border       面の枠線
     --btn-pill-shadow-color 影の色
     --btn-pill-shadow-x/y   影のずれ
     --btn-pill-face-inset   面の位置（要素の箱からの inset）
     --btn-pill-shadow-inset 影の位置（同上）
     --btn-pill-arrow-right  矢印の右位置
     --btn-pill-arrow-shift  矢印の上下微調整（中央からのずれ）
   HTML: <a class="btn-pill"><span>ラベル</span><div class="btn-pill_arrow">svg</div></a>
-----------------------------------------------------------*/
.reusesmartphone .btn-pill {
  --btn-pill-face: linear-gradient(to bottom, #f2f2f2 0%, #efefef 38%, #dcdcdc 62%, #999 100%);
  --btn-pill-border: 0.6rem solid #ccc;
  --btn-pill-shadow-color: var(--color-primary);
  --btn-pill-shadow-x: 0.4rem;
  --btn-pill-shadow-y: 0.6rem;
  --btn-pill-face-inset: 0 0.6rem 0;
  --btn-pill-shadow-inset: -0.4rem 0.2rem 0;
  --btn-pill-arrow-right: 4.5rem;
  --btn-pill-arrow-shift: 3.2rem;
  --btn-pill-rotate: -90deg;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 42.5rem;
  height: 9.3rem;
  border-radius: 0;
  background-color: transparent;
  font-size: 2.8rem;
  font-weight: 800;
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  color: var(--color-primary);
  isolation: isolate;
}
.reusesmartphone .btn-pill.row2 {
    --btn-pill-shadow-inset: -0.3rem 0.2rem -0.2rem;
      --btn-pill-arrow-shift: 4.3rem;

  height: 11.8rem;
}
/* 影 */
.reusesmartphone .btn-pill::before {
  position: absolute;
  inset: var(--btn-pill-shadow-inset);
  z-index: -2;
  border-radius: 999rem;
  background-color: var(--btn-pill-shadow-color);
  transform: translate(var(--btn-pill-shadow-x), var(--btn-pill-shadow-y));
  content: "";
}
/* 面 */
.reusesmartphone .btn-pill::after {
  position: absolute;
  inset: var(--btn-pill-face-inset);
  z-index: -1;
  border: var(--btn-pill-border);
  border-radius: 999rem;
  background: var(--btn-pill-face);
  content: "";
}
.reusesmartphone .btn-pill span {
  position: relative;
  z-index: 1;
  font-weight: 800;
}
.reusesmartphone span.btn-pill_arrow {
  position: absolute;
  top: var(--btn-pill-arrow-shift);
  right: var(--btn-pill-arrow-right);
  transform: rotateZ(var(--btn-pill-rotate));
  display: inline-block;
  width: 3.3rem;
  height: 2.8rem;
}
.reusesmartphone span.btn-pill_arrow svg {
  width: 100%;
}

/* オレンジボタン
-----------------------------------------------------------*/
.reusesmartphone .btn-orange {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60.1rem;
  height: 12.3rem;
  padding-bottom: 1rem;
  background-image: url("../../../img/feature/mobile/reusesmartphone/common/btn_orange.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 3.6rem;
  font-weight: 800;
  font-style: italic;
  text-align: center;
  text-decoration: none;
  line-height: 130%;
  color: var(--color-primary);
}

/* もっと見るボタン
-----------------------------------------------------------*/
.reusesmartphone .btn-more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34.1rem;
  height: 7.4rem;
  padding-bottom: 0.5rem;
  background-image: url("../../../img/feature/mobile/reusesmartphone/common/btn_more.svg");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  line-height: 130%;
  color: white;
}

.reusesmartphone .btn-more::after {
  position: absolute;
  top: 2.1rem;
  right: 2.8rem;
  display: block;
  width: 2.3rem;
  height: 2.6rem;
  background-image: url("data:image/svg+xml,%3Csvg width='23' height='26' viewBox='0 0 23 26' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 13L0 0V26L23 13Z' fill='white'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  content: "";
}

/* MV
-----------------------------------------------------------*/
.mv .mv_inner {
  position: relative;
}
.mv .mv_inner .mv_bg {
  position: relative;
  top: 0;
  left: 0;
  width: 168rem;
  max-width: 168rem;
}
.mv .mv_inner .mv_title {
  position: absolute;
  top: 4rem;
  left: 4rem;
  width: 104.3rem;
  max-width: 104.3rem;
}
.mv .mv_inner .mv_geo {
  position: absolute;
  top: 102rem;
  right: 0;
  left: 0;
  width: 29.5rem;
  margin: 0 auto;
}

/* anchor
-----------------------------------------------------------*/
.anchor {
  position: relative;
  margin-top: -83.5rem;
}

.anchor_notes {
  text-align: center;
  font-size: 2.7rem;
  top: -3rem;
  position: relative;
}

.anchor .anchor_inner {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(2, 1fr);
  width: 95.5rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}
.anchor .anchor_inner li {
  min-width: 0;
}
.anchor .anchor_inner li .anchor_image {
  position: absolute;
}
.anchor .anchor_inner li:nth-of-type(1) .anchor_image {
  top: -1rem;
  left: 0.5rem;
  width: 18.4rem;
}
.anchor .anchor_inner li:nth-of-type(2) .anchor_image {
  top: -1.6rem;
  left: 0.6rem;
  width: 17.3rem;
}
.anchor .anchor_inner li:nth-of-type(3) .anchor_image {
  top: -0.6rem;
  left: 0.7rem;
  width: 17.3rem;
}
.anchor .anchor_inner li:nth-of-type(4) .anchor_image {
  top: -1.2rem;
  left: 0.8rem;
  width: 18.4rem;
}

/* ピルボタン（共通パーツ）の anchor 専用の寸法。既定と違うところだけ */
.anchor .anchor_inner .anchor_btn--pill {
  --btn-pill-shadow-inset: 1.5rem 0 0;
  --btn-pill-face-inset: 2.1rem 0.6rem 0.4rem;
  --btn-pill-arrow-shift: 5.85rem;
  --btn-pill-rotate: 0;
  align-items: flex-end;
  width: 46.5rem;
  height: 12.8rem;
  padding-bottom: 2rem;
  padding-left: 8rem;
}

/* catch
-----------------------------------------------------------*/
.catch {
  position: relative;
  margin-top: 8rem;
}
.catch .catch_image {
  margin-top: -1.4rem;
}
.catch .catch_image img {
  position: relative;
  top: -12rem;
  left: 18rem;
  width: 141.9rem;
}
.catch .catch_btnWrap {
  position: relative;
  margin-top: -16rem;
}
.catch .catch_btnWrap .catch_btn {
  width: 60.1rem;
}

/* スマホ買取価格
-----------------------------------------------------------*/
.items {
  position: relative;
  margin-top: 5rem;
}
.items .title-secondary {
  margin-bottom: 2rem;
}
.items .item + .item {
  margin-top: 4rem;
}
.items .item .item_list {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
  margin-top: 4rem;
}
.items .item .item_list li {
  display: flex;
  flex-direction: column;
}
.items .item .item_list li p {
  line-height: 1.3;
  text-align: center;
}
.items .item .item_image {
  flex-grow: 0;
  width: 100%;
  height: 20rem;
  text-align: center;
}
.items .item .item_image img {
  width: auto;
  max-width: 100%;
  height: 100%;
}
.items .item .item_name {
  flex-grow: 1;
  margin-top: 0.2rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
.items .item .item_volume {
  flex-grow: 0;
  min-height: 1.3em;
  margin-top: 0.2rem;
  font-size: 1.6rem;
}
.items .item .item_priceLabel {
  flex-grow: 0;
  margin-top: 0.3rem;
  font-size: 1.6rem;
}
.items .item .item_price {
  flex-grow: 0;
  font-size: 3rem;
  color: #f46d37;
}
.items .item .item_price span {
  font-size: 1.8rem;
  font-weight: inherit;
  color: inherit;
}
.items .item .itemMore_button {
  margin-top: 4rem;
}
.items .item .itemMore_button img {
  width: 34.2rem;
}
.items .cloud_img {
  position: absolute;
  top: 42rem;
  right: 13rem;
  width: 14.9rem;
}

/* ＼お手持ちのスマホ・iPadの買取価格を知りたい方は／
-----------------------------------------------------------*/
.sumahosateiDetail {
  width: fit-content;
  margin: 3rem auto 0;
}

.sumahosateiDetail .sumahosateiDetail_label {
  font-size: 2.6rem;
  color: var(--color-primary);
}

.sumahosateiDetail .sumahosateiDetail_content {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.sumahosateiDetail .sumahosateiDetail_title {
  font-size: 4.5rem;
  line-height: 5rem;
  color: #FF0000;
}

.sumahosateiDetail .sumahosateiDetail_link {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}


.sumahosateiDetail .sumahosateiDetail_link .btn-pill_arrow {
}

.sumahosateiDetail .sumahosateiDetail_linkBtn {
}

/* 売る買う使う（共通）
-----------------------------------------------------------*/
.sellBuy {
  position: relative;
  padding: 0 0 10rem;
  background-image: url(/v2/pc/img/feature/mobile/reusesmartphone/common/bg_sellBuy.png);
  background-position: bottom center;
  background-repeat: no-repeat;
}
.sellBuy .title-secondary {
  margin: 8rem 0 5rem;
  line-height: 1.5;
}
.sellBuy .title-secondary span {
  display: block;
  line-height: 1;
}
.sellBuy .tabMenu {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100rem;
  margin: 0 auto;
}
.sellBuy [role=tab] {
  width: 49rem;
  padding: 1rem 0;
  border: 0.4rem solid var(--color-primary);
  border-bottom: none;
  border-top-left-radius: 2rem;
  border-top-right-radius: 2rem;
  background-color: #d8d8d6;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--color-primary);
}
.sellBuy [role=tab]:focus {
  outline: none;
}
.sellBuy [role=tab]:focus-visible {
  outline: 0.2rem solid #192b5b;
  outline-offset: 0;
}
.sellBuy [role=tab][aria-selected=true] {
  padding: 2rem 0;
  background-color: #fed700;
}
.sellBuy [role=tab] img {
  width: auto;
  height: 4.3rem;
  margin: 0 auto;
}
.sellBuy .card {
  overflow: visible;
  padding: 0;
}
.sellBuy .tabPanel_inner {
  padding: 4rem 7rem 0;
}
.sellBuy .tabPanelBottom {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  margin-top: 10rem;
  padding: 7rem 0;
  border-bottom-right-radius: 2.1rem;
  border-bottom-left-radius: 2.1rem;
  background-color: var(--color-primary);
}
.sellBuy .tabPanelBottom .title-secondary {
  margin-top: 0;
  line-height: 1.2;
  color: #fed500;
}
.sellBuy .tabPanelBottom .-center {
  margin-top: 3rem;
}
.sellBuy .cloud_img {
  position: absolute;
  top: -3rem;
  left: 14rem;
  width: 22.1rem;
}

/* 動画
-----------------------------------------------------------*/
.movie {
  position: relative;
  padding: 8rem 0;
  background-color: #fed500;
}
.movie .title-secondary {
  margin-bottom: 2rem;
}
.movie .movie_carousel {
  z-index: 1;
}
.movie .movie_carousel .movie_thumbnail {
  overflow: hidden;
  width: 108rem;
  height: 61.1rem;
  padding: 0;
}
.movie .movie_carousel .movie_thumbnail img {
  width: 100%;
  height: auto;
}
.movie .movie_carousel .movie_title {
  margin-top: 1rem;
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
}
.movie .cloud_img {
  position: absolute;
  top: 7rem;
  left: -5rem;
  width: 152.8rem;
}
/* ============ carousel ============ */
.movie .splide__arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.movie .splide__arrows .splide__arrow--wrap {
  width: 5rem;
}
.movie .splide__arrow {
  opacity: 1;
  position: relative;
  width: 5rem;
  height: 5rem;
  outline: none;
  background: transparent;
}
.movie .splide__arrow:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.movie .splide__arrow img,
.movie .splide__arrow svg {
  width: 5rem;
  height: 5rem;
}
.movie .splide__arrow.splide__arrow--prev, .movie .splide__arrow.splide__arrow--next {
  right: 0;
  left: 0;
  transform: none;
}
.movie .splide__arrow.splide__arrow--prev svg, .movie .splide__arrow.splide__arrow--next svg {
  transform: none;
}
.movie .splide__counter {
  display: flex;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: 800;
}
.movie .splide__counter p {
  display: inline-block;
  font-size: inherit;
}
.movie {
}
/* ============ モーダル ============ */
.movie .movieModal {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  margin: auto;
  background: rgba(0, 0, 0, 0.9);
}
.movie .movieModal .movieModal_inner .movieModal_close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
}
.movie .movieModal .movieModal_inner .movieModal_close::before, .movie .movieModal .movieModal_inner .movieModal_close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0.2rem;
  background-color: white;
  content: "";
}
.movie .movieModal .movieModal_inner .movieModal_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.movie .movieModal .movieModal_inner .movieModal_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.movie .movieModal .movieModal_inner .movieModal_iframeWrap {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* よくある質問
-----------------------------------------------------------*/
.faq {
  position: relative;
  padding: 8rem 0 0;
}
.faq > div {
  position: relative;
  z-index: 1;
}
.faq .title-secondary {
  margin-bottom: 2rem;
  line-height: 1.5;
}
.faq .title-secondary span {
  display: block;
  font-size: 0.8em;
  line-height: 1;
  color: inherit;
}
.faq .inner {
  z-index: 1;
}
.faq .inner + .title-secondary {
  margin-top: 8rem;
}
.faq details[open] .faq_content {
  display: block;
}
.faq details + details {
  margin-top: 1rem;
}
.faq summary {
  position: relative;
  list-style: none;
  cursor: pointer;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::before, .faq summary::after {
  position: absolute;
  z-index: 1;
  background-color: var(--color-primary);
  content: "";
}
.faq summary::before {
  top: 50%;
  right: 2rem;
  width: 3rem;
  height: 0.4rem;
  transform: translate(0%, -50%);
}
.faq summary::after {
  top: 50%;
  right: 3.5rem;
  width: 0.4rem;
  height: 3rem;
  transform: translate(50%, -50%);
}
.faq summary[aria-expanded=true]::after {
  display: none;
}
.faq summary:focus-visible .faq_question {
  background-color: #dae0ff;
}
.faq .faq_question {
  display: block;
  position: relative;
  margin: 0;
  padding: 1.4rem 6rem 1.4rem 7rem;
  border: 0.4rem solid var(--color-primary);
  background-color: white;
  font-size: 2.5rem;
  font-weight: 700;
}
.faq .faq_question::before {
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4.5rem;
  height: 4.6rem;
  background-image: url(/v2/pc/img/feature/mobile/reusesmartphone/common/faq-q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.faq .faq_content {
  display: none;
  overflow: hidden;
}
.faq .faq_content .faq_answer {
  position: relative;
  min-height: 6.6rem;
  padding: 2rem 1rem 2rem 7rem;
  border: 0.4rem solid var(--color-primary);
  border-top: none;
  background-color: #ffeb99;
  font-size: 1.8rem;
}
.faq .faq_content .faq_answer::before {
  display: block;
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4.5rem;
  height: 4.6rem;
  background-image: url(/v2/pc/img/feature/mobile/reusesmartphone/common/faq-a.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
.faq .faq_content .faq_answer .notPurchase p {
  margin-top: 0.5rem;
  font-weight: 800;
  color: #f46d37;
}
.faq .faq_content .faq_answer .notPurchase > div {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 0.5rem;
}
.faq .faq_content .faq_answer .notPurchase > div a {
  display: block;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 3rem 0.5rem 1rem;
  border-radius: 0.6rem;
  background: #f46d37;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  color: #fff;
}
.faq .faq_content .faq_answer .notPurchase > div a span {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1rem;
  left: 0%;
  font-size: 0.8rem;
  font-weight: normal;
  text-align: right;
  color: #fff;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.faq .cloud_img {
  position: absolute;
  top: 4rem;
  left: -1rem;
  width: 183.5rem;
}

/* 下部バナー
-----------------------------------------------------------*/
.banner .banner_list {
  width: 70.1rem;
  margin: 6rem auto 0;
}
.banner .banner_list li + li {
  margin-top: 3rem;
}
.banner .banner_list li a {
  display: block;
  width: 100%;
  height: auto;
}

/* スクロール固定バナー
-----------------------------------------------------------*/
.stiky {
  display: none;
  position: fixed;
  right: 0;
  bottom: 11rem;
  z-index: 1000;
}
.stiky .stiky_list li + li {
  margin-top: 2rem;
}
.stiky .stiky_list li a img {
  width: 10.4rem;
}

/* footer
-----------------------------------------------------------*/
#campaignWrapper {
  overflow: hidden;
  min-width: 1080px;
  margin-bottom: 0;
}

#pagetopBtn {
  right: 2rem !important;
  bottom: 4rem !important;
  z-index: 1000;
  width: 5rem;
  height: 5rem;
}
#pagetopBtn #pagetopBtnInner {
  top: 1.6rem;
  left: 1rem;
}
#pagetopBtn #pagetopBtnInner::before {
  border-width: 0 1.5rem 1.4rem 1.5rem;
}
#pagetopBtn #pagetopBtnInner::after {
  top: -0.8rem;
  border-width: 0 1.5rem 1.4rem 1.5rem;
}
