/* ==================================================
   Single
================================================== */

.single-main {
    background: #ffffff;
}

.single-container {
    width: min(100% - 40px, 1180px);
    margin: 0 auto;
    padding: 72px 0 72px;
}

.single-layout {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
    gap: 12px;
    align-items: start;
}

.single-article {
    min-width: 0;
}

.single-sidebar {
    min-width: 0;
}

/* Sidebar Profile */

.sidebar-profile {
    width: 100%;
}

.sidebar-profile__title {
    text-align: center;
    margin: 0;
    color: #B59351;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.sidebar-profile__line {
    width: 100%;
    height: 1px;
    margin: 10px 0 16px;
    background: rgba(181, 147, 81, 0.55);
}

.sidebar-profile__text {
    margin: 0 0 16px;
    color: #4A4A4A;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.9;
}

.sidebar-profile__image-wrap {
    margin: 0 0 24px;
}

.sidebar-profile__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.sidebar-profile__link {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 0 44px;
    border: 1px solid rgba(181, 147, 81, 0.75);
    background: #ffffff;
    color: #B59351;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;
}

.sidebar-profile__link:hover {
    border-color: #B59351;
    background: rgba(181, 147, 81, 0.05);
    color: #B59351;
}

.sidebar-profile__arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #B59351;
    border-right: 1.5px solid #B59351;
    font-size: 0;
    transform: translateY(-50%) rotate(45deg);
}

/* Article CTA */

.article-cta {
    width: 100%;
    margin: 40px 0;
    padding: 36px 40px 30px;
    border: 1px solid rgba(181, 147, 81, 0.55);
    border-radius: 8px;
    background: rgba(126, 87, 194, 0.035);
    text-align: center;
}

.single-content .article-cta__title {
    position: relative;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    background: none;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
    text-align: center;
}

.article-cta__questions {
    display: inline-block;
    width: auto;
    max-width: 100%;
    margin: 0 auto 16px;
    padding: 12px 0;
    text-align: left;
}

.single-content .article-cta__questions p {
    position: relative;
    margin: 0 0 12px;
    color: #3A3A3A;
    font-size: 1.7rem;
    line-height: 1.7;
}

.single-content .article-cta__questions p::before {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 12px;
    border-radius: 50%;
    background: #B59351;
    content: "";
    vertical-align: 0.15em;
}

.single-content .article-cta__questions p:last-child {
    margin-bottom: 0;
}

.article-cta__message {
    max-width: 620px;
    margin: 0 auto 28px;
    text-align: left;
}

.single-content .article-cta__message p {
    margin: 0;
    color: #4A4A4A;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.9;
}

.article-cta__divider {
    margin: 28px 0 20px;
}

.single-content .article-cta__divider img {
    display: block;
    width: 95%;
    height: auto;
    margin: 0 auto;
    border-radius: 0;
}

.article-cta__button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;

    width: 100%;
    max-width: 420px;
    min-height: 72px;
    margin: 0 auto;
    padding: 0 56px 0 30px;

    overflow: hidden;
    border: 1px solid rgba(190, 157, 88, 0.82);
    border-radius: 3px;

    color: #fff;
    background:
        linear-gradient(115deg,
            #4e2d6d 0%,
            #74469b 52%,
            #583276 100%);

    box-shadow:
        0 18px 38px rgba(70, 39, 94, 0.22),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);

    font-family:
        "Noto Sans JP",
        "Yu Gothic",
        sans-serif;
    font-size: 1.85rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.07em;
    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.article-cta__button:hover {
    color: #fff;
    box-shadow:
        0 24px 48px rgba(70, 39, 94, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.single-content .article-cta__button-icon {
    display: block;
    width: 40px;
    height: 40px;
    margin: 0;
    border-radius: 0;
    flex-shrink: 0;
}

.article-cta__button-text {
    display: block;
}

.article-cta__button-arrow {
    position: absolute;
    right: 50px;
    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    transition: transform 0.3s ease;
}

.article-cta__button:hover .article-cta__button-arrow {
    transform: translateX(5px);
}

.single-content .article-cta__note {
    margin: 14px 0 0;
    color: #777;
    font-size: 1.4rem;
    line-height: 1.6;
    text-align: center;
}

.single-content .article-cta__limited {
    margin: 0;
    color: #3A3A3A;
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.8;
    text-align: center;
}

.article-cta__limited-sp {
    display: none;
}

.article-cta__button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 100%;

    background:
        linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);

    transform: skewX(-22deg);
    transition: left 0.75s ease;
}

.article-cta__button:hover::before {
    left: 145%;
}

/* Index */

.single-index {
    width: 100%;
    box-sizing: border-box;
    margin: 32px 0 40px;
    padding: 28px 56px;
    border: 1px solid rgba(181, 147, 81, 0.35);
    border-radius: 6px;
    background: #fff;
}

.single-index__header {
    margin-bottom: 4px;
}

.single-index__title {
    margin: 0;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0.18em;
}

.single-content .single-index__list {
    margin: 0;
    padding: 0;
    list-style: none !important;
}

.single-index__item--h2 {
    margin-top: 0;
}

.single-index__item--h2:first-child {
    margin-top: 0;
}

.single-index__row {
    display: grid;
    grid-template-columns: 20px 1px minmax(0, 1fr);
    column-gap: 18px;
    align-items: start;
}

.single-index__number {
    color: #3A3A3A;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
}

.single-index__divider {
    width: 1px;
    height: 2rem;
    margin-top: .55rem;
    background: #B59351;
}

.single-index__content {
    min-width: 0;
}

.single-index__link {
    color: #3A3A3A;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.7;
    text-decoration: none;
    transition:
        color .3s ease,
        text-decoration-color .3s ease;
}

.single-index__link:hover {
    color: #B59351;
    text-decoration: underline;
    text-decoration-color: #B59351;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.single-content .single-index__sublist {
    margin: 0 0 0 28px;
    padding: 0;
    list-style: none;
}

.single-index__item--h3 {
    position: relative;
    left: -26px;
    margin-top: 0;
    padding-left: 18px;
}

.single-index__item--h3::before {
    position: absolute;
    top: 0.65em;
    left: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #B59351;
    content: "";
}

.single-index__item--h3 a {
    color: #3A3A3A;
    font-size: 1.5rem;
    line-height: 1.7;
    text-decoration: none;
    transition:
        color .3s ease,
        text-decoration-color .3s ease;
}

.single-index__item--h3 a:hover {
    color: #B59351;
    text-decoration: underline;
    text-decoration-color: #B59351;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.single-content .single-index__item {
    margin-bottom: 0;
}

/* Anchor */

.single-content h2[id],
.single-content h3[id] {
    scroll-margin-top: 120px;
}

/* Breadcrumb */

.single-breadcrumb {
    margin: -72px calc(50% - 50vw) 32px;
    padding: 6px max(20px, calc((100vw - 1180px) / 2));
    background: rgba(181, 147, 81, 0.06);
}

.single-breadcrumb__list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0 0 0 16px;
    overflow: hidden;
    list-style: none;
    white-space: nowrap;
}

.single-breadcrumb__item:last-child {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.single-breadcrumb__item {
    color: #5A5A5A;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0;
}

.single-breadcrumb__item:not(:last-child)::after {
    margin-left: 8px;
    color: rgba(181, 147, 81, 0.75);
    font-size: 1.2rem;
    font-weight: 500;
    content: "/";
}

.single-breadcrumb__item a {
    color: #5A5A5A;
    text-decoration: none;
    transition: color .3s ease;
}

.single-breadcrumb__item a:hover {
    color: #B59351;
}

.single-breadcrumb__home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.single-breadcrumb__home-icon {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    fill: none;
    stroke: #B59351;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.single-breadcrumb__home span {
    position: relative;
    top: 3px;
}

/* Article */

.single-article {
    width: 100%;
    max-width: 760px;
    margin-left: 16px;
}

/* Article Share
-------------------------------------------------- */

.article-share {
    width: 100%;
    margin: 48px 0;
    text-align: center;
}

.article-share__title {
    margin: 0 0 18px;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.article-share__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.article-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    width: 120px;
    height: 42px;
    padding: 0 12px;

    border: 1px solid rgba(181, 147, 81, 0.65);
    background: #fff;

    color: #B59351;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;

    transition:
        color 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.article-share__button:hover {
    border-color: #B59351;
    background: rgba(181, 147, 81, 0.05);
    color: #B59351;
}

.article-share__icon {
    display: block;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}

.article-share__button>span {
    position: relative;
    left: -8px;
    display: block;
    line-height: 1;
}

.article-share__comments {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 392px;
    max-width: 100%;
    min-height: 46px;
    margin: 16px auto 0;
    padding: 0 44px;

    border: 1px solid rgba(181, 147, 81, 0.65);
    background: #fff;

    color: #B59351;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.article-share__comments-arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #B59351;
    border-right: 1.5px solid #B59351;
    font-size: 0;
    transform: translateY(-50%) rotate(45deg);
}

.article-share__comments:hover {
    border-color: #B59351;
    background: rgba(181, 147, 81, 0.05);
    color: #B59351;
}

.article-share__title,
.article-share__buttons {
    display: none;
}

/* Article Author
-------------------------------------------------- */

.article-author {
    display: grid;
    grid-template-columns: 35% 1px 65%;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 38px 24px;
    border-top: 1px solid rgba(181, 147, 81, 0.25);
    border-bottom: 1px solid rgba(181, 147, 81, 0.25);
    background: #fff;
}

.article-author__left {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-right: 32px;
    text-align: center;
}

.article-author__image-wrap {
    width: 120px;
    height: 120px;
    overflow: hidden;
    border-radius: 50%;
}

.article-author__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-author__role {
    margin: 16px 0 0;
    color: #777;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: 0.05em;
}

.article-author__name {
    margin: 4px 0 0;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.article-author__divider {
    width: 1px;
    height: 160px;
    background: rgba(181, 147, 81, 0.35);
}

.article-author__right {
    padding-left: 40px;
}

.article-author__text {
    margin: 0;
    color: #4A4A4A;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.9;
    text-align: left;
}

.article-author__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    margin-top: 18px;
    padding: 0 44px 0 18px;
    border: 1px solid rgba(181, 147, 81, 0.65);
    background: #fff;
    color: #B59351;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.article-author__link:hover {
    border-color: #B59351;
    background: rgba(181, 147, 81, 0.05);
    color: #B59351;
}

.article-author__arrow {
    position: absolute;
    top: 50%;
    right: 18px;
    width: 9px;
    height: 9px;
    border-top: 1.5px solid #B59351;
    border-right: 1.5px solid #B59351;
    font-size: 0;
    transform: translateY(-50%) rotate(45deg);
}

/* Article Related
-------------------------------------------------- */

.article-related {
    width: 100%;
    margin: 56px 0 0;
}

.article-related__title {
    position: relative;
    margin: 0 0 20px;
    padding-left: 16px;

    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.08em;
}

.article-related__title::before {
    position: absolute;
    top: 50%;
    left: 0;

    width: 3px;
    height: 28px;

    background: #B59351;

    content: "";
    transform: translateY(-50%);
}

.article-related__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.article-related__item {
    min-width: 0;
}

.article-related__link {
    display: block;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.article-related__thumbnail {
    overflow: hidden;
}

.article-related__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-related__link:hover .article-related__image {
    transform: scale(1.06);
}

.article-related__body {
    padding-top: 12px;
}

.article-related__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.article-related__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 20px;
    padding: 0 8px;

    border: 1px solid rgba(181, 147, 81, 0.45);
    border-radius: 999px;
    background: rgba(181, 147, 81, 0.08);

    color: #3A3A3A;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.article-related__date {
    color: #888;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.article-related__heading {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: 0;
    background: none;

    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.55;

    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
}

.article-related__link:hover .article-related__heading {
    color: #B59351;
}

/* H2 */

.single-content h2 {
    margin: 56px 0 28px;
    padding: 12px 20px;
    border-left: 4px solid #B59351;
    border-bottom: 1px solid rgba(181, 147, 81, 0.5);
    background: rgba(181, 147, 81, 0.035);
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.5;
}

/* H3 */

.single-content h3 {
    margin: 44px 0 20px;
    padding: 5px 0 5px 14px;
    border-left: 3px solid #B59351;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.5;
}

/* Paragraph */

.single-content p {
    margin: 0 0 24px;
    color: #3A3A3A;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 2;
}

/* List */

.single-content ul,
.single-content ol {
    margin: 0 0 24px 28px;
    padding: 0;
}

.single-content li {
    margin-bottom: 12px;
    color: #3A3A3A;
    font-size: 1.7rem;
    line-height: 1.4;
}

.single-content ul li::marker {
    color: #B59351;
}

.single-content ol li::marker {
    color: #B59351;
    font-weight: 500;
}

/* Blockquote */

.single-content blockquote {
    position: relative;
    margin: 40px 0;
    padding: 28px 32px 24px 56px;
    border: none;
    border-radius: 6px;
    background: rgba(181, 147, 81, 0.05);
}

.single-content blockquote::before {
    content: "“";
    position: absolute;
    top: 14px;
    left: 18px;
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: rgba(181, 147, 81, 0.85);
}

.single-content blockquote p:last-child {
    margin-bottom: 0;
}

/* Image */

.single-content img {
    display: block;
    width: 100%;
    height: auto;
    margin: 20px auto;
    border-radius: 0;
}

/* Thumbnail */

.single-thumbnail {
    margin: 0 0 32px;
}

/* Category */

.single-category {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
    padding: 6px 14px 5px;
    border: 1px solid rgba(181, 147, 81, 0.55);
    border-radius: 14px;
    background: rgba(181, 147, 81, 0.05);

    color: #666;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1;
}

/* Meta */

.single-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    max-width: 760px;
    gap: 6px;
    margin: 0 0 6px;
    color: #777;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1;
}

.single-meta time {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.single-meta__icon {
    color: #B59351;
    font-size: 1.4rem;
    line-height: 1;
}

.single-meta__icon--published {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.single-meta__icon--published svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #B59351;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.single-meta__icon--modified {
    display: inline-flex;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.single-meta__icon--modified svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: #B59351;
    stroke: none;
}

.single-meta__modified::before {
    margin-right: 2px;
    color: #C8C8C8;
    font-weight: 600;
    content: "/";
}

/* Title */

.single-title {
    margin: 0 0 16px;
    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

/* Article Text Link */

.single-content p a {
    color: #B59351;
    text-decoration-color: #B59351;
    transition:
        color 0.3s ease,
        text-decoration-color 0.3s ease;
}

.single-content p a:hover {
    color: #CDB77F;
    text-decoration-color: #CDB77F;
}

/* Article Table */

.single-content .article-table {
    margin: 28px 0;
    overflow-x: auto;
}

.single-content .article-table table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 1.5rem;
}

.single-content .article-table th,
.single-content .article-table td {
    padding: 14px 16px;
    border: 1px solid rgba(181, 147, 81, 0.3);
    line-height: 1.7;
    text-align: left;
    vertical-align: middle;
}

.single-content .article-table th {
    background: rgba(181, 147, 81, 0.12);
    color: #3A3A3A;
    font-weight: 600;
}

/* Comment Form */

.article-comments {
    width: 100%;
    margin-top: 64px;
}

.article-comments__title {
    position: relative;
    margin: 0 0 20px;
    padding-left: 16px;

    color: #3A3A3A;
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    letter-spacing: 0.08em;
}

.article-comments__title::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 3px;
    height: 28px;
    background: #B59351;
    content: "";
    transform: translateY(-50%);
}

.article-comments__lead {
    margin: 0 0 24px;
    color: #666;
    font-size: 1.4rem;
    line-height: 1.8;
}

/* Comment List */

.article-comments__list {
    margin-top: 56px;
    scroll-margin-top: 120px;
}

.comment-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-comment {
    margin: 0;
    padding: 0;
    list-style: none;
}

.article-comment__inner {
    padding: 20px 0;
    border-bottom: 1px solid rgba(181, 147, 81, 0.22);
}

.article-comments__list>.comment-list>.article-comment:first-child>.article-comment__inner {
    padding-top: 0;
}

.article-comment__rating {
    margin-bottom: 10px;
    color: #B59351;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: 0.08em;
}

.article-comment__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.article-comment__author {
    color: #3A3A3A;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.5;
}

.article-comment__date {
    color: #888;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
}

.article-comment__content {
    color: #4A4A4A;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.75;
}

.article-comment__content p {
    margin: 0 0 12px;
}

.article-comment__content p:last-child {
    margin-bottom: 0;
}

.article-comment__moderation {
    margin: 0 0 12px;
    color: #9F7C39;
    font-size: 1.3rem;
    line-height: 1.6;
}

.article-comment__reply {
    margin-top: 14px;
}

.article-comment__reply a {
    color: #777;
    font-size: 1.3rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.article-comment__reply a:hover {
    color: #B59351;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Comment Reply */

.comment-list .children .article-comment__inner {
    padding: 0;
    border-bottom: none;
}

.comment-list>.article-comment:has(.children)>.article-comment__inner {
    border-bottom: none;
}

.article-comment__reply-to {
    margin: 0 0 12px;
    color: #888;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.5;
}

.comment-list .children {
    position: relative;
    margin: 8px 0 20px;
    padding: 0 0 0 24px;
    border-left: 2px solid #D8D8D8;
    list-style: none;
}

.comment-list .children::after {
    position: absolute;
    right: 0;
    bottom: -20px;
    left: -2px;
    height: 1px;
    background: rgba(181, 147, 81, 0.22);
    content: "";
}

/* Comment Reply Author */

.comment-list .children .article-comment__author-icon {
    display: inline-block;
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    min-width: 40px;
    object-fit: cover;
    border-radius: 50%;
    vertical-align: middle;
}

.comment-list .children .article-comment__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.comment-list .children .article-comment__author {
    white-space: nowrap;
}

/* Comment More */

.article-comments__more {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    width: 392px;
    max-width: 100%;
    min-height: 46px;
    margin: 24px auto 0;
    padding: 0 44px;

    border: 1px solid rgba(181, 147, 81, 0.65);
    background: #fff;

    color: #B59351;
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;

    cursor: pointer;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}

.article-comments__more:hover {
    border-color: #B59351;
    background: rgba(181, 147, 81, 0.05);
    color: #B59351;
}

.article-comments__more-arrow {
    position: absolute;
    top: 50%;
    right: 18px;

    width: 9px;
    height: 9px;

    border-top: 1.5px solid #B59351;
    border-right: 1.5px solid #B59351;

    transform: translateY(-50%) rotate(45deg);
}

.article-comments__more[hidden] {
    display: none;
}

/* Comment Honeypot */

.comment-form-hp {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* Rating */

.comment-form-rating {
    margin-bottom: 20px;
}

.comment-form-rating__label {
    display: block;
    margin-bottom: 8px;
    color: #3A3A3A;
    font-size: 1.4rem;
    line-height: 1.5;
}

.comment-form-rating__stars {
    display: inline-flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 4px;
}

.comment-form-rating__stars input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.comment-form-rating__stars label {
    color: #D8D8D8;
    font-size: 2.8rem;
    line-height: 1;
    cursor: pointer;
    transition: color 0.2s ease;
}

.comment-form-rating__stars label:hover,
.comment-form-rating__stars label:hover~label,
.comment-form-rating__stars input:checked~label {
    color: #B59351;
}

.comment-form-author,
.comment-form-email,
.comment-form-comment {
    margin: 0 0 16px;
}

.comment-form-author label,
.comment-form-email label,
.comment-form-comment label {
    display: block;
    margin-bottom: 8px;
    color: #3A3A3A;
    font-size: 1.4rem;
    line-height: 1.5;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
    display: block;
    width: 100%;
    box-sizing: border-box;
    border: 1px solid rgba(181, 147, 81, 0.45);
    background: #fff;
    color: #3A3A3A;
    font-size: 1.5rem;
    line-height: 1.6;
}

.comment-form-author input,
.comment-form-email input {
    height: 42px;
    padding: 0 14px;
}

.comment-form-comment textarea {
    min-height: 140px;
    padding: 12px 14px;
    resize: vertical;
}

.comment-form__note {
    display: block;
    margin-top: 6px;
    color: #888;
    font-size: 1.2rem;
    line-height: 1.5;
}

.article-comments__submit {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 100%;
    min-height: 50px;
    margin-top: 4px;
    padding: 0 24px;
    box-sizing: border-box;

    border: none;
    background: rgba(181, 147, 81, 0.12);

    color: #9F7C39;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.08em;

    cursor: pointer;

    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.article-comments__submit:hover {
    background: rgba(181, 147, 81, 0.20);
    color: #8A692F;
}

/* Related Read */

.single-content .article-related-read {
    margin: 28px 0;
    border: 1px solid rgba(181, 147, 81, 0.35);
    background: #fff;
}

.single-content .article-related-read__label {
    margin: 0;
    padding: 8px 16px;
    background: rgba(181, 147, 81, 0.10);
    color: #B59351;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.5;
}

.single-content .article-related-read__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 16px;
    color: #3A3A3A;
    text-decoration: none;
    transition: background 0.3s ease;
}

.single-content .article-related-read__title {
    font-size: 1.5rem;
    line-height: 1.6;
}

.single-content .article-related-read__arrow {
    flex-shrink: 0;
    color: #B59351;
    font-size: 2rem;
    line-height: 1;
}

.single-content .article-related-read__link:hover {
    background: rgba(181, 147, 81, 0.05);
}

/* Tablet
-------------------------------------------------- */

@media (min-width: 768px) and (max-width: 1199px) {

    .single-container {
        width: min(calc(100% - 64px), 800px);
        padding-bottom: 24px;
    }

    .single-layout {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
    }

    .single-sidebar {
        display: none;
    }

    .single-article {
        margin-left: auto;
        margin-right: auto;
    }

    /* Breadcrumb */

    .single-breadcrumb {
        padding-left: max(32px, calc((100vw - 760px) / 2));
        padding-right: max(32px, calc((100vw - 760px) / 2));
    }

    .single-breadcrumb__list {
        padding-left: 4px;
    }

    /* Header */

    body.single .site-header__inner {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    body.single .site-header__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: min(calc(100% - 48px), 760px);
        max-width: none;
        margin: 0 auto;
    }

    body.single .site-logo {
        transform: none;
    }

    body.single .header-cta {
        transform: none;
    }

    body.single .mobile-menu {
        width: 100%;
    }

    body.single .global-navigation {
        width: 100%;
        max-width: none;
        margin: 0;
        transform: none;
    }

    body.single .global-navigation ul {
        justify-content: center;
        flex-wrap: nowrap;
    }

    /* Comment Anchor */

    .article-comments__list {
        scroll-margin-top: 140px;
    }

}

/* Smartphone
-------------------------------------------------- */

@media (max-width: 767px) {

    /* Sidebar */

    .single-sidebar {
        display: none;
    }

    /* Layout */

    .single-container {
        width: calc(100% - 40px);
        margin: 0 auto;
        padding: 48px 0 40px;
    }

    .single-layout {
        display: block;
    }

    .single-article {
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    /* Breadcrumb */

    .single-breadcrumb {
        margin-top: -48px;
        margin-bottom: 12px;
        padding-top: 4px;
        padding-bottom: 4px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .single-breadcrumb__list {
        padding-left: 0;
    }

    .single-breadcrumb__item {
        font-size: 1.1rem;
    }

    /* Category */

    .single-category {
        margin-bottom: 12px;
        padding: 3px 10px;
        font-size: 1.1rem;
    }

    /* Title */

    .single-title {
        margin-bottom: 12px;
        font-size: 2.4rem;
        line-height: 1;
    }

    /* Meta */

    .single-meta {
        font-size: 1.2rem;
    }

    /* Thumbnail */

    .single-thumbnail {
        margin-bottom: 24px;
    }

    /* Text */

    .single-content p {
        line-height: 1.8;
    }

    .single-content li {
        line-height: 1.3;
    }

    .single-content ul,
    .single-content ol {
        margin-bottom: 20px;
    }

    /* Index */

    .single-index {
        margin-top: 24px;
        margin-bottom: 40px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .single-index__link,
    .single-index__item--h3 a {
        line-height: 1.4;
    }

    .single-content .single-index__item--h2 {
        margin-bottom: 8px;
    }

    .single-content .single-index__sublist {
        margin-top: 8px;
    }

    .single-content .single-index__item--h2:last-child {
        margin-bottom: 0;
    }

    .single-index__row {
        column-gap: 12px;
    }

    /* Article Table */

    .single-content .article-table th,
    .single-content .article-table td {
        padding: 12px 10px;
    }

    /* H2 */

    .single-content h2 {
        margin-top: 32px;
        margin-bottom: 24px;
        padding: 12px 16px;
        font-size: 2.2rem;
        line-height: 1.4;
    }

    /* H3 */

    .single-content h3 {
        margin-top: 24px;
        margin-bottom: 12px;
        padding-top: 3px;
        padding-bottom: 3px;
        font-size: 2rem;
        line-height: 1.4;
    }

    /* Content Image */

    .single-content img {
        margin: 0 auto;
    }

    .single-content p:has(> img) {
        margin: 20px 0;
        padding: 0;
    }

    .single-content p:has(+ p > img) {
        margin-bottom: 0;
    }

    /* Blockquote */

    .single-content blockquote {
        margin: 24px 0;
        padding-left: 32px;
    }

    .single-content blockquote::before {
        top: 10px;
        left: 12px;
    }

    /* Article CTA */

    .article-cta {
        margin-top: 40px;
        margin-bottom: 24px;
        padding-top: 28px;
        padding-left: 24px;
        padding-right: 24px;
    }

    .single-content .article-cta__title,
    .single-content .article-cta__limited {
        color: #2F2933;
        font-weight: 600;
    }

    .single-content .article-cta__title {
        font-size: 2.1rem;
    }

    .article-cta__questions {
        padding-top: 4px;
        padding-bottom: 4px;
    }

    .article-cta__message {
        margin-bottom: 0;
    }

    .article-cta__divider {
        margin-top: 20px;
    }

    .article-cta__button::before {
        animation: article-cta-shine-mobile 3s ease-in-out infinite;
    }

    .article-cta__limited-pc {
        display: none;
    }

    .article-cta__limited-sp {
        display: inline;
    }

    .article-cta__button {
        padding-left: 24px;
        padding-right: 24px;
    }

    .single-content .article-cta__button-icon {
        margin-left: -6px;
    }

    .article-cta__button-arrow {
        display: none;
    }

    .single-content .article-cta__note {
        font-size: 1.2rem;
    }

    @keyframes article-cta-shine-mobile {
        0% {
            left: -100%;
        }

        45% {
            left: -100%;
        }

        75% {
            left: 145%;
        }

        100% {
            left: 145%;
        }
    }

    /* Article Share */

    .article-share {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .article-share__comments {
        width: calc(100% - 40px);
        padding-left: 24px;
        padding-right: 24px;
    }

    /* Article Author */

    .article-author {
        display: block;
        padding-top: 28px;
        padding-right: 20px;
        padding-bottom: 28px;
        padding-left: 20px;
    }

    .article-author__left {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .article-author__divider {
        display: none;
    }

    .article-author__right {
        padding-left: 0;
    }

    .article-author__text {
        font-size: 1.5rem;
        line-height: 1.8;
    }

    .article-author__link {
        padding-left: 44px;
        padding-right: 44px;
    }

    /* Article Related */

    .article-related {
        margin-top: 40px;
    }

    .article-related__title {
        margin-bottom: 16px;
    }

    .article-related__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-related__item:nth-child(n + 3) {
        display: none;
    }

    /* Comments */

    .article-comments__title {
        margin-bottom: 16px;
    }

    .article-comments__list .article-comments__title {
        margin-bottom: 20px;
    }

    .article-comments {
        margin-top: 40px;
    }

    .article-comments__lead {
        margin-bottom: 20px;
    }

    .comment-form-rating {
        margin-bottom: 12px;
    }

    .comment-form-author,
    .comment-form-email,
    .comment-form-comment {
        margin-bottom: 12px;
    }

    .comment-form-author label,
    .comment-form-email label,
    .comment-form-comment label {
        margin-bottom: 6px;
    }

    .comment-form-author input,
    .comment-form-email input {
        height: 36px;
    }

    .comment-form-rating__stars label {
        font-size: 2.4rem;
    }

    .article-comments__list {
        margin-top: 40px;
        scroll-margin-top: 90px;
    }

    .article-comment__content {
        line-height: 1.6;
    }

    .comment-list .children {
        margin-top: 4px;
    }

    .comment-list .children .article-comment__meta {
        margin-bottom: 10px;
    }

    .article-comment__meta {
        margin-bottom: 10px;
    }

    .article-comments__more {
        width: calc(100% - 40px);
    }

}