@charset "UTF-8";
/* ===========================================================
ベース設定
============================================================ */
:root {
  /* カラー */
  --Text: #333;
  --Text_blue: #1a0dab;
  --Main: #e04631;
  --Sub: #2e9f21;
  --Accent: #c91e1e;
  --Back: #fffed9;
  --gray: #eaebe3;
  --brown: #512615;
  /* 文字サイズ */
  --FontSizePC: 16px;
  /* 1010px(inner+padding*2) 〜 max-screen */
  --FontSizeTab: 1.5841584158vw;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Noto Sans JP Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Noto Sans JP Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Noto Sans JP Regular.woff") format("woff");
  font-display: swap;
}
html {
  font-size: var(--FontSizePC);
  font-family: "Noto Sans JP";
  word-break: break-all;
  color: var(--Text);
}

@media (max-width: 1010px) {
  html {
    font-size: var(--FontSizeTab);
  }
}
body {
  font-feature-settings: "palt";
}

.forPC {
  display: block;
}

.forPC-inline {
  display: inline-block;
}

.forSP {
  display: none;
}

/* ===========================================================
共通パーツ
============================================================ */
/* デザイン幅 */
.wrapper {
  max-width: 74.375rem;
  width: 100%;
  margin: 0 auto;
}

/* セクション間の余白 */
.section {
  margin-top: 5rem;
}

/* インナー幅 */
.inner {
  width: 100%;
  max-width: 1010px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
  box-sizing: border-box;
}

/* テーブルボタン1 */
.table-btn {
  display: inline-block;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1.5625rem;
  padding-right: 1.5625rem;
  background-color: var(--Sub);
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.125;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 0.25rem 0 #1b7311;
}

.table-btn:hover {
  opacity: 0.6;
}

/* テーブルボタン2 */
.table-btn2 {
  position: relative;
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  padding-right: 1.625rem;
  background-color: var(--Sub);
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  box-shadow: 0 0.25rem 0 #1b7311;
}

.table-btn2:hover {
  opacity: 0.6;
}

.table-btn2::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* テーブルボタン3 */
.table-btn3 {
  position: relative;
  border: 1px solid var(--Text);
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.625rem;
  padding-right: 1.625rem;
  background-color: var(--gray);
  color: var(--Text);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}

.table-btn3:hover {
  opacity: 0.6;
}

.table-btn3::after {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_top.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* テーブルボタン4 */
.table-btn4 {
  position: relative;
  border: 1px solid var(--Text);
  border-radius: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.625rem;
  padding-right: 1.725rem;
  background-color: var(--gray);
  color: var(--Text);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1;
  transition: 0.3s;
}

.table-btn4:hover {
  opacity: 0.6;
}

.table-btn4::after {
  position: absolute;
  content: "";
  display: block;
  top: 32%;
  left: 88%;
  width: 0.6rem;
  height: 0.6rem;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: translateX(-50%) rotate(135deg);
}

/* CTAボタン */
.cta-btn {
  display: inline-block;
  position: relative;
  border-radius: 0.5rem;
  max-width: 18.4375rem;
  width: 100%;
  padding-top: 1.4375rem;
  padding-bottom: 1.3125rem;
  padding-left: 4.125rem;
  padding-right: 2.5rem;
  background-color: var(--Sub);
  color: #fff;
  font-size: 1.125rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  box-shadow: 0 0.25rem 0 #1b7311;
  transition: all 0.3s;
}

.cta-btn:hover {
  opacity: 0.6;
}

.cta-btn::before {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 0.625rem;
  transform: translateY(-50%);
  border-radius: 50%;
  width: 3.25rem;
  height: 3.25rem;
  background-color: #fff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  content: "無料";
  color: var(--Main);
}

.cta-btn::after {
  position: absolute;
  top: calc(50% + 0.125rem);
  right: 0.625rem;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* 相談するボタン */
.cta-btn2 {
  display: block;
  position: relative;
  transition: 0.3s;
}

.cta-btn2:hover {
  opacity: 0.6;
}

.cta-btn2__free {
  position: absolute;
  top: -0.625rem;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  padding-top: 1.375rem;
  background-color: #fff;
  content: "無料";
  color: var(--Main);
  font-size: 1.5rem;
  line-height: 1;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: -1;
}

.cta-btn2__link {
  display: block;
  border-radius: 0.5rem;
  padding-top: 1.8125rem;
  padding-bottom: 1.8125rem;
  padding-left: 1.375rem;
  padding-right: 4.125rem;
  min-width: 12.75rem;
  background-color: var(--Sub);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 0.25rem 0 0 #1b7311;
  transition: 0.3s;
  z-index: 2;
}

.cta-btn2__link::after {
  position: absolute;
  top: calc(50% + 0.125rem);
  right: 1.25rem;
  transform: translateY(-50%);
  width: 2.125rem;
  height: 2.125rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* 詳細を見るボタン */
.detail-btn {
  display: inline-block;
  position: relative;
  border-radius: 0.25rem;
  min-width: 9.95rem;
  padding: 12px 16px 12px 10px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  transition: 0.3s;
}

.detail-btn:hover {
  opacity: 0.6;
}

.detail-btn::after {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

/* 検索ボタン */
.search-btn {
  display: inline-block;
  position: relative;
  border: none;
  border-radius: 0.5rem;
  max-width: 20.9375rem;
  width: 100%;
  padding-top: 1.875rem;
  padding-bottom: 1.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: var(--Accent);
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.05em;
  box-shadow: 0 0.25rem 0 0#731111;
  transition: 0.3s;
  cursor: pointer;
}

.search-btn:hover {
  opacity: 0.6;
}

.search-btn span {
  display: inline-block;
  position: relative;
  padding-right: 2.125rem;
}

.search-btn span::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

/* もっとみるボタン */
.more-btn {
  display: inline-block;
  position: relative;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  outline: 1px solid var(--Text);
  max-width: 20.9375rem;
  width: 100%;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  background-color: var(--gray);
  color: var(--Text);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.more-btn:hover {
  opacity: 0.6;
}

.more-btn:focus {
  outline: 1px solid var(--Text);
}

.more-btn::before {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--Text);
  content: "";
}

.more-btn::after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(90deg);
  border-radius: 4px;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--Text);
  content: "";
}

.more-btn.is-active::after {
  display: none;
}

/*
  shop-box
  ランキングや検索結果で使用
*/
.shop-box {
  border: 2px solid var(--Accent);
  border-radius: 0.625rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.shop-box:nth-child(n + 2) {
  border-color: var(--Text);
}

.ranking__more .shop-box {
  border-color: var(--Text);
}

.shop-box--no1 {
  background-color: var(--Back);
}

.shop-box__inner {
  padding-left: 5.125rem;
  padding-right: 5.125rem;
}

.shop-box__head {
  display: flex;
  gap: 0.875rem;
}

.shop-box__rank {
  width: 7rem;
}

.shop-box__rank img {
  width: 100%;
}

.shop-box__content {
  width: calc(100% - 7.875rem);
}

.shop-box__catch-copy {
  position: relative;
  font-size: 1.6875rem;
  font-weight: bold;
  line-height: 1;
  padding-top: 1rem;
  padding-bottom: 2.3125rem;
  padding-left: 1.25rem;
}

.shop-box__catch-copy::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 36.125rem;
  height: 5.5rem;
  background-image: url(../img/ct_shopbox_ttl_bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.shop-box__name {
  color: var(--Text_blue);
  font-size: 2.3125rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: underline;
}

.shop-box__name:hover {
  text-decoration: none;
}

.shop-box__wrapper {
  margin-top: 1.5rem;
}

.shop-box__link {
  display: block;
  transition: 0.3s;
}

.shop-box__link:hover {
  opacity: 0.6;
}

.shop-box__img {
  margin: auto;
}

.shop-box__img img {
  width: 100%;
  height: auto;
}

.shop-box__lead {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-top: 1.1875rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
  padding-right: 1.5rem;
  background-color: #3a322f;
}

#buysell .shop-box__lead {
  margin-top: 4px;
}

.shop-box__sub-copy {
  width: calc(100% - 8.5rem);
  color: #fff;
  font-size: 1.4375rem;
  line-height: 1.2608695652;
}

.shop-box__lead-btn {
  width: 9.75rem;
}

.shop-box__lead-btn .detail-btn {
  pointer-events: none;
}

.shop-box__table {
  margin-top: 2rem;
}

.shop-box__recommend {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 25rem;
}

.shop-box__recommend img {
  width: 100%;
}

.shop-box__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  padding-left: 1.625rem;
  padding-right: 1.625rem;
}

.shop-box__item {
  position: relative;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.75;
  padding-left: 2rem;
}

.shop-box__item::before {
  position: absolute;
  top: 0.1875rem;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/cm_ico_ume.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.shop-box__item span {
  color: var(--Main);
}

.shop-box__buysell {
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 27.5rem;
}

.shop-box__buysell img {
  width: 100%;
}

.shop-box__txt-wrapper {
  margin-top: 2rem;
  padding-left: 9.875rem;
  padding-right: 9.875rem;
}

.shop-box__txt {
  padding-top: 1rem;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
}

.shop-box__logo {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  width: 20rem;
}

.shop-box__logo-link {
  display: block;
  transition: 0.3s;
}

.shop-box__logo-link:hover {
  opacity: 0.6;
}

.shop-box__logo img {
  width: 100%;
}

.shop-box__btn {
  margin-top: 1.875rem;
  text-align: center;
}
.shop-box__btn .cta-btn {
  max-width: 20.4375rem;
}
/* shop-box テーブル */
.shop-box-table {
  border-collapse: collapse;
  width: 100%;
}

.shop-box-table th,
.shop-box-table td {
  border: 2px solid #5b5b5b;
}

.shop-box-table th {
  padding: 8px;
  background-color: var(--gray);
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1;
  width: calc(100% / 3);
}

.shop-box-table td {
  padding: 10px;
  background-color: #fff;
  font-size: 1rem;
  line-height: 1.3125;
  width: calc(100% / 3);
  text-align: center;
  vertical-align: top;
}

.shop-box-table td a {
  color: var(--Text_blue);
  font-size: 0.75rem;
  font-weight: bold;
  line-height: 1.3333333333;
  text-decoration: underline;
}

.shop-box-table td a:hover {
  text-decoration: none;
}
.rank-table__ico {
  display: block;
  width: 40px;
  margin: 0 auto 4px;
}


/* ===========================================================
header / ヘッダー
============================================================ */
.header h1 img {
  width: 100%;
  object-fit: cover;
}
.header__logo {
  height: 42px;
  width: 100%;
  max-width: 960px;
  background-color: #fff;
}
.header__logo::before {
  display: block;
  content: "";
  background: url(../img/style-lives_header.svg) no-repeat center;
  background-size: 100%;
  width: 210px;
  height: 42px;
  background-color: #fff;
  z-index: 100;
}
/* 広告表記 */
.adTxt {
  text-align: right;
  max-width: 960px;
  padding: 0;
  margin: 8px auto;
  position: absolute;
  top: 0;
  right: calc((100% - 960px) / 2);
}
.adTxt span {
  font-size: 18px;
  font-weight: bold;
  border: 1px solid var(--Text); /* 枠色 変数名がTextでない場合は変更 */
  padding: 2px 14px;
}

/* ===========================================================
top3 / トップ3
============================================================ */
.top3__ttl img {
  display: block;
  margin: auto;
  width: 40rem;
}

.top3__main {
  margin-top: 20px;
  padding-top: 2.625rem;
  padding-bottom: 2.625rem;
  padding-left: 2.25rem;
  padding-right: 2.25rem;
  background-color: var(--gray);
}

.top3__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* top3 カード  */
.top3-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: #fff;
  border-radius: 0.5rem;
  padding-bottom: 1rem;
}

.top3-card--no1 {
  border: 1px solid var(--Accent);
  background-color: var(--Back);
}

.top3-card__rank {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top3-card__rank--1 img {
  width: 7.0625rem;
}

.top3-card__rank--2 img {
  width: 6.0625rem;
}

.top3-card__rank--3 img {
  width: 5.8125rem;
}

.top3-card__head {
  height: 8.75rem;
  padding-top: 3.75rem;
  padding-bottom: 0.625rem;
}

.top3-card__link {
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.top3-card__link:hover {
  opacity: 0.6;
}

.top3-card__head img {
  margin: auto;
  width: 12.5rem;
  height: 65px;
  object-fit: contain;
}

.top3-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top3-card__bottom {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.top3-card__txt {
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
}

.top3-card__accent {
  margin-top: auto;
  color: var(--Main);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.375;
  text-align: center;
}

.top3-card__btn {
  border-radius: 0.25rem;
  width: 140px;
  background-color: var(--Sub);
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  box-shadow: 0 0.25rem 0 #1b7311;
  padding: 0.5rem;
  margin: 0 auto 0;
  transition: all 0.3s;
  display: flex;
  justify-content: right;
  align-items: center;
  gap: 24px;
}

.top3-card__btn::after {
  right: 0.625rem;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-top: 0.125rem;
}

/* ===========================================================
recommend / おすすめBEST5
============================================================ */
.section.recommend {
  margin-top: 2.5rem;
}
.recommend__table {
  margin-top: 20px;
}
.recommend__ttl {
  position: relative;
}

.recommend__ttl-a {
  max-width: 1010px;
  padding-top: 64px;
  position: relative;
  margin-inline: auto;
}
.recommend__ttl-a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  border-top: 48px solid #f5f5ef;
  border-left: 10vw solid transparent;
  border-right: 10vw solid transparent;
  transform: translateX(-50%);
}
.recommend__ttl {
  margin: auto;
  width: 40rem;
}

.recommend__ttl img {
  width: 100%;
}

.recommend__table {
  margin-top: 0.75rem;
}

.recommend__catch {
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  margin-top: 1.6rem;
}

/* recommend テーブル */
.recommend-table {
  width: 100%;
  table-layout: fixed;
}

.recommend-table,
.recommend-table th,
.recommend-table td {
  border: 1px solid var(--Text);
  border-collapse: collapse;
}

.recommend-table th {
  width: 7.5rem;
  padding-top: 2.125rem;
  padding-bottom: 2.125rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  text-align: left;
  z-index: 1;
}

.recommend-table td:first-of-type {
  background-color: var(--Back);
}
.recommend-table td {
  position: relative;
  padding: 0 4px;
}
.recommend-table tr:first-of-type td:first-of-type::before {
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rank_hikaku_01.svg) no-repeat center;
  background-size: 100%;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}
.recommend-table tr:first-of-type td:nth-of-type(2)::before {
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rank_hikaku_02.svg) no-repeat center;
  background-size: 100%;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}
.recommend-table tr:first-of-type td:nth-of-type(3)::before {
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rank_hikaku_03.svg) no-repeat center;
  background-size: 100%;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
}

.recommend-table__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.recommend-table__txt {
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
}

/* .recommend-table__txt span {
  font-weight: bold;
  color: var(--Accent);
} */

.recommend-table__txt--sm {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.recommend-table__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 1.125rem;
  padding-bottom: 0.5rem;
}

.recommend-table__link:hover .recommend-table__link-txt {
  text-decoration: none;
}

.recommend-table__link-shop {
  width: 7.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.recommend-table__ttl {
  margin-top: auto;
  color: var(--Text_blue);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.8181818182;
  text-decoration: underline;
  display: block;
  text-align: center;
}

.recommend-table__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.recommend-table__item {
  position: relative;
  /* padding-left: 1rem; */
  font-size: 1rem;
  line-height: 1.3;
}

/* .recommend-table__item::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 0.75rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
} */

/* .recommend-table__item--first::before {
  background-image: url(../img/cm_ico_truck.svg);
}

.recommend-table__item--second::before {
  background-image: url(../img/cm_ico_shop.svg);
}

.recommend-table__item--third::before {
  background-image: url(../img/cm_ico_box.svg);
} */

.recommend-table__ico {
  margin: auto;
  width: 3rem;
}

.recommend__ano {
  width: 960px;
  text-align: right;
  display: block;
  margin: 4px auto 0;
  font-size: 10px;
}
.recommend .table-btn {
  position: relative;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  padding-right: 2.5625rem;
}
.recommend .table-btn::before {
  position: absolute;
  right: 0.625rem;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-top: 0.125rem;
}

/* ===========================================================
survey / SURVEY
============================================================ */
.survey {
  margin-top: 40px;
}

.realvoice {
  margin-top: 0;
}

.survey__head-img {
  max-width: 660px;
  display: block;
  margin-inline: auto;
}
.survey__scroll-wrap {
  margin-top: 20px;
}

.realvoice__wrap {
  width: 420px;
  margin: 0 auto;
}

.realvoice__head-img {
  max-width: 540px;
  display: block;
  margin-inline: auto;
}
.survey__scroll__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.realvoice__scroll__body {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 20px;
}
.realvoice__scroll__body img {
  /* width: calc(calc(100% - 40px) / 3); */
  width: 420px;
}
.realvoice__notes {
  font-size: 10px;
  width: 420px;
  margin: 4px auto 0;
}

/* ===========================================================
cta / CTA
============================================================ */
.cta__inner {
  max-width: 40rem;
}

.cta__head {
  border-radius: 0.625rem 0.625rem 0 0;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-image: url(../img/ct_ttl_bg_rd.png);
  background-repeat: repeat;
  background-size: cover;
  background-position: top center;
}

.cta__ttl {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
}

.cta__ttl span {
  font-size: 2rem;
}

.cta__body {
  border-bottom: 2px solid var(--Accent);
  border-left: 2px solid var(--Accent);
  border-right: 2px solid var(--Accent);
  border-radius: 0 0 0.625rem 0.625rem;
  padding-top: 1.5rem;
  padding-bottom: 1.625rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.cta__shop {
  margin: auto;
  width: 12.5rem;
}

.cta__link {
  display: block;
  transition: 0.3s;
}

.cta__link:hover {
  opacity: 0.6;
}

.cta__shop img {
  width: 100%;
}

.cta__txt {
  position: relative;
  margin-top: 1.5rem;
  color: var(--Sub);
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  text-align: center;
}

.cta__btn {
  margin-top: 0.5rem;
  text-align: center;
}

/* ===========================================================
point / 着物買取店選びのポイント3選
============================================================ */
.point__ttl {
  margin: auto;
  width: 40rem;
}

.point__ttl img {
  width: 100%;
}

.point__wrapper {
  padding-top: 1.5rem;
  padding-bottom: 1.6875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: var(--gray);
}

.point__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* point カード */
.point-card {
  border-radius: 0.625rem;
  background-color: #fff;
  padding-top: 0.875rem;
  padding-bottom: 1.5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.point-card__ttl {
  position: relative;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  color: var(--Accent);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.point-card__ttl::before {
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  width: 100%;
  height: 2.625rem;
  background-image: url(../img/ct_ttl_bg_pk.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.point-card__img {
  margin-top: 1rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.point-card__img img {
  aspect-ratio: 258/128;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.point-card__body {
  margin-top: 1rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.point-card__sub-ttl {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}

.point-card__txt {
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.75;
}

/* ===========================================================
achievement / 買取実績 着物買取店BEST3
============================================================ */
.achievement__inner {
  max-width: 43.125rem;
}

.achievement__ttl {
  margin: auto;
  width: 40rem;
}

.achievement__ttl img {
  width: 100%;
}

.achievement__items {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.875rem;
  margin-top: 2.5rem;
}

/* achievement アイテム */
.achievement-item {
  display: flex;
  gap: 0.625rem;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  border-radius: 0.5rem;
  max-width: 29rem;
  min-height: 12.75rem;
  width: 100%;
  padding-top: 1.875rem;
  padding-bottom: 1.875rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: var(--gray);
  z-index: 2;
}

.achievement-item--no1 {
  border: 2px solid var(--Accent);
  max-width: 35.6875rem;
  background-color: var(--Back);
}

.achievement-item__body {
  width: calc(100% - 13.375rem);
  text-align: center;
}

.achievement-item__shop {
  margin: auto;
  width: 10.1875rem;
}

.achievement-item__shop-link {
  display: block;
  transition: 0.3s;
}

.achievement-item__shop-link:hover {
  opacity: 0.6;
}

.achievement-item__shop img {
  width: 100%;
}

.achievement-item__txt {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
}

.achievement-item__link {
  display: inline-block;
  margin-top: 0.375rem;
  color: var(--Text_blue);
  font-size: 1.625rem;
  font-weight: bold;
  line-height: 1.3076923077;
  letter-spacing: 0.02em;
  text-decoration: underline;
}

.achievement-item__link:hover {
  text-decoration: none;
}

.achievement-item__btn {
  width: 12.75rem;
}

/* ===========================================================
search / 検索
============================================================ */
.search__ttl {
  text-align: center;
}

.search__ttl img {
  margin: auto;
  width: 40rem;
}

/* フォーム */
.form {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background-color: var(--gray);
}

.form__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form__ttl {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.form__ttl span {
  display: inline-block;
  border-radius: 5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  background-color: var(--Text);
  color: #fff;
  font-size: 14px;
}

.form__desc {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.form__desc--col {
  flex-direction: column;
}

.form__label {
  display: flex;
  align-items: center;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  max-width: 17rem;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 56px;
  padding-right: 1.25rem;
  background-color: #fff;
  cursor: pointer;
}

.form__label:hover {
  border-color: var(--Sub);
}

.form__label::before {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  border: 1px solid #d9d9d9;
  border-radius: 0.3125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  content: "";
  box-shadow: 0 0.1875rem 0.3125rem 0 rgba(46, 46, 66, 0.08);
}

.form__label::after {
  display: none;
  position: absolute;
  top: calc(50% - 0.125rem);
  left: 1.75rem;
  transform: translateY(-50%) rotate(-50deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 0.0625rem;
  width: 0.75rem;
  height: 0.5rem;
  content: "";
}

.form__label--lg {
  max-width: 35.75rem;
}

.form input {
  position: absolute;
  opacity: 0;
}

/* チェック時のスタイル */
.form__label:has(> input:checked) {
  border-color: var(--Sub);
}

.form__label:has(> input:checked)::before {
  background-color: var(--Sub);
}

.form__label:has(> input:checked)::after {
  display: block;
}

.form__txt {
  display: inline-block;
  position: relative;
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 1;
}

/* アイコンがある時用のスタイル */
.form__txt--ico {
  padding-left: 2rem;
}

.form__txt--ico::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  content: "";
}

/* クラスに対応したアイコンを表示 */
.form__txt--truck::before {
  background-image: url(../img/cm_ico_truck.svg);
}

.form__txt--shop::before {
  background-image: url(../img/cm_ico_shop.svg);
}

.form__txt--box::before {
  background-image: url(../img/cm_ico_box.svg);
}

.form__txt--tell::before {
  background-image: url(../img/cm_ico_phone.svg);
}

.form__txt--net::before {
  background-image: url(../img/cm_ico_internet.svg);
}

.form__txt--mail::before {
  background-image: url(../img/cm_ico_mail.svg);
}

.form__txt--cash::before {
  background-image: url(../img/cm_ico_monney.svg);
}
.form__txt--ng::before {
  background-image: url(../img/cm_ico_ng.svg);
}
.form__txt--others::before {
  background-image: url(../img/cm_ico_other.svg);
}
.form__txt--expert::before {
  background-image: url(../img/cm_ico_expert.svg);
}
.form__txt--broken::before {
  background-image: url(../img/cm_ico_old.svg);
}
.form__txt--stain::before {
  background-image: url(../img/cm_ico_scratch.svg);
}

.form__btn {
  margin-top: 1rem;
  text-align: center;
}

/* ===========================================================
ranking / ランキング
============================================================ */
.ranking__ttl {
  margin: auto;
  width: 40rem;
}

.ranking__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.ranking__btn {
  margin-top: 2rem;
  text-align: center;
}

.ranking__more {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
.ranking__slider {
  margin-top: 50px;
}
.ranking__slider__inside {
  width: 100%;
  border-radius: 15px;
  border: solid 2px var(--gray);
  background-color: #fff;
  padding: 38px 30px 30px;
  box-sizing: border-box;
  font-size: 1.4rem;
}
.slide-arrow.prev-arrow,
.slide-arrow.next-arrow {
  display: block;
  width: 50px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.slide-arrow.next-arrow {
  right: 0px;
}
.slide-arrow.prev-arrow {
  left: 0px;
}
/* ===========================================================
flow / 出張買取の流れ
============================================================ */
.inner.flow__inner {
  background-color: var(--gray);
}
.flow__ttl {
  margin: auto;
  width: 40rem;
}

.flow__ttl img {
  width: 100%;
}

.flow__wrapper {
  margin-top: 1.625rem;
  padding-top: 1rem;
  padding-bottom: 2.75rem;
  padding-left: 8rem;
  padding-right: 8rem;
  background-color: var(--gray);
}

.flow__items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.flow__item:nth-child(n + 2)::before {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1rem 0.875rem 0 0.875rem;
  border-color: var(--Sub) transparent transparent transparent;
  content: "";
}

/* flow アイテム */
.flow-item {
  position: relative;
  border-radius: 0.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
  background-color: #fff;
}

.flow-item__head {
  display: flex;
  gap: 1rem;
  padding-left: 68px;
}

.flow-item__img {
  display: grid;
  grid-template-rows: 34px 70px;
  gap: 4px;
}
.flow_point {
  width: auto;
  width: auto;
  height: 34px;
}
.flow_ico {
  width: auto;
  height: 70px;
}
.flow-item__content {
  display: grid;
}
.flow-item__num {
  display: inline-block;
  color: #a87704;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.1em;
}

.flow-item__ttl {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.flow-item__body {
  margin-top: 1rem;
}

.flow-item__txt {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* ===========================================================
comparison / 着物買取店徹底比較!
============================================================ */
.comparison__ttl {
  margin: auto;
  width: 40rem;
}

.comparison__table {
  margin-top: 1.25rem;
}

/* comparison テーブル */
.comparison-table {
  width: 100%;
}

.comparison-table,
.comparison-table th,
.comparison-table td {
  border: 1px solid var(--Text);
  border-collapse: collapse;
}

.comparison-table th {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  background-color: var(--gray);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3125;
  text-align: center;
}

.comparison-table th:nth-of-type(1) {
  width: 13rem;
}

.comparison-table th:nth-of-type(2) {
  width: 12.5rem;
}

.comparison-table th:nth-of-type(3) {
  width: 10.8125rem;
}

.comparison-table th:nth-of-type(4) {
  width: 12.5rem;
}

.comparison-table th:nth-of-type(5) {
  width: 11.1875rem;
}

.comparison-table td {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: #fff;
}

.comparison-table tbody tr:first-of-type td {
  background-color: var(--Back);
  border-top: solid 5px var(--Accent);
  border-bottom: solid 5px var(--Accent);
}
.comparison-table tbody tr:first-of-type td:first-of-type {
  border-left: solid 5px var(--Accent);
  position: relative;
}
.comparison-table tbody tr:first-of-type td:first-of-type::after {
  position: absolute;
  content: "人気No.1";
  color: #fff;
  background-color: var(--Accent);
  top: 0;
  left: 0;
  width: 58px;
  height: 24px;
  font-size: 12px;
  font-weight: bold;
}
.comparison-table tbody tr:first-of-type td:last-of-type {
  border-right: solid 5px var(--Accent);
}

.comparison-table__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  transition: 0.3s;
  z-index: 2;
}

.comparison-table__link:hover {
  opacity: 0.6;
}

.comparison-table__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
}

.comparison-table__rank {
  width: 2.1875rem;
}

.comparison-table__name {
  width: 7.5rem;
}

.comparison-table__txt {
  font-size: 1rem;
  line-height: 1.3125;
}

.comparison-table__txt span {
  color: var(--Main);
  font-weight: bold;
}

.comparison-table__ico {
  width: 1.5rem;
}

/* ===========================================================
まとめ
============================================================ */
.matome__ttl {
  margin: auto;
  width: 40rem;
}

/* ===========================================================
footer / フッター
============================================================ */
.footer {
  background-color: var(--gray);
}

.footer__wrapper {
  display: flex;
  justify-content: flex-end;
  gap: 9.375rem;
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  padding-left: 9.6875rem;
}

.footer__list--sm {
  width: 10.6875rem;
}

.footer__list--lg {
  width: calc(100% - 20.0625rem);
}

.footer__list-term {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.footer__subList {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.625rem;
}

.footer__subList-link {
  color: var(--Text_blue);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: underline;
}

.footer__subList-link:hover {
  text-decoration: none;
}

.footer__bottom {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 0.625rem;
}

.footer__bottom::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  content: "";
}

.footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13.125rem;
}

.footer__link {
  color: var(--Text_blue);
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-decoration: underline;
}

.footer__link:hover {
  text-decoration: none;
}

.footer__copy {
  margin-top: 0.875rem;
  font-size: 0.75rem;
  line-height: 1.75;
  letter-spacing: 0.02em;
  text-align: center;
}

/* ===========================================================
breadcrumb / 下層ページ パンくず
============================================================ */
.breadcrumb {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.breadcrumb__list *:nth-child(n + 2) {
  padding-left: 1.75rem;
}

.breadcrumb__list *:nth-child(n + 2)::before {
  position: absolute;
  top: 0.25rem;
  left: 0.375rem;
  content: "＞";
  color: #d9d9d9;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.breadcrumb__link {
  display: inline;
  position: relative;
  color: var(--Text_blue);
  font-size: 1.25rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-decoration: underline;
}

.breadcrumb__link:hover {
  text-decoration: none;
}

.breadcrumb__current {
  display: inline;
  position: relative;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}

/* ===========================================================
result / 検索結果ページ
============================================================ */
.result__ttl {
  margin: auto;
  width: 40rem;
}

.result__conditions {
  margin-top: 1rem;
  color: var(--Sub);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}

.result__list {
  margin-top: 1rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #5b5b5b;
  max-width: 40rem;
  width: 100%;
}

.result__list dl {
  font-size: 1rem;
  line-height: 1.2857142857;
  text-align: center;
}

.result__list dt,
.result__list dd {
  border-top: 1px solid #5b5b5b;
}

.result__list dt {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
  background-color: var(--gray);
  text-align: center;
}

.result__list dl:first-child dt {
  border-top: none;
}

.result__list dd {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.result__num {
  margin-top: 1.25rem;
  color: var(--Accent);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
}

.result__wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.25rem;
}

/* ===========================================================
re-search / 検索結果ページ
============================================================ */
.re-search__content {
  text-align: center;
}

.re-search__ttl {
  display: inline-block;
  position: relative;
  max-width: 17.5rem;
  width: 100%;
  padding-top: 0.25rem;
  padding-bottom: 0.5rem;
  color: var(--Accent);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

.re-search__ttl::before {
  position: absolute;
  top: -0.3125rem;
  left: -0.3125rem;
  width: 100%;
  height: 2.625rem;
  background-image: url(../img/ct_ttl_bg_pk.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.re-search__wrapper {
  margin-top: 1.25rem;
}

/* ========================================================
記事ページ
=========================================================*/
.page-lower {
  padding-top: 5rem;
}
.page-lower .inner {
  padding: 0 15px;
}
.page-lower .header {
  background: none;
}
.page-lower h1 {
  position: relative;
  text-align: center;
  max-width: 100vw;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-lower h1::before,
.page-lower h1::after {
  content: "";
  display: block;
  background-image: url(../img/icon_dot_sp.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 1.875rem;
  height: 3.625rem;
  z-index: -1;
}
.page-lower h1::before {
  left: 0.9375rem;
}
.page-lower h1::after {
  right: 0.9375rem;
}
.page-lower h2 {
  background-color: #f5f5ef;
  width: 100%;
  text-align: center;
  position: relative;
  border-right: 3px solid #e04631;
  border-left: 3px solid #e04631;
  font-weight: bold;
  font-size: 1.125rem;
  padding: 1rem 0;
  margin-top: 5rem;
}
.page-lower h2::before,
.page-lower h2::after {
  content: "";
  width: 3px;
  height: 50%;
  background-color: #e04631;
  position: absolute;
  bottom: 0;
  z-index: 2;
}
.page-lower h2::before {
  left: -3px;
}
.page-lower h2::after {
  right: -3px;
}
.page-lower h3 {
  font-size: 1rem;
  border-left: 4px solid #e04631;
  padding-left: 0.625rem;
  margin-top: 2.5rem;
}
.page-lower p {
  margin-top: 1rem;
}
.page-lower .cm__check {
  margin-top: 1.5rem;
}
.page-lower .cm__check + p {
  margin-top: 0.5rem !important;
}
.page-lower .cm__box {
  margin-top: 1.5rem;
}
.page-lower .cm__point {
  margin-top: 2rem;
}
.page-lower .cm__point__list {
  border: 2px solid #e04631;
  border-radius: 6px;
  padding: 1.875rem 0.9375rem 0.9375rem;
  margin-top: -1rem;
}
.page-lower .cm__point__list li {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1rem;
}
.page-lower .cm__point__list li + li {
  margin-top: 0.9375rem;
}
.page-lower .cm__point__list li::before {
  content: "";
  background-color: #e04631;
  max-width: 5px;
  min-width: 5px;
  height: 5px;
  border-radius: 100px;
  position: absolute;
  top: 0.475rem;
  left: 0;
}
.page-lower .cmn__table {
  margin-top: 1.5rem;
  width: 100%;
  display: flex;
  margin-top: 0.625rem;
  border: 1px solid #333;
  border-right: 0;
  flex-wrap: wrap;
}
.page-lower .cmn__table dl {
  flex: initial;
  max-width: 50%;
  width: 100%;
  border-right: 1px solid #333;
}
.page-lower .cmn__table dl:nth-of-type(n + 3) {
  border-top: 1px solid #333;
}
.page-lower .cmn__table dt {
  background-color: #f5f5ef;
  text-align: center;
  font-size: 0.875rem;
  font-weight: bold;
}
.page-lower .cmn__table dd {
  text-align: center;
  padding: 0.625rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100% - 20px);
}
.page-lower .cmn__table dd p {
  margin-top: 0;
  font-size: 0.875rem;
}
.page-lower .cmn__table dl.size-full {
  width: 100%;
  max-width: 100%;
}
.cm__check {
  font-weight: bold;
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
}
.cm__check::before {
  content: "";
  display: inline-block;
  border-left: 2px solid #2e9f21;
  border-bottom: 2px solid #2e9f21;
  width: 0.812rem;
  height: 0.437rem;
  transform: rotate(-45deg);
  margin-top: 0.5em;
}
.cm__box {
  border: 1px solid #333;
  border-radius: 6px;
  padding: 0.9375rem;
  margin-top: 0.9375rem;
}

/* パンくず */
.pankuz {
  margin-bottom: 24px;
}
.pankuz.inner {
  padding-right: 0;
}
.pankuz__home {
  text-decoration: underline;
}
.pankuz ul {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: scroll;
}
.pankuz ul a {
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 4px;
  color: inherit;
}
.pankuz li {
  font-size: 14px;
  white-space: nowrap;
}
.pankuz ul a img {
  width: 20px;
  height: 20px;
}
.page-lower .inner {
  width: 1010px;
  padding: 0 15px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
}
.page-lower h1 {
  font-size: 2.1875rem;
}
.page-lower h1::before,
.page-lower h1::after {
  width: 26.25rem;
  height: 3.625rem;
  background-image: url(../img/icon_dot_pc.svg);
}
.page-lower h1::before {
  left: 0;
}
.page-lower h1::after {
  right: 0;
}
.page-lower h2 {
  font-size: 1.5rem;
}
.page-lower .cmn__table {
  flex-wrap: nowrap;
}
.page-lower .cmn__table dl {
  flex: 1;
}
.page-lower .cmn__table dl:nth-of-type(n + 3) {
  border-top: none;
}
.page-lower .cm__point__list {
  padding: 1.875rem 1.25rem 1.5625rem;
}

/* パンくず */
.page-lower .pankuz ul {
  overflow-x: hidden;
}

/* ===========================================================
追加
============================================================ */
.marker {
  font-weight: bold;
  background: linear-gradient(transparent 65%, var(--Back) 65% 95%, transparent 95%);
}

/* ランキングキャンペーン */
.shop-box__campaign {
  width: 100%;
  margin: 35px auto 0;
  padding: 30px 15px 15px;
  box-sizing: border-box;
  border: 2px solid var(--Main);
  position: relative;
  background-color: #fff;
}

.shop-box__campaign-ttl {
  width: 265px;
  height: 40px;
  color: #fff;
  background-image: url(../img/ct_rankbox_campaign_sp.png);
  background-size: 265px 40px;
  position: absolute;
  top: -21px;
  left: 50%;
  margin-left: -132.5px;
  text-align: center;
  padding: 7px 0 0;
  box-sizing: border-box;
  font-weight: bold;
}

.shop-box__campaign-txt {
  text-align: center;
  color: var(--Main);
  font-weight: bold;
  line-height: 1.5;
  margin: 5px auto 10px;
}

.shop-box__campaign a {
  width: 100%;
  margin: 10px auto 0;
}

.shop-box__campaign a img {
  width: 100%;
  vertical-align: bottom;
}
.shop-box__campaign {
  width: 660px;
  margin: 50px auto 0;
  padding: 30px 15px;
  box-sizing: border-box;
  border: 2px solid var(--Main);
  position: relative;
  background-color: #fff;
}

.shop-box__campaign-ttl {
  width: 400px;
  height: 42px;
  color: #fff;
  background-image: url(../img/ct_rankbox_campaign_pc.png);
  background-size: 400px 42px;
  position: absolute;
  top: -21px;
  left: 50%;
  margin-left: -200px;
  text-align: center;
  padding: 7px 0 0;
  box-sizing: border-box;
  font-weight: bold;
}

/* 検索結果出し分け */
.result .shop-box:not(.shop-box.gakki) .shop-box__campaign {
  display: none;
}
#CONTENTS > div > div.result__wrapper > div:nth-child(1) {
  background-color: var(--Back);
}
#CONTENTS > div > div.result__wrapper > div:nth-child(1) .shop-box__head::before {
  content: "";
  display: inline-block;
  background-image: url(../img/cm_ico_rankingbadge01.svg);
  background-size: 112px 112px;
  width: 112px;
  height: 112px;
}

.page-lower .shop-box__img {
  width: 600px;
  aspect-ratio: 600/298;
}

/* ===========================================================
20231127追加
============================================================ */
.way-table {
  table-layout: fixed;
  border-collapse: collapse;
  width: 640px;
  margin: 24px auto 0;
}

.way-table th,
.way-table td {
  border: 1px solid var(--Text);
  padding: 10px;
}

.way-table thead th {
  background: var(--gray);
  padding: 4px 10px;
}

.way-table thead th:first-child {
  width: 33%;
}

.way-table tbody th {
  padding-bottom: 12px;
}

.way-table tbody tr:first-child th,
.way-table tbody tr:first-child td {
  background: var(--Back);
}

.way-table__img {
  position: relative;
  margin-top: 12px;
}

.way-table__img p {
  font-size: 18px;
  /* -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff; */
  text-shadow: 2px 2px 1px #fff, -2px -2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, 2px 0 1px #fff, -2px 0 1px #fff, 0 2px 1px #fff, 0 -2px 1px #fff;
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.way-table__img img {
  width: 180px;
  height: auto;
}

.way-table tbody tr:first-child .way-table__img {
  margin-top: 16px;
}

.way-table tbody tr:first-child .way-table__img p {
  font-size: 22px;
  color: var(--Main);
  text-shadow: 2px 2px 1px #fff, -2px -2px 1px #fff, -2px 2px 1px #fff, 2px -2px 1px #fff, 2px 0 1px #fff, -2px 0 1px #fff, 0 2px 1px #fff, 0 -2px 1px #fff;
  top: -20px;
}

.red {
  font-weight: bold;
  color: var(--Main);
}

/* ===========================================================
20231211追加
============================================================ */
/* 検索 - 地域 */
.area_select {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.form__select {
  /* width: calc((100% - 1.0625rem) / 2);
  max-width: 416px; */
  width: 848px;
  position: relative;
}

/* .form__select::after {
  content: "";
  display: inline-block;
  border-right: 2px solid #707070;
  border-bottom: 2px solid #707070;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 33px;
  right: 14px;
  transform: translateY(-50%) rotate(45deg);
} */

.selectbox--area,
.selectbox--city {
  -webkit-appearance: none;
  appearance: none;
  color: var(--Text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  /* font-weight: bold; */
  line-height: 61px;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 100%;
  height: 61px;
  padding-left: 20px;
  margin: 0;
  background: url(../img/ct_icon_chevron_down.svg) no-repeat center right 20px / 16px, #fff;
  cursor: pointer;
}

.selectbox--area:hover,
.selectbox--city:hover {
  border: var(--Sub) 1px solid;
}

.selectbox--area:focus,
.selectbox--city:focus {
  outline: var(--Sub) 1px solid;
}

.selectbox--area.ng-not-empty,
.selectbox--city.ng-not-empty {
  border: var(--Sub) 1px solid;
}

#smword {
  position: relative;
  margin: 0 0 -200px;
}

#smword select:disabled {
  background: #ddd;
  cursor: default;
}

/* 検索 - 種類 */
.preflist {
  width: 848px;
  position: relative;
}

.dropdown_btn {
  appearance: none;
  color: var(--Text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  /* font-weight: bold; */
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 0.5rem;
  width: 100%;
  height: 61px;
  padding: 0 40px 0 20px;
  margin: 0;
  background: url(../img/ct_icon_chevron_down.svg) no-repeat center right 20px / 16px, #fff;
  cursor: pointer;
}

.dropdown_btn:hover,
.dropdown_btn.active,
.dropdown_btn.selected {
  border: 1px solid var(--Sub);
}

.dropdown_btn.selected .dropdown_btn_txt {
  display: none;
}

.dropdown_list {
  display: none;
  position: absolute;
  font-size: 1.1875rem;
  background-color: #fff;
  width: 100%;
  border-radius: 0.5rem;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.dropdown_list.show {
  display: block;
}

.preflist_item label {
  display: block;
  padding: 2px 20px 2px 56px;
  position: relative;
}

/* .preflist_item label.selected {
  background-color: #f1f1f1;
} */

.preflist_item label::before {
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%);
  border: 1px solid #d9d9d9;
  border-radius: 0.3125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #fff;
  content: "";
  box-shadow: 0 0.1875rem 0.3125rem 0 rgba(46, 46, 66, 0.08);
}

.preflist_item label.selected::before {
  background-color: var(--Sub);
}

.preflist_item label.selected::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.125rem);
  left: 1.75rem;
  transform: translateY(-50%) rotate(-50deg);
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  border-radius: 0.0625rem;
  width: 0.75rem;
  height: 0.5rem;
}

.preflist_item label:hover {
  background-color: #f1f1f1;
}

.form__btn {
  display: flex;
  justify-content: space-between;
  padding-right: 32px;
}

.form__btn div {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form__reset {
  font-size: 16px;
  font-weight: bold;
  color: var(--Text);
  display: inline-block;
  background: #fff;
  border: 1px solid var(--Text);
  border-radius: 0.3125rem;
  padding: 16px 20px;
  cursor: pointer;
}

.form__count {
  font-weight: bold;
}

.form__fukidashi {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: var(--Main);
  border-radius: 2px;
  padding: 2px 12px;
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
}

.form__fukidashi::after {
  content: "";
  display: inline-block;
  border-top: 8px solid var(--Main);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.shop-box__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 16px;
}

.shop-box__tag li {
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background: var(--Main);
  border-radius: 16px;
  padding: 4px 12px;
  opacity: 0.4;
}

.shop-box__tag li.on {
  opacity: 1;
}

.shop-box__recommend2 {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-top: 10px;
}

.shop-box__recommend2-ttl {
  font-size: 18px;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
  /* padding-bottom: 12px;
  border-bottom: 1px solid var(--Text); */
}

.shop-box__recommend2-ttl:not(:first-of-type) {
  margin-top: 20px;
}

.shop-box__recommend2-ttl::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/cm_ico_point.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}

.shop-box__recommend2-txt {
  margin-top: 8px;
}

/* 20231222 バイセル 買取実績追加 */
.shop-box__jisseki-ttl {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 30rem;
}
.shop-box__jisseki-list {
  margin-top: 2rem;
}
/* ========================================================
  20231227 口コミ追加
=========================================================*/
.shop-box__kuchikomi-wrap > div > div {
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop-box__kuchikomi-ttl {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: 30rem;
  text-align: right;
}
.shop-box__kuchikomi-ttl small {
  font-size: small;
}
.shop-box__kuchikomi-item-01,
.shop-box__kuchikomi-item {
  display: flex;
  gap: 20px;
  background: var(--gray);
  margin-top: 1rem;
  padding: 10px 20px;
  border-radius: 8px;
}
.shop-box__kuchikomi-item-01 {
  background: #fff;
}
.shop-box__kuchikomi-img {
  width: 84px;
  object-fit: contain;
}
.shop-box__kuchikomi-user {
  background: #9a7b23;
  color: #fff;
  padding: 4px 0;
  max-width: 200px;
  text-align: center;
  border-radius: 8px;
}
/* .shop-box__kuchikomi-txt{
  margin-top: 0.5rem;
} */

.shop-box__kuchikomi .ranking__btn {
  margin-top: 1rem;
}
.shop-box__kuchikomi .ranking__more {
  gap: 0;
  margin-top: 0;
}
/* ========================================================
  口コミ検索結果CSS
=========================================================*/
.result__kuchikomi {
  display: none;
}
.readmore {
  display: block;
  position: relative;
  box-sizing: border-box;
}
.readmore-content {
  position: relative;
  overflow: hidden;
  height: 100px;
}
.readmore-content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  width: 100%;
  content: "";
  height: 115px;
  background-color: #fffed9;
}
.readmore-label {
  display: table;
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  z-index: 2;
  max-width: 20.9375rem;
  width: 100%;
  margin: 2rem auto 0;
  padding: 1.375rem 3.75rem;
  background-color: var(--gray);
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  outline: 1px solid var(--Text);
  box-shadow: 0 0 1rem 0 rgba(0, 0, 0, 0.1);
}
.readmore-label:before {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) rotate(90deg);
  border-radius: 4px;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--Text);
  content: "";
}
.readmore-label:after {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--Text);
  content: "";
}
.readmore-check {
  display: none;
}
.readmore-check:checked ~ .readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.readmore-check:checked ~ .readmore-label:before {
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  border-radius: 4px;
  width: 1.125rem;
  height: 0.125rem;
  background-color: var(--Text);
  content: "";
}
.readmore-check:checked ~ .readmore-content {
  height: auto;
}
.readmore-check:checked ~ .readmore-content::before {
  display: none;
}
.result__kuchikomi .ranking__more {
  gap: 0;
  margin-top: 0;
}
#CONTENTS > div > div.result__wrapper > div.id_1.buysell.shop-box > div.shop-box__inner > .result__kuchikomi {
  display: block;
}

/* ========================================================
  キャンペーン情報
=========================================================*/
.campaign {
  width: 640px;
  background: var(--Back);
  padding: 20px 0 30px;
  margin: 80px auto 0;
}

.campaign__inner {
  padding: 0 72px;
  margin-top: 24px;
}

.campaign__ttl {
  width: 460px;
  margin: 0 auto;
}

.campaign__wrap--no1 {
  background: #fff;
  /* border: 2px solid var(--Main); */
  border-radius: 16px;
  padding: 16px 8rem;
}

.campaign__card--no1 {
  /* background: #fff;
  border-radius: 0.5rem;
  padding: 1rem; */
}

.campaign__txt {
  font-size: 14px;
  margin-top: 8px;
}

.campaign__wrap {
  display: flex;
  gap: 1rem;
  padding: 0 8px;
  margin-top: 1.5rem;
  /* padding: 24px 36px 24px 36px; */
}

.campaign__card {
  background: #fff;
  /* border: 1px solid var(--Text); */
  border-radius: 16px;
  width: calc((100% - 1rem) / 2);
  padding: 8px 16px 16px 16px;
}

a.campaign__card-link {
  display: block;
  transition: 0.3s;
  margin-top: 4px;
}

a.campaign__card-link:hover {
  opacity: 0.6;
}

a.campaign__card-link--txt {
  font-size: 14px;
  font-weight: bold;
  color: var(--Text_blue);
  text-decoration: underline;
}

.campaign__card--no1 a.campaign__card-link--txt {
  font-size: 18px;
}

a.campaign__card-link--txt:hover {
  text-decoration: none;
}
/* ========================================================
  20240122 リアルボイス改修
=========================================================*/
.realvoice .inner {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.realvoice__wrap {
  width: 40%;
  margin: 0;
}
.realvoice__txt {
  font-size: 15px;
  margin: 4px auto 0;
}
@media screen and (max-width: 768px) {
  .realvoice .inner {
    flex-direction: column;
    gap: 10px;
  }
  .realvoice .inner img {
    display: block;
    width: 70%;
    margin: 0 auto;
  }
  .realvoice__txt {
    font-size: 14px;
  }
}
/* ========================================================
  20241105 ランキング内ポイント改修
=========================================================*/
.ranking__recommend {
  background-color: #fff;
  margin-top: 30px;
}
.ranking__recommend-inner {
  padding: 20px;
}
.ranking__recommend-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.ranking__recommend-wrap:nth-child(3) {
  margin-bottom: 0;
}
.ranking__recommend-wrap img {
  max-width: 315px;
}
.ranking__recommend-list_ttl {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-left: 32px;
}
.ranking__recommend-list_ttl::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../img/cm_ico_point.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.ranking__recommend-list_txt {
  margin-top: 8px;
}

/* ===========================================================
  howto
============================================================ */
.howto {
  margin-top: 15px;
}
.howto .inner {
  padding-right: 0px;
  padding-left: 0px;
}
.howto__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
/* ========================================================
20241126 買取相場金額タブ追加
=========================================================*/
.price {
  margin-top: 15px;
}
.price__ttl {
  display: block;
  margin: auto;
  width: 40rem;
}
.price__tab {
  margin-top: 15px;
}
.tab-btn {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 10px;
  margin: 16px 20px 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.tab-btn li {
  text-align: center;
  padding: 12px;
  cursor: pointer;
  position: relative;
  background-color: var(--brown);
  color: #fff;
  border-radius: 0.5rem 0.5rem 0 0;
}
.tab-btn li span {
  margin-left: 20px;
}
.tab-btn li::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  /* background-size: cover;
  background-position: center; */
  position: absolute;
  top: 5px;
  left: 45px;
}
.tab-btn li[data-tab="guitar"]::before {
  background-image: url('../img/cm_ico_tab_guitar.svg');
}
.tab-btn li[data-tab="base"]::before {
  background-image: url('../img/cm_ico_tab_base.svg');
}
.tab-btn li[data-tab="amp"]::before {
  background-image: url('../img/cm_ico_tab_audio.svg');
}
.tab-btn li[data-tab="wind"]::before {
  background-image: url('../img/cm_ico_tab_wind.svg');
}
.tab-btn li.active {
  background-color: #fff;
  color: var(--Text);
  border: 1px solid var(--brown);
  font-weight: bold;
}
.tab-btn li.active::after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 100%;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.tab-content {
  display: none;
  padding: 20px;
}
.tab-content.active {
  display: block;
  border: 1px solid var(--brown);
}
.tab-content dl {
  display: grid;
  grid-template-columns: 30% 20% 30% 20%;
  grid-row-gap: 10px;
}
.tab-content dd {
  text-align: right;
  color: var(--Main);
  font-weight: bold;
}
.tab-content.active > dl > dd:nth-child(4n-2) {
  margin-right: 15px;
}
/* オーディオページのタブ */
.audio .tab-btn,
.audio_yss .tab-btn {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.audio .tab-btn li::before,
.audio_yss .tab-btn li::before {
  left: 65px;
}

.audio .tab-btn li[data-tab="speaker"]::before,
.audio_yss .tab-btn li[data-tab="speaker"]::before {
  background-image: url('../img/cm_ico_tab_audio.svg');
}

.audio .tab-btn li[data-tab="amp"]::before,
.audio_yss .tab-btn li[data-tab="amp"]::before {
  background-image: url('../img/cm_ico_tab_amp.svg');
}

.audio .tab-btn li[data-tab="player"]::before,
.audio_yss .tab-btn li[data-tab="player"]::before {
  background-image: url('../img/cm_ico_tab_player.svg');
}

.audio .tab-content img,
.audio_yss .tab-content img {
  aspect-ratio: 918 / 327;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.audio .tab__attention,
.audio_yss .tab__attention {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  text-align: right;
}
/* ========================================================
20241126 買取相場金額タブ下CTA比較表
=========================================================*/
.cta {
  margin-top: 30px;
}
.cta__arrow img {
  display: block;
  width: 250px;
  margin: 0 auto;
}
.cta__table {
  margin-top: 30px;
}
.cta__ttl {
  position: relative;
}
/* cta テーブル */
.cta-table {
  width: 100%;
  table-layout: fixed;
}
.cta-table,
.cta-table th,
.cta-table td {
  border: 1px solid var(--Text);
  border-collapse: collapse;
}
.cta-table th {
  padding: 0.75rem;
  background-color: var(--gray);
  font-weight: bold;
}
.cta-table td {
  padding: 8px 0;
}
.cta__table > tbody > tr:nth-child(2) {
  background-color: var(--Back);
}
.cta-table__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
.cta-table__link-shop {
  width: 7.5rem;
  height: 2.5rem;
  object-fit: contain;
}
.cta-table__ttl {
  display: block;
  margin-top: 5px;
  color: var(--Text_blue);  
  font-weight: bold;
  text-align: center;
  text-decoration: underline;
}
.cta-table__items {
  text-align: center;
}
.cta-table__item {
  margin-top: 5px;
}
.verygood::before {
  background: url(../img/cm_ico_doublecircle.svg);
}
.good::before {
  background: url(../img/cm_ico_circle.svg);
}
.bad::before {
  background: url(../img/cm_ico_tri.svg);
}
.verygood::before,
.good::before,
.bad::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-size: 48px 48px;
  margin: 0 auto;
}
.cta-table__btn {
  display: grid;
  place-items: center;
  position: relative;
}
.cta .table-btn {
  position: relative;
  width: 80%;
}
.cta .table-btn::after {
  content: "";
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: 14px;
  width: 14px;
  height: 14px;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 18px;
  right: 6px;
}
/* ========================================================
20241210 ソート機能追加
=========================================================*/
.options_accordion_ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 15px;
  box-sizing: border-box;
  justify-content: space-between;
  width: 100%;
  padding: 15px;
  margin-top: 20px;
}
.options_accordion_ul li {
  text-align: center;
  border-radius: 4px;
  background-color: #fff;
}
.options_accordion_ul li.active {
  background-color: var(--Main);
}
.options_accordion_ul li.active a {
  color: #fff;
  font-weight: bold;
  border: none;
  opacity: 1;
}
.options_accordion_ul li a {
  display: block;
  text-decoration: none;
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  color: var(--Text);
  border-radius: 4px;
  border: 1px solid var(--Text);
}
/* yss対応 */
.yss #CONTENTS > div > div.result__wrapper > div:nth-child(1),
.guitar_yss #CONTENTS > div > div.result__wrapper > div:nth-child(1),
.audio_yss #CONTENTS > div > div.result__wrapper > div:nth-child(1) {
  background-color: transparent;
}
.yss #CONTENTS > div > div.result__wrapper > div:nth-child(1) .shop-box__head::before,
.guitar_yss #CONTENTS > div > div.result__wrapper > div:nth-child(1) .shop-box__head::before,
.audio_yss #CONTENTS > div > div.result__wrapper > div:nth-child(1) .shop-box__head::before {
  display: none;
}
/* バイセルのみバナー下余白いれる */
.result__wrapper .buysell .shop-box__lead {
  margin-top: 20px;
}

/* ========================================================
20250124 検索結果上部 あなたが選んだ条件 追加
=========================================================*/
.searchConditions {
  border: 2px solid var(--brown);
  padding: 30px 20px 20px;
  border-radius: 10px;
  position: relative;
  margin-top: 40px;
}
.searchConditions__ttl {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: fit-content;
  background-color: var(--brown);
  border-radius: 100vmax;
  color: #fff;
  padding: 5px 20px;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
}
.searchConditions__wrap {
  display: grid;
  gap: 6px;
}
.searchConditions__wrap dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  font-weight: bold;
}
.searchConditions__wrap dt {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px;
}
.searchConditions__wrap dt::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--brown);
  border-radius: 50%;
  margin-top: calc(0.5lh - 4px);
}
/* ========================================================
20250128 相場CTA変更
=========================================================*/
.price_no1 .shop-box__txt{
	line-height: 2rem;
}
.price_no1 .shop-box__btn{
	margin-top: 0;
}

/* ========================================================
20250310 FV下のテーブル
=========================================================*/
.head-table {
  width: 100%;
  table-layout: fixed;
}
.head-table,
.head-table th,
.head-table td {
  border: 1px solid var(--Text);
  border-collapse: collapse;
}
.head-table th {
  width: 7.6rem;
  padding-top: 2.125rem;
  padding-bottom: 2.125rem;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375;
  text-align: left;
  z-index: 1;
}
.head-table td:first-of-type {
  background-color: var(--Back);
}
.head-table td {
  position: relative;
  padding: 0 4px;
}
.head-table tr:last-of-type td {
  padding: 14px 4px;
  vertical-align: bottom;
  text-align: center;
}
.head-table tr:last-of-type .head-table__txt {
  margin-bottom: 0.25em;
}
.head-table__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.head-table__txt {
  font-size: 1rem;
  line-height: 1.375;
  text-align: center;
  font-weight: bold;
  display: block;
  text-decoration: underline;
  margin-bottom: 14px;
}
.head-table__txt--sm {
  font-size: 0.875rem;
  line-height: 1.4285714286;
}
.head-table__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-block: 0.75rem;
  height: 90px;
}
.head-table__link:hover .head-table__link-txt {
  text-decoration: none;
}
.head-table__shop {
  width: 10rem;
  height: auto;
  object-fit: contain;
}
.head-table-wrap tr:nth-child(1) td:nth-child(3) .head-table__shop{
  width: 8rem;
}
.head-table__ttl {
  margin-top: auto;
  color: var(--Text_blue);
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.8181818182;
  text-decoration: underline;
  display: block;
  text-align: center;
}
.head-table__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.head-table__item {
  position: relative;
  font-size: 1rem;
  line-height: 1.3;
}
.head-table__ico {
  display: block;
  margin: auto;
  width: 3rem;
}
.head-table .table-btn {
  position: relative;
  padding-block: 0.5rem;
  padding-right: 2.5625rem;
  line-height: 1.3;
}
.head-table tr td:first-of-type .table-btn{
  background-color: #ff6b24;
  box-shadow: 0 0.25rem 0 #bb3f04;
}
.head-table .table-btn::before {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  translate: 0 -50%;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-top: 0.125rem;
}
.head-table tr td:first-of-type .table-btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 25px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 0.5) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@keyframes shiny {
  0% {
    left: -20%;
  }
  10% {
    left: 120%;
  }
  100% {
    left: 120%;
  }
}
/* ========================================================
20250312 おすすめコンテンツ改修
=========================================================*/
.osusume__wrap{
  background-color: #eaebe3 ;
}
.osusume__box__wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 30px;
  gap: 14px;
  padding: 0 20px;
}
.osusume__box{
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  padding: 20px;
  row-gap: 0px;
  background-color: #fff;
  position: relative;
}
.osusume__box:first-of-type{
  border: solid 1px #000;
  background-color: var(--Back);
}
.osusume__box:first-of-type::before{
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rankingbadge01.svg) no-repeat center;
  background-size: 100%;
  width: 70px;
  height: 70px;
  top: -5%;
  left: -4%;
}
.osusume__box:nth-of-type(2)::before{
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rankingbadge02.svg) no-repeat center;
  background-size: 100%;
  width: 70px;
  height: 70px;
  top: -5%;
  left: -4%;
}
.osusume__box:nth-of-type(3)::before{
  position: absolute;
  content: "";
  background: url(../img/cm_ico_rankingbadge03.svg) no-repeat center;
  background-size: 100%;
  width: 70px;
  height: 70px;
  top: -5%;
  left: -4%;
}
.osusume__box__logo{
  height: 64px;
  width: 228px;
  object-fit: contain;
  display: block;
  margin-inline: auto;
}
.osusume__box:nth-of-type(2) .osusume__box__logo {
  height: 55px;
  width: 178px;
  margin-top: 4px;
}
.osusume__box__lists{
  display: grid;
  grid-template-rows: repeat(3, 1fr);
  row-gap: 12px;
  margin-top: 16px;
}
.osusume__box__list__wrap{
  display: grid;
  grid-template-columns: 34% 1fr;
  column-gap: 10px;
  font-size: 16px;
}
.osusume__box__list__dt{
  border: solid 1px #000;
  border-radius: 20px;
  font-weight: bold;
  text-align: center;
  padding: 4px 6px;
  background-color: #512615;
  color: #fff;
}
.osusume__box__list__dd{
  align-self: center;
}
.osusume__box__ico{
  width: 22px;
}
.osusume__box .table-btn{
  position: relative;
  line-height: 1.5;
}
.osusume__box:first-of-type .table-btn{
  background-color: #ff6b24;
  box-shadow: 0 0.25rem 0 #bb3f04;
}
.osusume__box .table-btn::before {
  position: absolute;
  top: 50%;
  right: 0.625rem;
  translate: 0 -50%;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../img/cm_ico_arrow_right.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  margin-top: 0.125rem;
}
.osusume__img.lower{
  margin-top: 40px;
}/* ========================================================
20250327 おすすめコンテンツ改修
=========================================================*/
.osusume__tx__link{
  text-align: center;
  text-decoration: underline;
  font-weight: bold;
  margin-top: 6px;
}
.osusume__cta__catch{
  text-align: center;
  margin: 16px auto 6px;
}
.osusume__cta__catch p{
  color: red;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline;
}
.osusume__cta__catch p::before{
  position: absolute;
  content: "";
  background: #000;
  transform: rotate(-30deg);
  width: 1px;
  height: 24px;
  left: -10%;
}
.osusume__cta__catch p::after{
  position: absolute;
  content: "";
  background: #000;
  transform: rotate(30deg);
  width: 1px;
  height: 24px;
  right: -10%;
}
