@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

  *,:after,:before{box-sizing:border-box}
  a,body,dd,dl,dt,figure,h1,h2,h3,h4,h5,h6,hr,html,li,p,table,td,th,tr,ul,ol{margin:0;padding:0}
  a{text-decoration:none}
  /* テキストリンクは下線でリンクが分かるようにする（ボタン類は除外） */
  a[href]:not([class*="btn"]) { text-decoration: underline; }
  li{list-style:none}
  img{height:auto;display:block}
  img,textarea{width:100%}
  button:focus{outline:0}
  fieldset{margin:0;padding:0;border:none;min-inline-size:0;}
  legend{margin:0;padding:0;border:none;font:inherit;color:inherit;float:none;width:100%;}

/* ==========================================================================
ベース設定
=========================================================================== */
:root {
  /* カラー */
  --Text: #444;
  --Text_color: #444;
  --Text_link: #1A0DAB;
  --Main: #444;
  --Accent: #ff6347;
  --Back: #F5F5F5;
  --Back_yellow: #FFFEE1;
  --green01: #5A9D00;
  --green02: #AAE261;
  --red01: #ff6347;
  --red02: #FF9090;
  --grey: #828282;

  /* フォント */
  --Font_normal: 'Noto Sans JP', sans-serif;
}

.html {
  font-size: 17px;
  overflow-x: hidden;
}

#wpadminbar {
  z-index: 10000000!important;
}

body {
  font-family: var(--Font_normal);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--Text);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-optical-sizing: auto;
  font-feature-settings: "palt";
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  background: #fff;
  width: 100%;
  counter-reset: number 0;
  position: relative;
  overflow-x: hidden;
}

.body small {
  font-size: max(70%, 10px);
}

.body a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--Text_link);
  transition: all 0.3s;
}

.forPC {
  display: none;
}

.forPC-inline {
  display: none;
}  

.forSP {
  display: block;
}

.forSP-inline {
  display: inline;
}


/* ==========================================================================
共通パーツ
=========================================================================== */
.inner {
  padding: 0 2.67vw;
  margin: 0 auto;
}

.bold {
  font-weight: 700;
}

.accent {
  color: var(--Accent);
}

.btn,
a.btn {
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.2);
  width: 100%;
  padding: 8px 16px;
  position: relative;
  overflow: hidden;
}

.btn--green,
a.btn--green {
  background: radial-gradient(100% 100% at 100% 0%, var(--green02) 0%, var(--green01) 100%);
}

.btn--green:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 50px;
    height: 50px;
    background-image: linear-gradient(100deg,rgba(255,255,255,0) 10%,rgba(255,255,255,1) 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% {
        transform: scale(0) rotate(25deg);
        opacity: 0
    }

    50% {
        transform: scale(1) rotate(25deg);
        opacity: 1
    }

    100% {
        transform: scale(50) rotate(25deg);
        opacity: 0
    }
}


.btn--red,
a.btn--red {
  background: radial-gradient(100% 100% at 100% 0%, var(--red02) 0%, var(--red01) 100%);
}

.btn--grey,
a.btn--grey {
  background: var(--grey);
}

.btn--arrow::after,
a.btn--arrow::after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_right_circle.svg) no-repeat center / contain;
  width: 0.875rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
}

.btn--arrow02::after,
a.btn--arrow02::after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_right_circle.svg) no-repeat center / contain;
  width: 0.75rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

.sectionTtl {
  max-width: 504px;
  padding: 0 0.625rem;
  margin: 0 auto;
}

.table {
  table-layout: fixed;
  border-spacing: 0;
  width: 100%;
}

.table th,
.table td {
  font-weight: 400;
  text-align: center;
  color: #494949;
  border-top: 1px solid #5B5B5B;
  border-left: 1px solid #5B5B5B;
  padding: 0.625rem;
}

.table tr:first-of-type th:first-child,
.table tr:first-of-type td:first-child {
  border-radius: 0.25rem 0 0 0;
}

.table tr:first-of-type th:last-child,
.table tr:first-of-type td:last-child {
  border-radius: 0 0.25rem 0 0;
}

.table tr:last-of-type th:first-child,
.table tr:last-of-type td:first-child {
  border-radius: 0 0 0 0.25rem;
}

.table tr:last-of-type th:last-child,
.table tr:last-of-type td:last-child {
  border-radius: 0 0 0.25rem 0;
}

.table tr th:last-child,
.table tr td:last-child {
  border-right: 1px solid #5B5B5B;
}

.table tr:last-of-type th,
.table tr:last-of-type td {
  border-bottom: 1px solid #5B5B5B;
}

.table th {
  background: var(--Back);
}

.table td {
  background: #fff;
}

.hanamaru,
.doubleCircle,
.circle,
.triangle {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: auto;
  height: 32px;
  aspect-ratio: 1;
  margin: 0 auto;
}

.hanamaru {
  background-image: url(../img/hanamaru.png);
}

.doubleCircle {
  background-image: url(../img/verygood.png);
}

.circle {
  background-image: url(../img/good.png);
}

.triangle {
  background-image: url(../img/notgood.png);
  aspect-ratio: 37 / 32;
}

.hanamaru + p,
.doubleCircle + p,
.circle + p,
.triangle + p {
  margin-top: 4px;
}

.triangle + p {
  margin-top: 0;
}

.tab__menu-item {
  cursor: pointer;
}

.tab__content-box {
  display: none;
}

.tab__content-box.is-show {
  display: block;
}

.accBtn {
  font-family: var(--Font_normal);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main);
  border: none;
  border-radius: 0.25rem;
  width: 100%;
  height: 56px;
  margin: 0 auto;
  position: relative;
  cursor: pointer;
}

.accBtn::before {
  content: "4位以下を見る";
  display: inline-block;
}

.accBtn.is-active::before {
  content: "4位以下を閉じる";
}

.accBtn::after {
  content: "+";
  font-size: 0.875rem;
  line-height: 1;
  width: 1em;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
}

.accBtn.is-active::after {
  content: "−";
}

.accCont {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows .3s ease;
}

.accCont.is-open {
  grid-template-rows: 1fr;
  overflow: visible;
}

.accCont__inner {
  overflow: hidden;
}

.accCont.is-open .accCont__inner {
  overflow: visible;
}


/* ==========================================================================
ヘッダー
=========================================================================== */
.header {
  padding: 0.4rem 0.75rem;
}

.header__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.header__logo {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--Main);
}


/* ==========================================================================
トップページ
=========================================================================== */
.mv__inner {
  max-width: 1000px;
  margin: 0 auto;
}

.update {
  margin-top: 0.2rem;
}

.update__inner {
  max-width: 1000px;
  padding: 0 2vw 0 10vw;
  margin: 0 auto;
}

.update__txt {
  font-size: 13px;
  line-height: 1.4;
  color: var(--Text_color);
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.update__txt::before {
  content: "";
  display: inline-block;
  background: url(../img/update_icon.svg) no-repeat center / contain;
  width: 16px;
  aspect-ratio: 1;
}

.update__txt time {
  font-weight: 700;
  color: inherit;
}

/* おすすめ */
.recommend {
  margin-top: 1rem;
}

.recommend__inner {
  max-width: 590px;
}

.recommend__list {
  /* display: grid;
  grid-template-columns: auto 1fr;
  grid-auto-rows: 1fr;
  gap: 0.75rem;
  margin-top: 0.75rem; */
}

.recommend__list-item {
  /* display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  gap: 0.5rem; */
  border: 0.0625rem solid #ddd;
  padding: 1.3rem 0.625rem 0.625rem;
  margin-top: 10px;
  /* position: relative; */
}

.recommend__list-item:nth-of-type(1) {
  background: #fffde7;
  border: 0.125rem solid #BE3329;
}

/* .recommend__list-item::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2.5rem;
  aspect-ratio: 1;
  position: absolute;
  top: 1.875rem;
  left: 0.625rem;
} */

/* .recommend__list-item:nth-of-type(1)::before {
  background-image: url(../img/rank01.png);
  width: 3rem;
  top: 1.6875rem;
  left: 0.375rem;
} */

/* .recommend__list-item:nth-of-type(2)::before {
  background-image: url(../img/rank02.png);
}

.recommend__list-item:nth-of-type(3)::before {
  background-image: url(../img/rank03.png);
} */

/* .recommend__list-item::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 2rem;
  aspect-ratio: 32 / 24;
  position: absolute;
  top: 0.5625rem;
  left: 0.9375rem;
} */

/* .recommend__list-item:nth-of-type(1)::after {
  background-image: url(../img/animal_img_01.png);
  width: 1.125rem;
  aspect-ratio: 18 / 22;
  top: 0.4375rem;
  left: 1.3125rem;
}

.recommend__list-item:nth-of-type(2)::after {
  background-image: url(../img/animal_img_02.png);
}

.recommend__list-item:nth-of-type(3)::after {
  background-image: url(../img/animal_img_03.png);
} */

/* .recommend__list-item-head {
  background: red;
  position: relative;
  padding-left: 18%;
} */

/* .recommend__list-item-head::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 56px;
  aspect-ratio: 1;
  position: absolute;
  left: 0;
} */

/* .recommend__no1::before {
  background-image: url(../img/rank01.png);
  
} */

/* .recommend__list-item-head::after {
  content: '';
  position: absolute;
}
.recommend__no1::after {
  background-image: url(../img/animal_img_01.png);
  width: 1.125rem;
  aspect-ratio: 18 / 22;
  top: 0.4375rem;
  top: -1.2rem;
} */

a.recommend__list-item-name {
  /* font-size: 0.625rem; */
  line-height: 1.2;
  display: inline-block;
  margin-right: auto;
}

a.recommend__list-item-name:has(br) {
  justify-self: left;
  padding-left: 0.3125rem;
}

a.recommend__list-item-logo,
.recommend__list-item-logo {
  display: block;
  width: 5.5rem;
}

.recommend__list-item-wrap {
  /* display: grid;
  grid-template-rows: minmax(1.875rem, auto) 2rem;
  gap: 0.25rem; */
}

.recommend__list-item-txt {
  font-size: 12px;
  line-height: 1.6;
  align-self: center;
}

.recommend__list-item-btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.recommend__list-item-btns a.btn {
  font-size: 1rem;
  justify-content: center;
  box-shadow: 0px -1.69px 0px 0px rgba(58, 65, 111, 0.5) inset;
  padding: 0.6875rem 1.2rem 0.6875rem 0.625rem;
  text-align: center;
  line-height: 1.1;
}

a.recommend__list-item-scrollBtn::after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_down_circle.svg) no-repeat center / contain;
  width: 0.75rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
}

/* 比較ボックス */
.hikaku-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 10px;
    margin-bottom: 10px;
}

.hikaku-box dl {
    border: 1px solid #e3e3e3;
}

.hikaku-box dt {
    font-weight: 400;
    background: var(--Back);
    padding: .5em;
    text-align: center;
    font-size: 0.8rem;
}

.hikaku-box dd {
    padding: .5em;
    font-size: 0.875rem;
    font-weight: 700;
    text-align: center;
    color: #444;
}
.hikaku-box dd p {
  font-size: 3.3vw;
}

.symbol {
    width: 50%;
    max-width: 50px;
    margin-bottom: .4em;
    margin: 0 auto .3rem;
}

.recommend__list-item:nth-of-type(n+2) {
  padding-top: 0.5rem;
}

.recommend__list-item:nth-of-type(n+2) .hikaku-box dd {
  padding: .25em .5em;
}

@media screen and (min-width: 769px) {
  .hikaku-box dd p {
    font-size: 16px;
  }
}

/* キャンペーン */
.campaign {
  padding: 0 0.625rem;
  margin-top: 5rem;
  position: relative;
}

.campaign__inner {
  max-width: 720px;
}

.campaign__ttl {
  width: calc(100% - 0.625rem * 2);
  max-width: 532px;
  position: absolute;
  top: -3.4375rem;
  left: 50%;
  transform: translateX(-50%);
}

.campaign__content {
  background-image: url(../img/campaign_line_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* padding: 3.625rem 1.25rem 2rem; */
  padding: 11vw 5vw 7vw;
}

.campaign__date {
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  color: var(--Accent);
}

.campaign__name {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/campaign_name_bg.svg) no-repeat center / 100% 100%;
  height: 2rem;
  margin-top: 1.25rem;
}

.campaign__name-txt {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  background: #fff;
}

.campaign__name-txt::before {
  content: "【";
}

.campaign__name-txt::after {
  content: "】";
}

.campaign__bnr {
  display: block;
  margin-top: 1rem;
}

.pointList {
  padding-left: 0.3125rem;
  margin-top: 1rem;
}

.pointList-item {
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: justify;
  padding-left: 1.5rem;
  position: relative;
}

.pointList-item:nth-of-type(n+2) {
  margin-top: 0.75rem;
}

.pointList-item::before {
  content: "";
  display: inline-block;
  background: url(../img/check_icon.svg) no-repeat center / contain;
  width: 1.25rem;
  aspect-ratio: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.campaign__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 1.25rem auto 0;
  padding-bottom: 2rem;
}

.campaign__btn-catch {
  font-size: 14px;
  font-weight: 700;
  color: var(--Text);
}

.campaign__ctaBtn--wide {
  width: 100%;
  max-width: 320px;
  font-size: 1rem !important;
  padding: 0.9rem 1rem !important;
  flex-direction: column !important;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.cta-line1 {
  display: block;
  font-size: 0.8rem;
  margin-bottom: 0.4rem;
}

.cta-line2 {
  display: block;
  font-size: 1rem;
}

.campaign__ctaBtn--wide svg {
  position: absolute;
  left: 1rem;
}

.campaign__btns a.btn {
  font-size: 0.75rem;
  flex-direction: column;
  align-items: center;
  gap: 0.3125rem;
}

.campaign__btns a.btn small {
  font-weight: 400;
  font-size: 0.625rem;
}

a.campaign__telBtn {
  padding: 0.625rem 0.625rem 0.625rem 1.8rem;
}

a.campaign__telBtn::before {
  content: "";
  display: inline-block;
  background: url(../img/tel_icon.svg) no-repeat center / contain;
  width: 1rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 0.5625rem;
  transform: translateY(-50%);
}

a.campaign__ctaBtn {
  padding: 0.625rem 0.625rem;
}

/* 選び方 */
.choice {
  background: var(--Main);
  padding: 16px 0 16px;
  margin-top: 24px;
}

.choice__inner {
  max-width: 792px;
}

.choice__content {
  padding-left: 5.33vw;
  padding-bottom: 14px;
  margin: 16px -2.67vw 0;
  overflow-x: auto;
}

.choice__list {
  display: flex;
  gap: 16px;
  position: relative;
}

.choice__list-item {
  background: url(../img/dot.svg) no-repeat left 8px top 8px / 4px auto,
              url(../img/dot.svg) no-repeat right 8px top 8px / 4px auto,
              url(../img/dot.svg) no-repeat left 8px bottom 8px / 4px auto,
              url(../img/dot.svg) no-repeat right 8px bottom 8px / 4px auto,
              #fff;
  width: 194px;
  padding: 20px 1rem;
  flex-shrink: 0;
  position: relative;
}

.choice__list-item:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 5.33vw;
  height: 1px;
}

.choice__list-item-ttl {
  width: 161px;
  margin: 0 auto;
}

.choice__list-item-catch {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  margin-top: 10px;
}

.choice__list-item-img {
  margin-top: 10px;
}

.choice__list-item-txt {
  font-size: 12px;
  line-height: 1.5;
  text-align: justify;
  margin-top: 10px;
}

/* 比較表 */
.compare {
  margin-top: 2.5rem;
}

.compare__inner {
  max-width: 672px;
}

.compare__content {
  padding-left: 2.67vw;
  padding-top: 2.2em;
  padding-bottom: 10px;
  margin: 0.75rem -2.67vw 0;
  overflow-x: auto;
}

.compare__table {
  --compare-sticky-first-col: 4rem;
  --compare-sticky-second-col: 8.75rem;
  width: 39rem;
}

.compare__table th {
  font-size: 11px;
  text-align: center;
  font-weight: 700;
  width: 4rem;
}

.compare__table-name {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  color: var(--Text_link);
  text-decoration: underline;
}

.compare__table td .compare__table-availability {
  font-size: 11px;
}

.compare__table-availability {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--green01);
  margin-top: 5px;
}

.compare__table-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green01);
  display: inline-block;
  flex-shrink: 0;
  animation: dot-pulse 1.6s ease-in-out infinite;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.compare__table td {
  font-size: 12px;
  text-align: center;
  padding: 10px 0;
  vertical-align: baseline;
}

/* 非固定セル: stacking contextを作らないよう position/z-index は設定しない */

.compare__table tr:last-of-type td {
  padding: 4px 8px 10px;
  vertical-align: top;
}

.compare__table tr td:first-of-type {
  font-weight: 700;
}

/* 比較表: 項目列 + 「楽器の買取屋さん」列を横スクロール時に固定 */
.compare__table tr > th:first-child,
.compare__table tr > td:first-child {
  position: sticky;
  left: 0;
  z-index: 40;
  width: var(--compare-sticky-first-col);
  min-width: var(--compare-sticky-first-col);
  max-width: var(--compare-sticky-first-col);
  background-color: var(--Back) !important;
  border-right: 1px solid #5B5B5B;
  top: 0;
  box-shadow: 4px 0 0 var(--Back);
}

.compare__table tr > td:nth-child(2) {
  position: sticky;
  left: var(--compare-sticky-first-col);
  z-index: 60;
  width: var(--compare-sticky-second-col);
  min-width: var(--compare-sticky-second-col);
  max-width: var(--compare-sticky-second-col);
  background-color: var(--Back_yellow) !important;
  border-left: 3px solid #e53e3e !important;
  border-right: 3px solid #e53e3e;
  top: 0;
}

.compare__table tr:first-of-type > td:nth-child(2) {
  z-index: 70;
  border-top: 3px solid #e53e3e;
}

.compare__table tr:last-of-type > td:nth-child(2) {
  border-bottom: 3px solid #e53e3e;
}

.compare__table-logo {
  display: block;
  margin: 0 auto;
}

.compare__table-logo.logo--gakkikaitori {
  width: 80px;
}

.compare__table-logo.logo--rakurakukaitori {
  width: 80px;
}

.compare__table-logo.logo--fukuchan {
  width: 80px;
}

.compare__table-logo.logo--buysell {
  width: 72px;
}

.compare__table-logo.logo--takamitsugakki {
  width: 72px;
}

.compare__table-catch {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.compare__td--no1 {
  position: relative;
  overflow: visible !important;
}

.compare__td--no1 .compare__table-catch {
  position: absolute;
  top: -2em;
  left: 0;
  right: 0;
  text-align: center;
  white-space: nowrap;
}

.compare__table a.btn {
  font-size: 12px;
  padding: 10px 7px 10px 0;
  margin-top: 2px;
}

.compare__table a.btn:after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_right_circle.svg) no-repeat center / contain;
  width: 0.6rem;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  right: 0.2rem;
  transform: translateY(-50%);
}

/* ランキング */
.ranking {
  margin-top: 2.5rem;
}

.ranking__box-head {
  padding: 0 2.67vw;
  margin: 0 auto;
}

.ranking__content {
  margin-top: 1rem;
}

.ranking__box {
  background: transparent;
  padding: 24px 0;
  position: relative;
  z-index: 0;
}

.ranking__box:nth-of-type(n+2) {
  padding: 2.5rem 0 1.5rem;
}

/* 案件ごとの背景を画面幅いっぱいにし、区切りを見やすくする */
.ranking__box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: var(--Back_yellow);
  z-index: -1;
}

.ranking__box:nth-of-type(even)::before {
  background: #fff7cf;
}

.ranking__box + .ranking__box {
  margin-top: 12px;
  border-top: none;
}

/* 2位・3位の背景色を分けて区切りを明確化 */
#fukuchan::before {
  background: #f3f9ff;
}

#buysell::before {
  background: #f7f3ff;
}

.ranking__accCont .ranking__box:nth-of-type(1) {
  margin-top: 12px;
}

/* 折りたたみ内の4位も背景色を分ける */
#takamitsugakki::before {
  background: #f1fff6;
}

/* .ranking__box-inner {
  padding: 0 5.33vw;
} */

.ranking__box-head {
  display: flex;
  align-items: end;
  gap: 14px;
  position: relative;
  padding: 0 2.67vw;
}

.ranking__box-head-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.ranking__box-head::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 72px;
  aspect-ratio: 1;
}

.ranking__no01::before {
  background-image: url(../img/ranking_no01_new.png);
}

.ranking__no02::before {
  background-image: url(../img/ranking_no02_new.png);
  width: 51px;
}

.ranking__no03::before {
  background-image: url(../img/ranking_no03_new.png);
  width: 51px;
}

.ranking__no04::before {
  background-image: url(../img/rank04.png);
}

.ranking__no05::before {
  background-image: url(../img/rank05.png);
}

.ranking__accCont .ranking__box:nth-of-type(1) .ranking__box-head::before {
  background-image: url(../img/rank04.png);
}

.ranking__accCont .ranking__box:nth-of-type(2) .ranking__box-head::before {
  background-image: url(../img/rank05.png);
}

.ranking__box-head::after {
  content: none;
}
  .ranking__no01::after {
    background-image: url(../img/animal_img_01.png);
    width: 1.125rem;
    aspect-ratio: 18 / 22;
    bottom: 3.4rem;
    left: 1.3125rem;
  }
  .ranking__no02::after {
    background-image: url(../img/animal_img_02.png);
    width: 2rem;
    left: .95rem;
    bottom: 3.1rem;
  }
  .ranking__no03::after { 
    background-image: url(../img/animal_img_03.png);
    width: 2rem;
    left: 0.85rem;
    bottom: 3.1rem;
  }


.ranking__box-head-catch {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.ranking__box-head-name {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  text-decoration: none !important;
}

.ranking__box-head-name .link-text {
  text-decoration: underline;
}

.ranking__box-bnr {
  display: block;
  max-width: 680px;
  margin: 24px auto 0;
}

.ranking__box-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 32px auto 32px auto;
  border: 1px solid #888;
  border-radius: 4px;
  max-width: 672px;
  margin: 24px auto 0;
  overflow: hidden;
}

.ranking__box-list dt,
.ranking__box-list dd {
  font-size: 12px;
  text-align: center;
  color: #494949;
}

.ranking__box-list dt:nth-of-type(n+2):nth-of-type(-n+3),
.ranking__box-list dt:nth-of-type(n+5),
.ranking__box-list dd:nth-of-type(n+2):nth-of-type(-n+3),
.ranking__box-list dd:nth-of-type(n+5) {
  border-left: 1px solid #888;
}

.ranking__box-list dt:nth-of-type(n+4) {
  border-top: 1px solid #888;
}

.ranking__box-list dt {
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Back);
  color: #494949;
}

.ranking__box-list dt:nth-of-type(-n+3) {
  grid-row: 1;
}

.ranking__box-list dt:nth-of-type(n+4) {
  grid-row: 3;
}

.ranking__box-list dd {
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  background: #fff;
  border-top: 1px solid #888;
  padding: 0.625rem 0;
}

.ranking__box-list dd:nth-of-type(-n+3) {
  grid-row: 2;
}

.ranking__box-list dd:nth-of-type(n+4) {
  grid-row: 4;
}

.ranking__box-list .hanamaru + p {
  min-height: calc(2em * 1.3);
}

.ranking__box-point {
  margin: 24px auto 0;
}

.ranking__box-point-box {
  background: #fff;
  border-top: 1px solid var(--Text);
  border-right: 4px solid var(--Text);
  border-bottom: 1px solid var(--Text);
  border-left: 4px solid var(--Text);
  padding: 20px 30px;
}

.ranking__box-point-ttl {
  width: 161px;
  margin: 0 auto;
}

.ranking__box-point-list {
  padding-left: 0;
}

.ranking__box-review {
  margin-top: 24px;
}

.ranking__box-review-ttl {
  max-width: 335px;
  margin: 0 auto;
}

.ranking__box-review-tab {
  margin-top: 1rem;
}

.ranking__box-review-tab .tab__menu {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
}

.ranking__box-review-tab .tab__menu-item {
  font-weight: 700;
  font-size: 12px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  border-top: 1px solid #D6C5B1;
  border-right: 1px solid #D6C5B1;
  border-left: 1px solid #D6C5B1;
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 32px;
}

.ranking__box-review-tab .tab__menu-item.is-active {
  background: #D6C5B1;
}

.ranking__box-review-tab .tab__content {
  background: #D6C5B1;
  border-radius: 0 0 4px 4px;
  max-width: 666px;
  min-height: 27.5rem;
  padding: 1.25rem 1rem;
  margin: 0 auto;
}

.ranking__box-review-tab-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ranking__box-review-tab-list-item:nth-of-type(n+2) {
  margin-top: 8px;
}

.ranking__box-review-tab-list-item > img {
  width: 56px;
  aspect-ratio: 1;
}

.ranking__box-review-tab-list-item-box {
  background: #fff;
  border-radius: 4px;
  padding: 12px 16px;
  position: relative;
}

.ranking__box-review-tab-list-item-box::before {
  content: "";
  border-top: 9px solid transparent;
  border-right: 14px solid #fff;
  border-bottom: 9px solid transparent;
  position: absolute;
  top: 50%;
  left: -12px;
  transform: translateY(-50%);
}

.ranking__box-review-tab-list-item-box-eval {
  display: flex;
}

.ranking__box-review-tab-list-item-box-eval span {
  display: block;
  width: 16px;
  aspect-ratio: 1;
  background-image: url(../img/star_icon_empty.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.ranking__box-review-tab-list-item-box-eval[data-num="1"] span:nth-of-type(-n+1),
.ranking__box-review-tab-list-item-box-eval[data-num="2"] span:nth-of-type(-n+2),
.ranking__box-review-tab-list-item-box-eval[data-num="3"] span:nth-of-type(-n+3),
.ranking__box-review-tab-list-item-box-eval[data-num="4"] span:nth-of-type(-n+4),
.ranking__box-review-tab-list-item-box-eval[data-num="5"] span:nth-of-type(-n+5) {
  background-image: url(../img/star_icon_fill.png);
}

.ranking__box-review-tab-list-item-box-txt {
  font-size: 13px;
  line-height: 1.5;
  text-align: justify;
  margin-top: 4px;
}

.ranking__box-achivement {
  margin-top: 24px;
}

.ranking__box-achivement-ttl {
  max-width: 335px;
  margin: 0 auto;
}

.ranking__box-achivement-tab {
  margin-top: 1rem;
}

.ranking__box-achivement-tab .tab__menu {
  display: flex;
  max-width: 576px;
  margin: 0 auto 0;
}

.ranking__box-achivement-tab .tab__menu-item {
  font-weight: 700;
  font-size: 10px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  border-top: 1px solid var(--Main);
  border-right: 1px solid var(--Main);
  border-left: 1px solid var(--Main);
  border-radius: 4px 4px 0 0;
  width: 100%;
  height: 32px;
}

.ranking__box-achivement-tab .tab__menu-item.is-active {
  color: #fff;
  background: var(--Main);
}

.ranking__box-achivement-tab .tab__content {
  background: var(--Main);
  border-radius: 0 0 4px 4px;
  max-width: 666px;
  min-height: 27.5rem;
  padding: 1.25rem;
  margin: 0 auto;
}

.ranking__box-achivement-tab-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.ranking__box-brand {
  text-align: center;
  margin-top: 24px;
}

.ranking__box-brand-head {
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--Main);
  border-radius: 16px 16px 0 0;
  width: 180px;
  height: 32px;
  margin: 0 auto;
}

.ranking__box-brand-content {
  background: var(--Main);
  max-width: 666px;
  padding: 0.75rem 1rem;
  margin: 0 auto;
}

.ranking__box-brand-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  gap: 0.5rem;
}

.ranking__box .campaign {
  max-width: 720px;
  padding: 0;
  margin-right: auto;
  margin-left: auto;
}

.ranking__box .campaign__ttl {
  width: calc(100% + 0.625rem * 2);
}

.ranking__box .campaign__inner {
  max-width: 100%;
  padding: 0;
}

a.ranking__ctaBtn {
  display: flex;
  max-width: 335px;
  padding: 15px;
  margin: 24px auto 0;
  flex-direction: column-reverse;
  line-height: 1.4;
}

.ranking__box a.btn small {
  font-family: 400;
  /* font-size: 12px; */
}

.ranking__accBtn {
  width: calc(100% - 5.33vw * 2);
  max-width: 800px;
  margin: 0 auto;
}

/* 選び方 */
.flow {
  background: var(--Main);
  padding: 1rem 0 1.375rem;
  margin-top: 24px;
}

.flow__inner {
  max-width: 898px;
  margin: 0 auto;
}

.flow__content {
  padding-left: 5.33vw;
  padding-bottom: 0.875rem;
  margin: 1rem -2.67vw 0;
  overflow-x: auto;
}

.flow__list {
  display: flex;
  gap: 32px;
  position: relative;
}

.flow__list-item {
  background: url(../img/dot.svg) no-repeat left 8px top 8px / 4px auto,
              url(../img/dot.svg) no-repeat right 8px top 8px / 4px auto,
              url(../img/dot.svg) no-repeat left 8px bottom 8px / 4px auto,
              url(../img/dot.svg) no-repeat right 8px bottom 8px / 4px auto,
              #fff;
  width: 194px;
  padding: 20px 16px;
  flex-shrink: 0;
  position: relative;
}

.flow__list-item:nth-of-type(n+2)::before {
  content: "";
  display: inline-block;
  background: url(../img/flow_arrow.svg) no-repeat center / contain;
  width: 24px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: -28px;
}

.flow__list-item:last-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 5.33vw;
  height: 1px;
}

.flow__list-item-catch {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  color: var(--Accent);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(2em * 1.2);
  margin-top: 10px;
}

.flow__list-item-img {
  margin-top: 10px;
}

.flow__list-item-txt {
  font-size: 13px;
  line-height: 1.6;
  text-align: justify;
  margin-top: 10px;
}

/* まとめ */
.conclusion {
  margin-top: 24px;
}

.conclusion__img {
  margin: 0 auto;
  max-width: 720px;
  width: 100%;
}

.conclusion + .campaign {
  margin-top: 4.375rem;
}

/* 絞り込み検索フォーム */
.search {
  background: #D6C5B1;
  padding: 1rem 0 1.25rem;
  margin-top: 2.5rem;
}

.search__content {
  max-width: 504px;
  margin: 24px auto 0;
}

.search__form-group:nth-of-type(n+2) {
  margin-top: 20px;
}

.search__form-ttl {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.03em;
  color: #494949;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search__form-ttl span {
  color: var(--Accent);
}

.search__form-wrap {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.search__form-wrap--2col {
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 16px;
}

.search__form-wrap--3col {
  grid-template-columns: repeat(3, 1fr);
}

.search__form label {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #494949;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #494949;
  border-radius: 2px;
  min-height: 48px;
  position: relative;
  cursor: pointer;
}

.search__form label:has(input[type="radio"]),
.search__form label:has(input[type="checkbox"]) {
  padding-left: 38px;
}

.search__form label:has(input[type="radio"]:checked),
.search__form label:has(input[type="checkbox"]:checked) {
  background: var(--Back_yellow);
  border: 2px solid #494949;
}

.search__form label:has(input[type="radio"])::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: 1px solid #D6C5B1;
  border-radius: 50%;
  width: 20px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.search__form label:has(input[type="radio"])::after {
  content: "";
  display: inline-block;
  background: var(--Main);
  border-radius: 50%;
  width: 10px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
}

.search__form label:has(input[type="radio"]:checked)::after {
  opacity: 1;
}

.search__form label:has(input[type="checkbox"])::before {
  content: "";
  display: inline-block;
  background: #fff;
  border: 1px solid #D6C5B1;
  width: 20px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.search__form label:has(input[type="checkbox"])::after {
  content: "";
  display: inline-block;
  border-bottom: 3px solid #D84067;
  border-left: 3px solid #D84067;
  width: 13px;
  height: 8px;
  position: absolute;
  top: 45%;
  left: 20px;
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  opacity: 0;
}

.search__form label:has(input[type="checkbox"]:checked)::after {
  opacity: 1;
}

.search__form-group--instrument label:has(input[type="checkbox"])::before,
.search__form-group--instrument label:has(input[type="checkbox"])::after {
  display: none;
}

.search__form-group--instrument label:has(input[type="checkbox"]) {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0;
  height: 96px;
}

.search__form-group--instrument label img {
  width: 40px;
  aspect-ratio: 1;
}

.search__form input[type="radio"],
.search__form input[type="checkbox"] {
  display: none;
}

.search__form-btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  margin-top: 1rem;
}

.search__form-resetBtn {
  font-family: var(--Font_normal);
  font-size: 16px;
  box-shadow: 0 5px 0 var(--Main);
  width: 124px;
  height: 64px;
  cursor: pointer;
}

.search__form-submitBtn {
  font-family: var(--Font_normal);
  font-size: 16px;
  gap: 10px;
  box-shadow: 0 5px 0 #386200;
  width: 196px;
  height: 64px;
  position: relative;
  cursor: pointer;
}

.search__form-submitBtn::after {
  content: "";
  display: inline-block;
  background: url(../img/chevron_right_circle_line.svg) no-repeat center / contain;
  width: 24px;
  aspect-ratio: 1;
}

.search__form-submitBtn:disabled {
  opacity: 0.4;
}

.search__form-errorTxt {
  font-weight: 700;
  font-size: 12px;
  color: var(--Accent);
  display: none;
  width: 196px;
  margin-top: 8px;
  margin-left: auto;
}

/* 絞り込み検索結果（ページ内表示） */
.search__results {
  margin-top: 24px;
  scroll-margin-top: 70px;
}

.search__results-header {
  text-align: center;
  margin-bottom: 16px;
}

.search__results-count {
  font-weight: 700;
  font-size: 16px;
  color: #494949;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.search__results-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--Accent);
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 12px 5px;
  border-radius: 4px;
}

.search__results-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.search__results-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.search__results-bnr-link {
  display: block;
}

.search__results-bnr-link img {
  width: 100%;
  height: auto;
  display: block;
}

.search__results-body {
  padding: 12px 16px 16px;
}

.search__results-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.search__results-logo {
  flex-shrink: 0;
  height: 22px;
  width: auto;
}

.search__results-catch {
  font-weight: 700;
  font-size: 13px;
  color: #494949;
  line-height: 1.3;
}

.search__results-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.search__results-tag {
  font-size: 11px;
  font-weight: 700;
  background: #f0f0f0;
  color: #494949;
  border-radius: 3px;
  padding: 3px 8px;
  line-height: 1.5;
}

.search__results-tag.is-selected {
  background: var(--Back_yellow);
  color: var(--Accent);
  border: 1px solid var(--Accent);
}

a.search__results-btn {
  display: flex;
  margin: 0 auto;
}

/* コラム */
.column {
  padding: 24px 0;
}

.column__inner {
  max-width: 335px;
  padding: 0;
}

.column .sectionTtl {
  padding: 0;
}

.columnList {
  margin-top: 8px;
}

.columnList__item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--Main);
  padding: 8px 0;
  position: relative;
}

.columnList__item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.columnList__item img {
  width: 77px;
  aspect-ratio: 77 / 60;
  object-fit: cover;
}

.columnList__item-txt {
  font-size: 12px;
  text-decoration: underline;
  color: #0033B3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  padding: 0 16px;
}


/* ==========================================================================
検索結果ページ
=========================================================================== */
.search-result__back {
  text-align: center;
  padding: 1rem 0 ;
}

.search-result__back a {
  font-size: 14px;
}

.search-result__ttl {
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  padding: 1rem 0;
}

.search-result__conditions-box {
  border: 1px solid #5B5B5B;
  border-radius: 4px;
  width: calc(100% - 5.33vw * 2);
  max-width: 500px;
  margin: 0 auto;
}

.search-result__conditions-box-ttl {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: center;
  border-bottom: 1px solid #5B5B5B;
  background: var(--Back);
  padding: 0.5rem;
}

.search-result__conditions-box-content {
  padding: 1rem 0.625rem;
}

.search-result__conditions-box-list {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.5rem;
}

.search-result__conditions-box-list dt {
  font-weight: 700;
  font-size: 12px;
  line-height: 1.2;
  justify-self: right;
}

.search-result__conditions-box-list dd {
  font-size: 12px;
  line-height: 1.2;
}


/* ==========================================================================
404
=========================================================================== */
.error404__content {
  text-align: center;
  padding: 9.375rem 0;
}

.error404__ttl {
  font-size: 1.5rem;
}

.error404__message-ttl {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.error404__message-txt {
  font-size: 0.75rem;
  margin-top: 1rem;
}

.error404__content {
  height: calc(100vh - 63px - 83px);
  margin-left: auto;
  margin-right: auto;
}

.error404__back {
  margin-top: 1rem;
}


/* ==========================================================================
フッター
=========================================================================== */
.footer {
  color: #fff;
  background: var(--Main);
  /* padding: 1.625rem 0 0.75rem; */
  padding: 1.625rem 0;
}

.footer__inner {
  padding: 0 5.33vw;
}
.footer__content {
  display: none;
}
.footer__nav .menu {
  font-size: 12px;
  line-height: 1.25;
  display: flex;
  justify-content: space-between;
}

.footer__nav a {
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
  color: inherit;
}

.footer__copyright {
  font-size: 10px;
  text-align: center;
  /* margin-top: 15px; */
}


@media screen and (min-width: 769px) {


  .html {
    font-size: 24px;
  }

  .body a:hover {
    opacity: 0.6;
  }

  .forPC {
    display: block;
  }

  .forPC-inline {
    display: inline;
  }  

  .forSP {
    display: none;
  }

  .forSP-inline {
    display: none;
  }


  /* ==========================================================================
  共通パーツ
  =========================================================================== */
  .inner {
    max-width: 1000px;
    width: 100%;
    padding: 0 24px;
    margin: 0 auto;
  }

  .sectionTtl {
    padding: 0;
  }

  .accBtn {
    font-size: 14px;
    margin-top: 24px;
  }


  /* ==========================================================================
  ヘッダー
  =========================================================================== */
  .header {
    justify-content: left;
    padding: 0 0 24px;
  }

  .header__logo {
    margin: 0;
  }

  /* ==========================================================================
  トップページ
  =========================================================================== */
  .update {
    padding: 13px 0;
    margin-top: 0;
  }

  .update__inner {
    padding: 0;
  }

  .update + * {
    margin-top: 0;
  }
  
  /* 比較ボックス */
  .hikaku-box dt {
    font-size: 18px;
  }
  
  .hikaku-box dd {
    font-size: 16px;
  }


  /* キャンペーン */
  .campaign {
    margin-top: 108px;
  }

  .campaign__content {
    background-image: url(../img/campaign_line_pc.svg);
    padding: 80px 90px 72px;
  }

  .pointList {
    padding-left: 0;
  }

  .pointList-item {
    font-size: 16px;
  }

  .campaign__btns {
    margin-top: 32px;
  }

  /* 選び方 */
  .choice {
    padding: 20px 0 45px;
    margin-top: 48px;
  }

  .choice__inner {
    padding: 0;
  }

  .choice__content {
    padding: 0;
    margin: 36px 0 0;
  }

  .choice__list-item {
    width: 248px;
  }

  .choice__list-item:last-of-type::after {
    display: none;
  }

  /* 比較表 */
  .compare {
    margin-top: 65px;
  }

  .compare__content {
    padding: 0 0 8px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare__table {
    width: 672px;
    margin-left: auto;
    margin-right: auto;
  }

  .compare__table::after {
    display: none;
  }

  .compare__table th {
    font-size: 12px;
    width: 112px;
  }

  .compare__table {
    --compare-sticky-first-col: 112px;
    --compare-sticky-second-col: 140px;
  }

  .compare__table tr > td:nth-child(2) {
    left: var(--compare-sticky-first-col);
  }

  /* ランキング */
  .ranking {
    margin-top: 80px;
  }

  .ranking__content {
    margin-top: 40px;
  }

  .ranking__box:nth-of-type(n+2) {
    padding: 24px 0;
  }

  .ranking__box-head {
    width: 338px;
    margin: 0 auto;
  }
  
  .ranking__box-head::after {
    bottom: 2.3rem;
  }
  .ranking__no01::after {
    
    width: 1.125rem;
    aspect-ratio: 18 / 22;
    left: 0.6rem;
    bottom: 2.3rem;
  }
  .ranking__no02::after {
    
    width: 2rem;
    aspect-ratio: 32 / 24;
    left: .35rem;
    bottom: 2.2rem;
  }
  .ranking__no03::after {
    
    width: 2rem;
    aspect-ratio: 32 / 24;
    left: 0.2rem;
    bottom: 2.2rem;
  }


  .ranking__box-list {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 32px auto;
  }

  .ranking__box-list dt:nth-of-type(n) {
    grid-row: 1;
  }

  .ranking__box-list dd:nth-of-type(n) {
    grid-row: 2;
  }

  .ranking__box-list dt:nth-of-type(n+2),
  .ranking__box-list dd:nth-of-type(n+2) {
    border-left: 1px solid #5B5B5B;
  }

  .ranking__box-list dt:nth-of-type(n+4) {
    border-top: none;
  }

  .ranking__box-point {
    display: flex;
    justify-content: center;
  }

  .ranking__box-point-box {
    display: inline-block;
  }

  .ranking__box-point-list .pointList-item {
    font-size: 14px;
    padding-left: 24px;
  }

  .ranking__box-point-list .pointList-item::before {
    width: 20px;
  }

  .ranking__box-review-tab .tab__content {
    min-height: 304px;
    padding: 24px 40px;
  }

  .ranking__box-achivement-tab .tab__content {
    min-height: 311px;
    padding: 24px 40px;
  }

  .ranking__box-achivement-tab-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .ranking__box-brand-content {
    padding: 12px 25px;
  }

  .ranking__box-brand-list {
    grid-template-columns: repeat(6, 1fr);
  }

  /* 選び方 */
  .flow {
    padding: 32px 0 64px;
  }

  .flow__content {
    padding: 0;
    margin: 44px 0 0;
  }

  .flow__list {
    gap: 40px
  }

  .flow__list-item:nth-of-type(n+2)::before {
    left: -32px;
  }

  .flow__list-item:last-of-type::after {
    display: none;
  }

  /* まとめ */
  .conclusion + .campaign {
    margin-top: 100px;
  }

  /* 絞り込み検索フォーム */
  .search {
    padding: 32px 0 56px;
  }

  .search .sectionTtl {
    width: 500px;
    padding: 0;
  }

  .search__form-wrap {
    grid-template-columns: repeat(3, 1fr);
  }

  /* コラム */
  .columnList__item {
    transition: all 0.3s;
  }

  .columnList__item:hover {
    opacity: 0.6;
  }


  /* ==========================================================================
  フッター
  =========================================================================== */
  .footer {
    padding: 18px 0;
  }

  .footer__inner {
    width: 335px;
    padding: 0;
    margin: 0 auto;
  }


}

/* PC固定サイドバー */
.pc-sidebar {
  display: none;
}

@media (min-width: 1000px) {
  .pc-sidebar {
    display: block;
    position: fixed;
    right: 16px;
    top: 80px;
    width: 240px;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    z-index: 100;
  }

  .pc-sidebar__ttl {
    background: var(--Back_yellow);
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 8px;
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid #e53e3e;
  }

  .pc-sidebar__inner {
    padding: 12px;
  }

  .pc-sidebar__date {
    font-size: 12px;
    font-weight: 700;
    color: #e53e3e;
    text-align: center;
    margin-bottom: 4px;
  }

  .pc-sidebar__name {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
  }

  .pc-sidebar__bnr {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .pc-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
    font-size: 11px;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .pc-sidebar__accent {
    font-weight: 700;
    color: #e53e3e;
  }

  .pc-sidebar__btn {
    display: block;
    text-align: center;
    border-radius: 4px;
    padding: 8px;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.4;
    text-decoration: none !important;
    margin-top: 6px;
  }

  .pc-sidebar__btn--tel {
    background: #e53e3e;
    color: #fff;
  }

  .pc-sidebar__btn--web {
    background: var(--green01);
    color: #fff;
  }
}

/* フォントサイズ調整 */
.pointList-item { font-size: 1rem; }
.ranking__box-review-tab-list-item-box-txt { font-size: 14px; }
.ranking__box-list dt,
.ranking__box-list dd { font-size: 14px; }
.hikaku-box dt { font-size: 14px; }
.hikaku-box dd p { font-size: 14px; }
.choice__list-item-txt { font-size: 14px; }
.flow__list-item-txt { font-size: 14px; }
.compare__table td { font-size: 14px; }
.compare__table-name { font-size: 14px; }
.search__form-ttl { font-size: 14px; }
