/* 目次リストの基本スタイル */
.toc__list {
  list-style: none; /* リスト記号を非表示に */
  padding-left: 0;
}

/* H2: そのまま（ベーススタイル） */
.toc__item--h2 {
  font-weight: bold;
}

/* H3: 一文字下げ */
.toc__item--indent-1 {
  /* 例: padding-left で字下げを表現 */
  padding-left: 1.5em; 
}

/* H4: H3よりさらに一文字下げ */
.toc__item--indent-2 {
  /* H3の字下げ + 追加の字下げ（例: 1.5em + 1.5em = 3em） */
  padding-left: 3em; 
}

/* H4: 文字を薄く */
.toc__link--faint {
  font-weight: normal; /* 太字を解除 */
}



/* =========================
   買取記事詳細
========================= */
.container {
    max-width: 1632px;
    width: 96%;
    margin: 0 auto;
    padding: 12rem 0 8.1rem;
}
@media (max-width: 768px) {
    .container {
        width: 100%;
        padding: 4rem 2.1rem 4.6rem;
    }
}
.wrapper {
    display: flex;
    width: 100%;
    margin-bottom: 13rem;
}
@media (max-width: 768px) {
    .wrapper {
        margin-bottom: 7rem;
    }
}
/* =========================
   記事詳細
========================= */
.article {
    width: 71%;
}
@media (max-width: 768px) {
    .article {
        width: 100%;
    }
}
.article .bg-navy.c-white:hover {
    background-color: #23466F;
    color: #fff;
}
.article__inner {
}
.article__content {
    margin-bottom: 10rem;
    padding-left: clamp(5rem, 6vw, 11rem);
}
@media (max-width: 768px) {
    .article__content {
        margin-bottom: 4.4rem;
		padding-left: 0;
    }
}
.article__header {
    margin-bottom: 6.3rem;
}
@media (max-width: 768px) {
    .article__header {
        margin-bottom: 3rem;
    }
}
.article__header-title {
    font-size: clamp(1.8rem, 2.3vw, 4.2rem);
    line-height: calc(4.3 / 4.3);
    margin-bottom: 3rem;
}
@media (max-width: 768px) {
    .article__header-title {
        line-height: calc(3 / 2.3);
        margin-bottom: 1rem;
        font-size: 2.3rem;
    }
}
.article__header-kv {
    margin-bottom: 1.2rem;
    position: relative;
}
@media (max-width: 768px) {
    .article__header-kv {
        margin-bottom: 0;
    }
}
.article__header-kv-img {
    width: 100%;
}
.article__header-kv-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}
.article__price {
    font-size: clamp(1.5rem, 1.6vw, 2.9rem);
    padding: 0.17rem 2.86rem;
    text-align: center;
    width: fit-content;
    border: 1px solid #E26900;
    transition: all 0.5s ease;
    position: absolute;
    top: 0;
    right: 0;
}
@media (max-width: 768px) { 
    .article__price {
        padding: 0.2rem 1.4rem
    }
}
.article__price-number {
    font-size: clamp(1.7rem, 2vw, 3.7rem);
}
.article__header-text {
    text-align: right;
    font-size: clamp(1rem, 1vw, 1.6rem);
}
.article__list {
    margin-bottom: 5.4rem;
}
@media (max-width: 768px) {
    .article__list {
        margin-bottom: 3rem;
    }
}
.article__list-item {
    display: flex;
    align-items: center;
    padding: 0.8rem 0 0.8rem 0.7rem;
    border-bottom: 1px solid #D9D9D9;
    font-size: clamp(0.8rem, 1vw, 1.8rem);
}
@media (max-width: 768px) {
    .article__list-item {
        padding: 0.6rem 0 0.6rem 1rem;
        font-size: 1.3rem;
    }
}
.article__list-item:first-child {
    border-top: 1px solid #D9D9D9;
}
.article__list-item-title {
    width: 14%;
    text-align: center;
    padding: 1.42rem 0;
}
@media (max-width: 768px) {
    .article__list-item-title {
        width: 30.4%;
        padding: 0.87rem  0.9rem;
    }
}
.article__list-item-text {
    width: 86%;
    padding-left: min(2.5vw, 4.7rem);
}
@media (max-width: 768px) {
    .article__list-item-text {
        width: 69.6%;
        padding-left: 2.2rem;
    }
}
.toc {
    border: 1px solid #4A4A4A;
    padding: 2.1rem 2.6rem;
    margin-bottom: 6rem;
}
@media (max-width: 768px) {
    .toc {
        padding: 1.4rem 1.9rem;
        margin-bottom: 3rem;
    }
}
.js-toc {
}
.toc__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}
.js-toc-toggle {
}
.toc__title {
    font-size: clamp(2rem, 1.7vw, 3.2rem);
	color: #4a4a4a;
}
.toc__icon {
	transform: rotate(180deg);   
}
.toc__icon svg {
    transition: transform 0.2s ease;     
  }
@media (max-width: 768px) {
    .toc__icon svg{
        width: 12px;
        height: 8px;
    }
}
.js-toc.is-open .toc__icon svg {
    transform: rotate(180deg);
    transition: .2s ease;
}
.toc__body {
	margin-top: 1rem;
}
.js-toc-body {
    /* display: none; */
}
.toc__list {
}
.toc__item {
    position: relative;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .toc__item {
        margin-bottom: 0.5rem;
    }
}
.toc__item:last-child {
    margin-bottom: 0;
}
/* ---------- h2 ---------- */
.toc__item--h2 .toc__link {
    position: relative;
    padding-left: 14px;
    font-weight: 700;
    color: #4A4A4A;
    display: block;
  }
  
  .toc__item--h2 .toc__link::before {
    content: "・";
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* ---------- h3 ---------- */
  .toc__item--h3 .toc__link {
    position: relative;
    padding-left: 15px;
    color: #4A4A4A;
    display: block;
    font-weight: 500;
  }
  
  .toc__item--h3 .toc__link::before {
    content: "›"; 
    font-size: clamp(2rem, 1.32vw, 2.5rem);
    position: absolute;
    left: 0;
    top: -6px;
    color: #4A4A4A;
  }
  @media (max-width: 768px) {
    .toc__item--h3 .toc__link::before {
        top: -8px;
    }
  }
  /* ---------- h4 ---------- */
  .toc__item--h4 .toc__link {
    padding-left: 0;
    color: #4A4A4A;
    display: block;
  }
.toc__link {
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    font-weight: 700;
}


.article__content-body {
}
@media (max-width: 768px) {
    .article__content-body {
    }
}
.article__content-body h2 {
    border-bottom: 3px solid #E26900;
    font-size: clamp(2.2rem, 2.1vw, 4rem);
    margin-bottom: 2rem;
    font-weight: 700;
}
.article__content-body h2:first-child {
    margin-top: 6rem;
}
@media (max-width: 768px) {
    .article__content-body h2 {
		padding-bottom: 0.5rem;
        line-height: 1.4;
    }
}
.article__content-body h3 {
    font-size: clamp(2rem, 1.6vw, 3rem);
	border-left: 4px solid #E26900;
	padding-left: 15px;
    margin-bottom: 2rem;
    vertical-align: sub;
	line-height: 1.4;
}
@media (max-width: 768px) {
    .article__content-body h3 {
        margin-bottom: 1.8rem;
    }
}

.article__content-body h4 {
    font-size: clamp(1.8rem, 1.4vw, 2.5rem);
    margin-bottom: 1.8rem;
}
@media (max-width: 768px) {
    .article__content-body h4 {
        margin-bottom: 1.2rem;
    }
}
.article__content-body h4::before {
    content: '・';
    display: inline-block;
    font-size: 1.8rem;
    margin-right: 0.3rem;
    color: #4a4a4a;   
}
.article__content-body p {
    font-size: clamp(1.4rem, 1vw, 1.8rem);
    color: #000000;
    margin-bottom: 3.5rem;
}
@media (max-width: 768px) {
    .article__content-body p {
    }
}


/* 記事本文内のリスト設定 */
.article__content-body ul,
.article__content-body ol {
    margin: 1.2rem 0 3.5rem;
    padding-left: 1.5em; /* 左側の余白で階層を見せる */
}

.article__content-body li {
	font-size: clamp(1.4rem, 1vw, 1.8rem);
	color: #000000;
    margin-bottom: 0.5em; /* 項目ごとの行間 */
    line-height: 1.6;     /* 読みやすい行高 */
}


/* 箇条書き（ul）のスタイル */
.article__content-body ul li{
	display: list-item;
	list-style-type: disc; /* 黒丸 */
}


/* 番号付き（ol）のスタイル */
.article__content-body ol li{
	display: list-item;
    list-style-type: decimal; /* 1, 2, 3... */
}

/* ul（丸）と ol（数字）の記号部分だけを指定 */
.article__content-body ul li::marker,
.article__content-body ol li::marker {
    color: #f39800; /* ここにお好みのオレンジ色を指定 */
    font-weight: bold; /* 数字を少し太くするとより目立ちます */
}


/* 2階層目（入れ子）の設定 */
.article__content-body ul ul,
.article__content-body ol ol,
.article__content-body ul ol,
.article__content-body ol ul {
    margin: 0.5em 0 0.5em 1.2em;
    font-size: 0.95em; /* 少し小さくして親子関係を強調 */
}

.article__content-body-inner {
    max-width: 769px;
    width: 100%;
}
.article__content-body figure  {
    width: 74%;
    overflow: visible;
}
.article__content-body img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .article__content-body img {
        margin-bottom: 2rem;

    }
}
.article__content-body table {
    border-collapse: collapse; 
    table-layout: fixed; 
    background: #fff;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    text-align: left;
    margin-bottom: 8.6rem;
    margin-top: 5rem;
}
@media (max-width: 768px) {
    .article__content-body table {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }
}
.article__content-body table td:first-child,
.article__content-body table td:last-child,
.article__content-body table th {
    font-weight: normal;
    border: 1px solid #D9D9D9;
    padding: 1.1rem 2.4rem;
    color: #4A4A4A;
}
.article__content-body table td:first-child,
.article__content-body table th {
    width: 20.9%;
    padding-left: clamp(1.4rem, 1.8vw, 2.4rem);
}
@media (max-width: 768px) {
    .article__content-body table td:first-child {
        width: 35.4%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
.article__content-body table td:last-child {
    width: 79.1%;
    padding-right: 2.6rem;
    padding-left: clamp(2.5rem, 2.5vw, 4rem);
}
@media (max-width: 768px) {
    .article__content-body table td:last-child {
        width: 64.6%;
        padding-left: 1rem;
        padding-right: 1rem;
        font-weight: 500;
    }
}
.article__content-body-list {
}
.article__content-body-list-item {
    margin-bottom: 5rem;
}
@media (max-width: 768px) {
    .article__content-body-list-item {
        margin-bottom: 2rem;
    }
}
.article__content-body-list-item:last-child {
    margin-bottom: 0;
}
.article__content-body-list-item .article__content-body-img {
    margin-bottom: 1rem;
}
@media (max-width: 768px) {
    .article__content-body-list-item .article__content-body-img {
        margin-bottom: 0.5rem;
    }
}
@media (max-width: 768px) {
    .article__content-body-list-item .article__content-body-section-text {
        padding-left: 1rem;
    }
}
/* @media (max-width: 768px) {
    article__content-body
    .article__content-body-section-title.mb-2 {
        margin-bottom: 2rem;
    }
} */
.article__content-review {
    display: flex;
    align-items: center;    
    justify-content: space-between;
    gap: min(2vw, 2.7rem);
    margin-top: 4.2rem;
}
@media (max-width: 768px) {
    .article__content-review {
        padding-left: 1rem;
        margin-top: 2rem;
        align-items: flex-start;
        gap: 2.2rem;
    }
}
.article__content-review p,
.article__content-review img,
.article__content-review h3 {
    margin-left: 0;
}
.article__content-review-item1 {
    width: 14%;
}
@media (max-width: 768px) {
    .article__content-review-item1 {
        width: 31.2%;
    }
}
.article__content-review-item1 .article__content-body-section-text {
    font-size: clamp(0.8rem, 1vw, 1.8rem);
}
@media (max-width: 768px) {
    .article__content-review-item1 .article__content-body-section-text {
        font-size: 1.3rem;
    }
}
.article__content-review-item1-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
    .article__content-review-item1-img {
        margin-bottom: 1.1rem;
    }
}
.article__content-review-item1-img img {
    width: 100%;
    object-fit: cover;
}
.article__content-review-item2 {
    width: 86%;
}
@media (max-width: 768px) {
    .article__content-review-item2 {
        width: 68.8%;
    }
}
.article__content-review-item2 .article__content-review-item2-title::before {
    content: '';
    display: none;
}
.article__content-review-item2-title {
    font-size: clamp(1.6rem, 1.2vw, 2.2rem);
    margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
    .article__content-review-item2-title {
        margin-bottom: 1.2rem;
    }
}
.article__content-body-section.last-section {
    margin-bottom: 0;
}
.article__inner-author {
    display: flex;
    align-items: center;
    gap: 4rem;
}
.article__inner-author p,
.article__inner-author img,
.article__inner-author h3 {
    margin-left: 0;
}
@media (max-width: 768px) {
    .article__inner-author {
        align-items: flex-start;
        gap: 2.8rem;
        padding-left: 1rem;
    }
}
.article__inner-author-img {
    width: 18.4%;
    aspect-ratio: 1 / 1;
}
@media (max-width: 768px) {
    .article__inner-author-img {
        width: 28.3%;
    }
}
.article__inner-author-img img {
    width: 100%;
    object-fit: cover;
}
.article__inner-author-body {
    width: 81.6%;
}
@media (max-width: 768px) {
    .article__inner-author-body {
        width: 71.7%;
    }
}
.article__inner-author-category {
    margin-bottom: 1.6rem;
    display: inline-block;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
    padding: 0 1.1rem;
}
@media (max-width: 768px) {
    .article__inner-author-category {
        margin-bottom: 0.6rem;
        padding: 0 0.85rem;
    }
}
.article__inner-author-name {
    font-size: clamp(1.6rem, 1.2vw, 2.2rem);
    margin-bottom: 1.6rem;
}
@media (max-width: 768px) {
    .article__inner-author-name {
        margin-bottom: 1.4rem;
    }
}
.article__content-body-section-text {
}
.article__btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article__btn-link {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    border: 2px solid #4A4A4A;
    font-size: clamp(1.6rem, 1.2vw, 2.2rem);
    padding: 0 1.25rem;
    transition: all 0.5s ease;
}
@media (max-width: 768px) {
    .article__btn-link {
        border: 1px solid #4A4A4A;
        box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
        gap: 1.2rem;
    }
    .article__btn-link.prev-btn {
        padding: 0.62rem 3rem 0.62rem 1.8rem;
    }
    .article__btn-link.next-btn {
        padding: 0.62rem 1.8rem 0.62rem 3rem
    }
}
.article__btn-link svg path {
    transition: all 0.5s ease;
}
.article__btn-link:hover {
    border: 2px solid #E26900;
    color: #E26900;
    svg path {
        stroke: #E26900;
    }
}
@media (max-width: 768px) {
    .article__btn-link:hover {
        border: 1px solid #E26900;
    }
}
/* =========================
   サイドバー
========================= */
.sidebar {
    width: 29%;
    /*position: sticky;*/
    top: 249px;
    height: fit-content;
    margin-left: 5.3rem;
    /* margin-top: 44%; */
}
@media (max-width: 768px) {
    .sidebar {
        display: none;
    }
}
.sidebar__inner {
}
.sidebar__inner-header {
    padding:  2.2rem 2.2rem 0 2.2rem;
}
.sidebar__title {
    font-size: clamp(1rem, 1vw, 1.8rem);
    margin-bottom: 1.4rem;
}
.sidebar__list {
    border-bottom: 1px solid #fff;
}
.sidebar__item {
	padding-left: 1.5em;
    margin-bottom: 1.5rem;
}
.sidebar__item:last-child {
    margin-bottom: 2.6rem;
}
.sidebar__link {
    font-size: clamp(0.9rem, 1vw, 1.8rem);
}
.sidebar__inner-footer {
	margin-top: 2.1rem;
}
.sidebar__inner-footer .sidebar__title {
    padding-left: 2.2rem;
    margin-bottom: 0;
}
.sidebar__list-pickup {
    border-bottom: none;
}
.sidebar__item-pickup {
}
.sidebar__link-pickup {
    padding: 1.4rem 2.2rem;
    display: flex;
    align-items: center;
    transition: all 0.5s ease;
}
.sidebar__link-pickup:hover {
    background-color: rgba(255, 255, 255, 0.25);
}
.sidebar__item-pickup-img {
    width: 14.8%;
    aspect-ratio: 1 / 1;
}
.sidebar__item-pickup-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar__item-pickup-title {
    width: 84.1%;
    padding-left: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: clamp(1.3rem, 1vw, 1.8rem);
}
.sidebar__item-pickup-title svg {
    width: fit-content;
    transition: all 0.5s ease;
    opacity: 0;
}
.sidebar__link-pickup:hover svg {
    opacity: 1;
}

